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

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
animation-duration: 2s;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
animation-duration: 2s;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
animation-duration: 2s;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
animation-duration: 2s;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
animation-duration: 2s;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
animation-duration: 2s;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
animation-duration: 2s;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
animation-duration: 2s;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
animation-duration: 2s;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
animation-duration: 2s;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
animation-duration: 2s;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}@-webkit-keyframes np-btn--1 {
60% {
-webkit-transform: scale3d(0.8, 0.8, 1);
transform: scale3d(0.8, 0.8, 1);
}
85% {
-webkit-transform: scale3d(1.1, 1.1, 1);
transform: scale3d(1.1, 1.1, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes np-btn--1 {
60% {
-webkit-transform: scale3d(0.8, 0.8, 1);
transform: scale3d(0.8, 0.8, 1);
}
85% {
-webkit-transform: scale3d(1.1, 1.1, 1);
transform: scale3d(1.1, 1.1, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@-webkit-keyframes np-btn--2 {
to {
opacity: 0;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes np-btn--2 {
to {
opacity: 0;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
} @-webkit-keyframes np-hvr-horizontal {
16.65% {
-webkit-transform: translateX(8px);
transform: translateX(8px);
}
33.3% {
-webkit-transform: translateX(-6px);
transform: translateX(-6px);
}
49.95% {
-webkit-transform: translateX(4px);
transform: translateX(4px);
}
66.6% {
-webkit-transform: translateX(-2px);
transform: translateX(-2px);
}
83.25% {
-webkit-transform: translateX(1px);
transform: translateX(1px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes np-hvr-horizontal {
16.65% {
-webkit-transform: translateX(8px);
transform: translateX(8px);
}
33.3% {
-webkit-transform: translateX(-6px);
transform: translateX(-6px);
}
49.95% {
-webkit-transform: translateX(4px);
transform: translateX(4px);
}
66.6% {
-webkit-transform: translateX(-2px);
transform: translateX(-2px);
}
83.25% {
-webkit-transform: translateX(1px);
transform: translateX(1px);
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
} @-webkit-keyframes hvr-to-bottom-right {
16.65% {
-webkit-transform: translate(8px, 8px);
transform: translate(8px, 8px);
}
33.3% {
-webkit-transform: translate(-6px, -6px);
transform: translate(-6px, -6px);
}
49.95% {
-webkit-transform: translate(4px, 4px);
transform: translate(4px, 4px);
}
66.6% {
-webkit-transform: translate(-2px, -2px);
transform: translate(-2px, -2px);
}
83.25% {
-webkit-transform: translate(1px, 1px);
transform: translate(1px, 1px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}
@keyframes hvr-to-bottom-right {
16.65% {
-webkit-transform: translate(8px, 8px);
transform: translate(8px, 8px);
}
33.3% {
-webkit-transform: translate(-6px, -6px);
transform: translate(-6px, -6px);
}
49.95% {
-webkit-transform: translate(4px, 4px);
transform: translate(4px, 4px);
}
66.6% {
-webkit-transform: translate(-2px, -2px);
transform: translate(-2px, -2px);
}
83.25% {
-webkit-transform: translate(1px, 1px);
transform: translate(1px, 1px);
}
100% {
-webkit-transform: translate(0, 0);
transform: translate(0, 0);
}
}  @keyframes bounceY {
0% {
transform: translateY(-205px);
}
40% {
transform: translateY(-100px);
}
65% {
transform: translateY(-52px);
}
82% {
transform: translateY(-25px);
}
92% {
transform: translateY(-12px);
}
55%,
75%,
87%,
97%,
100% {
transform: translateY(0px);
}
}
@-moz-keyframes bounceY {
0% {
-moz-transform: translateY(-205px);
}
40% {
-moz-transform: translateY(-100px);
}
65% {
-moz-transform: translateY(-52px);
}
82% {
-moz-transform: translateY(-25px);
}
92% {
-moz-transform: translateY(-12px);
}
55%,
75%,
87%,
97%,
100% {
-moz-transform: translateY(0px);
}
}
@-webkit-keyframes bounceY {
0% {
-webkit-transform: translateY(-205px);
}
40% {
-webkit-transform: translateY(-100px);
}
65% {
-webkit-transform: translateY(-52px);
}
82% {
-webkit-transform: translateY(-25px);
}
92% {
-webkit-transform: translateY(-12px);
}
55%,
75%,
87%,
97%,
100% {
-webkit-transform: translateY(0px);
}
}[class*="elementor-widget-htmega-"] h1 a,[class*="elementor-widget-htmega-"] h2 a,[class*="elementor-widget-htmega-"] h3 a,[class*="elementor-widget-htmega-"] h4 a,[class*="elementor-widget-htmega-"] h5 a,[class*="elementor-widget-htmega-"] h6 a{font-size:inherit;font-weight:inherit;font-family:inherit}.htmega-d-none{display:none}body:has(.htmega_mega_menu){overflow-x:hidden}.htmega-section-title{position:relative;z-index:1}.htmega-section-title svg{width:20px}.htmega-section-title .section-title-txt{color:#23252a;font-weight:600;line-height:1;margin:0;display:inline-block}.htmega-section-title .section-subtitle-txt{color:#494849;font-family:"Poppins",sans-serif;font-size:16px;line-height:30px;margin:5px 0;font-weight:400}.htmega-section-title span.htmega-title-sperator{background-color:#383838;display:inline-block;height:3px;margin-bottom:13px;margin-top:30px;position:relative;width:50px}.htmega-section-title.title-style-three span.htmega-title-sperator::before{background-color:#383838;bottom:0;content:"";display:block;height:3px;left:-13px;margin-bottom:13px;margin-top:25px;position:absolute;width:50px}.htmega-title-align-left .htmega-section-title.title-style-three span.htmega-title-sperator::before,.htmega-title-align-justify .htmega-section-title.title-style-three span.htmega-title-sperator::before{left:13px}.htmega-section-title.htmega-subtitle-position-top{display:flex;flex-direction:column}.htmega-section-title.htmega-subtitle-position-top .section-title-txt{order:2}.htmega-section-title.htmega-subtitle-position-top .section-subtitle-txt{order:1}.htmega-section-title.htmega-subtitle-position-top img{order:3}.htmega-section-title.htmega-subtitle-position-top i{order:3}.htmega-section-title.htmega-subtitle-position-top .htmega-title-sperator-sec{order:4}.htmega-section-title.htmega-subtitle-position-top.title-style-four .htmega-title-sperator-sec{order:2}.htmega-section-title.htmega-subtitle-position-top.title-style-four .section-title-txt{order:3}.htmega-section-title.htmega-subtitle-position-top.title-style-four span.htmega-title-sperator{margin-top:8px}.title-style-two .htmega-title-sperator-sec,.title-style-five .htmega-title-sperator-sec{display:none}.title-style-two .section-title-txt{padding:0 10.5%;position:relative}.title-style-two .section-title-txt::before,.title-style-two .section-title-txt::after{background:#412e51 none repeat scroll 0 0;content:"";height:3px;left:0;position:absolute;top:50%;width:100px}.title-style-two .section-title-txt::after{right:0;top:50%;left:auto}.title-style-two .section-title-txt{margin-right:auto!important;margin-left:auto!important}.section-advancetitle-txt{color:#f1f1f1;font-size:80px;font-weight:800;line-height:28px;margin:0;position:absolute;text-transform:uppercase;top:50%;transform:translateY(-50%);width:100%;z-index:-1}.htmega-title-sperator-sec{line-height:1}.htmega-section-title-order-parent{display:flex;flex-direction:column}.htmega-section-title-order-parent .section-subtitle-txt{order:1}.htmega-section-title-order-parent .section-title-txt{order:2}.htmaga-section-title-image-position-bottom{order:3}.htmaga-section-title-image-position-top{order:0}.htmaga-section-title-image-position-center{order:1}.htmega-section-title.htmega-subtitle-position-bottom .section-subtitle-txt{order:3}.image-center .section-title-txt{order:1}.htmega_sub_title_border_both{position:relative}.htmega_sub_title_border_both::before,.htmega_sub_title_border_both::after{position:absolute;content:"";top:50%;transform:translateY(-50%);height:2px;width:25px;background:#000}.htmega_sub_title_border_both::before{left:100%;margin-left:20px}.htmega_sub_title_border_both::after{right:100%;margin-right:20px}.htmega-button .htb-btn:focus,.htmega-button .htb-btn:active{box-shadow:none!important}.htmega-button .htb-btn-outline-light{border-color:#c8c8c8;color:#c8c8c8}.htmega-button{display:inline-block}.htmega-button .htmega-btn-effect-5,.htmega-button .htmega-btn-effect-6,.htmega-button .htmega-btn-effect-10{overflow:hidden}.htmega_button_icon{display:inline-block}.htmega_button_icon svg{width:20px}.htmega-button span svg path{transition:all 0.4s ease-in-out 0s}.htmega-button .htb-btn{border-radius:0;position:relative;border:none;z-index:1;transition:all 0.4s ease-in-out 0s}.button-align-icon-left span.htmega_button_icon{float:left}.button-align-icon-left span.htmega_button_txt{float:right}.button-align-icon-right span.htmega_button_icon{float:right}.button-align-icon-right span.htmega_button_txt{float:left}.button-align-icon-top span.htmega_button_icon,.button-align-icon-bottom span.htmega_button_icon{display:block}.button-align-icon-top span.htmega_button_txt,.button-align-icon-bottom span.htmega_button_txt{display:block}.button-align-icon-top a.htb-btn{display:flex;flex-flow:column-reverse nowrap}.htmega-btn-size-xl{padding:35px 50px!important}.htmega-btn-size-lg{padding:25px 50px!important}.htmega-btn-size-md{padding:16px 43px!important}.htmega-btn-size-sm{padding:8px 40px!important}.htmega-btn-size-xs{padding:3px 10px!important}.htmega-btn-style-2 .htb-btn::after{border-radius:inherit;content:"";height:100%;left:0;position:absolute;top:0;transition-delay:0s,0s;transition-duration:0.3s,0.3s;transition-property:transform,background-color;transition-timing-function:cubic-bezier(.25,0,.3,1);width:100%;z-index:-1;background-color:#ff6b6b;border-radius:30px;transform:scale3d(.7,.7,1)}.htmega-btn-effect-1{-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1);z-index:1}.htmega-btn-effect-1::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:#623687;z-index:-1;background-color:#ff6b6b;opacity:0;-webkit-transform:scale3d(.7,1,1);transform:scale3d(.7,1,1);-webkit-transition:-webkit-transform 0.4s,opacity 0.4s;transition:transform 0.4s,opacity 0.4s;-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1);z-index:-1}.htmega-btn-effect-1:hover::before{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.htmega-btn-effect-2{z-index:1;overflow:hidden}.htmega-btn-effect-2::before{content:'';position:absolute;top:0;left:0;width:150%;height:100%;background:#623687;z-index:-1;-webkit-transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);transform:rotate3d(0,0,1,-45deg) translate3d(0,-3em,0);-webkit-transform-origin:0% 100%;transform-origin:0% 100%;-webkit-transition:-webkit-transform 0.3s,opacity 0.3s,background-color 0.3s;transition:transform 0.3s,opacity 0.3s,background-color 0.3s;z-index:-1}.htmega-btn-effect-2:hover::before{opacity:1;-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg);-webkit-transition-timing-function:cubic-bezier(.2,1,.3,1);transition-timing-function:cubic-bezier(.2,1,.3,1)}.htmega-btn-effect-3{z-index:1;color:#fff}.htmega-btn-effect-3::before,.htmega-btn-effect-3::after{content:'';border-radius:inherit;position:absolute;top:0;left:0;width:100%;height:100%;-webkit-transition:-webkit-transform 0.3s,background-color 0.3s;transition:transform 0.3s,background-color 0.3s;-webkit-transition-timing-function:cubic-bezier(.25,0,.3,1);transition-timing-function:cubic-bezier(.25,0,.3,1);z-index:-1}.htmega-btn-effect-3::before{border:2px solid #623687;-webkit-transform:scale3d(.7,.7,1);transform:scale3d(.7,.7,1)}.htmega-btn-effect-3::after{background:#18012c}.htmega-btn-effect-3:hover::before{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.htmega-btn-effect-3:hover::after{background-color:#623687;-webkit-transform:scale3d(.7,.7,1);transform:scale3d(.7,.7,1)}.htmega-btn-effect-4::before{content:'';position:absolute;top:-20px;left:-20px;bottom:-20px;right:-20px;background:inherit;z-index:-1;opacity:.4;-webkit-transform:scale3d(.8,.5,1);transform:scale3d(.8,.5,1)}.htmega-btn-effect-4:hover::before{-webkit-animation:np-btn--2 0.3s 0.3s forwards;animation:np-btn--2 0.3s 0.3s forwards}.htmega-btn-effect-4:hover{-webkit-transition:background-color 0.1s 0.3s,color 0.1s 0.3s;transition:background-color 0.1s 0.3s,color 0.1s 0.3s;color:#ECEFF1;background-color:#623687;-webkit-animation:np-btn--1 0.3s forwards;animation:np-btn--1 0.3s forwards}.htmega-btn-effect-5::before{content:'';z-index:-1;position:absolute;top:50%;left:100%;margin:-15px 0 0 1px;width:30px;height:30px;border-radius:50%;background:#623687;-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1);-webkit-transition:-webkit-transform 0.3s,opacity 0.3s;transition:transform 0.3s,opacity 0.3s;-webkit-transition-timing-function:cubic-bezier(.7,0,.9,1);transition-timing-function:cubic-bezier(.7,0,.9,1)}.htmega-btn-effect-5:hover::before{-webkit-transform:scale3d(9,9,1);transform:scale3d(9,9,1)}.htmega-btn-effect-6::before{content:'';z-index:-1;position:absolute;top:50%;margin:-15px 0 0 1px;width:30px;height:30px;border-radius:50%;background:#623687;-webkit-transform-origin:0 50%;transform-origin:0 50%;-webkit-transform:scale3d(1,2,1);transform:scale3d(1,2,1);-webkit-transition:-webkit-transform 0.3s,opacity 0.3s;transition:transform 0.3s,opacity 0.3s;-webkit-transition-timing-function:cubic-bezier(.7,0,.9,1);transition-timing-function:cubic-bezier(.7,0,.9,1);right:100%}.htmega-btn-effect-6:hover::before{-webkit-transform:scale3d(9,9,1);transform:scale3d(9,9,1)}.htmega-btn-effect-7::before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;z-index:-1;background:#e09d8b;-webkit-transform:scaleX(1);-webkit-transform-origin:50%;transform-origin:50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.3s;transition-duration:0.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out;color:#fff}.htmega-btn-effect-7:hover::before{-webkit-transform:scaleX(0);transform:scaleX(0)}.htmega-btn-effect-8::before{content:"";position:absolute;z-index:-1;top:0;bottom:0;left:0;right:0;background:#45b29d;-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transform-origin:50%;transform-origin:50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.3s;transition-duration:0.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.htmega-btn-effect-8:hover::before{-webkit-transform:scaleY(0);transform:scaleY(0)}.htmega-btn-effect-9::before{content:"";position:absolute;z-index:-1;top:0;left:0;right:-1px;bottom:0;background:#18012c;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.5s;transition-duration:0.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.htmega-btn-effect-9:hover::before{-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.htmega-btn-effect-10::before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#18012c;border-radius:100%;-webkit-transform:scale(0);transform:scale(0);-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.3s;transition-duration:0.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.htmega-btn-effect-10:hover::before{-webkit-transform:scale(2);transform:scale(2)}.htmega-btn-effect-11::before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#18012c;-webkit-transform:scale(0);transform:scale(0);-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.3s;transition-duration:0.3s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.htmega-btn-effect-11:hover::before{-webkit-transform:scale(1);transform:scale(1)}.htmega-btn-effect-12::before{content:"";position:absolute;z-index:-1;top:0;left:0;right:-1px;bottom:0;background:#d82f4e;-webkit-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.5s;transition-duration:0.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.htmega-btn-effect-12:hover::before{-webkit-transform:scaleX(1);transform:scaleX(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.htmega-btn-effect-13::before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#18012c;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 0;transform-origin:50% 0;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.5s;transition-duration:0.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.htmega-btn-effect-13:hover::before{-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.htmega-btn-effect-14::before{content:"";position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;background:#18012c;-webkit-transform:scaleY(0);transform:scaleY(0);-webkit-transform-origin:50% 0;transform-origin:50% 0;-webkit-transition-property:transform;transition-property:transform;-webkit-transition-duration:0.5s;transition-duration:0.5s;-webkit-transition-timing-function:ease-out;transition-timing-function:ease-out}.htmega-btn-effect-14:hover::before{-webkit-transform:scaleY(1);transform:scaleY(1);-webkit-transition-timing-function:cubic-bezier(.52,1.64,.37,.66);transition-timing-function:cubic-bezier(.52,1.64,.37,.66)}.htmega-btn-shadow-1 .htb-btn::before{background:#fff0 radial-gradient(ellipse at center center,rgb(0 0 0 / .35) 0%,#fff0 80%) repeat scroll 0 0;content:"";height:10px;left:5%;opacity:0;pointer-events:none;position:absolute;top:100%;transition-duration:0.3s;transition-property:transform,opacity;width:90%;z-index:-1}.htmega-btn-shadow-1 .htb-btn:hover::before{opacity:1;transform:translateY(5px)}.htmega-btn-shadow-2 .htb-btn::before,.htmega-btn-shadow-2 .htb-btn::after{background-repeat:no-repeat;box-sizing:border-box;content:"";height:5px;left:0;opacity:0;pointer-events:none;position:absolute;transition-duration:0.3s;transition-property:opacity;width:100%}.htmega-btn-shadow-2 .htb-btn::before{background:#fff0 radial-gradient(ellipse at 50% 150%,rgb(0 0 0 / .6) 0%,#fff0 80%) repeat scroll 0 0;bottom:100%}.htmega-btn-shadow-2 .htb-btn::after{background:#fff0 radial-gradient(ellipse at 50% -50%,rgb(0 0 0 / .6) 0%,#fff0 80%) repeat scroll 0 0;top:100%}.htmega-btn-shadow-2 .htb-btn:hover::before,.htmega-btn-shadow-2 .htb-btn:hover::after{opacity:1}.single_accourdion{margin-bottom:15px;position:relative}.single_accourdion:last-child{margin-bottom:0!important}.accordion-content{border:1px solid #ddd;padding:15px}.htmega-items-hedding{background:#e6e6e6 none repeat scroll 0 0;cursor:pointer;padding:10px 20px;position:relative;margin-bottom:0}.htmega-accourdion-title h2{font-size:16px;font-weight:600;margin-bottom:0}.htmega-accourdion-title .htmega-items-hedding .accourdion-icon{position:absolute;right:0;top:0;width:40px;height:100%;text-align:center;display:flex;justify-content:center;align-items:center}.htmega-accourdion-title .htmega-items-hedding .accourdion-icon svg{width:14px}.htmega-accourdion-title .htmega-items-hedding .close-accourdion{opacity:1;visibility:visible}.htmega-accourdion-title .htmega-items-hedding .open-accourdion{opacity:0;visibility:hidden}.htmega-accourdion-title .htmega-items-hedding.htb-collapsed .open-accourdion{opacity:1;visibility:visible}.htmega-accourdion-title .htmega-items-hedding.htb-collapsed .close-accourdion{opacity:0;visibility:hidden}.htmega-icon-align-left .htmega-items-hedding{padding-left:40px}.htmega-icon-align-left .accourdion-icon{left:0;right:0}.htmega-icon-align-right .htmega-items-hedding{padding-right:40px}.gallery-wrap{display:flex;flex-direction:row;width:100%;height:70vh}.gallery-wrap .item{flex:1;height:100%;background-position:center;background-size:cover;background-repeat:none;transition:flex 0.8s ease}.gallery-wrap .item:hover{flex:7}ul.accordion--4{list-style:none;padding:0;margin:0;display:flex;text-align:center!important;justify-content:center}ul.accordion--4 li{width:115px;height:480px;display:block;border-right:2px solid #fff;border-bottom:2px solid #fff;background-color:#fff;background-repeat:no-repeat;background-position:center center;position:relative;overflow:hidden;cursor:pointer;-moz-box-shadow:1px 3px 15px #555;-webkit-box-shadow:1px 3px 15px #555;box-shadow:1px 3px 15px #555}ul.accordion--4 li.bleft{border-left:2px solid #fff}ul.accordion--4 li .heading{background-color:#fff;padding:10px;margin-top:60px;text-transform:capitalize;font-weight:500;font-size:18px;text-align:center;color:#18012c}ul.accordion--4 li .description{position:absolute;height:175px;bottom:60px;left:0;display:none;width:100%}ul.accordion--4 li .description h2{color:#18012c;font-size:30px}ul.accordion--4 li .description p{margin:10px 22px;font-size:14px;line-height:28px;color:#18012c}ul.accordion--4 li .description a{position:absolute;bottom:5px;left:20px;text-transform:uppercase;font-style:normal;font-size:11px;text-decoration:none;color:#888}ul.accordion--4 li .description a:hover{color:#333;text-decoration:underline}ul.accordion--4 li .bgDescription{background:#fff0;height:340px;position:absolute;bottom:0;left:0;width:100%;display:none}.accordion--4 .accordion-content,.accordion--5 .accordion-content{border:0}.accor_wrapper{width:100%;height:100%;position:relative;overflow:hidden;background:#000}.accordion--5{position:relative;margin:0 auto 0 auto}.accordion--5 .single_accordion{cursor:pointer;position:absolute;width:100%;left:0;overflow:hidden;text-align:center;z-index:2}.accordion--5 .single_accordion::before{position:absolute;content:"";background:#000;left:0;top:0;width:100%;height:100%;opacity:.4;z-index:-1}.accordion--5 .single_accordion .va-title{text-transform:uppercase;font-size:40px;margin-left:5px;color:#fff;display:inline-block;margin-top:15px;margin-right:5px}.accordion--5 .single_accordion .va-title div{font-size:22px;font-style:italic;font-family:Georgia,serif}.accordion--5 .single_accordion .va-content{display:none;margin-left:0;padding:0 23%;margin-top:-36px}.accordion--5 .single_accordion .va-content div{color:#fff;font-size:14px;line-height:28px}.accor_wrapper .single_accordion{background:#000;background-size:cover}span.htmega-accordion-title-icon{position:absolute;left:0;top:50%;transform:translateY(-50%);width:50px;height:50px;display:flex;align-items:center;justify-content:center}span.htmega-accordion-title-icon svg{width:30px}.htmega-title-icon-align-right .htmega-accordion-title-icon{left:auto;right:0}.htmega-accordion-seperator-yes.single_accourdion::after{content:"";position:absolute;width:2px;height:auto;background:#000;left:84px;top:15px;bottom:15px}.htmega-accordion-short-des{display:block;font-size:14px}.htmega-items-hedding{margin:0}.elementor-widget-htmega-accordion-addons .accordion{display:block!important}.htb-short-active-yes .htmega-accourdion-title .htmega-items-hedding .open-accourdion{opacity:1;visibility:visible}.htb-short-active-yes .htmega-accourdion-title .htmega-items-hedding .close-accourdion{opacity:0;visibility:hidden}.htb-short-active-yes .htmega-accourdion-title .htmega-items-hedding.htb-short-active .close-accourdion{opacity:1;visibility:visible}.htb-short-active-yes .htmega-accourdion-title .htmega-items-hedding.htb-short-active .open-accourdion{opacity:0;visibility:hidden}.htmega-single-skill{overflow:hidden;padding-bottom:23px}.htmega-single-skill .htb-progress-bar{border-radius:3px;position:relative}.htmega-single-skill .htb-progress{overflow:visible;height:6px;border-radius:3px}.htmega-single-skill .htb-progress span.percent-label{position:absolute;right:0;top:-39px}.htmega-progress-text-inner p.htmega_progress_title{left:20px;top:50%;transform:translateY(-100%);z-index:9;margin:0;color:#fff}.htmega-progress-text-inner{position:relative}.htmega-progress-text-inner p.htmega_progress_title{position:absolute}.htmega-progress-value-inner .htb-progress span.percent-label{right:50px;top:50%;transform:translateY(-50%)}.htmega-single-skill p{color:#666;font-family:"Montserrat",sans-serif;font-size:16px;font-weight:500;margin-bottom:17px;display:inline-block}.htmega-progressbar-value-bottom .htb-progress span.percent-label::after{border-left:5px solid #fff0;border-right:5px solid #fff0;border-top:5px solid #18012c;content:"";height:0;left:50%;margin-left:-6px;position:absolute;top:100%;width:0}.htmega-progress-indicator .htb-progress .htb-progress-bar::after{background:#fff none repeat scroll 0 0;border:4px solid #18012c;border-radius:100%;content:"";height:24px;position:absolute;right:-1px;top:50%;transform:translateY(-50%);width:24px}.htmega-single-skill.htmega-progress-bar-vertical{display:flex;flex-direction:column;overflow-y:hidden}.htmega-progress-bar-vertical{position:relative;padding-top:41px}.htmega-progress-bar-vertical .htb-progress{width:100%;padding-top:40px;min-height:390px;display:flex;align-items:flex-end;background:#fff0;overflow:hidden}.htmega-progress-bar-vertical .htb-progress .htb-progress-bar{width:100%;height:0;-webkit-transition:height 0.6s ease;-o-transition:height 0.6s ease;transition:height 0.6s ease}.htmega-progress-bar-vertical.htmega-single-skill p.htmega_progress_title{order:1}.htmega-progress-bar-vertical.htmega-progress-value-inner .htb-progress span.percent-label{position:absolute;top:-36px;left:50%;transform:translateX(-50%)}.htmega-progress-bar-vertical.htmega-progress-value-inner .htb-progress span.percent-label{left:50%;position:absolute;top:-36px;transform:translateX(-50%);right:auto}.radial-progress-single{text-align:center}.radial-progress-single .radial-progress{position:relative}.radial-progress-single .radial-progress span{position:absolute;text-align:center;display:block;left:50%;top:-55%;transform:translateX(-50%) translateY(0);color:#383838;font-size:30px;font-weight:500;font-family:"Montserrat",sans-serif}.radial-progress-single.htmega-progress-value-inner .radial-progress span{top:50%;transform:translateX(-50%) translateY(-50%)}.radial-progress-single h5.radial-progress-title{color:#666;font-size:16px;font-weight:500;margin:0;margin-top:11px;font-family:"Montserrat",sans-serif}.radial-progress-single canvas{vertical-align:middle;position:relative}.radial-progressbg{display:inline-block;position:relative}.htmega-countbox{text-align:center}.htmega-countbox .ht-count{display:inline-block;position:relative;margin:0 22px;line-height:1}.htmega-countbox .ht-count::before{position:absolute;content:":";right:-26px;top:50%;transform:translateY(-50%);color:#5e5b60;font-size:55px}.htmega-countbox .ht-count:last-child::before{display:none}span.ht-count{padding:28px 0;border:2px solid #18012c;border-radius:10px;width:139px;text-align:center}.htmega-countbox span.time-count{color:#242424;font-size:36px;font-weight:500;display:block;padding-bottom:27px;margin-bottom:27px;position:relative;font-family:"Montserrat",sans-serif}.htmega-countbox span.time-count::before{background-image:linear-gradient(to right,#fff0,rgb(82 65 97 / .8) 40%,rgb(82 65 97 / .8) 60%,#fff0);background-position:center center;background-repeat:no-repeat;background-size:84% auto;content:"";height:2px;left:0;position:absolute;bottom:0;width:100%}.htmega-countbox span span.count-inner p{color:#242424;font-size:30px;font-weight:400;margin:0}.htmega-timer-separate-no .htmega-countbox span.time-count::before,.htmega-separate-no .htmega-countbox .ht-count::before{display:none}.htmega-countdown-style-2 .ht-count .count-inner .time-count,.htmega-countdown-style-2 .ht-count .count-inner p{display:inline-block}.htmega-countdown-style-2 span.ht-count,.htmega-countdown-style-3 span.ht-count{width:auto!important;height:auto!important}.htmega-countdown-style-3 .ht-count.second{left:48.5%;margin:0;position:absolute;top:-60px;transform:translateX(-50%)}.htmega-countdown-style-3 .ht-count.second p,.htmega-countdown-style-3 .htmega-countbox .ht-count.minutes::before{display:none}.htmega-countdown-style-3 .ht-count::before{right:-26px;top:21%;transform:inherit}.htmega-hide-lavel .htmega-countbox .ht-count::before{right:-26px;top:36%}.htmega_event_button a{line-height:1;margin-top:30px;padding:15px 30px;text-decoration:none}.htmega_event_button a i{margin-right:10px}.htmega-team{margin-top:30px}.htmega-team .htmega-thumb{position:relative;overflow:hidden;line-height:0}.htmega-team .htmega-thumb *{line-height:normal}.htmega-team{position:relative}.htmega-team .htmega-team-content{text-align:center;font-size:16px;font-weight:500;margin-bottom:7px;border:1px solid #dcd9d9;padding:30px 20px}.htmega-team .htmega-team-content h4{font-size:16px;font-weight:500;margin-bottom:5px}.htmega-team .htmega-team-content h4{color:#343434;transition:0.5s}.htmega-team .htmega-team-content p{margin:0;color:#343434;font-size:16px;font-weight:400}.htmega-team-style-1 .htmega-team-hover-action{position:absolute;width:100%;text-align:center;height:100%;top:-100px;opacity:0;-webkit-transition:all 0.3s ease-out 0.5s;-moz-transition:all 0.3s ease-out 0.5s;-o-transition:all 0.3s ease-out 0.5s;-ms-transition:all 0.3s ease-out 0.5s;transition:all 0.3s ease-out 0.5s}.htmega-team .htmega-team-hover-action .htmega-team-hover{position:absolute;top:50%;transform:translateY(-50%);width:100%}.htmega-team .htmega-team-hover-action .htmega-team-hover p{color:#fff;font-size:14px;line-height:28px;padding:0 23px;-webkit-transform:translateY(50px);-moz-transform:translateY(50px);-o-transform:translateY(50px);-ms-transform:translateY(50px);transform:translateY(50px);-webkit-transition:all 0.2s ease-in-out 0.1s;-moz-transition:all 0.2s ease-in-out 0.1s;-o-transition:all 0.2s ease-in-out 0.1s;-ms-transition:all 0.2s ease-in-out 0.1s;transition:all 0.2s ease-in-out 0.1s;opacity:0}.htmega-team .htmega-team-hover-action .htmega-team-hover .htmega-social-network{margin-bottom:7px;-webkit-transform:translateY(20px);-moz-transform:translateY(20px);-o-transform:translateY(20px);-ms-transform:translateY(20px);transform:translateY(20px);-webkit-transition:all 0.2s ease-in-out 0.1s;-moz-transition:all 0.2s ease-in-out 0.1s;-o-transition:all 0.2s ease-in-out 0.1s;-ms-transition:all 0.2s ease-in-out 0.1s;transition:all 0.2s ease-in-out 0.1s;opacity:0}.htmega-team-style-1:hover .htmega-team-hover-action{opacity:1;top:0;-webkit-transition-delay:0s;-moz-transition-delay:0s;-o-transition-delay:0s;-ms-transition-delay:0s;transition-delay:0s;-webkit-animation:bounceY 0.9s linear;-moz-animation:bounceY 0.9s linear;-ms-animation:bounceY 0.9s linear;animation:bounceY 0.9s linear;background:rgb(24 1 44 / .6)}.htmega-team:hover .htmega-team-hover-action .htmega-team-hover p,.htmega-team:hover .htmega-team-hover-action .htmega-team-hover .htmega-social-network{-webkit-transform:translateY(0);-moz-transform:translateY(0);-o-transform:translateY(0);-ms-transform:translateY(0);-webkit-transition-delay:0.4s;-moz-transition-delay:0.4s;-o-transition-delay:0.4s;-ms-transition-delay:0.4s;transition-delay:0.4s;opacity:1}.htmega-team-style-1::before{position:absolute;content:"";width:0;height:1px;background:#18012c;bottom:0;left:0;transition:0.5s}.htmega-team-style-1:hover::before{width:100%}.htmega-team .htmega-thumb img{transition:all 0.4s ease 0s;width:100%}.htmega-team-style-2 .htmega-thumb img{-webkit-filter:grayscale(100%);filter:grayscale(100%);transition:0.5s}.htmega-team-style-2:hover .htmega-thumb img{-webkit-filter:grayscale(0);filter:grayscale(0)}.htmega-team-style-2 .htmega-team-hover-action{position:absolute;bottom:30px;width:100%;padding:0 30px}.htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action{text-align:center;padding:25px 0;background-color:rgb(115 146 184 / .7);width:100%;opacity:0;-webkit-transform:translate(265px,145px) rotate(45deg);-moz-transform:translate(265px,145px) rotate(45deg);-o-transform:translate(265px,145px) rotate(45deg);-ms-transform:translate(265px,145px) rotate(45deg);transform:translate(265px,145px) rotate(45deg);-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;-o-transition:all 0.5s ease-in-out;-ms-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out}.htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action h4{font-size:18px;font-weight:500;margin-bottom:9px;color:#fff}.htmega-team-style-2 .htmega-team-hover-action .htmega-hover-action{background-color:#18012c}.htmega-team-style-2 .htmega-team-hover-action{background-color:transparent!important}.htmega-team-style-2:hover .htmega-team-hover-action .htmega-hover-action{opacity:1;-webkit-transform:translate(0,-10px) rotate(45deg);-moz-transform:translate(0,-10px) rotate(45deg);-o-transform:translate(0,-10px) rotate(45deg);-ms-transform:translate(0,-10px) rotate(45deg);transform:translate(0,-10px) rotate(0deg)}.htmega-team-style-2 .htmega-team-designation{display:block;color:#fff}.htmega-team.htmega-team-style-2{overflow:hidden}.htmega-team-hover-action.htmega-action-hover-st2 .htmega-hover-action{display:flex;justify-content:space-between;text-align:left;padding:10px 15px;align-items:center}.htmega-team-hover-action.htmega-action-hover-st2{bottom:-30px}.htmega-st2-new.htmega-team{padding-bottom:20px}.htmega-team.htmega-team-style-2 .htmega-thumb{overflow:visible}.htmega-team-hover-action.htmega-action-hover-st2 ul.htmega-social-network{padding:0}.htmega-team-hover-action.htmega-action-hover-st2 .htmega-hover-action{background-color:#fff0;background-image:linear-gradient(220deg,#FF9966 0%,#FF5E62 100%);border-radius:5px 5px 5px 5px;padding:15px}.htmega-team-style-2.htmega-st2-new .htmega-thumb img{-webkit-filter:grayscale(0);filter:grayscale(0)}.htmega-team-style-3 .htmega-thumb{padding-bottom:80px;position:relative}.htmega-team-style-3 .plus_click{position:absolute;left:50%;top:-14px;transform:translateX(-50%)}.htmega-team-style-3 .plus_click::before{content:"\f067";font-family:Fontawesome;display:block;width:25px;height:25px;border:1px solid #fff;color:#fff;background:#555;border-radius:100%;text-align:center;font-size:12px;z-index:2;cursor:pointer;transition:0.5s;line-height:27px}.htmega-team-style-3 .plus_click.team-minus::before{content:"\f068";background:#18012c}.htmega-team-style-3 .htmega-team-click-action{background:#343434;text-align:center;border-radius:50px 50px 0 0;padding-top:28px;padding-bottom:20px;transition:0.5s;width:100%;position:absolute;width:100%;bottom:0;margin-bottom:-58px}.htmega-team-style-3 .htmega-team-click-action.visible{margin-bottom:0;background:#18012c}.htmega-team-style-3 .htmega-team-click-action h4{font-size:16px;font-weight:600;margin-bottom:2px}.htmega-team-style-3 .htmega-team-click-action h4{color:#fff}.htmega-team-style-3 .htmega-team-click-action span{display:block;color:#fff;font-size:14px;margin-bottom:14px}.htmega-team-style-3 .htmega-team-click-action .htmega-social-network{margin-bottom:9px}.htmega-team ul.htmega-social-network{padding:0;margin:0;list-style:none;display:block;text-align:center}.htmega-social-network{margin-bottom:8px}.htmega-social-network li{margin:0 10px;display:inline-block}.htmega-social-network li a{color:#fff;font-size:14px;display:block;background:#fff0;line-height:1}.htmega-social-network li a svg{width:20px}.htmega-social-network li a:hover{color:#3B5998;background:#fff0}.htmega-team-style-3 .htmega-social-network li a{height:28px;line-height:26px;text-align:center;width:28px}.htmega-team-style-4{text-align:center}.htmega-team-style-4 .htmega-thumb{overflow:visible;display:block}.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-left img{z-index:11;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;position:relative;-webkit-transform-origin:0% 50%;-moz-transform-origin:0% 50%;-ms-transform-origin:0% 50%;-o-transform-origin:0% 50%;transform-origin:0% 50%}.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-right img{z-index:11;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;position:relative;-webkit-transform-origin:100% 50%;-moz-transform-origin:100% 50%;-ms-transform-origin:100% 50%;-o-transform-origin:100% 50%;transform-origin:100% 50%}.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-top img{z-index:11;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;position:relative;-webkit-transform-origin:50% 0;-moz-transform-origin:50% 0;-ms-transform-origin:50% 0;-o-transform-origin:50% 0;transform-origin:50% 0}.htmega-team-style-4 .htmega-thumb.htmega-team-image-hover-bottom img{z-index:11;-webkit-transition:all 0.5s ease-in-out;-moz-transition:all 0.5s ease-in-out;transition:all 0.5s ease-in-out;position:relative;-webkit-transform-origin:0 100%;-moz-transform-origin:0 100%;-ms-transform-origin:0 100%;-o-transform-origin:0 100%;transform-origin:0 100%}.htmega-team-style-4 .htmega-team-hover-action{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:100%;text-align:center}.htmega-team-style-4 .htmega-team-hover-action::before{position:absolute;content:"";background:#18012c;opacity:1;width:auto;height:auto;border-radius:100%;left:0;top:0;bottom:0;right:0}.htmega-team-style-4 .htmega-team-image-hover-none .htmega-team-hover-action::before{background:rgb(24 1 44 / .5) none repeat scroll 0 0;bottom:10px;content:"";height:auto;left:10px;opacity:0;position:absolute;right:10px;top:10px;transition:all 0.4s ease-in-out 0s;width:auto}.htmega-thumb.htmega-team-image-hover-none{overflow:hidden}.htmega-team-style-4 .htmega-team-image-hover-none .htmega-team-hover-action .htmega-hover-action h4{-webkit-transform:translateX(100%);-moz-transform:translateX(100%);-ms-transform:translateX(100%);-o-transform:translateX(100%);transform:translateX(100%);-webkit-transition:all 0.35s ease-in-out;-moz-transition:all 0.35s ease-in-out;transition:all 0.35s ease-in-out}.htmega-team-style-4 .htmega-team-image-hover-none ul.htmega-social-network,.htmega-team-style-4 .htmega-team-image-hover-none span.htmega-team-designation{-webkit-transform:translateX(-100%);-moz-transform:translateX(-100%);-ms-transform:translateX(-100%);-o-transform:translateX(-100%);transform:translateX(-100%);-webkit-transition:all 0.35s ease-in-out;-moz-transition:all 0.35s ease-in-out;transition:all 0.35s ease-in-out}.htmega-team-style-4 .htmega-team-image-hover-none span.htmega-team-designation{display:block;color:#fff}.htmega-team-style-4:hover .htmega-team-image-hover-none .htmega-team-hover-action .htmega-hover-action h4,.htmega-team-style-4:hover .htmega-team-image-hover-none ul.htmega-social-network,.htmega-team-style-4:hover .htmega-team-image-hover-none span.htmega-team-designation{-webkit-transform:translateX(0);-moz-transform:translateX(0);-ms-transform:translateX(0);-o-transform:translateX(0);transform:translateX(0)}.htmega-team-style-4:hover .htmega-team-image-hover-none .htmega-team-hover-action::before{opacity:1}.htmega-team-style-4.htmega-team:hover .htmega-team-image-hover-none .htmega-team-hover-action{background-color:transparent!important}.htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action{position:absolute;top:50%;transform:translateY(-50%);width:100%;text-align:center}.htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action h4{font-size:16px;margin-bottom:13px;font-weight:500}.htmega-team-style-4 .htmega-team-hover-action .htmega-hover-action h4{color:#fff}.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-left img{-webkit-transform:rotate3d(0,1,0,-180deg);-moz-transform:rotate3d(0,1,0,-180deg);-ms-transform:rotate3d(0,1,0,-180deg);-o-transform:rotate3d(0,1,0,-180deg);transform:rotate3d(0,1,0,-180deg)}.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-right img{-webkit-transform:rotate3d(0,1,0,180deg);-moz-transform:rotate3d(0,1,0,180deg);-ms-transform:rotate3d(0,1,0,180deg);-o-transform:rotate3d(0,1,0,180deg);transform:rotate3d(0,1,0,180deg);z-index:12}.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-top img{-webkit-transform:rotate3d(1,0,0,180deg);-moz-transform:rotate3d(1,0,0,180deg);-ms-transform:rotate3d(1,0,0,180deg);-o-transform:rotate3d(1,0,0,180deg);transform:rotate3d(1,0,0,180deg)}.htmega-team-style-4:hover .htmega-thumb.htmega-team-image-hover-bottom img{-webkit-transform:rotate3d(1,0,0,180deg);-moz-transform:rotate3d(1,0,0,180deg);-ms-transform:rotate3d(1,0,0,180deg);-o-transform:rotate3d(1,0,0,180deg);transform:rotate3d(1,0,0,180deg)}.htmega-team-style-5 .htmega-thumb img{-webkit-transform:scaleY(1);-moz-transform:scaleY(1);-o-transform:scaleY(1);-ms-transform:scaleY(1);transform:scaleY(1);-webkit-transition:all 0.7s ease-in-out;-moz-transition:all 0.7s ease-in-out;-o-transition:all 0.7s ease-in-out;-ms-transition:all 0.7s ease-in-out;transition:all 0.7s ease-in-out}.htmega-team-style-5 .htmega-team-hover-action{width:100%;height:100%;position:absolute;overflow:hidden;top:0;left:0;background-color:#fff;-webkit-transition:all 0.5s linear;-moz-transition:all 0.5s linear;-o-transition:all 0.5s linear;-ms-transition:all 0.5s linear;transition:all 0.5s linear;opacity:0}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action{position:absolute;top:50%;transform:translateY(-50%);padding:0 20px;width:100%}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4{font-size:16px;font-weight:600;margin-bottom:9px}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4 a{color:#343434}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action span{font-size:16px;display:block;color:#343434;margin-bottom:12px}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action p{line-height:26px;color:#494849;font-size:14px;margin-bottom:16px}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action .htmega-social-network{justify-content:flex-start}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action .htmega-social-network li:first-child{margin-left:0}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4,.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action span,.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action ul.htmega-social-network,.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action p{-webkit-transform:scale(0);-moz-transform:scale(0);-o-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:all 0.5s linear;-moz-transition:all 0.5s linear;-o-transition:all 0.5s linear;-ms-transition:all 0.5s linear;transition:all 0.5s linear;opacity:0}.htmega-team-style-5:hover .htmega-team-hover-action{opacity:1;background-color:#fff}.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action h4,.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action ul.htmega-social-network,.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action p,.htmega-team-style-5:hover .htmega-team-hover-action .htmega-hover-action span{-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.htmega-team-style-5:hover .htmega-thumb img{-webkit-transform:scale(10);-moz-transform:scale(10);-o-transform:scale(10);-ms-transform:scale(10);transform:scale(10);opacity:0}.htmega-team.htmega-team-style-5 ul.htmega-social-network{padding:0}.htmega-team-style-6{overflow:hidden}.htmega-team-style-6 .htmega-thumb img{transition:0.5s}.htmega-team-style-6:hover .htmega-thumb img{transform:scale(1.2) rotate(10deg)}.htmega-team-style-6 .htmega-team-info{background:#f4f4f4;text-align:center;transition:0.4s}.htmega-team-style-6 .htmega-team-info .htmega-team-content{padding:26px 18px}.htmega-team-style-6 .htmega-team-info .htmega-team-content p{font-size:14px;line-height:28px;color:#494849;margin:0}.htmega-team-style-6 .htmega-team-info .htmega-team-content h4{font-size:16px;font-weight:600;margin-bottom:5px}.htmega-team-style-6 .htmega-team-info .htmega-team-content h4{color:#343434}.htmega-team-style-6 .htmega-team-info .htmega-team-content span{color:#343434;font-size:14px;font-weight:400}.htmega-team-style-6 .htmega-team-info .htmega-social-network{padding:14px 0;border-top:2px solid #fff}.htmega-team.htmega-team-style-6 .htmega-team-content{border:none}.htmega-team-style-7{box-shadow:0 0 15px rgb(0 0 0 / .1);overflow:hidden}.htmega-team-style-7 .htmega-thumb a img{transition:0.5s}.htmega-team-style-7 .htmega-team-hover-action{position:absolute;bottom:30px;width:100%;text-align:center}.htmega-team-style-7 .htmega-team-hover-action{background-color:#fff0}.htmega-team-style-7 .htmega-team-hover-action .htmega-hover-action .htmega-social-network{-webkit-transition:all 0.5s cubic-bezier(.68,-.55,.265,1.55);transition:all 0.5s cubic-bezier(.68,-.55,.265,1.55)}.htmega-team-style-7 .htmega-team-hover-action .htmega-hover-action .htmega-social-network li a{-webkit-transition:all 0.5s cubic-bezier(.68,-.55,.265,1.55);-webkit-transform:scale(.1);transition:all 0.5s cubic-bezier(.68,-.55,.265,1.55);transform:scale(.1);opacity:0;height:28px;width:28px;line-height:28px}.htmega-team-style-7:hover .htmega-team-hover-action .htmega-hover-action .htmega-social-network li a{opacity:1;transform:scale(1);-webkit-transition-delay:.1s;transition-delay:.1s}.htmega-team-style-7 .htmega-team-content{background:#fff none repeat scroll 0 0;border:0 none;margin:0;padding:20px 10px;text-align:center}.htmega-team-style-7 .htmega-team-content h4{font-size:16px;font-weight:600;margin-bottom:3px}.htmega-team-style-7 .htmega-team-content h4{color:#343434}.htmega-team-style-7 .htmega-team-content h4:hover{color:#18012c}.htmega-team-style-7 .htmega-team-content span{color:#343434;font-size:14px;margin:0;font-weight:400}.htmega-team-style-7:hover .htmega-thumb img{transform:scale(1.2) rotate(10deg)}.htmega-team-style-8 .htmega-team-content{position:relative;transition:all 0.3s ease-in-out;border:1px solid #e5e5e5;border-top:0;overflow:hidden}.htmega-team-style-8{box-shadow:none}.htmega-team-style-8 .htmega-team-hover-action{position:absolute;bottom:-110%;width:100%;z-index:2;left:0;height:100%;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease-in-out;background-color:#fff0;background-image:linear-gradient(280deg,#FCC5FF 0%,#8D73FF 100%)}.htmega-team-style-8:hover .htmega-team-hover-action{bottom:0}.htmega-team-style-8::before,.htmega-team-style-8::after{content:"";position:absolute;left:0;bottom:0;height:10px;width:10px;border-left:1px solid #8e74ff;border-bottom:1px solid #8e74ff;z-index:1}.htmega-team-style-8::after{left:auto;right:0;border-left:1px solid transparent!important;border-right:1px solid #8e74ff}.htmega-team-style-8:hover::after,.htmega-team-style-8:hover::before{opacity:0}.htmega-team-style-8 .htmega-team-hover-action:after{position:absolute;content:"";width:51px;height:3px;top:0;left:50%;background:#fff;margin-left:-25px}.htmega-team.htmega-st8-new .htmega-team-content{position:absolute;bottom:0;left:0;right:0;margin:0 15px}.htmega-team-style-8.htmega-st8-new3 .htmega-team-hover-action{bottom:0;left:-99%}.htmega-team-style-8.htmega-st8-new3:hover .htmega-team-hover-action{left:0}.htmega-team-style-8.htmega-st8-new3 .htmega-team-content{border-width:0 0 0 0;margin:0 20px 20px 0}span.htmega-team-designation{display:block}.htmega-features svg{width:20px;display:inline-block}.htmega-pricing-panel{display:flex;flex-direction:column;justify-content:space-between;text-align:center;margin-top:30px}.htmega-pricing-body ul{list-style:none;padding:0;margin:0}.htmega-pricing-body ul li{display:flex;align-items:center;justify-content:center}.htmega-pricing-panel .pricing_old{margin-right:15px}.htmega-pricing-panel .htmega-pricing-heading .price h4 span.pricing_new,.htmega-pricing-panel .htmega-pricing-heading .price h4 span.pricing_old{padding-left:16px;position:relative}.htmega-features li i,.htmega-features li svg{margin-right:8px}.elementor-widget-htmega-pricing-table-addons span.htmega-price-badge{position:absolute;top:-1px;background:#fff;padding:12px 40px;z-index:9;line-height:1;border-radius:5px 0 0 5px}.elementor-widget-htmega-pricing-table-addons span.htmega-price-badge-position-left{left:40px;-webkit-transform:rotate(-90deg) translateX(-100%);-ms-transform:rotate(-90deg) translateX(-100%);transform:rotate(-90deg) translateX(-100%);-webkit-transform-origin:left top;-ms-transform-origin:left top;transform-origin:left top}.elementor-widget-htmega-pricing-table-addons span.htmega-price-badge-position-right{right:0;-webkit-transform:rotate(-90deg) translateY(-100%);-ms-transform:rotate(-90deg) translateY(-100%);transform:rotate(-90deg) translateY(-100%);-webkit-transform-origin:right top;-ms-transform-origin:right top;transform-origin:right top}.htmega-pricing-panel .price-label{position:relative}.htmega-pricing-style-1{background:#365a73;margin-top:30px;border-radius:10px;padding-bottom:40px}.htmega-pricing-style-1 .htmega-pricing-heading{padding-top:65px;padding-bottom:75px;background-repeat:no-repeat;background-position:center center;position:relative;background-size:cover;margin-bottom:37px;border-radius:10px 10px 0 0}.htmega-pricing-style-1 .htmega-pricing-heading .title{position:absolute;left:-7px;transform:rotate(-90deg);top:39px}.htmega-pricing-style-1 .htmega-pricing-heading .title h2{margin:0;height:50px;line-height:50px;color:#fff;font-size:16px;background:-webkit-linear-gradient(left,#446c83,#4eb8bf);background-image:linear-gradient(left,#446c83,#4eb8bf);border-radius:10px;font-family:'Raleway',sans-serif;width:125px;text-align:center}.htmega-pricing-style-1 .htmega-pricing-heading .price{display:inline-block;padding-left:35px}.htmega-pricing-style-1 .htmega-pricing-heading .price h4{color:#fff;display:inline-block;margin:0;position:relative;font-size:40px;font-weight:600;font-family:'Raleway',sans-serif}.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span.pricing_new{font-size:40px}.htmega-pricing-style-1 .htmega-pricing-heading .price h4 sub{position:absolute;left:0;top:23px;font-size:20px;font-weight:700;font-family:'Raleway',sans-serif}.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span.pricing_old sub{position:static}.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span{font-size:20px;font-family:"Montserrat",sans-serif}.htmega-pricing-style-1 .htmega-pricing-heading .price h4 span.separator{margin-right:-5px}.htmega-pricing-style-1 .htmega-pricing-body{margin-bottom:37px}.htmega-pricing-style-1 .htmega-pricing-body ul li{color:#f1f1f1;font-weight:300;font-size:16px;padding:5px 0;justify-content:left}.htmega-pricing-style-1 .htmega-pricing-body ul li svg path{fill:#f1f1f1}.htmega-pricing-style-1 .htmega-pricing-body ul li svg path a.price_btn{text-decoration:none}.htmega-pricing-style-1 a.price_btn{border:1px solid #4fbfc5;display:inline-block;padding:8px 40px;border-radius:10px;color:#fff;font-size:14px;text-transform:uppercase;font-weight:600;transition:0.5s}.htmega-pricing-style-1 a.price_btn:hover{background:#4ebec4;color:#fff;border:1px solid #4ebec4}.htmega-pricing-style-2{background:#fff;border-radius:10px;padding:55px 0}.htmega-pricing-heighlight{padding:70px 0;box-shadow:0 0 30px rgb(82 182 188 / .25);position:relative;z-index:2}.htmega-pricing-style-2 .htmega-pricing-heading{margin-bottom:10px}.htmega-pricing-style-2 .htmega-pricing-heading .icon{margin-bottom:20px}.htmega-pricing-style-2 .htmega-pricing-heading .title h2{margin-bottom:14px;margin-bottom:28px}.htmega-pricing-style-2 .htmega-pricing-heading .price h4{color:#52b6bc;font-weight:400;position:relative;font-size:30px;margin:0;font-family:'Lora',serif;display:inline-block}.htmega-pricing-style-2 .htmega-pricing-heading .price h4 sub{position:absolute;left:0;top:16px}.htmega-pricing-style-2 .htmega-pricing-body{margin-bottom:27px}.htmega-pricing-style-2 .htmega-pricing-body ul li{color:#7b7b7b;font-size:14px;font-weight:300;padding:3px 0;justify-content:left}.htmega-pricing-style-2 .htmega-pricing-footer a.price_btn{border:2px solid #52b6bc;display:inline-block;padding:0 32px;color:#52b6bc;border-radius:21px;font-weight:500;font-size:15px;transition:0.5s}.htmega-pricing-style-2 .htmega-pricing-footer a.price_btn:hover{background:#52b6bc;color:#fff;border:2px solid #52b6bc}.htmega-pricing-style-3{background:#ef476f;padding-bottom:60px;margin-top:88px;border-radius:5px;box-shadow:0 0 10px rgb(0 0 0 / .1)}.htmega-pricing-style-3 .htmega-pricing-heading .price{width:125px;height:127px;background:#ef476f;border:4px solid #fff;border-radius:100%;text-align:center;margin:0 auto;display:flex;justify-content:center;align-items:center;position:relative;margin-top:-63px;margin-bottom:37px}.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.pricing_new,.htmega-pricing-style-3 .htmega-pricing-heading .price h4{font-size:40px;margin:0;font-weight:600;position:relative;font-family:"Poppins",sans-serif}.htmega-pricing-panel.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.pricing_new,.htmega-pricing-panel.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.pricing_old{padding:0}.htmega-pricing-style-3 .htmega-pricing-heading .price h4 sub{font-size:20px;position:relative;top:-17px;left:0}.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span{font-size:15px;font-weight:500;color:#fff}.htmega-pricing-style-3 .htmega-pricing-heading .price h4 span.separator{margin-right:-8px;margin-left:0;color:#fff}.htmega-pricing-style-3 .htmega-pricing-heading .title{margin-bottom:41px}.htmega-pricing-style-3 .htmega-pricing-heading .title h2{font-size:26px;color:#fff;font-weight:600;margin:0;font-family:"Montserrat",sans-serif}.htmega-pricing-style-3 .htmega-pricing-body ul li{color:#fff;font-size:17px;padding:5px 0;font-family:"Poppins",sans-serif}.htmega-pricing-style-3 .htmega-pricing-body ul li svg path{fill:#fff}.htmega-pricing-style-3 .htmega-pricing-footer{margin-top:48px}.htmega-pricing-style-3 .htmega-pricing-footer a.price_btn{height:40px;padding:0 43px;display:inline-block;box-shadow:0 4px 10px rgb(0 0 0 / .25);color:#fff;font-weight:600;line-height:40px;font-size:15px;transition:0.5s;font-family:"Montserrat",sans-serif}.htmega-pricing-style-3 .htmega-pricing-footer a.price_btn:hover{box-shadow:0 4px 10px rgb(0 0 0 / .1)}.htmega-pricing-style-4{background:#fff;padding:90px 0}.htmega-pricing-style-4.htmega-pricing-heighlight .htmega-pricing-footer{height:auto}.htmega-pricing-ribon{position:relative}.htmega-pricing-ribon::before{content:url(//enduropoint.si/wp-content/plugins/ht-mega-for-elementor/assets/images/pricing/pricing-ribon.png);left:30px;position:absolute;top:-15px}.htmega-pricing-style-4 .htmega-pricing-heading .price h4{font-weight:600;color:#4d4d4d;font-size:48px;position:relative;display:inline-block;margin:0}.htmega-pricing-style-4 .htmega-pricing-heading .price h4 sub{position:absolute;left:0;top:25px;font-size:31px}.htmega-pricing-style-4 .htmega-pricing-heading .title h2{font-size:18px;font-weight:500;color:#000101;padding-bottom:27px;position:relative;margin-bottom:28px}.htmega-pricing-style-4 .htmega-pricing-heading .title h2::before{position:absolute;content:"";width:60px;height:2px;background:#e1e1e1;bottom:0;left:50%;transform:translateX(-50%)}.htmega-pricing-style-4 .htmega-pricing-body{position:relative;padding-bottom:23px;margin-top:36px}.htmega-pricing-style-4 .htmega-pricing-body::before{position:absolute;content:"";background:#e1e1e1;width:60px;height:2px;bottom:0;left:50%;transform:translateX(-50%);transition:.3s}.htmega-pricing-style-4:hover .htmega-pricing-body::before{opacity:0}.htmega-pricing-style-4 .htmega-pricing-body ul li{font-size:15px;color:#000;line-height:35px;font-family:"Montserrat",sans-serif}.htmega-pricing-style-4 .htmega-pricing-body ul li svg path{fill:#000}.htmega-pricing-style-4 .htmega-pricing-footer{margin-top:32px;height:0;overflow:hidden;-webkit-transition:all 0.3s ease 0s;-o-transition:all 0.3s ease 0s;transition:all 0.3s ease 0s}.htmega-pricing-style-4 .htmega-pricing-footer a.price_btn{height:46px;border:1px solid #ededed;display:inline-block;line-height:44px;padding:0 40px;color:#000;font-size:14px;border-radius:30px;font-family:"Montserrat",sans-serif;transition:0.5s}.htmega-pricing-style-4 .htmega-pricing-footer a.price_btn:hover{background:#0056ff;color:#fff;border:1px solid #0056ff}.htmega-pricing-style-4:hover .htmega-pricing-footer{height:46px}.htmega-pricing-style-4.active .htmega-pricing-footer{height:46px!important}.htmega-pricing-style-5{background:#f6f6f6;padding:40px 0;text-align:left;padding-bottom:50px;margin-left:30px}.htmega-pricing-style-5 .htmega-pricing-heading{padding-left:46px;margin-bottom:8px}.htmega-pricing-style-5 .htmega-pricing-heading .price h4{color:#0056ff;font-weight:600;font-size:40px}.htmega-pricing-style-5 .htmega-pricing-heading .title h2{color:#000;font-size:18px;font-weight:500;letter-spacing:3px;margin-bottom:3px}.htmega-pricing-style-5 .htmega-pricing-body{background:#e3ecff;margin-right:30px;margin-left:-30px;border-radius:6px;padding:40px 56px 60px;position:relative}.htmega-pricing-style-5 .htmega-pricing-body ul{margin-bottom:-37px}.htmega-pricing-style-5 .htmega-pricing-body ul li{color:#181818;font-size:14px;padding:10px 0}.htmega-pricing-body ul li.off{text-decoration:line-through}.htmega-pricing-style-5 .htmega-pricing-body a.price_btn{bottom:-72px;background:#fff0;display:inline-block;left:50%;border-radius:25px;font-size:14px;color:#fff;text-transform:uppercase;letter-spacing:2px;transform:translateX(-50%);position:relative;border:1px solid #fff0;padding:4px;transition:0.5s}.htmega-pricing-style-5 .htmega-pricing-body a.price_btn span{padding:0 30px;background:#0056ff;display:inline-block;border-radius:20px;height:40px;line-height:40px;transition:0.5s}.htmega-pricing-style-5 .htmega-pricing-body a.price_btn:hover{border:1px solid #0056ff}.htmega-pricing-style-5 .htmega-pricing-body a.price_btn.active{border:1px solid #0056ff}.htmega-pricing-style-5 .htmega-pricing-body a.price_btn.active:hover{border:1px solid #fff0}.htmega-pricing-style-5 .htmega-pricing-heading .price h4 span.pricing_new,.htmega-pricing-style-5 .htmega-pricing-heading .price h4 span.pricing_old{padding:0}.htmega-pricing-style-5 sub{font-size:40px;position:static}.htmega-pricing-style-6{background:#fff;box-shadow:0 0 20px 1px rgb(35 31 32 / .2);padding-bottom:30px}.htmega-pricing-style-6.htmega-pricing-heighlight .htmega-pricing-heading{background:#2d3e50;padding:30px 0}.htmega-pricing-style-6.htmega-pricing-heighlight .htmega-pricing-body{padding:55px 0}.htmega-pricing-style-6.htmega-pricing-heighlight .htmega-pricing-body ul li{padding:7px 0}.htmega-pricing-style-6 .htmega-pricing-heading{background:#2d3e50;padding:30px 0}.htmega-pricing-style-6 .htmega-pricing-heading .price h4 span.separator{margin-left:5px;margin-right:0}.htmega-pricing-style-6 .htmega-pricing-heading .price h4 sub{font-size:18px;position:relative;top:-20px;left:0}.htmega-pricing-style-6 .htmega-pricing-body{padding:50px 0}.htmega-pricing-style-6 .htmega-pricing-body ul li{color:#2d3e50;font-size:18px;font-weight:500;padding:5px 0;font-family:'Raleway',sans-serif}.htmega-pricing-style-6 .htmega-pricing-footer a.price_btn{background:#2d3e50;padding:12px 40px;line-height:1;font-weight:700;border-radius:15px;font-size:15px;color:#fff;font-family:'Raleway',sans-serif;transition:0.5s}.htmega-pricing-style-6 .htmega-pricing-footer a.price_btn:hover{transform:translateY(-5px)}.htmega-pricing-style-6 .htmega-pricing-heading .price h4 span.period-txt,.htmega-pricing-style-6 .htmega-pricing-heading .price h4 span.separator{color:#ecebeb;font-size:18px}.htmega-pricing-style-7{background:#fff;padding-top:48px;padding-bottom:60px;box-shadow:0 0 10px rgb(1 26 72 / .1)}.htmega-pricing-style-7 .htmega-pricing-heading .title h2{color:#f7ca18;font-size:26px;font-weight:600;margin-bottom:32px;font-family:"Poppins",sans-serif}.htmega-pricing-style-7 .htmega-pricing-heading .price{background-position:center center;background-size:cover;margin-bottom:23px;padding:12px 0}.htmega-pricing-style-7 .htmega-pricing-heading .price h4{font-size:60px;color:#011a48;font-weight:700;font-family:"Poppins",sans-serif}.htmega-pricing-style-7 .htmega-pricing-heading .price h4 span.period-txt,.htmega-pricing-style-7 .htmega-pricing-heading .price h4 span.separator{font-size:26px;font-weight:600}.htmega-pricing-style-7 .htmega-pricing-heading .price h4 span.separator{margin-left:2px;margin-right:-8px}.htmega-pricing-style-7 .htmega-pricing-heading .price h4 sub{font-size:26px;left:0;position:relative;top:-3px}.htmega-pricing-style-7 .htmega-pricing-body{padding:0 28px}.htmega-pricing-style-7 .htmega-pricing-body ul li{color:#798294;font-size:20px;line-height:32px;padding:13px 0;border-top:1px solid #f6f6f6;font-family:'Open Sans',sans-serif}.htmega-pricing-style-7 .htmega-pricing-body ul li:last-child{border-bottom:1px solid #f6f6f6}.htmega-pricing-style-7 .htmega-pricing-footer{margin-top:40px}.htmega-pricing-style-7 .htmega-pricing-footer a.price_btn{height:47px;padding:0 50px;display:inline-block;background:#011a48;border-radius:23px;color:#fff;font-size:14px;line-height:47px;text-transform:uppercase;font-weight:600;letter-spacing:2px;font-family:"Poppins",sans-serif;transition:0.5s}.htmega-pricing-style-7 .htmega-pricing-footer a.price_btn:hover{background:#f7ca18;color:#000}.htmega-pricing-panel.htmega-pricing-style-8{background-color:#fff0;background-image:linear-gradient(145.94deg,#FFB602 0%,#FF0773 100%);border-radius:10px 10px 10px 10px;margin:0 0 0 0;padding:40px 0 44px 0}.htmega-pricing-panel.htmega-pricing-style-8 .htmega-pricing-heading .title h2{color:#FFF;font-family:"Roboto",Sans-serif;font-size:18px;font-weight:400}.htmega-pricing-panel.htmega-pricing-style-8 .price-label{background-color:#FFF;width:205px;right:-42%;padding:20px 22px 20px 0;margin:5px 0 5px 0;border-radius:70px 0 0 70px}.htmega-pricing-panel.htmega-pricing-style-8 .price-label h4{color:#FF106E;font-family:"Roboto",Sans-serif;font-size:28px;font-weight:700;margin-bottom:0}.htmega-pricing-panel.htmega-pricing-style-8 .htmega-pricing-body ul li{color:#FFF;font-weight:400;padding:5px 5px 5px 5px;justify-content:left}.htmega-pricing-panel.htmega-pricing-style-8 .htmega-pricing-body ul{text-align:left;padding:0 0 0 94px}.htmega-pricing-panel.htmega-pricing-style-8 .price-label h4 sub{color:#FF106E;font-family:"Roboto",Sans-serif;font-size:28px;font-weight:700;left:0;top:0}.htmega-pricing-panel.htmega-pricing-style-8 .htmega-pricing-heading .htmega-pricing-header-align{padding:0 0 0 95px;text-align:left}.htmega-pricing-panel.htmega-pricing-style-8 .htmega-pricing-footer{margin:40px 0 0 0}.htmega-pricing-panel.htmega-pricing-style-8 .htmega-pricing-footer a.price_btn{padding:15px 86px 15px 86px;border-radius:30px 30px 30px 30px}.htmega-pricing-panel.htmega-pricing-style-8 .htmega-pricing-footer a.price_btn{border-style:solid;border-width:1px 1px 1px 1px;border-color:#FFF}.htmega-pricing-heading .header-top-image{top:-47.5px;position:relative;width:95px;height:95px;border:1px solid #000;border-radius:99px;padding:7px;left:50%;margin-left:-47.5px;background:#fff;display:flex;align-items:center;justify-content:center}.htmega-pricing-panel.htmega-pricing-style-9{background-color:#FFF;padding:0 0 44px 0;border-radius:10px 10px 10px 10px}.htmega-pricing-panel.htmega-pricing-style-9 .htmega-pricing-body ul li{color:#22577E;font-family:"Roboto",Sans-serif;font-size:14px;font-weight:400;padding:0 0 6px 0}.htmega-pricing-panel.htmega-pricing-style-9 .htmega-pricing-footer{margin:40px 0 0 0}.htmega-pricing-panel.htmega-pricing-style-9 .htmega-pricing-footer a.price_btn{padding:12px 50px 12px 50px;border-radius:30px 30px 30px 30px;border-style:solid;border-width:1px 1px 1px 1px;border-color:#FF5151;color:#FF5151;transition:0.3s}.htmega-pricing-panel.htmega-pricing-style-9 .htmega-pricing-footer a.price_btn:hover{color:#FFF;background-color:#FF5151}.htmega-brands-area.htmega-brands-style-1{display:flex;flex-wrap:wrap}.htmega-brands-area{overflow:hidden}.single-partner{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;padding:0 15px;width:calc(100% * (1/4));text-align:center;margin-bottom:50px;display:flex;align-items:center;justify-content:center;line-height:0}.single-partner a{display:inline-block}ul.brand-list{list-style:none;padding:0;margin:0;display:flex;flex-flow:row wrap;justify-content:space-between;align-items:center}@media only screen and (max-width:380px){ul.brand-list{display:block}}ul.brand-list li{position:relative;text-align:center}ul.brand-list li a{display:inline-block}.htmega-brands-style-2 ul.brand-list li{border-right:1px dashed #fff;display:block;float:left;padding:20px;text-align:center;width:20%}.htmega-brands-style-2 ul.brand-list li:last-child{border-right:1px dashed #fff0}.htmega-brands-style-3 ul.brand-list li{flex-basis:20%;border-right:1px solid #dcd9d9;height:125px;line-height:125px;border-top:1px solid #dcd9d9;border-bottom:1px solid #dcd9d9}.htmega-brands-style-3 ul.brand-list li:first-child{border-left:1px solid #dcd9d9}.brand-list-area{display:flex;flex-wrap:wrap}.brand-logo-col{padding-left:15px;padding-right:15px}.htmega-brands-style-5 .brand-logo-col{flex:0 0 25%;max-width:25%}.htmega-brands-style-5 .single-partner{background:#fff;box-shadow:0 0 10px rgb(0 0 0 / .1);text-align:center;display:block;width:100%;padding:25px 15px}.htmega-brands-style-7 .single-partner{width:100%}.htmega-brands-style-7 .brand-logo-col{flex:0 0 33.333%;max-width:33.333%}.htmega-brands-style-4 ul.brand-list{display:block}.htmega-brands-style-4 ul.brand-list li{border-bottom:1px dashed #aaa;border-right:1px dashed #aaa;float:left;padding:25px 15px;text-align:center;width:33.33%}.htmega-brands-style-4 ul.brand-list li:nth-child(1){border-bottom-color:#aaa;border-right-color:#aaa}.htmega-brands-style-4 ul.brand-list li:nth-child(6),.htmega-brands-style-4 ul.brand-list li:last-child{border-bottom-color:#fff0;border-right-color:#fff0}.htmega-brands-style-4 ul.brand-list li:nth-child(5){border-bottom-color:#fff0;border-right-color:#aaa}.htmega-brands-style-4 ul.brand-list li:nth-child(4){border-bottom-color:#fff0;border-right-color:#aaa}.htmega-brands-style-4 ul.brand-list li:nth-child(3){border-bottom-color:#aaa;border-right-color:#fff0}.float-left{float:left}.newsletter-style-one p{color:#798294;font-size:14px;line-height:28px;max-width:605px;margin:0 auto!important;width:100%;margin-bottom:58px;margin-top:16px}.htmega-mailchimp-style-1 .htmega-input-box{position:relative;max-width:530px;margin:0 auto}.htmega-input-box input[type="text"],.htmega-input-box input[type="email"]{width:100%}.htmega-mailchimp-style-1 .htmega-input-box input[type="submit"]{position:absolute;right:5px;top:50%;transform:translateY(-50%);outline:none;border:0 none;transition:0.4s}.htmega-mailchimp-style-2 .htmega-input-box input[type="text"],.htmega-mailchimp-style-2 .htmega-input-box input[type="email"]{width:calc(100% - 170px)}.htmega-input-box form{width:100%}.htmega-mailchimp-style-3 .htmega-input-box{position:relative;max-width:580px;width:100%;margin:0 auto;display:flex}.htmega-mailchimp-style-3 .htmega-input-box input{text-align:center;float:left;overflow:hidden;max-width:405px}.htmega-mailchimp-style-3 .htmega-input-box input[type="submit"]{float:right;overflow:hidden;transition:0.4s}.htmega-mailchimp-style-4 .htmega-input-box{position:relative}.htmega-mailchimp-style-4 .htmega-input-box input[type="submit"]{position:absolute;right:5px;top:50%;width:40px;transform:translateY(-50%);transition:0.4s;text-indent:-99999px}.htmega-mailchimp-style-4 .htmega-input-box::before{color:#fff;content:"";cursor:pointer;display:block;font-family:fontawesome;position:absolute;right:20px;top:50%;transform:translateY(-50%);z-index:1}.htmega-mailchimp-style-5 .htmega-input-box input[type="submit"]{width:100%;transition:0.5s}.htmega-testimonial-area .slick-prev,.htmega-testimonial-area .slick-next{background:#fff0 none repeat scroll 0 0;border:medium none;color:#7d7d7d;cursor:pointer;display:block;font-size:24px;height:auto;line-height:1;outline:medium none;padding:0;position:absolute;text-align:center;top:50%;transform:translate(0,-50%);width:auto;z-index:2;transition:all 0.3s ease-in-out}.htmega-testimonial-area .slick-next{right:0}.htmega-testimonial-area .slick-dots{list-style:none}.htmega-testimonial-area .slick-dots li button{font-size:0;line-height:0;display:block;width:12px;height:12px;padding:0;cursor:pointer;color:#fff0;border:0;outline:none;background:#e3e3e3;border-radius:100%}.htmega-testimonial-area .slick-dots li.slick-active button{background:#f60}.htmega-testimonial-area .slick-dots li button:before{display:none}.htmega-testimonial-area .slick-dots{bottom:-30px;z-index:3}.htmega-testimonial-area .slick-dots li{margin:0 7px;width:12px;height:12px}.htmega-testimonial-area .slick-prev::before,.htmega-testimonial-area .slick-next::before{display:none}.htmega-testimonial-area:not(.htmega-testimonial-style-4) .slick-dots{left:0}.htmega-testimonial-activation{z-index:1}.htmega-testimonial-style-1 .testimonal{text-align:center}.htmega-testimonial-style-1 .testimonal img{margin-bottom:0;text-align:center;display:inline-block}.htmega-testimonial-style-1 .testimonal .testimonal-image{margin-bottom:34px}.htmega-testimonial-style-1 .testimonal .shape img{margin:0}.htmega-testimonial-style-1 .testimonal .content{margin-top:30px}.htmega-testimonial-style-1 .testimonal .content p{color:#3e3e3e;font-size:18px;line-height:35px;padding:0 10%}.htmega-testimonial-style-1 .testimonal .content h4{color:#3e3e3e;font-size:20px;line-height:37px;margin:0}.htmega-testimonial-style-1 .testimonal .content span{color:#3e3e3e;font-size:18px}.htmega-testimonial-style-2 .testimonal{text-align:center;background:#fff;box-shadow:0 0 10px rgb(0 0 0 / .1);position:relative;margin-top:50px;padding-bottom:27px;border-radius:10px}.htmega-testimonial-style-2 .testimonal img{position:absolute;left:50%;top:0;-webkit-transform:translate(-50%,-50%);-moz-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);-o-transform:translate(-50%,-50%);transform:translate(-50%,-50%);border:1px solid #6e6e6e;border-radius:100%;max-width:100%}.htmega-testimonial-style-2 .testimonal .content{margin-top:69px}.htmega-testimonial-style-2 .testimonal .content p{color:#5b5b5b;font-size:14px;line-height:24px;padding:0 4%;font-style:italic;margin-bottom:4px}.htmega-testimonial-style-2 .testimonal .content h4{color:#5b5b5b;font-size:16px;line-height:37px;margin:0;font-weight:600}.htmega-testimonial-style-2 .testimonal .content span{color:#3e3e3e;font-size:18px}.htmega-testimonial-style-2 .slick-slide{padding:5px 15px}.htmega-testimonial-style-2 .slick-center .testimonal img{border:1px solid #f60}.htmega-testimonial-style-2 .slick-dots{bottom:-75px}.slick-dotted.slick-slider{margin-bottom:0}.htmega-testimonial-style-2 .testimonal .shape img{border:medium none;left:0;margin:0 auto;position:relative;top:53px;transform:translate(0)}.htmega-testimonial-style-3 .testimonal img{float:left}.htmega-testimonial-style-3 .testimonal .content{overflow:hidden;padding-left:20px}.htmega-testimonial-style-3 .testimonal .content p{color:#3e3e3e;font-size:16px;margin-bottom:20px;line-height:28px}.htmega-testimonial-style-3 .testimonal .content .clint-info{padding-left:50px;position:relative}.htmega-testimonial-style-3 .testimonal .content .clint-info::before{position:absolute;content:"";width:30px;height:2px;background:#383838;left:0;top:4px}.htmega-testimonial-style-3 .testimonal .content .clint-info h4{font-weight:600;font-size:16px;color:#383838;margin-bottom:2px}.htmega-testimonial-style-3 .testimonal .content .clint-info span{color:#383838;font-size:14px}.htmega-testimonial-style-3 .testimonal .shape img{left:20px;position:relative}.htmega-testimonial-style-3 .testimonal .content .clint-info ul.htmega-testimonial-rating *{padding-left:0!important}.htmega-testimonial-style-8 ul.htmega-testimonial-rating,.htmega-testimonial-style-3 ul.htmega-testimonial-rating,.htmega-testimonial-style-4 .htmega-testimonial-rating{justify-content:left}.htmega-testimonial-style-4 .testimonal .testimonal-image{float:left;padding-right:50px;position:relative}.htmega-testimonial-style-4 .testimonal .testimonal-image::before{position:absolute;content:"";width:1px;height:100%;background:#18012c;right:0;top:0}.htmega-testimonial-style-4 .testimonal .testimonal-image::after{position:absolute;content:"";background:#18012c;height:1px;width:30px;right:0;top:50%;transform:translateY(-50%)}.htmega-testimonial-style-4 .testimonal .content{overflow:hidden;padding-left:30px}.htmega-testimonial-style-4 .testimonal .content p{color:#3e3e3e;font-size:16px;margin-bottom:20px;line-height:28px}.htmega-testimonial-style-4 .testimonal .content h4{font-weight:600;font-size:16px;color:#383838;margin-bottom:2px}.htmega-testimonial-style-4 .testimonal .content span{color:#383838;font-size:14px}.htmega-testimonial-style-4 .testimonal .content span:before{content:""}.htmega-testimonial-style-4 ul.slick-dots li button::before{content:"0";display:block;font-size:16px;height:auto;left:-8px;line-height:1;opacity:1;position:absolute;top:-4px;width:auto}.htmega-testimonial-style-4 ul.slick-dots{padding:0;margin:0;list-style:none;border:0 none;text-align:right}.htmega-testimonial-style-4 ul.slick-dots li button{background:#fff0;border:0 none;color:#18012c;font-weight:600;font-size:16px;position:relative;display:inline-block}.htmega-testimonial-style-4{position:relative;padding-right:24%}.htmega-testimonial-style-4 ul.slick-dots{position:absolute;right:0;top:50%;transform:translateY(-50%);width:100px}.htmega-testimonial-style-4 ul.slick-dots li{padding:6px 0}.htmega-testimonial-style-4 ul.slick-dots li.slick-active button{position:relative}.htmega-testimonial-style-4 ul.slick-dots li{height:auto;line-height:1;padding:8px 0 10px 45px;position:relative}.htmega-testimonial-style-4 ul.slick-dots li::after{position:absolute;content:"";background:#18012c;width:0;height:1px;left:0;top:50%;transform:translateY(-50%);transition:0.5s}.htmega-testimonial-style-4 ul.slick-dots li.slick-active::after{width:30px}.htmega-testimonial-style-4 ul.slick-dots li.slick-active button{background:#fff0}.htmega-testimonial-style-5{position:relative}.htmega-testimonial-for .testimonial-desc p{color:#3e3e3e;font-size:18px;line-height:35px;text-align:center;padding:0 15%}.testimonal-img{text-align:center}.testimonal-img .content{text-align:center;margin-top:22px}.testimonal-img .content h4{color:#3e3e3e;font-size:20px;margin-bottom:3px}.testimonal-img .content span{color:#3e3e3e;font-size:18px;line-height:29px}.htmega-testimonal-nav.slick-slider{max-width:35%;width:100%;margin:0 auto}.slick-slide.slick-active.slick-center .testimonal-img img{transform:scale(1)}.slick-slide.slick-active .testimonal-img img{transform:scale(.8);text-align:center;display:inline-block}.htmega-testimonial-style-5 .htmega-testimonal-nav .slick-track{margin-top:85px}.htmega-testimonal-nav .slick-slide:not(.slick-center) .content{opacity:0}.htmega-testimonial-style-5 .testimonial-shape{bottom:56%;left:49.5%;position:absolute;transform:translateX(-50%)}.htmega-testimonial-rating{display:flex;align-items:center;justify-content:center;color:#ff7b00;list-style:none;padding:0;margin:25px 0 0;gap:5px}.htmega-testimonial-rating li{font-size:14px}.htmega-testimonial-style-5 .htmega-testimonal-nav .content{position:absolute;left:50%;transform:translateX(-50%);z-index:2;bottom:0;width:max-content}.htmega-testimonial-style-5 .htmega-testimonal-nav .testimonal-image{margin-bottom:70px}.htmega-testimonial-style-6 .testimonal img{display:inline-block}.htmega-testimonial-style-6 .testimonal .content{background:#fff;text-align:center;padding:50px 9%;position:relative;box-shadow:0 0 10px rgb(82 182 188 / .25)}.htmega-testimonial-style-6 .testimonal .content p{font-size:16px;line-height:28px;color:#3e3e3e}.htmega-testimonial-style-6 .testimonal .content .triangle{position:absolute;top:100%;margin-top:-1px;border-right:20px solid #fff0;border-left:20px solid #fff0;border-top:20px solid #fff;border-bottom:20px solid #fff0;left:50%;transform:translateX(-50%)}.htmega-testimonial-style-6 .testimonal .clint-info{text-align:center;margin-top:40px}.htmega-testimonial-style-6 .testimonal .clint-info h4{color:#5c5c5c;font-size:22px;font-weight:700;margin-top:22px;margin-bottom:4px}.htmega-testimonial-style-6 .testimonal .clint-info span{color:#5c5c5c;font-weight:600;font-size:15px}.htmega-testimonial-style-6 .slick-arrow{width:36px;height:36px;color:#7d7d7d;border:0 none;background:#fff;border-radius:100%;font-size:24px;left:0;top:20%;z-index:999;transition:0.5s;box-shadow:0 0 10px rgb(82 182 188 / .25)}.htmega-testimonial-style-6 .slick-arrow:hover{background:#52b6bc;color:#fff}.htmega-testimonial-style-6 button.slick-next.slick-arrow{left:auto;right:0}.htmega-testimonial-style-6{position:relative;padding:0 200px}.htmega-testimonial-style-6 .testimonal .shape img,.htmega-testimonial-style-7 .testimonal .shape img{position:relative;top:10px}.htmega-testimonial-style-7 .testimonal{text-align:center}.htmega-testimonial-style-7 .testimonal p{color:#414141;font-size:30px;font-style:italic;line-height:48px;margin-top:26px;font-family:"Montserrat",sans-serif;margin-bottom:0;position:relative;z-index:2}.htmega-testimonial-style-7 .testimonal p::before{position:absolute;content:"";color:#ffebd1;content:"\f10e";font-family:Fontawesome;font-size:216px;left:50%;top:50%;z-index:-1;transform:translateX(-50%) translateY(-50%)}.htmega-testimonial-style-7 .testimonal h4{color:#3e3e3e;font-weight:600;font-size:20px;margin-bottom:9px}.htmega-testimonial-style-7 .testimonal .clint-info{margin-top:29px}.htmega-testimonial-style-7 .testimonal .clint-info span{color:#3e3e3e;font-size:18px}.htmega-testimonial-style-7 .testimonal img{display:inline-block}.htmega-testimonial-style-7 .slick-arrow{top:9%;left:16%;color:#aeaeae;font-size:48px;background:#fff0;border:0 none;z-index:2;transition:0.5s}.htmega-testimonial-style-7 .slick-arrow:hover{color:#f6ab4b}.htmega-testimonial-style-7 button.slick-next.slick-arrow{left:auto;right:16%}.htmega-testimonial-style-8{position:relative;padding:0 200px}.htmega-testimonial-style-8 .content{display:flex;align-items:center}.htmega-testimonial-style-8 .content .clint-info{padding-left:20px}.htmega-testimonial-style-8 .content .clint-info h4{color:#3e3e3e;font-size:20px;font-weight:700;margin-bottom:7px}.htmega-testimonial-style-8 .content .clint-info span{color:#3e3e3e;font-size:18px}.htmega-testimonial-style-8 p{color:#3e3e3e;font-size:18px;line-height:35px;margin:0;margin-top:20px}.htmega-testimonial-style-8 .slick-arrow{left:0;color:#aeaeae;font-size:48px;border:0 none;top:43%;transition:0.5s}.htmega-testimonial-style-8 .slick-arrow:hover{color:#f6ab4b}.htmega-testimonial-style-8 button.slick-next.slick-arrow{left:auto;right:0}.htmega-testimonial-style-8 .testimonal .shape img{position:relative;left:10px}.htmega-testimonial-style-9 .testimonal{background:#f7f8f9;padding:30px;margin-top:30px}.htmega-testimonial-style-9 .testimonal .content{display:flex;align-items:center}.htmega-testimonial-style-9 .testimonal .content .clint-info{padding-left:25px}.htmega-testimonial-style-9 .testimonal .content .clint-info h4{font-size:18px;color:#383838;margin:0}.htmega-testimonial-style-9 .testimonal .content .clint-info span{color:#1834a6;font-size:13px}.htmega-testimonial-style-9 .testimonal p{color:#5b5b5b;font-size:14px;line-height:26px;margin:0;margin-top:22px}.htmega-testimonial-style-9 .testimonal .shape img{position:relative;left:5px}.htmega-testimonial-style-9.htmega-testimonial-activation .testimonal .content{display:block}.htmega-testimonial-style-9 .htmega-testimonial-rating{justify-content:left}.htmega-testimonial-style-10 .testimonal-image{display:flex;justify-content:space-between;align-items:center}.htmega-testimonial-style-10 .htmega-testimonial-rating{margin:0}.htmega-testimonial-style-10 .testimonal img{float:none}.htmega-testimonial-style-10 .testimonal .content{overflow:hidden;padding-left:0}ul.htmega-testimonial-rating *{transition:all 0.0s}.htmega-testimonial-style-11 .content{text-align:center}.htmega-testimonial-style-11 .htmega-testimonal-nav .testimonal-image{margin-bottom:40px;padding:58px 0 43px 0}.htmega-testimonial-style-11 .slick-slide.slick-active.slick-center .testimonal-img img,.htmega-testimonial-style-11 .slick-slide.slick-active .testimonal-img img{transform:scale(1)}.htmega-testimonial-style-11 .slick-slide.slick-active.slick-center .testimonal-img{transform:scale(1.5);z-index:3}.htmega-testimonial-style-12 .testimonal{display:flex!important;align-items:center}.htmega-testimonial-style-12 .testimonal .shape img{left:0;float:none}.htmega-testimonial-style-12 .htmega-testimonial-rating{justify-content:left}.htmega-testimonial-style-12 .testimonal .content .clint-info{padding-left:0}.htmega-testimonial-style-12 .testimonal .content .clint-info::before{display:none}.htmega-testimonial-style-12 .testimonal-image{flex:0 0 34%}.htmega-testimonial-style-13 .testimonal{text-align:center;border-bottom:10px solid #fff0;margin-top:15px;background-color:#F7F8F9;padding:50px 30px}.htmega-testimonial-style-13 .testimonal-image{display:inline-block;margin-top:20px}.htmega-testimonial-style-13 .testimonal .clint-info h4{margin-top:9px;margin-bottom:4px}.htmega-testimonial-style-13 .testimonal:hover{margin-top:0;border-color:#DA9A28}.htmega-testimonial-style-13 .testimonal p{font-family:"Roboto",Sans-serif;font-size:19px;font-weight:400;line-height:32px}.htmega-sl-arraow-style-2.htmega-testimonial-area .slick-next{top:0;transform:translate(0)}.htmega-sl-arraow-style-2.htmega-testimonial-area .slick-prev{left:auto;right:0;top:67px;transform:translate(0)}.htmega-sl-arraow-style-3.htmega-testimonial-area .slick-prev{right:70px;left:auto}.htmega-sl-arraow-style-3.htmega-testimonial-area .slick-arrow{top:auto;bottom:0;transform:translate(0)}@media (max-width:767px){.htmega-testimonial-style-12 .testimonal{align-items:start;flex-direction:column;gap:30px}.htmega-testimonial-style-12 .testimonal .content{padding-left:0}}.htmega-form-wrapper form input:not([type="checkbox"],[type="radio"],[type="file"]),.htmega-form-wrapper form textarea,.htmega-form-wrapper form select{width:100%;border-radius:0}.htmega-form-wrapper .ajax-loader{bottom:0;position:absolute}.htmega-form-wrapper .form_no_select{color:red;font-size:20px}.htmega-form-style-1 form input:not([type="checkbox"],[type="radio"],[type="file"]),.htmega-form-style-1 select{height:55px;font-weight:300;margin-top:30px;padding:0 20px;border:1px solid #c1c1c1;font-family:"Montserrat",sans-serif;font-size:13px;color:#a2a2a2}.htmega-form-style-1 form input:focus,.htmega-form-style-1 select:focus{border:1px solid #18012c}.htmega-form-style-1 form input[type="submit"]{background-color:#0056ff;border:medium none;color:#fff;font-size:14px;font-weight:500;height:55px;line-height:55px;padding:0 29px;text-transform:uppercase;width:auto;transition:0.5s;font-family:"Montserrat",sans-serif}.htmega-form-style-1 form input[type="submit"]:hover{background-color:#18012c}.htmega-form-style-1 form textarea{border:1px solid #c1c1c1;min-height:175px;margin-top:30px;padding:20px;color:#a2a2a2;resize:none;font-family:"Montserrat",sans-serif;font-size:13px}.htmega-form-style-1 form textarea:focus{border:1px solid #18012c}.htmega-form-style-2 label{color:#fff;font-style:italic;font-weight:300;font-size:14px;margin-bottom:11px}.htmega-form-style-2 input:not([type="checkbox"],[type="radio"],[type="file"]),.htmega-form-style-2 select{height:55px;font-weight:300;margin-bottom:30px;padding:0 20px;border:0 none;font-family:"Montserrat",sans-serif;font-size:13px;background:rgb(255 255 255 / .3);color:#fff}.htmega-form-style-2 input:focus,.htmega-form-style-2 select:focus{border:1px solid #18012c}.htmega-form-style-2 input[type="submit"]{background-color:#fff;border:medium none;color:#0056ff;font-size:14px;font-weight:600;height:55px;line-height:54px;padding:0 29px;text-transform:uppercase;width:100%;transition:0.5s;font-family:"Montserrat",sans-serif;margin:0}.htmega-form-style-2 input[type="submit"]:hover{background-color:#18012c;color:#fff}.htmega-form-style-2 textarea{border:1px solid #c1c1c1;min-height:209px;padding:20px;color:#fff;resize:none;font-family:"Montserrat",sans-serif;font-size:13px;background:rgb(255 255 255 / .3);margin-bottom:30px;border:0 none}.htmega-form-style-2 textarea:focus{border:1px solid #18012c}.htmega-form-style-3 form input:not([type="checkbox"],[type="radio"],[type="file"]),.htmega-form-style-3 form select{color:silver;font-weight:300;font-style:italic;border:0 none;border-bottom:1px solid silver;padding:0;margin-bottom:50px;padding-bottom:4px;font-size:16px;font-family:"Montserrat",sans-serif}.htmega-form-style-3 form input:focus,.htmega-form-style-3 form select:focus{border-bottom:1px solid #18012c}.htmega-form-style-3 form input[type="submit"]{border:0 none;background:#0056ff;color:#fff;margin-top:40px;margin-bottom:0;height:55px;line-height:59px;padding:0 20px;transition:0.5s;box-shadow:0 0 10px rgb(0 0 0 / .1)}.htmega-form-style-3 form input[type="submit"]:hover{background:#fff;color:#0056ff}.htmega-form-style-3 form textarea{border:0 none;border-bottom:1px solid silver;font-style:italic;padding:0;min-height:150px;resize:none;color:silver;font-size:16px;font-family:"Montserrat",sans-serif}.htmega-form-style-3 form textarea:focus{border-bottom:1px solid #18012c}.htmega-form-style-4 form .input-box{display:flex;align-items:center;margin-bottom:30px}.htmega-form-style-4 form .input-box label{color:#000;font-weight:600;font-size:14px;flex-basis:16%}.htmega-form-style-4 form .input-box span{flex-basis:84%}.htmega-form-style-4 form .input-box input:not([type="checkbox"],[type="radio"],[type="file"]),.htmega-form-style-4 form .input-box select{background:#a2a2a2;color:#a2a2a2;font-weight:300;background:#f3f3f3;border:1px solid #c1c1c1;height:55px;line-height:55px;padding:0 20px;font-weight:"Montserrat",sans-serif}.htmega-form-style-4 form .input-box input:focus,.htmega-form-style-4 form .input-box select:focus{border:1px solid #18012c}.htmega-form-style-4 form .input-box textarea{background:#f3f3f3;border:1px solid #c1c1c1;min-height:200px;padding:20px;font-weight:"Montserrat",sans-serif}.htmega-form-style-4 form .input-box textarea:focus{border:1px solid #18012c}.htmega-form-style-4 form input[type="submit"]{background:#0056ff;width:auto;border:0 none;color:#fff;padding:0 30px;height:55px;line-height:55px;margin:0 0 0 90px;font-size:14px;font-weight:500;transition:0.5s}.htmega-form-style-4 form input[type="submit"]:hover{opacity:.7}.contact_form_container{background:#81abfe;padding:30px}.htmega-form-style-5 form input:not([type="checkbox"],[type="radio"],[type="file"]),.htmega-form-style-5 form select{margin-top:30px;border:1px solid #fff;height:50px;line-height:50px;color:#fff;font-weight:300;font-family:"Montserrat",sans-serif}.htmega-form-style-5 form input:focus,.htmega-form-style-5 form select:focus{border:1px solid #18012c}.htmega-form-style-5 form input[type="submit"]{background:#fff;height:55px;line-height:56px;border:0 none;padding:0 30px;color:#0056ff;font-weight:600;width:auto;transition:0.5s}.htmega-form-style-5 form input[type="submit"]:hover{opacity:.7}.htmega-form-style-5 form textarea{margin-top:30px;min-height:145px;border:1px solid #fff;padding:20px;font-weight:300;color:#fff;font-family:"Montserrat",sans-serif}.htmega-form-style-5 form textarea:focus{border:1px solid #18012c}.htmega-form-style-6 form input:not([type="checkbox"],[type="radio"],[type="file"]),.htmega-form-style-6 form select{background:#f3f3f3;border:0 none;height:55px;padding:0 20px;margin-bottom:30px;font-family:"Montserrat",sans-serif}.htmega-form-style-6 form input:not([type="checkbox"],[type="radio"],[type="file"]):focus,.htmega-form-style-6 form select:focus{border:1px solid #18012c}.htmega-form-style-6 form input[type="submit"]{width:auto;margin:0;padding:0 58px;background:#0056ff;color:#fff;height:58px;font-weight:600;line-height:61px;text-transform:uppercase;transition:0.5s;margin-top:10px}.htmega-form-style-6 form input[type="submit"]:hover{opacity:.7}.htmega-form-style-6 form label{font-size:14px;color:#000;font-weight:300;font-style:italic;font-family:"Montserrat",sans-serif}.htmega-form-style-6 form textarea{background:#f3f3f3;border:0 none;margin-bottom:30px;min-height:230px;resize:none;padding:20px;margin-bottom:30px;font-family:"Montserrat",sans-serif}.htmega-form-style-6 form textarea:focus{border:1px solid #18012c}input,textarea{-webkit-transition:all 0.30s ease-in-out;-moz-transition:all 0.30s ease-in-out;-ms-transition:all 0.30s ease-in-out;-o-transition:all 0.30s ease-in-out;outline:none}.htmega-form-wrapper .wpcf7-form-control .wpcf7-list-item{margin:0 1em 0 0}.htmega-login-form-wrapper form input:not([type="checkbox"],[type="radio"],[type="file"]){width:100%}.htmega-login-form-wrapper form input:not([type="checkbox"],[type="radio"],[type="file"]){padding:0 15px}.htmega-login-form-wrapper .htmega-login-button{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:40px}.htmega-login-form-style-1{background:#fff;box-shadow:0 0 10px rgb(0 0 0 / .1);padding:50px 70px}.htmega-login-form-style-1 h2{color:#000;font-size:30px;font-weight:600;margin-bottom:21px;font-family:"Montserrat",sans-serif}.htmega-login-form-style-1 form label{color:#000;font-size:13px;font-weight:300;margin-bottom:10px;font-family:"Montserrat",sans-serif}.htmega-login-form-style-1 form input:not([type="checkbox"]){background:#fff0;border:1px solid #f2f2f2;color:#757575;font-size:12px;margin-bottom:24px;font-family:"Montserrat",sans-serif;height:50px}.htmega-login-form-style-1 form input:not([type="checkbox"])[type="submit"]{margin:0;width:auto;background:#0056ff;color:#fff;height:43px;padding:0 40px;font-weight:600;text-transform:uppercase;font-size:14px;border:0 none;transition:0.4s ease-in-out}.htmega-login-form-style-1 form input:not([type="checkbox"])[type="submit"]:hover{background:#18012c;color:#fff}.log-remember{display:flex;justify-content:space-between;align-items:center;font-family:"Montserrat",sans-serif}.log-remember a.fright,.htmega-login-form-wrapper.htmega-login-form-style-3 label.lable-content,.htmega-login-form-wrapper.htmega-login-form-style-5 label.lable-content{color:#b1b1b1;font-size:12px;transition:0.4s;font-family:"Montserrat",sans-serif}.htmega-login-form-wrapper.htmega-login-form-style-3 label.lable-content,.htmega-login-form-wrapper.htmega-login-form-style-5 label.lable-content{padding-top:3px}.htmega-login-form-wrapper.htmega-login-form-style-5{padding:40px 20px}.htmega_message{display:none}#htmega_message .alert-success,.htmega_lodding_msg{color:#155724!important}#htmega_message .alert-danger{color:#721c24!important}.lable-content{display:block;position:relative;padding-left:29px;margin-bottom:0;cursor:pointer;font-size:22px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;font-family:"Montserrat",sans-serif}.login-wrapper form .log-remember label{margin:0}.lable-content input{position:absolute;opacity:0;cursor:pointer}.checkmark{position:absolute;top:0;left:0;height:18px;width:18px;border:1px solid #0056ff;margin-top:4px}.log-remember .checkmark{top:50%;margin-top:0;transform:translateY(-50%)}.lable-content:hover input~.checkmark{border:1px solid #0056ff}.checkmark:after{content:"";position:absolute;display:block}.lable-content input:checked~.checkmark:after{display:none}.lable-content .checkmark:after{left:50%;top:50%;width:6px;height:9px;border:solid #0056ff;border-width:0 2px 2px 0;-webkit-transform:rotate(45deg) translate(-50%);-ms-transform:rotate(45deg) translate(-50%);transform:rotate(45deg) translate(-50%);margin-top:-3px}.htmega-login-form-style-2{text-align:center;padding:40px 0}.htmega-login-form-style-2 form input{border:1px solid #fff;border-radius:5px;color:#666;padding:0 20px;margin-bottom:10px}.htmega-login-form-style-2 form input[type="submit"]{background:#0056ff;border:0 none;font-size:16px;text-transform:uppercase;height:60px;border-radius:5px;transition:0.3s ease-in-out;color:#fff}.htmega-login-form-style-2 form input[type="submit"]:hover{background:#18012c;color:#fff}.htmega-login-form-style-2 .separator span{display:block;color:#fff;font-size:14px;font-weight:600;margin-top:30px;position:relative;font-family:"Montserrat",sans-serif}.htmega-login-form-style-2 .separator span::before,.htmega-login-form-style-2 .separator span::after{position:absolute;left:0;top:50%;background:#fff;width:235px;height:2px;content:""}.htmega-login-form-style-2 .separator span::after{left:auto;right:0}.htmega-login-form-style-2 .log-remember a.fright{color:#fff}.htmega-login-form-style-2 form input::-webkit-input-placeholder{color:#666}.htmega-login-form-style-2 form input::-moz-placeholder{color:#666}.htmega-login-form-style-2 form input:-ms-input-placeholder{color:#666}.htmega-login-form-style-2 form input:-moz-placeholder{color:#666}.htmega-login-form-style-2 .checkmark,.htmega-login-form-style-4 .checkmark{border:1px solid #fff}.htmega-login-form-style-2 .lable-content,.htmega-login-form-style-4 .lable-content{color:#fff;font-size:12px}.htmega-login-form-style-2 .lable-content .checkmark:after,.htmega-login-form-style-4 .lable-content .checkmark:after{width:6px;height:9px;border:solid #fff;border-width:0 2px 2px 0}.htmega-login-form-style-2 .lable-content:hover input~.checkmark,.htmega-login-form-style-4 .lable-content:hover input~.checkmark{border:1px solid #fff}.htmega-login-form-style-2 .log-remember{margin-top:10px}.htmega-login-form-style-2 .htmega-user-login,.htmega-login-form-style-4 .htmega-user-login,.htmega-login-form-style-5 .htmega-user-login{color:#fff}.htmega-login-form-style-3{padding:60px 40px}.htmega-login-form-style-3 form input{border:0 none;border-bottom:1px solid #687ea5;padding:0;color:#687ea5;font-size:12px;font-weight:300;font-family:"Montserrat",sans-serif}.htmega-login-form-style-3 form input[type="submit"]{background:#0056ff;color:#fff;width:auto;height:50px;padding:0 55px;border:0 none;font-size:14px;text-transform:uppercase;transition:0.5s;font-weight:600}.htmega-login-form-style-3 form input[type="submit"]:hover{opacity:.7}.htmega-login-form-style-3{box-shadow:none;background:#fff0}.htmega-login-form-style-2 .htmega-user-login{text-align:left}.htmega-login-form-style-4{padding:100px 56px;text-align:center}.htmega-login-form-style-4 form input:not(input[type=checkbox]){background:rgb(255 255 255 / .3);border:0 none;margin-left:2px;height:70px;color:#fff;font-size:16px;font-family:"Poppins",sans-serif}.htmega-login-form-style-4 form input[type="submit"]{border:3px solid #fff;border-radius:8px;color:#fff;box-sizing:border-box;height:70px;font-size:24px;font-weight:600;text-transform:uppercase;margin-bottom:51px;font-family:"Montserrat",sans-serif;margin:0}.htmega-login-form-style-4 form input[type="submit"]:hover{background:#fff;color:#18012c}.htmega-service{margin-top:30px;text-align:center;transition:all 0.3s ease-in-out}.htmega-service svg{width:30px;height:auto}.htmega-svg-icon-box{line-height:1;display:flex;align-items:center;justify-content:center;height:100%;border-radius:100%;transition:all 0.3s ease-in-out}.htmega-service a.readmore_btn{border:1px solid #0056ff;display:inline-block;padding:0 42px;line-height:40px;font-size:14px;border-radius:30px;color:#0056ff;font-weight:600;transition:0.5s;text-decoration:none}.htmega-service a.readmore_btn:hover{background:#0056ff;color:#fff}.htmega-service .service-title a{text-decoration:none;transition:all .3s ease 0s}.htmega-service .thumb{display:inline-block}.htmega-service .thumb img{vertical-align:middle}.htmega-service .thumb a{display:block}.htmega-service-style-1 .icon{margin-bottom:30px;padding:0 12px}.htmega-service-style-1 .icon i{color:#ed552d;font-size:50px}.htmega-service-style-1 .content{padding:0 12px}.htmega-service-style-1 .content h4{color:#5b5b5b;font-size:18px;font-weight:400;margin-bottom:15px}.htmega-service-style-1 .content p{color:#8f8f8f;font-family:"Montserrat",sans-serif;font-size:15px;line-height:25px;margin:0;padding:0 0 35px;position:relative}.htmega-service-style-1 .content p::before{position:absolute;content:"";background:#969696;width:20px;height:1px;bottom:0;left:50%;transform:translateX(-50%)}.htmega-service-style-1 .content p::after{position:absolute;content:"";background:#969696;height:1px;width:30px;bottom:5px;left:50%;transform:translateX(-50%)}.htmega-service-style-2{background:#fff;padding:30px}.htmega-service-style-2 .content{padding-top:30px}.htmega-service-style-2 .content h4{color:#575757;font-size:22px;line-height:30px;margin-bottom:13px;padding:0 9px}.htmega-service-style-2 .content p{color:#818181;font-size:14px;line-height:24px;margin-bottom:35px}.htmega-service-style-3 .icon{border:1px solid #eff2f7;width:110px;height:110px;text-align:center;border-radius:100%;padding:10px;margin:0 auto;margin-bottom:27px;transition:0.4s}.htmega-service-style-3 .icon i{background:#eff2f7;border-radius:100%;text-align:center;font-size:40px;margin:0 auto;color:#454545;transition:0.4s;height:100%;width:100%;display:flex;align-items:center;justify-content:center}.htmega-service-style-3:hover .icon{border:1px solid #0056ff}.htmega-service-style-3:hover .icon i{background:#0056ff;color:#fff}.htmega-service-style-3 .content h4{color:#5f5f5f;font-size:16px;text-transform:uppercase;padding-bottom:20px;position:relative}.htmega-service-style-3 .content h4::before{position:absolute;content:"";background:#0056ff;width:30px;height:3px;left:50%;bottom:0;transform:translateX(-50%)}.htmega-service-style-3 .content p{color:#5b5b5b;font-size:14px;line-height:25px;padding:0 12px;margin:0}.htmega-service.htmega-service-style-3:hover:after,.htmega-service.htmega-service-style-3:hover:before{content:"";background:#fff0;width:2px;height:25px;top:50%;margin-top:-12px;left:0;position:absolute}.htmega-service.htmega-service-style-3:hover:before{left:auto;right:0}.htmega-service-style-4{background:rgb(255 255 255 / .15);padding:75px 11px}.htmega-service-style-4 .content h4{color:#b8b8b8;font-weight:300;text-transform:uppercase;margin-bottom:16px}.htmega-service-style-4 .content p{margin:0;color:#959595;font-weight:300;font-size:14px;line-height:24px}.htmega-service-style-4 .thumb{padding-bottom:33px;position:relative;margin-bottom:22px}.htmega-service-style-4 .thumb::before{position:absolute;content:"";background:#969696;width:30px;height:1px;bottom:0;left:50%;transform:translateX(-50%)}.htmega-service-style-4 .thumb::after{position:absolute;content:"";bottom:5px;left:50%;transform:translateX(-50%);background:#969696;width:20px;height:1px}.htmega-service-style-5 .content{padding-top:26px}.htmega-service-style-5 .content h4{color:#585858;font-size:17px;font-weight:600;margin-bottom:13px}.htmega-service-style-5 .content p{color:#414141;font-size:14px;line-height:24px;margin:0}.htmega-service-style-5 .thumb{position:relative}.htmega-service-style-5 .thumb::before{position:absolute;top:0;left:0;display:block;width:100%;height:100%;content:"";-webkit-transition:opacity 1s;transition:opacity 1s;opacity:0;background-image:-webkit-linear-gradient(top,#252a9c,#df09f9);background-image:-moz-linear-gradient(top,#252a9c,#df09f9);background-image:linear-gradient(0,#252a9c,#df09f9)}.htmega-service-style-5:hover .thumb::before{opacity:.3}.htmega-service-style-5 .thumb img{width:100%}.htmega-service-style-6{margin-top:12px}.htmega-service-style-6 .thumb,.htmega-service-style-6 .icon{border:1px solid #4e89fb;width:100px;height:100px;line-height:100px;border-radius:100%;float:left;text-align:center;margin-right:22px;margin-top:10px;overflow:hidden}.htmega-service-style-6>a{float:left}.htmega-service-style-6 .content{overflow:hidden}.htmega-service-style-6 .content p{font-size:14px;line-height:25px;color:#5b5b5b}.htmega-service-style-6 .content h4{color:#5f5f5f;font-size:24px;font-weight:600;margin-bottom:7px}.htmega-service-style-7{display:flex;margin-top:0;position:relative;z-index:1;padding:40px 20px;border-radius:8px}.htmega-service-style-7 .icon{margin-right:33px}.htmega-service-style-7 .icon i{color:#4c4c4c;font-size:40px;transition:0.4s}.htmega-service-style-7 .content h4{color:#4c4c4c;font-size:20px;font-weight:600;text-transform:uppercase;margin-bottom:8px;transition:0.4s}.htmega-service-style-7 .content p{color:#5b5b5b;font-size:14px;line-height:25px;margin:0;transition:0.4s}.htmega-service-style-7::before{background:#fff none repeat scroll 0 0;content:"";height:100%;left:0;opacity:1;position:absolute;top:0;transition:all 0.4s ease-in-out 0s;width:100%;z-index:-1}.htmega-service-style-7:hover::before{opacity:0}.htmega-service-style-7:hover .content h4,.htmega-service-style-7:hover .content p,.htmega-service-style-7:hover .icon i{color:#fff!important}@media (max-width:767px){.htmega-service.htmega-service-style-2 .thumb{display:block}.htmega-service.htmega-service-style-2 .thumb img{width:100%}}.breaking-news-title svg{width:20px}.breaking-news-default{border:1px solid #18012c;display:flex;align-items:center}.breaking-news-default .breaking-news-title{display:flex;height:80px;align-items:center}.breaking-news-default .breaking-news-title h5{position:relative;font-weight:600;font-size:30px;letter-spacing:.5px;margin:0;text-transform:uppercase;padding:0 48px;width:max-content;display:flex;align-items:center}.breaking-news-default .breaking-news-ticker{margin-left:20px;list-style:none;padding:0;margin:0;padding-left:22px;width:100%}.breaking-news-default .breaking-news-ticker li{padding:5px 0;height:100%;display:flex;align-items:center}.breaking-news-default .breaking-news-ticker li a{display:block;line-height:24px;font-size:16px;font-family:"Poppins",sans-serif;color:#18012c;text-decoration:none}.breaking-news-default .breaking-news-ticker li span.news_date{background:#d20001;color:#fff;font-size:12px;margin-left:30px;padding:5px 5px;border-radius:3px;display:inline-block;line-height:1}.breaking-news-default .breaking-news-nav{float:right;display:flex;height:80px;align-items:center;margin-right:42px}.breaking-news-default .breaking-news-nav button{border:1px solid #18012c;height:40px;margin:0 5px;padding:0;transition:all 0.3s ease-in-out 0s;width:40px;background:#fff0}.breaking-news-default .breaking-news-nav button i{color:#18012c;font-size:24px}.breaking-news-default .breaking-news-nav button svg{width:16px}.breaking-news-default .breaking-news-nav button svg path{fill:#18012c}.breaking-news-default::before{position:absolute;content:"";background:#1d62af;left:0;top:0;width:100%;height:100%;z-index:-1;transform:skew(-20deg)}.htmega-newsticker-style-2.breaking-news-default::before,.htmega-newsticker-style-3.breaking-news-default::before,.htmega-newsticker-style-4.breaking-news-default::before,.htmega-newsticker-style-6.breaking-news-default::before,.htmega-newsticker-style-5.breaking-news-default::before,.htmega-newsticker-style-7.breaking-news-default::before{display:none}.htmega-newsticker-style-1{border:0 none;float:left;position:relative;width:100%;z-index:1}.htmega-newsticker-style-1 .breaking-news-title{display:flex;align-items:center}.htmega-newsticker-style-1 .breaking-news-title h5{position:relative;left:-20px;display:block;color:#fff;font-weight:600;font-size:30px;letter-spacing:.5px;margin:0;text-transform:uppercase;height:60px;line-height:59px;padding:0 48px;display:flex;align-items:center}.htmega-newsticker-style-1 .breaking-news-title h5::before{position:absolute;content:"";transform:skew(-20deg);background:#d20001;left:0;top:0;width:100%;height:100%;z-index:-1}.htmega-newsticker-style-1 .breaking-news-title h5 i,.htmega-newsticker-style-1 .breaking-news-title h5 .htmega-news-tickr-svg-icon-box{width:40px;height:40px;color:#d20001;background:#fff;text-align:center;line-height:40px;border-radius:100%;font-size:28px;padding:0;margin-left:10px}.breaking-news-title h5 .htmega-news-tickr-svg-icon-box svg{height:auto}.htmega-news-tickr-svg-icon-box{display:flex;align-items:center;justify-content:center}.htmega-newsticker-style-1 .breaking-news-ticker{margin-left:20px;list-style:none;padding:0;margin:0;padding-left:22px}.htmega-newsticker-style-1 .breaking-news-ticker li{padding:5px 0}.htmega-newsticker-style-1 .breaking-news-ticker li a{color:#fff}.htmega-newsticker-style-1 .breaking-news-nav{float:right;display:flex;align-items:center;margin-right:42px;margin-left:auto}.htmega-newsticker-style-1 .breaking-news-nav button{border:1px solid #fff;margin:0 5px;transform:skew(-20deg)}.htmega-newsticker-style-1 .breaking-news-nav button:hover{border:1px solid #d20001;background:#d20001}.htmega-newsticker-style-1 .breaking-news-nav button i{color:#fff;font-size:24px}.htmega-newsticker-style-2{border:1px solid #1d62af;overflow:hidden}.htmega-newsticker-style-2 .breaking-news-title h5{position:relative;color:#fff;font-weight:600;font-size:20px;margin:0;text-transform:capitalize;padding:0 20px;background:#1d62af;font-style:italic;padding-right:0;align-self:stretch;display:flex;align-items:center;justify-content:center;width:max-content}.htmega-newsticker-style-2 .breaking-news-title h5::before{position:absolute;top:0;border-right:40px solid #fff0;border-top:40px solid #fff0;border-bottom:40px solid #fff0;content:"";border-left:40px solid #1d62af;left:100%;background:transparent!important;background-color:none!important;background-image:none!important}.htmega-newsticker-style-2 .breaking-news-ticker{padding-left:57px}.htmega-newsticker-style-2 .breaking-news-ticker li a{color:#181818}.htmega-newsticker-style-2 .breaking-news-nav{margin-right:29px}.htmega-newsticker-style-2 .breaking-news-nav button{margin:0 3px;border:1px solid #fff0;width:auto;height:auto}.htmega-newsticker-style-2 .breaking-news-nav button i{color:#000;font-size:30px;transition:0.3s ease-in-out}.htmega-newsticker-style-2 .breaking-news-nav button i:hover{color:#1d62af}.htmega-newsticker-style-3{border:1px solid #1d62af;border-radius:40px;overflow:hidden;display:flex}.htmega-newsticker-style-3 .breaking-news-title{order:3}.htmega-newsticker-style-3 .breaking-news-title{display:flex;align-items:center;background:#1d62af;border-radius:0 40px 40px 0}.htmega-newsticker-style-3 .breaking-news-title h5{position:relative;color:#fff;font-weight:600;font-size:20px;margin:0;text-transform:capitalize;padding:0 20px;font-style:italic;padding-right:20px;align-self:stretch;display:flex;align-items:center;justify-content:center;padding-left:0;width:max-content}.htmega-newsticker-style-3 .breaking-news-title h5::before{position:absolute;top:0;border-right:40px solid #1d62af;border-top:40px solid #fff0;border-bottom:40px solid #fff0;content:"";border-left:40px solid #fff0;right:100%;background:transparent!important;background-color:none!important;background-image:none!important}.htmega-newsticker-style-3 .breaking-news-ticker{flex-grow:1;order:2;padding-right:57px}.htmega-newsticker-style-3 .breaking-news-ticker li{padding:5px 0}.htmega-newsticker-style-3 .breaking-news-ticker li a{color:#181818}.htmega-newsticker-style-3 .breaking-news-ticker li a span.news_date{margin-left:30px}.htmega-newsticker-style-3 .breaking-news-nav{margin-right:0;float:left;margin-left:29px;order:1}.htmega-newsticker-style-3 .breaking-news-nav button{margin:0 3px;border:1px solid #fff0;width:auto;height:auto}.htmega-newsticker-style-3 .breaking-news-nav button i{color:#000;font-size:30px;transition:0.3s ease-in-out}.htmega-newsticker-style-3 .breaking-news-nav button i:hover{color:#1d62af}.htmega-newsticker-style-4{border:0 none;background:#1d62af;overflow:hidden}.htmega-newsticker-style-4 .breaking-news-title{display:flex;height:50px;align-items:center;background:#f05555;align-self:stretch;display:flex;align-items:center;justify-content:center}.htmega-newsticker-style-4 .breaking-news-title h5{position:relative;color:#fff;font-weight:600;font-size:18px;margin:0;text-transform:capitalize;padding:0 27px}.htmega-newsticker-style-4 .breaking-news-ticker{padding-left:30px}.htmega-newsticker-style-4 .breaking-news-ticker li{padding:5px 0}.htmega-newsticker-style-4 .breaking-news-ticker li a{display:block;color:#fff;font-size:14px;font-family:"Poppins",sans-serif}.htmega-newsticker-style-4 .breaking-news-nav{margin-right:-1px;height:50px}.htmega-newsticker-style-4 .breaking-news-nav button{margin:0 1px;border:1px solid #fff0;width:50px;height:50px;background:#4b7bb0}.htmega-newsticker-style-4 .breaking-news-nav button i{color:#fff;font-size:30px;transition:0.3s ease-in-out}.htmega-newsticker-style-4 .breaking-news-nav button i:hover{color:#18012c}.htmega-newsticker-style-5{border:0 none;overflow:hidden;background:#00C8FA}.htmega-newsticker-style-5.breaking-news-default::before{transform:skew(0deg)}.htmega-newsticker-style-5 .breaking-news-title{display:flex;height:50px;align-items:center;background:#f05555;align-self:stretch;display:flex;align-items:center;justify-content:center;position:relative}.htmega-newsticker-style-5 .breaking-news-title::before{position:absolute;top:50%;border-right:15px solid #fff0;border-top:15px solid #fff0;border-bottom:15px solid #fff0;content:"";border-left:15px solid #f05555;left:100%;transform:translateY(-50%)}.htmega-newsticker-style-5 .breaking-news-title h5{color:#fff;font-weight:600;font-size:18px;margin:0;text-transform:capitalize;padding:0 27px}.htmega-newsticker-style-5 .breaking-news-ticker{padding-left:34px}.htmega-newsticker-style-5 .breaking-news-ticker li{padding:5px 0}.htmega-newsticker-style-5 .breaking-news-ticker li a{display:block;color:#fff;font-size:14px;font-family:"Poppins",sans-serif}.htmega-newsticker-style-5 .breaking-news-nav{margin-right:11px;height:50px}.htmega-newsticker-style-5 .breaking-news-nav button{margin:0;border:1px solid #fff0;width:auto;height:auto}.htmega-newsticker-style-5 .breaking-news-nav button i{color:#fff;font-size:30px;transition:0.3s ease-in-out}.htmega-newsticker-style-5 .breaking-news-nav button i:hover{color:#18012c}.htmega-newsticker-style-6{border:1px solid #1d62af;overflow:hidden}.htmega-newsticker-style-6.breaking-news-default::before{transform:skew(0deg)}.htmega-newsticker-style-6 .breaking-news-title{height:60px;position:relative;z-index:1;padding:0 18px 0 0;width:max-content}.htmega-newsticker-style-6 .breaking-news-title::before{position:absolute;left:-16px;top:0;background:#1d62af;width:100%;height:100%;content:"";z-index:-1;transform:skew(-26deg)}.htmega-newsticker-style-6 .breaking-news-title h5{color:#fff;font-weight:600;font-size:18px;margin:0;text-transform:capitalize;padding:0 18px;z-index:1;position:relative}.htmega-newsticker-style-6 .breaking-news-ticker{padding-left:34px}.htmega-newsticker-style-6 .breaking-news-ticker li{padding:5px 0}.htmega-newsticker-style-6 .breaking-news-ticker li a{display:block;color:#000;font-size:14px;font-family:"Poppins",sans-serif}.htmega-newsticker-style-6 .breaking-news-nav{margin-right:11px;height:60px}.htmega-newsticker-style-6 .breaking-news-nav button{margin:0;border:1px solid #fff0;width:auto;height:auto}.htmega-newsticker-style-6 .breaking-news-nav button i{color:#fff;font-size:30px;transition:0.3s ease-in-out}.htmega-newsticker-style-6 .breaking-news-nav button i:hover{color:#18012c}.htmega-newsticker-style-7{border:1px solid #1d62af;overflow:hidden}.htmega-newsticker-style-7.breaking-news-default::before{transform:skew(0deg)}.htmega-newsticker-style-7 .breaking-news-title{display:flex;height:60px;align-items:center;align-self:stretch;justify-content:center;position:relative;z-index:1;padding:0 18px 0 0}.htmega-newsticker-style-7 .breaking-news-title::before{position:absolute;left:-10px;top:0;background:#1d62af;width:100%;height:100%;content:"";z-index:-1;border-radius:0 45px 0 0}.htmega-newsticker-style-7 .breaking-news-title h5{color:#fff;font-weight:600;font-size:18px;margin:0;text-transform:capitalize;padding:0 27px;z-index:1;position:relative}.htmega-newsticker-style-7 .breaking-news-ticker{padding-left:34px}.htmega-newsticker-style-7 .breaking-news-ticker li{padding:5px 0}.htmega-newsticker-style-7 .breaking-news-ticker li a{display:block;color:#000;font-size:14px;font-family:"Poppins",sans-serif}.htmega-newsticker-style-7 .breaking-news-nav{margin-right:12px;height:60px}.htmega-newsticker-style-7 .breaking-news-nav button{margin:0 1px;border:1px solid #fff0;width:38px;height:38px;background:#1d62af}.htmega-newsticker-style-7 .breaking-news-nav button i{color:#fff;font-size:30px;transition:0.3s ease-in-out}.htmega-newsticker-style-7 .breaking-news-nav button:hover{opacity:.7}@media (max-width:767px){.breaking-news-default{flex-direction:column;justify-content:center;overflow:hidden}.breaking-news-default .breaking-news-title{margin-bottom:15px;width:100%;min-height:45px}.breaking-news-default .breaking-news-title h5{padding:0 15px;width:100%;justify-content:center}.htmega-newsticker-style-1 .breaking-news-title h5{left:0}.htmega-newsticker-style-1 .breaking-news-ticker,.breaking-news-default .breaking-news-ticker{padding:0 15px}.htmega-newsticker-style-2 .breaking-news-nav{margin-right:0}.htmega-newsticker-style-2 .breaking-news-ticker{padding-left:0 15px}.htmega-newsticker-style-3 .breaking-news-title{border-radius:0;margin-bottom:0;margin-top:15px}.htmega-newsticker-style-5 .breaking-news-nav{margin-right:0}.htmega-newsticker-style-3 .breaking-news-nav{margin-left:0}.htmega-newsticker-style-6 .breaking-news-title::before{left:0;transform:skew(0)}.htmega-newsticker-style-7 .breaking-news-title::before{left:0;border-radius:0}.breaking-news-default .breaking-news-title{height:auto}.breaking-news-default.htmega-newsticker-style-1 .breaking-news-title{height:80px}.htmega-newsticker-style-4 .breaking-news-nav{margin-top:15px}}.htmega-social-share ul{list-style:none;margin:0;padding:0;list-style:none}.htmega-social-share ul li{font-family:"Montserrat",sans-serif;cursor:pointer;color:#fff}.htmega-social-share svg{width:20px;display:inline-block}.htmega-social-share.htmega-social-view-icon-title ul li{padding-right:15px}.htmega-social-share.htmega-social-view-title ul li{padding:0 15px}.htmega-social-share ul li i,.htmega-social-share ul li svg{display:block;float:left;height:42px;line-height:42px;width:42px}.htmega-share-counter{margin-left:5px}.htmega-social-style-1 ul li{display:inline-block;text-align:center;font-size:16px;margin-right:5px;margin-bottom:10px;transition:0.5s;line-height:42px}.htmega-social-style-1 ul li:hover{opacity:.7}.htmega-lightbox{position:relative;margin-top:30px;overflow:hidden}.htmega-lightbox .htmega-lightboxthumb a img{width:100%}.htmega-lightbox .htmega-lightbox-action{position:absolute;top:0;width:100%;height:100%;transition:0.5s;left:0;opacity:0;display:flex;align-items:center;justify-content:center}.htmega-lightbox .htmega-lightbox-action::before{position:absolute;width:100%;height:100%;top:0;background:rgb(0 0 0 / .5);content:"";left:0}.htmega-lightbox .htmega-lightbox-action a{position:absolute;top:50%;transform:translate(-50%,-50%);text-align:center;border:1px solid #fff;display:flex;border-radius:100%;left:50%;align-items:center;justify-content:center;width:30px;height:30px}.htmega-lightbox .htmega-lightbox-action.htmega-lightbox-button-type-button a{width:max-content}.htmega-lightbox .htmega-lightbox-action a i{color:#fff;font-size:25px}.image-popup-vertical-fit svg{fill:#fff;width:20px}.htmega-lightbox .htmega-lightbox-action a.play__btn i{border:1px solid #fff0}.htmega-lightbox:hover .htmega-lightbox-action{opacity:1}.mfp-no-margins img.mfp-img{padding:0}.mfp-no-margins .mfp-figure:after{top:0;bottom:0}.mfp-no-margins .mfp-container{padding:0}.lightbox_button_only .htmega-lightbox-action{opacity:1;position:static}.lightbox_button_only.htmega-lightbox .htmega-lightbox-action a{position:static;transform:translate(0,0)}.lightbox_button_only .htmega-lightbox-action::before{display:none}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{width:auto!important}.htmega-lightbox .image-popup-vertical-fit .htmega-player-container .magnify-video-active{background:#fff none repeat scroll 0 0;border:0 none;border-radius:100%;color:#18012c;display:inline-flex;align-items:center;justify-content:center;font-size:40px;text-align:center;transition:all 0.5s ease-in-out 0s;padding:10px 25px;text-decoration:none;position:relative}.htmega-player-container a{position:relative;display:inline-flex;align-items:center;gap:8px;transition:all 0.3s ease-in-out}.htmega-player-container .magnify-video-active *{line-height:initial}.htmega-player-container .magnify-video-active:hover{transform:scale(1.2);background:#18012c;color:#fff}a.magnify-video-active:focus,.mfp-iframe-holder .mfp-close:hover{outline:0;border:none}.mfp-iframe-holder .mfp-close,.mfp-iframe-holder .mfp-close:hover{display:inline-block;width:auto;background:#fff0}.htmega-player-container .magnify-video-active i,.htmega-player-container .magnify-video-active img{position:relative;z-index:1}.htmega-video-mark{position:absolute;pointer-events:none;left:50%;top:50%}.htmega-video-mark .htmega-wave-pulse{width:1px;height:0;margin:0 auto}.htmega-video-mark .htmega-wave-pulse::after,.htmega-video-mark .htmega-wave-pulse::before{opacity:0;content:'';display:block;position:absolute;width:200px;height:200px;top:50%;left:50%;border-radius:50%;border:3px solid #fff;animation:zoomBig 2.25s linear infinite;animation-delay:0s}.htmega-video-mark .htmega-wave-pulse::before{animation-delay:.75s}.htmega-player-container iframe.playerBox{width:100%!important;margin:0!important;height:100%!important}@keyframes zoomBig{0%{transform:translate(-50%,-50%) scale(0);opacity:1;border-width:4px}40%{opacity:.8;border-width:3px}65%{border-width:2px}100%{transform:translate(-50%,-50%) scale(1);opacity:0;border-width:2px}}.htmega-search-box input:focus{outline:none}.htmega-search-box .btn-search{background:#fff0;padding:0}.htmega-search-box svg{width:20px;margin-top:8px}.htmega-search-style-1{position:relative}.htmega-search-style-1 input,.htmega-search-style-1 input[type='text']{border:1px solid #ccc;width:100%;border-radius:22px;transition:all .3s ease-in-out;height:45px;color:#999;font-size:14px;padding:0 78px 0 20px}.htmega-search-style-1 input:focus{width:100%;border:1px solid hotpink}.htmega-search-style-1 input:focus~button{width:36px}.htmega-search-style-1 input:focus~button.btn-search{background:hotpink;color:#fff;border-radius:20px}.htmega-search-style-1 input:focus~button.btn-reset{right:-22px}.htmega-search-style-1 button{transition:all .3s ease-in-out;border:none;height:36px;position:absolute;right:4px;top:50%;width:70px;transform:translateY(-50%);padding:0}.htmega-search-style-1 button.btn-search{background:#0056ff;border-radius:0 20px 20px 0;color:#fff;transition:all .3s ease-in-out}.htmega-search-style-1 button.btn-search svg path{fill:#fff}.htmega-search-style-2{display:inline-block;position:relative;height:60px;float:right;padding:0;position:relative;width:100%}.htmega-search-style-2 input[type="text"]{height:60px;font-size:17px;display:inline-block;font-weight:100;border:none;outline:none;color:#fff;padding:0;padding-right:70px;width:0;position:absolute;top:0;right:0;background:none;z-index:3;transition:width 0.5s cubic-bezier(0,.795,0,1);cursor:pointer}.htmega-search-style-2 input[type="text"]:focus{width:100%;z-index:1;border-bottom:1px solid #333;cursor:text}.htmega-search-style-2 button.btn-search{width:63px;display:inline-block;color:#333;float:right;background:#fff0;border:none;position:absolute;top:0;right:0;z-index:2;cursor:pointer;cursor:pointer;transition:width 0.4s cubic-bezier(0,.795,0,1)}.htmega-search-style-3{float:right;height:40px;position:relative;width:100%}.htmega-search-style-3 input[type="text"]{border:1px solid #18012c;font-size:12px;height:40px;position:absolute;transition:all .3s ease-in;width:50%;right:0;color:#18012c;font-size:14px;transition:all .3s ease-in-out;padding:0 20px;padding-right:63px}.htmega-search-style-3 input[type="text"]:focus{width:100%;border-radius:20px;border:1px solid #ed552d}.htmega-search-style-3 input[type="text"]:focus~button{background:#ed552d;border:1px solid #ed552d;border-radius:0 20px 20px 0;color:#fff!important}.htmega-search-style-3 button{background:#fff0;transition:all .3s ease-in;position:absolute;right:0;border:0 none;transition:all .3s ease-in-out;width:42px;text-align:center;height:100%;border:0 none}.htmega-search-style-4{background-color:#fff;position:relative;overflow:hidden;float:right}.htmega-search-style-4 form{width:45px;transition:all 0.5s ease}.htmega-search-style-4:before{content:'';display:block;width:3px;height:100%;position:relative;background-color:#ff4888;transition:all .5s ease}.htmega-search-style-4 form.open{width:100%}.htmega-search-style-4 form.open:before{height:20px;margin:15px 8px 10px 29px;position:absolute}.htmega-search-style-4 .search-box{width:100%;height:100%;box-shadow:none;border:none;background:#fff0;color:#ff4888;padding:0 48px 0 45px;font-size:14px}.htmega-search-style-4 .search-box:focus{outline:none}.htmega-search-style-4 .search-button{width:45px;height:45px;display:block;position:absolute;right:0;top:50%;cursor:pointer;transform:translateY(-50%)}.htmega-search-style-4 .search-icon{width:20px;height:20px;border-radius:40px;border:2px solid #ff4888;display:block;position:relative;margin-left:10px;transition:all 0.5s ease;top:10px}.htmega-search-style-4 .search-icon:before{content:'';width:3px;height:8px;position:absolute;right:-2px;top:12px;display:block;background-color:#ff4888;transform:rotate(-45deg);transition:all 0.5s ease}.htmega-search-style-4 .search-icon:after{content:'';width:3px;height:9px;position:absolute;right:-8px;top:17px;display:block;background-color:#ff4888;transform:rotate(-46deg);transition:all 0.5s ease}.htmega-search-style-4 form.open .search-icon{margin:0;width:35px;height:35px;border-radius:100%;top:5px}.htmega-search-style-4 form.open .search-icon:before{transform:rotate(52deg);right:12px;top:12px;height:18px}.htmega-search-style-4 form.open .search-icon:after{transform:rotate(-230deg);right:12px;top:2px;height:18px}.htmega-search-style-5 button{color:#f45862;font-size:24px;border:0 none;outline:none;background:#fff0}.block-bg{background:rgb(22 22 27 / .97) none repeat scroll 0 0;height:100%;left:0;opacity:0;position:fixed;text-align:center;top:0;transform:scale(.7);transition:-webkit-transform 0.8s ease 0s,-moz-transform 0.8s ease 0s,-o-transform 0.8s ease 0s,transform 0.8s ease 0s,opacity 0.5s ease 0s,visibility 0.5s ease 0s;visibility:hidden;width:100%;z-index:999}.block-bg.is-visible{opacity:1;transform:scale(1);visibility:visible}.block-bg .close__wrap{color:#fff;cursor:pointer;font-size:12px;font-weight:700;line-height:25px;margin-top:-12.5px;padding-right:25px;position:absolute;right:49px;text-transform:uppercase;z-index:11;transition:0.4s;top:65px}.block-bg .close__wrap:hover{color:#fff}.block-bg .close__wrap::after{content:"\f00d";font-family:'FontAwesome';font-size:24px;position:relative;right:0;top:0}.minisearch .field__search{left:0;margin:0 auto auto;max-width:1000px;padding:0 5px;position:fixed;right:0;top:50%;width:90%}.minisearch .field__search input{-moz-border-bottom-colors:none;-moz-border-left-colors:none;-moz-border-right-colors:none;-moz-border-top-colors:none;background:#fff0 none repeat scroll 0 0;border-color:currentcolor currentcolor #ebebeb;-o-border-image:none;border-image:none;border-style:none none solid;border-width:0 0 1px;color:#fff;height:60px;padding:10px 60px 10px 10px;position:static;transition:all 0.3s ease-in-out 0s;width:100%;z-index:1;font-size:16px;outline:none}.minisearch .field__search .action{position:absolute;right:0;top:0;z-index:2}.minisearch .field__search .action button{color:#797979;display:inline-block;font-size:26px;height:60px;left:0;line-height:60px;text-align:center;top:0;width:60px;padding:0!important;margin:0!important}.minisearch .field__search .action button:hover{background:#fff0}@media (max-width:991px){.block-bg .close__wrap{right:0}}blockquote{margin:0}blockquote cite{font-family:"Montserrat",sans-serif}.htmega-blockquote blockquote::before{display:none}.htmega-blockquote blockquote img,.htmega-blockquote blockquote .blockquote_icon{position:absolute}.htmega-blockquote blockquote img{position:absolute;width:100px;z-index:0}.htmega-blockquote blockquote p{margin:0}.htmega-blockquote-position-lefttop blockquote img,.htmega-blockquote-position-lefttop blockquote .blockquote_icon{left:0;top:0}.htmega-blockquote-position-leftcenter blockquote img,.htmega-blockquote-position-leftcenter blockquote .blockquote_icon{left:0;top:50%;transform:translateY(-50%)}.htmega-blockquote-position-leftbottom blockquote img,.htmega-blockquote-position-leftbottom blockquote .blockquote_icon{left:0;bottom:0}.htmega-blockquote-position-centertop blockquote img,.htmega-blockquote-position-centertop blockquote .blockquote_icon{left:50%;top:0;transform:translateX(-50%)}.htmega-blockquote-position-center blockquote img,.htmega-blockquote-position-center blockquote .blockquote_icon{left:50%;top:50%;transform:translate(-50%,-50%)}.htmega-blockquote-position-centerbottom blockquote img,.htmega-blockquote-position-centerbottom blockquote .blockquote_icon{left:50%;bottom:0;transform:translateX(-50%)}.htmega-blockquote-position-righttop blockquote img,.htmega-blockquote-position-righttop blockquote .blockquote_icon{right:0;top:0}.htmega-blockquote-position-rightcenter blockquote img,.htmega-blockquote-position-rightcenter blockquote .blockquote_icon{right:0;top:50%;transform:translateY(-50%)}.htmega-blockquote-position-rightbottom blockquote img,.htmega-blockquote-position-rightbottom blockquote .blockquote_icon{right:0;bottom:0}blockquote .blockquote_icon svg{width:15px}.htmega-blockquote blockquote{background:#f4f4f4;padding:50px 62px 50px 56px;position:relative;border:0}.htmega-blockquote blockquote .blockquote_content{font-size:18px;line-height:33px;color:#5b5b5b;font-style:normal;font-weight:600;margin-bottom:17px;margin-bottom:18px;position:relative;z-index:1}.htmega-blockquote blockquote cite{color:#0056ff;font-weight:600;font-style:normal;margin:0;padding-left:35px;position:relative}.htmega-citeseparator-position-after blockquote cite{padding-left:0;padding-right:35px}.htmega-citeseparator-position-none blockquote cite{padding-left:0;padding-right:0}.htmega-blockquote blockquote cite::before{position:absolute;background-color:#0056ff;content:"";height:4px;width:20px;left:0;top:50%;transform:translateY(-50%)}.htmega-citeseparator-position-after blockquote cite::before{right:0;left:auto;top:50%}.htmega-citeseparator-position-none blockquote cite::before{display:none}.htmega-instragram{text-align:center}.htmega-instragram ul.htmega-instagram-list{padding:0;margin:0;list-style:none;margin:0 -5px}.htmega-instragram ul.htmega-instagram-list li{float:left;width:25%;padding:0 5px;margin-bottom:10px;overflow:hidden;position:relative}.htmega-instragram ul.htmega-instagram-list li img{width:100%;vertical-align:middle}.htmega-instragram ul.htmega-instagram-list li a{text-decoration:none}.htmegainstagram-column-1 .htmega-instragram ul.htmega-instagram-list li{width:100%}.htmegainstagram-column-2 .htmega-instragram ul.htmega-instagram-list li{width:50%}.htmegainstagram-column-3 .htmega-instragram ul.htmega-instagram-list li{width:33.33%}.htmegainstagram-column-5 .htmega-instragram ul.htmega-instagram-list li{width:20%}.htmegainstagram-column-6 .htmega-instragram ul.htmega-instagram-list li{width:16.66%}.htmega-instragram .instagram_follow_btn{background:#f75876 none repeat scroll 0 0;border:0 none;color:#fff;display:inline-block;font-size:14px;font-weight:500;margin-top:70px;text-decoration:none;transition:all 0.4s ease-in-out 0s;display:inline-flex;align-items:center}.htmega-instragram .instagram_follow_btn:hover{opacity:.7;color:#000}.htmega-instragram .instagram_follow_btn i{width:42px;height:43px;line-height:42px;font-size:16px;text-align:center;display:inline-grid;align-items:center}.htmega-instragram .instagram_follow_btn span{padding:0 16px;font-weight:600;height:42px;line-height:42px}.htmega-instragram .instagram_follow_btn.possition-center{position:absolute;top:50%;transform:translateY(-50%) translateX(-50%);left:50%;background:#fff;border-radius:6px;color:#000}.htmega-instragram .instagram_follow_btn.possition-center span{padding:0 24px}.htmega-instragram ul.htmega-instagram-list{margin:0 -5px;overflow:hidden;display:flex;flex-flow:row wrap}.htmega-instragram ul.htmega-instagram-list li>a{display:block;position:relative}.htmega-instragram ul.htmega-instagram-list li .instagram-clip{position:absolute;top:0;left:0;width:100%;text-align:center;z-index:3;height:100%;transition:0.4s ease-in-out;opacity:0}.htmega-instragram ul.htmega-instagram-list li .instagram-clip::before{position:absolute;background-color:rgb(0 0 0 / .7);content:"";left:10px;top:10px;bottom:10px;right:10px;z-index:-1}.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-like-comment{padding:30px 0}.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-like-comment p{color:#fff;margin:0 15px}.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn{position:absolute;top:50%;transform:translateY(-50%);width:100%}.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn a{display:inline-block}.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn a i{color:#fff;font-size:43px}.htmega-instragram ul.htmega-instagram-list li:hover .instagram-clip{opacity:1}.htmega-instragram ul.htmega-instagram-list li .instagram-clip .htmega-content .zoom_icon{display:inline-block}.htmega-instragram-style-2 ul.htmega-instagram-list li{padding:0;margin:0}.htmega-instragram-style-2 ul.htmega-instagram-list{margin:0;margin-left:-15px;margin-right:-15px}.htmega-instragram-style-2 ul.htmega-instagram-list li{margin:0;margin-bottom:0;overflow:hidden}.htmega-instragram-style-2 ul.htmega-instagram-list li a img{transition:0.3s ease-out;transition-property:opacity,transform,filter;width:100%}.htmega-instragram-style-2 ul.htmega-instagram-list li:hover a img{transform:scale3d(1.1,1.1,1);opacity:.8}.htmega-instragram .slick-arrow{position:absolute;top:45%;left:-20px;z-index:2;width:30px;height:30px;border-radius:100%;background:#f75876;border:1px solid #f75876;color:#fff;text-align:center;transition:0.4s ease-in-out;opacity:0;padding:0;line-height:1}.htmega-instragram .htmega-carosul-next.slick-arrow{left:auto;right:-20px}.htmega-instragram ul.htmega-instagram-list:hover .slick-arrow{opacity:1;left:0}.htmega-instragram ul.htmega-instagram-list:hover .htmega-carosul-next.slick-arrow{opacity:1;right:0;left:auto}.htmega-instragram .slick-dots{position:relative;bottom:0}.htmega-instragram .slick-dots li{border-radius:100%;display:inline-block;height:15px;margin:0 3px!important;width:15px!important;background:#f75876;float:none!important}.htmega-instragram .slick-dots li button{padding:0}.htmega-instragram .slick-dots li button::before{display:none}.htmega-instragram .slick-dots li.slick-active{background:#000}.htmega-instragram-style-2 a.instagram_follow_btn{position:absolute;top:50%;transform:translateY(-50%) translateX(-50%);left:50%;background:#fff;border-radius:6px;color:#000;margin-top:0;z-index:5}.htmega-instragram-style-3 ul li{position:relative}.htmega-instragram-style-3 ul li a img{transition:all .15s ease-in-out}.htmega-instragram-style-3 ul li .instagram-clip{position:absolute;top:0;left:0;right:0;height:50px;background:rgb(255 64 95 / .9);display:flex;justify-content:space-around;-webkit-transform:translateY(-100%);transform:translateY(-100%);transition:all .15s ease-in-out;color:#FFF;height:50px!important;line-height:50px}.htmega-instragram-style-3 ul li .instagram-clip::before{display:none}.htmega-instragram-style-3 ul li .instagram-clip .instagram-like-comment{display:flex;align-items:center;padding:0!important}.htmega-instragram-style-3 ul li .instagram-clip .instagram-like-comment p{margin:0 15px}.htmega-instragram-style-3 ul li:hover .instagram-clip{-webkit-transform:translateX(0);transform:translateX(0)}.htmega-instragram-style-3 ul li:hover a img{opacity:.7;-webkit-transform:scale(1.15) translate3d(0,0,0);transform:scale(1.15) translate3d(0,0,0)}.htmega-instragram-style-3 ul.htmega-instagram-list li .instagram-clip .htmega-content{display:flex;align-items:center}.htmega-instragram-style-3 ul.htmega-instagram-list li .instagram-clip .htmega-content .instagram-btn{position:static;transform:translateY(0);display:flex}.htmega-instragram-style-3 ul.htmega-instagram-list li .instagram-clip .htmega-content .zoom_icon{display:flex}.htmega-instragram-style-4 ul.htmega-instagram-list li{margin:0;margin-bottom:0;overflow:hidden;width:25%}.htmega-instragram-style-4 ul.htmega-instagram-list li a img{transition:0.3s ease-out;transition-property:opacity,transform,filter;width:100%}.htmega-instragram-style-4 ul.htmega-instagram-list li:hover a img{transform:scale3d(1.2,1.2,1);opacity:.6}.instragram-icon-svg{display:flex;justify-content:center}.htmega-switcher-btn{text-align:center}.htmega-switcher-nav{display:inline-block!important;background:#eee;border-radius:30px;overflow:hidden}.htmega-switcher-nav span{display:inline-block;color:#444;font-size:14px;font-weight:600;text-transform:uppercase;padding:18px 32px;z-index:1;position:relative;font-family:"Montserrat",sans-serif;cursor:pointer}.htmega-switcher-nav span i{margin-right:5px}.htmega-switcher-nav svg{width:20px;float:left;margin-right:8px}.htmega-switcher-nav span::before{height:100%;top:0;z-index:0;content:'';width:0;position:absolute;left:0;transition:all 300ms ease-out;z-index:-1}.htmega-switcher-nav span.htb-active{color:#fff}.htmega-switcher-nav span.htb-active::before{width:100%;background-color:#ed552d}.htmega-switcher-toggle-title{text-transform:uppercase;font-weight:600}.htmega-switcher-toggle{margin:20px 0 30px 0;text-align:center;font-weight:400}.htmega-switch-toggle{position:relative;display:inline-block;width:60px;height:34px;margin:0 15px 0 15px;line-height:36px}.htmega-switcher-toggle i{margin-right:7px}.htmega-switche-toggle-slider{border-radius:34px;position:absolute;cursor:pointer;top:0;left:0;right:0;bottom:0;background-color:#ccc;-webkit-transition:.4s;transition:.4s}input:checked+.htmega-switche-toggle-slider{background-color:#2196F3}input:checked+.htmega-switche-toggle-slider:before{-webkit-transform:translateX(26px);-ms-transform:translateX(26px);transform:translateX(26px)}.htmega-switche-toggle-slider:before{position:absolute;border-radius:50%;content:"";height:26px;width:26px;left:4px;bottom:4px;background-color:#fff;-webkit-transition:.4s;transition:.4s}.htmega-single-toggle-switch.toggle-tab-pane{display:none}.htmega-single-toggle-switch.toggl-active{display:block}.htmega-register-wrapper form input,.htmega-register-wrapper form textarea{padding:0 15px;width:100%;background:#fff0;border-radius:0}.htmega-register-wrapper .alert{margin:0 10px 15px}.htmega-user-login{padding:10px;text-align:center}.htmega-register-wrapper label{display:block}.user-register-header h2{font-size:36px;font-weight:700;margin-top:0;margin-bottom:10px}.user-register-header p{font-size:18px;font-weight:600;margin-bottom:40px}.user-register-header p a{margin-left:5px}.user-register-header{text-align:left}.user-register-header p a{transition:.3s}.htmega-register-style-1{background:#fa4a79;padding-bottom:40px}.htmega-register-style-1 form{padding:0 30px 0}.htmega-register-style-1 form textarea{background:#fb5c87 none repeat scroll 0 0;border-radius:0;border:1px solid #fff}.htmega-register-style-1 form input,.htmega-register-style-1 form textarea{background:#fb5c87 none repeat scroll 0 0;border:1px solid #fff;border-radius:0;color:#fff;font-family:"Montserrat",sans-serif;font-size:12px;font-weight:300;height:50px;margin-bottom:30px}.htmega-register-wrapper.htmega-register-style-1 .user-register-header{padding:30px 30px 0}.htmega-register-wrapper.htmega-register-style-1 .user-register-header h2,.htmega-register-wrapper.htmega-register-style-1 .user-register-header p{color:#fff}.htmega-register-style-1 form input[type="submit"]{width:auto;margin:0 auto;text-align:center;background:#fff;font-weight:600;color:#fa4a79;margin-top:10px;font-size:14px;padding:0 47px;transition:0.5s}.htmega-register-wrapper:not(.htmega-register-style-3) .htmega-register-form form a:not(.terms-conditions){width:50%;background:#fff;padding:11px 47px;transition:.3s;margin:15px auto 0;display:inline-block;text-align:center;vertical-align:middle;color:#fa4a79;font-weight:600;font-family:"Montserrat",sans-serif;font-size:14px}.htmega-register-wrapper:not(.htmega-register-style-3) .htmega-register-form form a:hover{opacity:.7}.htmega-register-wrapper.htmega-register-style-6 .htmega-register-form form a:hover{opacity:1}.htmega-register-wrapper .separator span{font-size:15px;display:inline-block;margin-top:10px}.htmega-register-style-1 form input[type="submit"]:hover{opacity:.7}.htmega-register-style-1 form input::-webkit-input-placeholder,.htmega-register-style-1 form textarea::-webkit-input-placeholder{color:#fff}.htmega-register-style-1 form input::-moz-placeholder,.htmega-register-style-1 form textarea::-moz-placeholder{color:#fff}.htmega-register-style-1 form input:-ms-input-placeholder,.htmega-register-style-1 form textarea::-ms-input-placeholder{color:#fff}.htmega-register-style-1 form input:-moz-placeholder,.htmega-register-style-1 form textarea::-ms-input-placeholder{color:#fff}.htmega-register-style-2{background:#7ca7f9;padding:0 80px 50px}.htmega-register-style-2 form label{color:#666;font-weight:400;font-size:12px;margin-bottom:8px;font-family:"Montserrat",sans-serif}.termscondition label.htmega-form-label{display:inline;margin:0!important}.htmega-register-wrapper form textarea{padding:15px 20px}.termscondition input[type="checkbox"]{width:auto;height:auto!important;margin:0}.htmega-register-style-2 form input{padding:0 20px}.htmega-register-style-2 form input,.htmega-register-style-2 form textarea{border:1px solid #fff;color:#fff;margin-bottom:30px;font-weight:300;font-family:"Montserrat",sans-serif}.htmega-register-style-2 form input[type="submit"]{width:auto;text-align:center;background:#fff;font-weight:600;color:#0056ff;font-size:14px;padding:0 47px;transition:0.5s;height:50px;margin-top:10px;margin-bottom:0}.htmega-register-style-2 form input[type="submit"]:hover{opacity:.7}.htmega-register-style-2 form input::-webkit-input-placeholder,.htmega-register-style-2 form textarea::-webkit-input-placeholder{color:#fff}.htmega-register-style-2 form input::-moz-placeholder,.htmega-register-style-2 form textarea::-moz-placeholder{color:#fff}.htmega-register-style-2 form input:-ms-input-placeholder,.htmega-register-style-2 form textarea:-ms-input-placeholder{color:#fff}.htmega-register-style-2 form input:-moz-placeholder,.htmega-register-style-2 form textarea:-moz-placeholder{color:#fff}.htmega-register-style-3{padding:0 56px 100px;text-align:center}.htmega-register-style-3 form .input_box{display:flex;margin-bottom:30px;align-items:center}.htmega-register-form .input_box .fa-lock:before{font-family:'FontAwesome';content:"\f023"}.htmega-register-style-3 form .input_box i{background:rgb(255 255 255 / .3);height:70px;padding:0 20px;font-weight:400;line-height:70px;color:#fff;text-align:center;font-size:34px;border-radius:8px 0 0 8px}.htmega-register-wrapper.htmega-register-style-3 .user-register-header{padding-top:90px}.htmega-register-wrapper.htmega-register-style-3 .user-register-header p,.htmega-register-wrapper.htmega-register-style-3 .user-register-header h2{color:#fff}.htmega-register-style-3 form .input_box input,.htmega-register-style-3 form .input_box textarea{background:rgb(255 255 255 / .3);border:0 none;margin-left:2px;height:70px;border-radius:0 8px 8px 0;color:#fff;font-size:16px;font-family:"Poppins",sans-serif}.htmega-register-style-3 form .input_box input[type="submit"]{border:3px solid #fff;border-radius:8px;color:#fff;box-sizing:border-box;height:90px;font-size:24px;font-weight:600;text-transform:uppercase;margin-bottom:51px;font-family:"Montserrat",sans-serif;transition:0.5s}.htmega-register-style-3 form input[type="submit"]{border:3px solid #fff;border-radius:8px;color:#fff;box-sizing:border-box;height:90px;font-size:24px;font-weight:600;text-transform:uppercase;margin-bottom:51px;font-family:"Montserrat",sans-serif}.htmega-register-style-3 form input[type="submit"]:hover{background:#ffffff!important;color:#18012c}.htmega-register-style-3 .login a{border:3px solid #fff;display:block;height:90px;line-height:90px;color:#fff;font-size:24px;font-weight:600;border-radius:8px;margin-top:56px;transition:0.5s;font-family:"Montserrat",sans-serif;text-decoration:none}.htmega-register-style-3 .login a:hover{background:#fff;color:#18012c}.htmega-register-style-3 .separator span{color:#fff;font-size:24px;font-weight:500;padding:0 24px;background:#fff0;position:relative;z-index:99;display:block;font-family:"Montserrat",sans-serif}.htmega-register-style-3 .separator span::before{content:"";width:130px;height:1px;left:0;top:50%;background:#fff;position:absolute;display:block}.htmega-register-style-3 .separator span::after{background:#fff;position:absolute;content:"";width:130px;height:1px;right:0;top:50%}.htmega-register-style-3 form input[type="submit"]:hover{background:#fff;color:#18012c}.htmega-register-style-3 form input::-webkit-input-placeholder,.htmega-register-style-3 form .input_box textarea::-webkit-input-placeholder{color:#fff}.htmega-register-style-3 form input::-moz-placeholder,.htmega-register-style-3 form .input_box textarea::-moz-placeholder{color:#fff}.htmega-register-style-3 form input:-ms-input-placeholder,.htmega-register-style-3 form .input_box textarea:-ms-input-placeholder{color:#fff}.htmega-register-style-3 form input:-moz-placeholder,.htmega-register-style-3 form .input_box textarea:-moz-placeholder{color:#fff}.htmega-register-style-3 form .input_box input{margin-bottom:0!important}.htmega-register-style-4{padding:0 40px}.htmega-register-style-4 form input,.htmega-register-style-4 form textarea{margin-bottom:17px;border:0 none;border-bottom:1px solid #687ea5;padding:0;color:#687ea5;font-size:12px;font-weight:300;font-family:"Montserrat",sans-serif}.htmega-register-style-4 form input[type="submit"]{background:#0056ff;color:#fff;width:auto;height:50px;padding:0 40px;border:0 none;font-size:14px;text-transform:uppercase;border-radius:25px;transition:0.5s;margin-top:10px}.htmega-register-style-4 form input[type="submit"]:hover{opacity:.7}.htmega-register-style-4 form input::-webkit-input-placeholder,.htmega-register-style-4 form textarea::-webkit-input-placeholder{color:#687ea5}.htmega-register-style-4 form input::-moz-placeholder,.htmega-register-style-4 form textarea::-moz-placeholder{color:#687ea5}.htmega-register-style-4 form input:-ms-input-placeholder,.htmega-register-style-4 form textarea:-ms-input-placeholder{color:#687ea5}.htmega-register-style-4 form input:-moz-placeholder,.htmega-register-style-4 form textarea:-moz-placeholder{color:#687ea5}.htmega-register-wrapper.htmega-register-style-4 .htmega-register-form form a:not(.terms-conditions){background:#0056ff;color:#fff;font-size:14px;text-transform:uppercase;border-radius:25px}.register-container{background:#fff;box-shadow:0 0 10px rgb(0 0 0 / .1);padding:50px 70px}.register-top{display:flex;justify-content:space-between;margin-bottom:33px;align-items:center}.register-top .register-top-left h2{color:#000;font-size:16px;margin:0;font-weight:600}.register-top .register-top-right{display:flex;justify-content:space-between}.register-top .register-top-right p{margin:0;color:#b1b1b1;margin-right:30px;font-size:14px}.register-top .register-top-right a{background:#eff1f2;height:30px;line-height:30px;color:#000;padding:0 14px;transition:0.5s}.register-top .register-top-right a:hover{background:#18012c;color:#fff}.htmega-register-style-5{text-align:center}.htmega-register-wrapper.htmega-register-style-5{padding:40px 30px}.htmega-register-style-5 form input,.htmega-register-style-5 form textarea{border:1px solid #f1f1f1;height:45px;margin-bottom:30px;padding:0 20px;color:#757575;font-weight:300;font-size:12px}.htmega-register-style-5 form input[type="submit"]{background:#0056ff;width:auto;color:#fff;height:48px;padding:0 40px;color:#fff;font-size:14px;font-weight:600;margin-bottom:0;transition:0.5s;margin-top:12px}.htmega-register-wrapper.htmega-register-style-5 .htmega-register-form form a:not(.terms-conditions){background:#0056ff;padding:11px 40px;color:#fff;margin-bottom:12px}.htmega-register-style-5 form input[type="submit"]:hover{background:#18012c;color:#fff}.htmega-register-style-5 form input::-webkit-input-placeholder,.htmega-register-style-5 form textarea::-webkit-input-placeholder{color:#757575}.htmega-register-style-5 form input::-moz-placeholder,.htmega-register-style-5 form textarea::-moz-placeholder{color:#757575}.htmega-register-style-5 form input:-ms-input-placeholder,.htmega-register-style-5 form textarea:-ms-input-placeholder{color:#757575}.htmega-register-style-5 form input:-moz-placeholder,.htmega-register-style-5 form textarea:-moz-placeholder{color:#757575}.htmega-register-style-5 form input:focus,.htmega-register-style-5 form textarea:focus{border:1px solid #18012c}.htmega-register-style-4 form input:focus{border:0 none;border-bottom:1px solid #18012c}.htmega-register-wrapper.htmega-register-style-6 .htmega-register-form form a:not(.terms-conditions){background:#44FF62;color:#2E2E2E;font-size:16px;border-radius:5px;width:100%}.htmega-register-style-6.htmega-register-wrapper input[type="submit"]{color:#2E2E2E;font-size:16px;font-weight:600;background-color:#44FF62;height:55px;width:100%;border-radius:5px 5px 5px 5px}.htmega-register-style-6.htmega-register-wrapper form input{color:#8B8B8B;background-color:#FFF;margin:0 0 10px 0;height:55px;border-radius:5px}.htmega-register-style-6.htmega-register-wrapper{background-color:#0057FB;border-radius:10px;padding:40px}.htmega-tab-area:not(.htmega-tab-style-5){display:flex;flex-direction:column;align-items:center}.htmega-tab-area:not(.htmega-tab-style-5) .htb-tab-content{width:100%}.htmega-tab-nav a{color:#575757;font-size:14px;font-weight:500;padding:0 16px;background:#fff0;line-height:34px;transition:0.5s;margin:0 9px;margin-bottom:20px}.htmega-tab-nav svg{width:20px;float:left}.htmega-tab-nav a.htb-active{background:#575757;color:#fff}.tab-content .htmega-single-tab{margin-top:20px}.htmega-tab-image{overflow:hidden}.htmega-tab-menu-style-2 a{color:#575757;font-weight:600;font-size:14px;margin:0 25px;margin-bottom:20px;padding:0;padding-bottom:10px;position:relative;background:#fff0}.htmega-tab-menu-style-2 a.htb-active{background:#fff0;color:#575757}.htmega-tab-menu-style-2 a::before{position:absolute;content:"";left:0;height:1px;width:0;bottom:0;background:#575757;transition:0.4s ease-in-out}.htmega-tab-menu-style-2 a.htb-active::before{width:100%}.htmega-tab-menu-style-3{border-bottom:1px solid #e3e3e3;margin-bottom:18px}.htmega-tab-menu-style-3 a{color:#575757;font-size:14px;font-weight:600;padding:0;padding:0 24px;background:#e3e3e3;height:40px;line-height:39px;margin:0 10px;margin-bottom:-1px;border:1px solid;transition:0.4s ease-in-out;border-color:#e3e3e3 #e3e3e3 #fff}.htmega-tab-menu-style-3 a.htb-active{background:#fff0;border:1px solid;border-color:#e3e3e3 #e3e3e3 #fff;color:#575757}.htmega-tab-style-3 .htmega-single-tab p{color:#494849;font-size:16px;line-height:28px;margin-top:23px}.htmega-tab-menu-style-4 a{background:#575757;padding:0 25px;line-height:40px;border-radius:5px;color:#fff;margin:0 10px;margin-bottom:20px;font-weight:600;font-size:14px}.htmega-tab-menu-style-4 a.htb-active{background:#ed552d}.htmega-tab-style-5{align-items:center;display:flex;flex-wrap:wrap}.htmega-tab-style-5 .htmega-tab-nav{flex:0 0 25%;max-width:25%;padding-left:15px;padding-right:0}.htmega-tab-style-5 .htmega-tab-content-area{flex:0 0 75%;max-width:75%;padding-left:15px;padding-right:15px}.htmega-tab-menu-style-5{display:flex;flex-direction:column;height:100%;justify-content:center}.htmega-tab-style-5 .htmega-tab-content-area{position:relative}.htmega-tab-style-5 .htmega-tab-content-area::before{content:"";left:0;height:65%;width:1px;position:absolute;top:50%;transform:translateY(-50%);z-index:-1}.htmega-tab-menu-style-5{display:block}.htmega-tab-menu-style-5 a{border-left:1px solid #e3e3e3;border-right:1px solid #fff0;border-top:1px solid #e3e3e3;color:#575757;font-weight:500;margin:0;padding:0;text-align:center;transition:all 0.4s ease-in-out 0s}.htmega-tab-menu-style-5 a:last-child{border-bottom:1px solid #e3e3e3}.htmega-tab-menu-style-5 a.htb-active{background:#e3e3e3;color:#575757}.htmega_tab_service .htmega-service-style-7:hover .content h4,.htmega_tab_service .htmega-service-style-7:hover .content p,.htmega_tab_service .htmega-service-style-7:hover .icon i{color:#8f8f8f!important}.htmega_tab_service .htmega-service-style-7:hover .icon i{color:#ed552d!important}.htmega_tab_service .htmega-service-style-7::before{display:none}a.htb-nav-link:focus{outline:none}.htmega-switcher-area .htmega-switcher-nav .htb-nav-link{display:inline-flex;align-items:center}.htmega-tab-svg-icon{display:inline-block;overflow:hidden}.htmega-tab-nav a i,.htmega-tab-nav a .htmega-tab-svg-icon{margin-right:10px;width:30px;text-align:center;height:30px;display:flex;align-items:center;justify-content:center;border-radius:50px}.htmega-tab-nav a.htb-nav-link{display:flex;align-items:center}.htmega-process-area{background-size:80% auto}.htmega-column{display:flex;flex-wrap:wrap}.htmega-column .htmega-single-process-area{padding-right:15px;padding-left:15px}.htmega-process-column-1 .htmega-single-process-area{flex:0 0 100%;max-width:100%}.htmega-process-column-2 .htmega-single-process-area{flex:0 0 50%;max-width:50%}.htmega-process-column-3 .htmega-single-process-area{flex:0 0 33.333%;max-width:33.333%}.htmega-process-column-4 .htmega-single-process-area{flex:0 0 25%;max-width:25%}.htmega-process-column-5 .htmega-single-process-area{flex:0 0 20%;max-width:20%}.htmega-single-process{text-align:center}.htmega-single-process .icon{width:116px;height:116px;margin:0 auto;background:#fff;box-shadow:0 0 10px rgb(0 0 0 / .1);line-height:116px;text-align:center;border-radius:100%;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease-in-out}.htmega-single-process .htmega-content h4{color:#555;font-size:19px;font-weight:600;margin:0;margin-top:36px}.htmega-process-style-2{text-align:center}.htmega-process-style-2 .htmega-number{margin-bottom:24px}.htmega-process-style-2 .htmega-number span{width:70px;height:70px;background:#fff;display:inline-block;line-height:70px;font-size:24px;font-weight:600;color:#5a5a5a;border-radius:14px;box-shadow:0 0 10px rgb(0 0 0 / .1)}.htmega-process-style-2 .htmega-content h4{color:#383838;font-size:18px;margin-bottom:18px}.htmega-process-style-2 .htmega-content p{color:#494849;font-size:14px;line-height:28px;padding:0 10%;margin:0}.htmega-process-style-2 .htmega-number{position:relative}.htmega-process-style-2 .htmega-number::before{position:absolute;content:"";background-image:url();right:-129px;top:50%;width:236px;height:2px}.htmega-process-style-2 .htmega-single-process-area:last-child .htmega-number::before{display:none}.htmega-process-style-3{position:relative;margin-top:30px}.htmega-process-style-3::before{content:"";position:absolute;left:50%;top:0;width:2px;background:#e51515;height:100%;margin-left:-1px}.htmega-process-style-3 .htmega-single-process{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between;padding:30px 0}.htmega-process-style-3 .htmega-single-process .icon{align-self:baseline;box-shadow:none;height:auto;line-height:1;padding:0 30px;position:relative;text-align:right;width:50%;background:#fff0;justify-content:right}.htmega-process-style-3 .htmega-single-process .icon::before,.htmega-process-style-3 .htmega-single-process .icon::after{position:absolute;content:"";right:0;top:50%;margin-top:-15px;height:15px;width:15px;border-top:10px solid #fff0;border-right:15px solid red;border-bottom:10px solid #fff0;border-left:15px solid #fff0;transition:all 0.3s ease-in-out}.htmega-process-style-3 .htmega-single-process .icon img{display:inline-block;-webkit-border-radius:100%;-moz-border-radius:100%;-ms-border-radius:100%;-o-border-radius:100%;border-radius:100%}.htmega-process-style-3 .htmega-content{padding-left:30px;text-align:left;width:50%}.htmega-process-style-3 .htmega-content h4{font-size:22px;font-weight:500;color:#494849;margin-bottom:15px;transition:all 0.3s ease-in-out}.htmega-process-style-3 .htmega-content p{font-size:14px;color:#494849;line-height:28px}.htmega-process-style-3 .htmega-single-process.process-reverse{-webkit-box-direction:reverse;-webkit-box-orient:horizontal;-webkit-flex-direction:row-reverse;-moz-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.htmega-process-style-3 .htmega-single-process.process-reverse .icon{text-align:left;justify-content:left}.htmega-process-style-3 .htmega-single-process.process-reverse .icon::before{right:auto;left:0;border-left:15px solid red;border-right:15px solid #fff0}.htmega-process-style-3 .htmega-single-process.process-reverse .htmega-content{padding-left:0;padding-right:30px;text-align:right}.htmega-process-style-3 .htmega-single-process .icon::after{left:100%;height:0;border:none;background:red;width:1px;top:50%;transform:translateY(-50%);margin-top:-4px;margin-left:-1px;opacity:0}.htmega-process-style-3 .htmega-single-process.process-reverse .icon::after{left:0;right:auto}.htmega-process-style-3 .htmega-single-process:hover .icon::after{opacity:1}.htmega-process-style-4{background-position:center center;background-repeat:no-repeat;height:570px;position:relative;width:590px;margin:auto;margin-top:35px}.htmega-process-style-4 .htmega-single-process-area{align-items:center;background:#52b6bc none repeat scroll 0 0;border-radius:100%;display:flex;height:190px;justify-content:center;text-align:center;width:190px;position:absolute}.htmega-process-style-4 .htmega-single-process-area:nth-child(1){left:0;margin:auto;right:0}.htmega-process-style-4 .htmega-single-process-area:nth-child(2){right:0;top:190px}.htmega-process-style-4 .htmega-single-process-area:nth-child(3){bottom:0;left:0;margin:auto;right:0}.htmega-process-style-4 .htmega-single-process-area:nth-child(4){left:0;top:190px}.htmega-process-style-4 .htmega-single-process .icon{box-shadow:none;height:auto;line-height:1;opacity:0;position:absolute;right:0;top:-36px;transition:all 0.3s ease 0s;width:auto;background:#fff0}.htmega-process-style-4 .htmega-single-process .icon img{border:3px solid #52b6bc;border-radius:100%}.htmega-process-style-4 .htmega-content p{color:#fff;font-family:'Courgette',cursive;font-size:20px;line-height:26px;margin:0;padding:0 12px}.htmega-process-style-4 .htmega-single-process.open .icon{opacity:1}.htmega-process-style-4 .htmega-single-process-area:hover .icon{opacity:1}.htmega-process-style-4 .htmega-single-process-area:before{content:"";background:#fff0;position:absolute;left:0;top:0;width:100%;height:100%;border-radius:100%;opacity:0;transition:all 0.3s ease-in-out}.htmega-process-style-4 .htmega-single-process-area:hover:before{opacity:1}.htmega-process-style-4 .htmega-single-process .htmega-content h4{transition:all 0.3s ease-in-out}.htmega-process-style-4 .htmega-single-process-area:hover .htmega-single-process .htmega-content h4{color:#fff;position:relative;z-index:2}.htmega-process-style-5{display:block;text-align:center}.htmega-process-style-5 .htmega-single-process-area{width:23%;transition:all 0.3s ease-in-out;position:relative;display:inline-block}.htmega-process-style-5 .htmega-single-process-area:hover{width:25%}.htmega-process-style-5 .htmega-single-process-area:after{content:"";background:#fff0;width:62px;height:25px;left:0;position:relative;position:absolute;top:50%;transform:translate(-50%,-50%)}.htmega-process-style-5 .htmega-single-process-area:first-child:after{display:none}.htmega-process-style-5 .htmega-single-process{background:#fff0;transition:all 0.3s ease-in-out;position:relative;overflow:hidden;position:absolute;top:0;left:0;right:0;bottom:0;display:flex;align-items:center;justify-content:center;flex-direction:column}.htmega-process-style-5 .htmega-single-process-area:hover .htmega-single-process .htmega-content p{visibility:visible}.htmega-process-style-5 .htmega-number::before{display:none}.htmega-process-style-5 .htmega-single-process:before{background:#fff0;content:"";left:0;right:0;position:absolute;top:0;height:100%;width:100%;opacity:0;z-index:0;transition:all 0.3s ease-in-out}.htmega-process-style-5 .htmega-single-process *{position:relative;z-index:2}.htmega-process-style-5 .htmega-single-process-area:hover .htmega-single-process:before{opacity:1}.htmega-process-style-5 .htmega-single-process2 span,.htmega-process-style-5 .htmega-single-process2 .icon{background:#fff0;line-height:1;border:none;box-shadow:none!important;margin:auto}.htmega-single-process.htmega-single-process2 .htmega-content h4{margin-top:0}.htmega-single-process.htmega-single-process2 .htmega-number{margin-bottom:0}.htmega-single-process.htmega-single-process2{position:relative;bottom:0;opacity:0}.htmega-process-style-5 .htmega-single-process-area:hover .htmega-single-process{opacity:0}.htmega-process-style-5 .htmega-single-process-area:hover .htmega-single-process.htmega-single-process2{opacity:1}.htmega-modal-btn button{background:#0056ff;border:0 none;color:#fff;border-radius:8px;height:58px;line-height:58px;color:#fff;font-size:16px;font-weight:600;font-family:"Montserrat",sans-serif;transition:0.4s;padding-top:0;padding-bottom:0}.htmega-modal-btn svg{width:20px;margin-right:10px;margin-top:16px}.htmega-modal-area .htb-modal-header h5{margin:0}.htmega-modal-area .htb-modal-footer{justify-content:space-between;align-items:center}.htmega-modal-area .htb-modal-footer .htb-btn-secondary[type="button"]{color:#fff;background-color:#868e96;border-color:#868e96}.htmega-modal-area .htb-modal-header .htb-close[type="button"]{font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff}.htmega-modal-area .htb-modal-header .htb-close[type="button"]:focus,.htmega-modal-area .htb-modal-header .htb-close[type="button"]:hover{color:#000;text-decoration:none;opacity:.75;background:0 0;border:0}.modal_icon_positioning-left .htmega-modal-btn button,.modal_icon_positioning-right .htmega-modal-btn button{display:inline-flex;align-items:center}.modal_icon_positioning-left .htmega-modal-btn button i,.modal_icon_positioning-left .htmega-modal-btn button svg{order:0;margin-right:10px}.modal_icon_positioning-right .htmega-modal-btn button i,.modal_icon_positioning-right .htmega-modal-btn button svg{order:1;margin-left:10px}.modal_icon_positioning-left .htmega-modal-btn svg,.modal_icon_positioning-right .htmega-modal-btn svg{margin-top:0}.flipbox-icon{display:inline-block}.flipbox-icon svg{width:20px}.htmega-flip-box-front,.htmega-flip-box-back{background-color:#f3f3f3}.htmega-flip-box-animation-right .htmega-flip-box-front{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);background-color:#f3f3f3}.htmega-flip-box-animation-right:hover .htmega-flip-box-front{-webkit-transform:rotateY(-180deg);-moz-transform:rotateY(-180deg);-o-transform:rotateY(-180deg);-ms-transform:rotateY(-180deg);transform:rotateY(-180deg)}.htmega-flip-box-animation-right .htmega-flip-box-back{background:rgb(237 85 45 / .8);-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.htmega-flip-box-animation-right:hover .htmega-flip-box-back{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);transform-style:preserve-3d}.htmega-flip-box-animation-left .htmega-flip-box-front,.htmega-flip-box-animation-left:hover .htmega-flip-box-back{-webkit-transform:rotateY(0deg);-moz-transform:rotateY(0deg);-o-transform:rotateY(0deg);-ms-transform:rotateY(0deg);transform:rotateY(0deg);background-color:#f3f3f3}.htmega-flip-box-animation-left:hover .htmega-flip-box-front{-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);-o-transform:rotateY(180deg);-ms-transform:rotateY(180deg);transform:rotateY(180deg)}.htmega-flip-box-animation-left .htmega-flip-box-back{background:rgb(237 85 45 / .8);-webkit-transform:rotateY(-180deg);-moz-transform:rotateY(-180deg);-o-transform:rotateY(-180deg);-ms-transform:rotateY(-180deg);transform:rotateY(-180deg)}.htmega-flip-box-animation-top .htmega-flip-box-front,.htmega-flip-box-animation-top:hover .htmega-flip-box-back{-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);-o-transform:rotateX(0deg);-ms-transform:rotateX(0deg);transform:rotateX(0deg)}.htmega-flip-box-animation-top:hover .htmega-flip-box-front{-webkit-transform:rotateX(-180deg);-moz-transform:rotateX(-180deg);-o-transform:rotateX(-180deg);-ms-transform:rotateX(-180deg);transform:rotateX(-180deg)}.htmega-flip-box-animation-top .htmega-flip-box-back{-webkit-transform:rotateX(180deg);-moz-transform:rotateX(180deg);-o-transform:rotateX(180deg);-ms-transform:rotateX(180deg);transform:rotateX(180deg);z-index:1}.htmega-flip-box-animation-bottom .htmega-flip-box-front,.htmega-flip-box-animation-bottom:hover .htmega-flip-box-back{-webkit-transform:rotateX(0deg);-moz-transform:rotateX(0deg);-o-transform:rotateX(0deg);-ms-transform:rotateX(0deg);transform:rotateX(0deg)}.htmega-flip-box-animation-bottom:hover .htmega-flip-box-front{-webkit-transform:rotateX(180deg);-moz-transform:rotateX(180deg);-o-transform:rotateX(180deg);-ms-transform:rotateX(180deg);transform:rotateX(180deg)}.htmega-flip-box-animation-bottom .htmega-flip-box-back{-webkit-transform:rotateX(-180deg);-moz-transform:rotateX(-180deg);-o-transform:rotateX(-180deg);-ms-transform:rotateX(-180deg);transform:rotateX(-180deg);z-index:1}.htmega-flip-box-area .flp-btn{display:inline-block;margin-top:20px}.htmega-flip-box-area .flp-btn a{color:#fff;font-family:"Montserrat",sans-serif;font-weight:700;font-size:14px;display:inline-block;border-bottom:1px solid #fff;text-decoration:none;transition:all 0.3s ease-in-out}.htmega-flip-box-area{-webkit-perspective:1000;-moz-perspective:1000;-ms-perspective:1000;perspective:1000;-webkit-transform:perspective(1000px);-moz-transform:perspective(1000px);-ms-transform:perspective(1000px);transform:perspective(1000px);-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;position:relative;height:380px;line-height:1}.htmega-flip-box-front,.htmega-flip-box-back{background-size:cover;background-position:center center;-ms-transition:transform 0.6s cubic-bezier(.5,.3,.3,1);transition:transform 0.6s cubic-bezier(.5,.3,.3,1);-webkit-transition:transform 0.6s cubic-bezier(.5,.3,.3,1);overflow:hidden;position:absolute;top:0;-webkit-backface-visibility:hidden;backface-visibility:hidden;transform-style:preserve-3d;z-index:1;width:100%;height:100%}.htmega-3d-wrap .htmega-flip-box-front,.htmega-3d-wrap .htmega-flip-box-back{overflow:visible}.front-container,.back-container{padding:40px;text-align:center;position:relative;top:50%;-ms-transition:transform 0.6s cubic-bezier(.5,.3,.3,1);transition:transform 0.6s cubic-bezier(.5,.3,.3,1);-webkit-transition:transform 0.6s cubic-bezier(.5,.3,.3,1);-webkit-transform:translateY(-50%) translateX(0) scale(1);-ms-transform:translateY(-50%) translateX(0) scale(1);transform:translateY(-50%) translateX(0) scale(1);transform-style:preserve-3d;z-index:2;height:100%;display:flex;align-items:center;justify-content:center;flex-direction:column}.htmega-3d-flip{transform:translateZ(50px) scale(.9);display:flex;align-items:center;justify-content:center;flex-direction:column;backface-visibility:hidden}.htmega-flip-box-area .back-container{padding:40px;text-align:center;position:relative;top:50%;z-index:2}.htmega-flip-box-area .front-container span{color:#636363;font-size:50px}.front-container h2,.front-container .htmega-flip-box-title{color:#4a4a4a;font-size:22px;font-weight:400;margin:0;margin-top:22px}.back-container span{color:#efefef;font-size:50px;display:block;margin-bottom:28px}.back-container h2,.back-container .htmega-flip-box-title{color:#fff;font-size:22px;font-weight:400;margin-bottom:18px}.back-container p,.front-container p{color:#fff;font-size:14px;line-height:26px;margin:0}.htmega-flip-box-back{background-position:center center;background-repeat:no-repeat;background-size:cover}.htmega-flip-overlay{display:block;background-color:#fff0;width:100%;height:100%;position:absolute;top:0;z-index:0}.htmega-flip-box-style-2 .htmega-flip-box-back span,.htmega-flip-box-style-2 .htmega-flip-box-front span{margin-bottom:26px;display:inline-block;padding-bottom:30px;position:relative}.htmega-flip-box-style-2 .htmega-flip-box-back span i,.htmega-flip-box-style-2 .htmega-flip-box-front span i{color:#fff;font-size:70px}.htmega-flip-box-style-2 .htmega-flip-box-back span::before,.htmega-flip-box-style-2 .htmega-flip-box-front span::before{position:absolute;content:"";background:#fff;width:30px;height:1px;bottom:0;left:50%;transform:translateX(-50%)}.htmega-flip-box-style-2 .htmega-flip-box-back span::after,.htmega-flip-box-style-2 .htmega-flip-box-front span::after{position:absolute;content:"";background:#fff;width:20px;height:1px;bottom:6px;left:50%;transform:translateX(-50%)}.htmega-flip-box-style-2 .htmega-flip-box-back h2,.htmega-flip-box-style-2 .htmega-flip-box-front h2{color:#fff;font-size:16px;margin:0;font-weight:300;text-transform:uppercase}.htmega-flip-box-style-2 .htmega-flip-box-back p{margin:0;color:#fff;font-size:14px;line-height:24px;margin-top:15px;font-family:"Montserrat",sans-serif;font-weight:300}.htmega-flip-box-style-3 .front-container p{margin-top:15px;margin-bottom:15px;color:#7b7272}.htmega-flipbox-bottom-index-number,.htmega-flipbox-back-bottom-index-number{position:absolute;bottom:0;z-index:1;margin-bottom:10px;font-size:95px;font-weight:700;color:#F5F7FF;font-family:"Roboto",Sans-serif;font-size:95px;font-weight:700;line-height:1em;-webkit-text-stroke-color:#DDDDE8;-webkit-text-stroke-width:1px}.htmega-flipbox-s4-image{height:200px;width:100%;position:relative}.front-container .htmega-flipbox-s4-image img{height:100%;object-fit:cover;width:100%}.htmega-flip-box-style-4 .front-container{display:block}.htmega-flip-box-style-4 .front-container span{color:#636363;position:absolute;left:50%;transform:translate(-50%,50%);bottom:0;z-index:2;background-color:#FFF;width:97px;min-height:97px;height:97px;display:flex;align-items:center;justify-content:center;line-height:97px;margin:0 0 0 0;border-radius:100px 100px 100px 100px;box-shadow:0 1px 100px 0 rgb(0 0 0 / .29)}.htmega-flip-box-style-4 .front-container h2,.htmega-flip-box-style-4 .front-container .htmega-flip-box-title{margin-top:70px}.htmega-flip-box-style-4 .front-container p{padding:0 15px}.htmega-flip-box-style-4 .htmega-flip-box-front .front-container{padding:0}.htmega-flip-box-style-5 .back-container h2,.back-container .htmega-flip-box-title{margin-bottom:10px}.htmega-flip-box-style-5 .back-container h3{margin-bottom:25px;padding:0 15px 27px 15px;font-size:15px;line-height:1.3;border-bottom:1px solid #6951cd}.htmega-flip-box-style-5 .htmega-flip-box-back{background:#4f33c4}.htmega-flip-box-style-5 .back-container p{margin-bottom:20px}ul.htmega-flipbox-social-list{display:inline-block;list-style:none;margin:0;padding:0}ul.htmega-flipbox-social-list li{display:inline-block;margin:5px}ul.htmega-flipbox-social-list li a{display:flex;height:38px;width:38px;align-items:center;justify-content:center;font-size:15px;color:#fff;border:1px solid #ddd;background:#fff0;border-style:dashed;border-radius:100%}ul.htmega-flipbox-social-list li a svg{width:15px;fill:#fff}ul.htmega-flipbox-social-list li a:hover{background:#fff;color:#27123a;border:1px solid #fff}ul.htmega-flipbox-social-list li a:hover svg{fill:#27123a}.htmega-flip-box-animation-zoom_in .htmega-flip-box-back,.htmega-flip-box-animation-zoom_out .htmega-flip-box-front{opacity:0;-webkit-transform:scale(.75);-ms-transform:scale(.75);transform:scale(.75);-webkit-transition-duration:500ms;-o-transition-duration:500ms;transition-duration:500ms;transition:all 0.5s ease-in-out;z-index:3}.htmega-flip-box-animation-zoom_in:hover .htmega-flip-box-back{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.htmega-flip-box-animation-zoom_out .htmega-flip-box-front{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1}.htmega-flip-box-animation-zoom_out:hover .htmega-flip-box-front{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5);visibility:hidden}.htmega-flip-box-animation-fade_in .htmega-flip-box-back{opacity:0;-webkit-transition-duration:500ms;-o-transition-duration:500ms;transition-duration:500ms;transition:all 0.6s ease-in-out}.htmega-flip-box-animation-fade_in:hover .htmega-flip-box-back{opacity:1}.htmega-flip-box-animation-slide_left,.htmega-flip-box-animation-slide_right,.htmega-flip-box-animation-slide_top,.htmega-flip-box-animation-slide_bottom,.htmega-flip-box-animation-push_left,.htmega-flip-box-animation-push_right{overflow:hidden}.htmega-flip-box-animation-slide_left .htmega-flip-box-front,.htmega-flip-box-animation-slide_left .htmega-flip-box-back,.htmega-flip-box-animation-slide_right .htmega-flip-box-front,.htmega-flip-box-animation-slide_right .htmega-flip-box-back,.htmega-flip-box-animation-slide_top .htmega-flip-box-front,.htmega-flip-box-animation-slide_top .htmega-flip-box-back,.htmega-flip-box-animation-slide_bottom .htmega-flip-box-front,.htmega-flip-box-animation-slide_bottom .htmega-flip-box-back,.htmega-flip-box-animation-push_left .htmega-flip-box-front,.htmega-flip-box-animation-push_left .htmega-flip-box-back,.htmega-flip-box-animation-push_right .htmega-flip-box-front,.htmega-flip-box-animation-push_right .htmega-flip-box-back{opacity:1;visibility:visible;z-index:2;transition:all 0.6s ease-in-out}.htmega-flip-box-animation-slide_left .htmega-flip-box-back{left:100%}.htmega-flip-box-animation-slide_left:hover .htmega-flip-box-back{left:0}.htmega-flip-box-animation-slide_right .htmega-flip-box-back{right:100%}.htmega-flip-box-animation-slide_right:hover .htmega-flip-box-back{right:0}.htmega-flip-box-animation-slide_top .htmega-flip-box-back{top:100%}.htmega-flip-box-animation-slide_top:hover .htmega-flip-box-back{top:0}.htmega-flip-box-animation-slide_bottom .htmega-flip-box-back{bottom:100%;top:auto}.htmega-flip-box-animation-slide_bottom:hover .htmega-flip-box-back{bottom:0}.htmega-flip-box-animation-push_left .htmega-flip-box-back{left:100%}.htmega-flip-box-animation-push_left:hover .htmega-flip-box-back{left:0}.htmega-flip-box-animation-push_left .htmega-flip-box-front{right:0;left:auto}.htmega-flip-box-animation-push_left:hover .htmega-flip-box-front{right:100%}.htmega-flip-box-animation-push_right .htmega-flip-box-back{right:100%}.htmega-flip-box-animation-push_right:hover .htmega-flip-box-back{right:0}.htmega-flip-box-animation-push_right .htmega-flip-box-front{left:0;right:auto}.htmega-flip-box-animation-push_right:hover .htmega-flip-box-front{left:100%}.htmega-tooltip span{background:#0056ff none repeat scroll 0 0;border:0 none;border-radius:8px;color:#fff;cursor:pointer;display:inline-block;font-family:"Montserrat",sans-serif;font-size:14px;padding:14px 16px;text-align:center;transition:0.4s}.htmega-tooltip span a{color:#fff;text-decoration:none}.htb-show{transition:opacity .15s linear}.tooltip-inner{padding:9px 15px;background-color:#404040}.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-left .arrow::before{border-left-color:#404040!important}.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-right .arrow::before{border-right-color:#404040!important}.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-top .arrow::before{border-top-color:#404040!important}.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-bottom .arrow::before{border-bottom-color:#404040!important}.bs-tooltip-auto[x-placement^=top],.bs-tooltip-top{top:-10px!important}.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-bottom{top:10px!important}.bs-tooltip-auto[x-placement^=right],.bs-tooltip-right{left:10px!important}.bs-tooltip-auto[x-placement^=left],.bs-tooltip-left{left:-10px!important}.htb-popover-header{margin-top:0}.htb-popover h3.htb-popover-header{font-size:18px;font-weight:400;margin:0;line-height:1.3}.htmega-popover span{background:#0056ff;border:0 none;color:#fff;padding:20px 40px;border-radius:7px;font-weight:600;font-size:16px;transition:0.5s;font-family:"Montserrat",sans-serif;display:inline-block;cursor:pointer}.htmega-popover span:hover{background:#18012c}.htmega-popover span a{text-decoration:none}.htmega-popover svg{width:25px}.popover{max-width:330px;border:1px solid #e0e0e0;box-shadow:0 0 10px rgb(0 0 0 / .1)}.popover .popover-body{padding:22px 25px;color:#262626;font-size:13px}.popovers-content.text-center{padding-top:14px}.bs-popover-auto[x-placement^=top],.bs-popover-top{top:-12px!important}.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom{top:12px!important}.bs-popover-auto[x-placement^=right],.bs-popover-right{left:12px!important}.bs-popover-auto[x-placement^=left],.bs-popover-left{left:-12px!important}.htmega-toggle-button a{transition:all 600ms ease-in-out;-webkit-transition:all 600ms ease-in-out;-moz-transition:all 600ms ease-in-out;-o-transition:all 600ms ease-in-out;color:#3b3b3b;font-family:"Montserrat",sans-serif;font-weight:600;text-transform:uppercase;text-decoration:none;cursor:pointer;display:inline-block}.htmega-toggle-button svg{width:20px}.htmega-toggle-area .htmega-toggle-button a i,.htmega-toggle-area .htmega-toggle-button a svg{padding-left:5px}.htmega-toggle-button a.opened_btn,.open a.normal_btn{display:none}.htmega-toggle-button.open a.opened_btn{display:inline-block}.image_100 .htmega-lightboxthumb img{width:100%}.htmega-dropcaps-inner p{color:#434343;font-size:16px;line-height:28px;font-weight:500;margin:0}.htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-inner:first-of-type:first-letter{color:#d6d6d6;float:left;font-size:60px;margin-right:20px;margin-bottom:5px;border:2px solid #d6d6d6;padding:15px;font-family:"Montserrat",sans-serif;font-weight:700;font-style:italic;margin-top:9px}.htmega-dropcaps-style-2 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-2 .htmega-dropcaps-inner:first-of-type:first-letter{color:#18012c;float:left;font-size:60px;margin-right:15px;margin-bottom:8px;font-family:"Montserrat",sans-serif;font-weight:600;margin-top:17px;border:none;padding:0;font-style:normal}.htmega-dropcaps-style-3 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-3 .htmega-dropcaps-inner:first-of-type:first-letter{color:#ed552d;float:left;font-size:90px;margin-right:15px;margin-bottom:13px;font-family:"Poppins",sans-serif;font-weight:500;margin-top:20px;text-decoration:line-through;line-height:28px;border:0;padding:0;font-style:normal}.htmega-dropcaps-style-4 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-4 .htmega-dropcaps-inner:first-of-type:first-letter{color:#fff;float:left;font-size:36px;padding:20px;margin-top:5px;margin-left:5px;margin-right:15px;margin-bottom:5px;background:#ed552d;border-radius:50%;font-size:normal;border:none;font-style:normal;font-weight:500}.htmega-dropcaps-style-5 .htmega-dropcaps-inner p:first-of-type:first-letter,.htmega-dropcaps-style-5 .htmega-dropcaps-inner:first-of-type:first-letter{color:#fff;float:left;font-size:75px;line-height:60px;padding:20px 28px;margin-top:5px;margin-left:5px;margin-right:20px;margin-bottom:10px;background:#000;border-radius:50%;border:1px solid #fff;box-shadow:0 0 0 5px #000;font-style:normal;font-weight:500}button.htmega-notify-button{padding:5px 42px;border:0 none;color:#fff;border-radius:7px;font-size:14px;background:#1abc9c;transition:0.4s;height:inherit}.alert{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid #fff0;border-radius:.25rem}.alert-danger,.htmega-notify-button.alert-danger{color:#721c24;background-color:#bb2d3b;border-color:#f5c6cb}.alert-warning,.htmega-notify-button.alert-warning{color:#856404;background-color:#ffca2c;border-color:#ffeeba}.alert-success,.htmega-notify-button.alert-success{color:#fff;background-color:#198754;border-color:#c3e6cb}.alert-info,.htmega-notify-button.alert-info{color:#0c5460;background-color:#1abc9c;border-color:#bee5eb}.htmega_notify_area .alert span.htmega-close{cursor:pointer!important}.alert>i,.alert>svg{position:relative}.alert span.notify-message-content{position:relative}.htmega-marker-wrapper .htmega_image_pointer .htmega_pointer_box h4{position:relative}.htmega-marker-wrapper .htmega_image_pointer .htmega_pointer_box h4:before{position:absolute;content:"";width:20px;height:2px;background:#fff0;bottom:0;left:0;right:0;margin:0 auto}.htmega-marker-content-right .htmega-marker-wrapper .htmega_image_pointer .htmega_pointer_box h4:before{right:0;left:auto}.htmega-marker-content-left .htmega-marker-wrapper .htmega_image_pointer .htmega_pointer_box h4:before{left:0;right:auto}.htmega_image_pointer.htmega-marker-content-position-yes .htmega_pointer_box:before{border-left:12px solid #fff0;border-right:12px solid #fff0;border-top:12px solid #fff0;content:"";height:0;left:50%;margin-left:-12px;position:absolute;top:100%;width:0}.htmega-marker-wrapper .htmega_image_pointer .htmega_pointer_box h4:after{font-size:110px;font-weight:100;position:absolute;z-index:-1;top:-31px;left:4%;content:attr(data-pltext);-webkit-transform:translateX(-50%) translateY(-14px);-ms-transform:translateX(-50%) translateY(-14px);transform:translateX(-50%) translateY(-14px);text-transform:uppercase;color:#F0F4F4;white-space:nowrap;margin-top:-15px;font-weight:800}.htmega-marker-style-1{padding:245px 0}.htmega_image_pointer{width:36px;height:36px;border-radius:100%;border:3px solid #ed552d;background-color:#fff;position:relative;display:inline-block;text-align:center;cursor:pointer;line-height:32px}.htmega_image_pointer.htmega-indicator-type-text,.htmega_image_pointer.htmega-indicator-type-image{width:auto;height:auto}.htmega_image_pointer{z-index:1}.htmega-marker-style-1 .htmega_image_pointer .htmega_pointer_box{background:#fff;width:240px;position:absolute;top:0;right:50%;-webkit-transform:translate3d(50%,-100%,0);transform:translate3d(50%,-100%,0);border-radius:5px;opacity:0;visibility:hidden;-webkit-transition:all 0.3s cubic-bezier(0,0,.2,1);transition:all 0.3s cubic-bezier(0,0,.2,1);z-index:10;padding:20px;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);text-align:center}.htmega-marker-style-1 .htmega_image_pointer.htmega-marker-content-position-bottom .htmega_pointer_box{transform:translate3d(50%,18%,0)}.htmega-marker-style-1 .htmega_image_pointer.htmega-marker-content-position-bottom:hover .htmega_pointer_box{transform:translateY(30%) translateX(50%)}.htmega-marker-style-1 .htmega_image_pointer.htmega-marker-content-position-left .htmega_pointer_box{transform:translate3d(-5%,-36%,0)}.htmega-marker-style-1 .htmega_image_pointer.htmega-marker-content-position-left:hover .htmega_pointer_box{transform:translateY(-36%) translateX(-12%)}.htmega-marker-style-1 .htmega_image_pointer.htmega-marker-content-position-right .htmega_pointer_box{transform:translate3d(106%,-36%,0)}.htmega-marker-style-1 .htmega_image_pointer.htmega-marker-content-position-right:hover .htmega_pointer_box{transform:translateY(-36%) translateX(112%)}.htmega-marker-style-1 .htmega_image_pointer .htmega_pointer_box h4{font-size:20px;margin-bottom:7px}.htmega-marker-style-1 .htmega_image_pointer .htmega_pointer_box p{font-size:13px;line-height:24px;margin:0}.htmega-marker-style-1 .htmega_image_pointer:hover .htmega_pointer_box{visibility:visible;opacity:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translateY(-110%) translateX(50%);transform:translateY(-110%) translateX(50%)}.htmega-marker-style-1 .htmega_image_pointer{position:absolute;left:66%;top:15%}.htmega-marker-style-2{padding:245px 0}.htmega-marker-style-2 .htmega_image_pointer{width:46px;height:46px;border-radius:100%;border:5px solid #ddd;background-color:#fff;position:relative;display:inline-block;text-align:center;cursor:pointer;line-height:38px}.htmega-marker-style-2 .htmega_image_pointer .htmega_pointer_box{background:#fff;width:240px;position:absolute;top:0;right:50%;-webkit-transform:translate3d(50%,-100%,0);transform:translate3d(50%,-100%,0);border-radius:5px;opacity:0;visibility:hidden;-webkit-transition:all 0.3s cubic-bezier(0,0,.2,1);transition:all 0.3s cubic-bezier(0,0,.2,1);z-index:10;padding:20px;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);text-align:center}.htmega-marker-style-2 .htmega_image_pointer.htmega-marker-content-position-bottom .htmega_pointer_box{transform:translate3d(50%,18%,0)}.htmega-marker-style-2 .htmega_image_pointer.htmega-marker-content-position-bottom:hover .htmega_pointer_box{transform:translateY(30%) translateX(50%)}.htmega-marker-style-2 .htmega_image_pointer.htmega-marker-content-position-left .htmega_pointer_box{transform:translate3d(-5%,-36%,0)}.htmega-marker-style-2 .htmega_image_pointer.htmega-marker-content-position-left:hover .htmega_pointer_box{transform:translateY(-36%) translateX(-12%)}.htmega-marker-style-2 .htmega_image_pointer.htmega-marker-content-position-right .htmega_pointer_box{transform:translate3d(106%,-36%,0)}.htmega-marker-style-2 .htmega_image_pointer.htmega-marker-content-position-right:hover .htmega_pointer_box{transform:translateY(-36%) translateX(112%)}.htmega-marker-style-2 .htmega_image_pointer .htmega_pointer_box h4{font-size:20px;margin-bottom:7px}.htmega-marker-style-2 .htmega_image_pointer .htmega_pointer_box p{font-size:13px;line-height:24px;margin:0}.htmega-marker-style-2 .htmega_image_pointer:hover .htmega_pointer_box{visibility:visible;opacity:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translateY(-110%) translateX(50%);transform:translateY(-110%) translateX(50%)}.htmega-marker-style-2 .htmega_image_pointer{position:absolute;left:50%;top:26%}.htmega-marker-style-3{padding:245px 0}.htmega-marker-style-3 .htmega_image_pointer{width:46px;height:46px;border-radius:100%;background-color:#000;position:relative;display:inline-block;text-align:center;cursor:pointer;line-height:49px;z-index:2;border-style:solid;border-width:2px 2px 2px 2px;border-color:#FFF;box-shadow:0 0 0 3px #000}.htmega-marker-style-3 .htmega_image_pointer.htmega-marker-content-position-bottom .htmega_pointer_box{transform:translate3d(50%,18%,0)}.htmega-marker-style-3 .htmega_image_pointer.htmega-marker-content-position-bottom:hover .htmega_pointer_box{transform:translateY(41%) translateX(50%)}.htmega-marker-style-3 .htmega_image_pointer.htmega-marker-content-position-left .htmega_pointer_box{transform:translate3d(-5%,-36%,0)}.htmega-marker-style-3 .htmega_image_pointer.htmega-marker-content-position-left:hover .htmega_pointer_box{transform:translateY(-36%) translateX(-16%)}.htmega-marker-style-3 .htmega_image_pointer.htmega-marker-content-position-right .htmega_pointer_box{transform:translate3d(106%,-36%,0)}.htmega-marker-style-3 .htmega_image_pointer.htmega-marker-content-position-right:hover .htmega_pointer_box{transform:translateY(-36%) translateX(112%)}.htmega-marker-style-3 .htmega_image_pointer .htmega_pointer_box{background:#000;width:240px;position:absolute;top:0;right:50%;-webkit-transform:translate3d(50%,-100%,0);transform:translate3d(50%,-100%,0);border-radius:5px;opacity:0;visibility:hidden;-webkit-transition:all 0.3s cubic-bezier(0,0,.2,1);transition:all 0.3s cubic-bezier(0,0,.2,1);z-index:10;padding:20px;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);text-align:center}.htmega-marker-style-3 .htmega_image_pointer .htmega_pointer_box h4{font-size:20px;margin-bottom:7px;color:#fff}.htmega-marker-style-3 .htmega_image_pointer .htmega_pointer_box p{font-size:13px;line-height:24px;margin:0;color:#fff}.htmega-marker-style-3 .htmega_image_pointer:hover .htmega_pointer_box{visibility:visible;opacity:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translateY(-110%) translateX(50%);transform:translateY(-110%) translateX(50%)}.htmega-marker-style-3 .htmega_image_pointer{position:absolute;left:50%;top:26%}.htmega-marker-style-4{padding:245px 0}.htmega-marker-style-4 .htmega_image_pointer{width:46px;height:46px;border-radius:100%;background-position:center center;background-size:cover;background-repeat:no-repeat;position:relative;display:inline-block;text-align:center;cursor:pointer;line-height:38px;border:5px solid #d88d78;z-index:2}.htmega-marker-style-4 .htmega_image_pointer.htmega-marker-content-position-bottom .htmega_pointer_box{transform:translate3d(50%,18%,0)}.htmega-marker-style-4 .htmega_image_pointer.htmega-marker-content-position-bottom:hover .htmega_pointer_box{transform:translateY(34%) translateX(50%)}.htmega-marker-style-4 .htmega_image_pointer.htmega-marker-content-position-left .htmega_pointer_box{transform:translate3d(-5%,-36%,0)}.htmega-marker-style-4 .htmega_image_pointer.htmega-marker-content-position-left:hover .htmega_pointer_box{transform:translateY(-36%) translateX(-16%)}.htmega-marker-style-4 .htmega_image_pointer.htmega-marker-content-position-right .htmega_pointer_box{transform:translate3d(106%,-36%,0)}.htmega-marker-style-4 .htmega_image_pointer.htmega-marker-content-position-right:hover .htmega_pointer_box{transform:translateY(-36%) translateX(116%)}.htmega-marker-style-4 .htmega_image_pointer .htmega_pointer_box{background-position:center center;background-size:cover;background-repeat:no-repeat;width:240px;position:absolute;top:0;right:50%;-webkit-transform:translate3d(50%,-100%,0);transform:translate3d(50%,-100%,0);border-radius:5px;opacity:0;visibility:hidden;-webkit-transition:all 0.3s cubic-bezier(0,0,.2,1);transition:all 0.3s cubic-bezier(0,0,.2,1);z-index:10;padding:20px;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);text-align:center}.htmega-marker-style-4 .htmega_image_pointer .htmega_pointer_box h4{font-size:20px;margin-bottom:7px}.htmega-marker-style-4 .htmega_image_pointer .htmega_pointer_box p{font-size:13px;line-height:24px;margin:0;color:#18012c}.htmega-marker-style-4 .htmega_image_pointer:hover .htmega_pointer_box{visibility:visible;opacity:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translateY(-110%) translateX(50%);transform:translateY(-110%) translateX(50%)}.htmega_image_pointer .htmega-image-marker-icon{position:relative;color:#d88d78;font-size:18px;width:100%;height:100%;transition:0.4s ease-in-out;word-break:normal;display:flex;align-items:center;justify-content:center}.htmega-indicator-type-image .htmega-image-marker-icon{line-height:0}.htmega-image-marker-icon i{transition:all 0.3s ease-in-out;position:absolute;left:50%;transform:translate(-50%,-50%);top:50%}.htmega-marker-style-4 .htmega_image_pointer{position:absolute;left:83%;top:37%}.htmega-marker-animation-rotated.htmega_image_pointer:hover .htmega-image-marker-icon i,.htmega-image-marker-active-yes.htmega-marker-animation-rotated.htmega_image_pointer .htmega-image-marker-icon i{transform:translateX(-50%) translateY(-50%) rotate(47deg)}.htmega-marker-style-5{padding:245px 0}.htmega-marker-style-5 .htmega_image_pointer{width:46px;height:46px;border-radius:4px;background:#000;position:relative;display:inline-block;text-align:center;cursor:pointer;line-height:47px;z-index:2;border:none}.htmega-marker-style-5 .htmega_image_pointer.htmega-marker-content-position-bottom .htmega_pointer_box{transform:translate3d(50%,18%,0)}.htmega-marker-style-5 .htmega_image_pointer.htmega-marker-content-position-bottom:hover .htmega_pointer_box{transform:translateY(40%) translateX(50%)}.htmega-marker-style-5 .htmega_image_pointer.htmega-marker-content-position-left .htmega_pointer_box{transform:translate3d(-5%,-36%,0)}.htmega-marker-style-5 .htmega_image_pointer.htmega-marker-content-position-left:hover .htmega_pointer_box{transform:translateY(-36%) translateX(-16%)}.htmega-marker-style-5 .htmega_image_pointer.htmega-marker-content-position-right .htmega_pointer_box{transform:translate3d(106%,-36%,0)}.htmega-marker-style-5 .htmega_image_pointer.htmega-marker-content-position-right:hover .htmega_pointer_box{transform:translateY(-36%) translateX(116%)}.htmega-marker-style-5 .htmega_image_pointer .htmega_pointer_box{background:#000;width:240px;position:absolute;top:0;right:50%;-webkit-transform:translate3d(50%,-100%,0);transform:translate3d(50%,-100%,0);border-radius:5px;opacity:0;visibility:hidden;-webkit-transition:all 0.3s cubic-bezier(0,0,.2,1);transition:all 0.3s cubic-bezier(0,0,.2,1);z-index:10;padding:20px;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);text-align:center}.htmega-marker-style-5 .htmega_image_pointer .htmega_pointer_box h4{font-size:20px;margin-bottom:7px;color:#fff}.htmega-marker-style-5 .htmega_image_pointer .htmega_pointer_box p{font-size:13px;line-height:24px;margin:0;color:#fff}.htmega-marker-style-5 .htmega_image_pointer:hover .htmega_pointer_box{visibility:visible;opacity:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translateY(-110%) translateX(50%);transform:translateY(-110%) translateX(50%)}.htmega-marker-style-5 .htmega_image_pointer{position:absolute;left:83%;top:37%}.htmega-marker-style-6{padding:245px 0}.htmega-marker-style-6 .htmega_image_pointer{width:46px;height:46px;border-radius:4px;background:#fff;position:relative;display:inline-block;text-align:center;cursor:pointer;line-height:47px;z-index:2}.htmega-marker-style-6 .htmega_image_pointer.htmega-marker-content-position-bottom .htmega_pointer_box{transform:translate3d(50%,18%,0)}.htmega-marker-style-6 .htmega_image_pointer.htmega-marker-content-position-bottom:hover .htmega_pointer_box{transform:translateY(40%) translateX(50%)}.htmega-marker-style-6 .htmega_image_pointer.htmega-marker-content-position-left .htmega_pointer_box{transform:translate3d(-5%,-36%,0)}.htmega-marker-style-6 .htmega_image_pointer.htmega-marker-content-position-left:hover .htmega_pointer_box{transform:translateY(-36%) translateX(-16%)}.htmega-marker-style-6 .htmega_image_pointer.htmega-marker-content-position-right .htmega_pointer_box{transform:translate3d(106%,-36%,0)}.htmega-marker-style-6 .htmega_image_pointer.htmega-marker-content-position-right:hover .htmega_pointer_box{transform:translateY(-36%) translateX(116%)}.htmega-marker-style-6 .htmega_image_pointer .htmega_pointer_box{background:#fff;width:240px;position:absolute;top:0;right:50%;-webkit-transform:translate3d(50%,-100%,0);transform:translate3d(50%,-100%,0);border-radius:5px;opacity:0;visibility:hidden;-webkit-transition:all 0.3s cubic-bezier(0,0,.2,1);transition:all 0.3s cubic-bezier(0,0,.2,1);z-index:10;padding:20px;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);box-shadow:0 2px 20px 0 rgb(0 0 0 / .07);text-align:center}.htmega-marker-style-6 .htmega_image_pointer .htmega_pointer_box h4{font-size:20px;margin-bottom:7px;color:#000}.htmega-marker-style-6 .htmega_image_pointer .htmega_pointer_box p{font-size:13px;line-height:24px;margin:0;color:#000}.htmega-marker-style-6 .htmega_image_pointer:hover .htmega_pointer_box{visibility:visible;opacity:1;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translateY(-110%) translateX(50%);transform:translateY(-110%) translateX(50%)}.htmega-marker-style-6 .htmega_image_pointer{position:absolute;left:83%;top:37%}.htmega-marker-wrapper>img{width:100%}.htmega-shadow-wrapper{position:absolute;left:auto;right:auto;width:46px;height:46px}.htmega-shadow-wrapper::after,.htmega-shadow-wrapper::before{position:absolute;top:50%;left:50%;display:block;content:'';border:1px solid #f10;border-radius:50%;-webkit-transform:scale(.35) translateY(-50%) translateX(-50%);-ms-transform:scale(.35) translateY(-50%) translateX(-50%);transform:scale(.35) translateY(-50%) translateX(-50%);opacity:0;-webkit-animation:marker-ripple-animation 2.6s cubic-bezier(.25,.9,.2,1) 0.4s infinite;animation:marker-ripple-animation 2.6s cubic-bezier(.25,.9,.2,1) 0.4s infinite;background-color:red;z-index:0}.htmega-shadow-wrapper::after{width:100%;height:100%;border-color:rgb(255 255 255 / .4);-webkit-animation:marker-ripple-animation 2.6s cubic-bezier(.25,.9,.2,1) 0s infinite;animation:marker-ripple-animation 2.6s cubic-bezier(.25,.9,.2,1) 0s infinite}@-webkit-keyframes marker-ripple-animation{0%{-webkit-transform:translate3d(-50%,-50%,0) scale(1);opacity:1}100%{-webkit-transform:translate3d(-50%,-50%,0) scale(1.7);opacity:0}}@keyframes marker-ripple-animation{0%{transform:translate3d(-50%,-50%,0) scale(1);opacity:1}100%{transform:translate3d(-50%,-50%,0) scale(1.7);opacity:0}}.htmega_image_pointer.htmega-image-marker-active-yes .htmega_pointer_box{visibility:visible;opacity:1}@media (max-width:767px){.htmega-marker-wrapper .htmega-image-marker-hide-on-mobile-yes{display:none}}.htmega_image_pointer::before,.htmega_image_pointer::after{visibility:hidden}.htmega-marker-content-position-arrow.htmega_image_pointer::before,.htmega-marker-content-position-arrow.htmega_image_pointer::after,.htmega-marker-content-position-line.htmega_image_pointer::after{visibility:visible}.htmega_image_pointer::after{content:"";height:0;left:50%;transform:translateX(-50%);position:absolute;bottom:100%;width:2px;background:#000;transition:all 0.3s ease-in-out;opacity:0}.htmega_image_pointer::before{border-left:12px solid #fff0;border-right:12px solid #fff0;border-top:12px solid #fff0;border-bottom:12px solid #fff0;content:"";margin:-25px;height:0;left:50%;transform:translate(-50%);position:absolute;top:0;z-index:3;transition:all 0.3s ease-in-out;opacity:0}.htmega_image_pointer:hover::after,.htmega-image-marker-active-yes.htmega_image_pointer::after{height:27px;opacity:1}.htmega_image_pointer:hover::before,.htmega-image-marker-active-yes.htmega_image_pointer::before{opacity:1}.htmega-marker-content-position-left.htmega_image_pointer::before,.htmega-marker-content-position-right.htmega_image_pointer::before{left:0;top:50%;transform:translateY(-50%)}.htmega-marker-content-position-left.htmega_image_pointer::before{margin:0 0 0 -25px}.htmega-marker-content-position-left.htmega_image_pointer::after,.htmega-marker-content-position-right.htmega_image_pointer::after{top:50%;transform:translateY(-50%);right:100%;left:auto;width:0;height:2px}.htmega-marker-content-position-left.htmega_image_pointer:hover::after,.htmega-marker-content-position-right.htmega_image_pointer:hover::after,.htmega-image-marker-active-yes.htmega-marker-content-position-left.htmega_image_pointer::after,.htmega-image-marker-active-yes.htmega-marker-content-position-right.htmega_image_pointer::after{width:27px}.htmega-marker-content-position-top.htmega_image_pointer::before{border-bottom-color:#000;margin:-25px 0 0}.htmega-marker-content-position-top.htmega_image_pointer:hover::before,.htmega-image-marker-active-yes.htmega-marker-content-position-top.htmega_image_pointer::before{margin-top:-50px}.htmega-marker-content-position-bottom.htmega_image_pointer::after{bottom:auto;top:100%}.htmega-marker-content-position-bottom.htmega_image_pointer::before{border-top-color:#000;top:auto;bottom:0;margin:0 0 -25px}.htmega-marker-content-position-bottom.htmega_image_pointer:hover::before,.htmega-image-marker-active-yes.htmega-marker-content-position-bottom.htmega_image_pointer::before{margin-bottom:-50px}.htmega-marker-content-position-left.htmega_image_pointer::before{border-right-color:#000;margin:0 0 0 -25px}.htmega-marker-content-position-left.htmega_image_pointer:hover::before,.htmega-image-marker-active-yes.htmega-marker-content-position-left.htmega_image_pointer::before{margin-left:-50px}.htmega-marker-content-position-right.htmega_image_pointer::after{left:100%;right:auto}.htmega-marker-content-position-right.htmega_image_pointer::before{border-left-color:#000;margin:0 -25px 0;left:auto;right:0}.htmega-marker-content-position-right.htmega_image_pointer:hover::before,.htmega-image-marker-active-yes.htmega-marker-content-position-right.htmega_image_pointer::before{margin-right:-50px}.htmega-marker-content-position-line.htmega_image_pointer::before{visibility:hidden}.htmega-inlinemenu-area ul{list-style:none;margin:0;padding:0}.htmega-inlinemenu-area ul.htmega-mainmenu>li>ul{display:none}.htmega-mainmenu{display:flex;flex-flow:row wrap;justify-content:center}.linemenu-nav ul li{margin:0 18px;position:relative}.linemenu-nav ul li a{font-family:"Montserrat",sans-serif;font-weight:600;font-size:14px;text-transform:inherit;text-decoration:none;color:#636363;position:relative;padding-bottom:10px;display:inline-block}.htmega-inlinemenu-style-1 .linemenu-nav ul li a::before{background:#d94f5c none repeat scroll 0 0;bottom:0;content:"";height:2px;left:0;position:absolute;transform:scale3d(0,5,1);transform-origin:0 50% 0;transition:transform 0.3s cubic-bezier(1,.68,.16,.9) 0s;width:100%}.htmega-inlinemenu-style-1 .linemenu-nav ul>li:hover>a::before{transform:scale3d(1,1,1)}.linemenu-nav ul>li:hover>a{color:#d94f5c}.htmega-inlinemenu-style-2 .linemenu-nav ul li{margin:0}.htmega-inlinemenu-style-2 .linemenu-nav ul li a{padding:15px}.htmega-inlinemenu-style-2 .linemenu-nav ul li a::before,.htmega-inlinemenu-style-2 .linemenu-nav ul li a::after{border:2px solid #fff;content:"";height:100%;left:0;position:absolute;top:0;transition:transform 0.2s ease 0s;width:100%}.htmega-inlinemenu-style-2 .linemenu-nav ul li a::before{border-width:0 2px;transform:scale3d(1,0,1);transform-origin:0 50% 0}.htmega-inlinemenu-style-2 .linemenu-nav ul li a::after{border-width:2px 0;transform:scale3d(0,1,1);transform-origin:0 0 0;transition-delay:0.2s}.htmega-inlinemenu-style-2 .linemenu-nav ul li:hover a::before,.htmega-inlinemenu-style-2 .linemenu-nav ul li:hover a::after{transform:scale3d(1,1,1)}.linemenu-nav ul.htmega-mainmenu>li:hover>a{transition:all 0.35s ease}.htmega-inlinemenu-style-3 li{position:relative}.htmega-inlinemenu-style-3 li a{position:relative;display:block}.htmega-inlinemenu-style-3 li::before,.htmega-inlinemenu-style-3 li::after,.htmega-inlinemenu-style-3 li a::before,.htmega-inlinemenu-style-3 li a::after{position:absolute;display:block;top:0;right:0;bottom:0;left:0;border:2px solid #d94f5c;content:'';z-index:-1;opacity:0;pointer-events:none}.htmega-inlinemenu-style-3 li:hover::before,.htmega-inlinemenu-style-3 li:hover::after,.htmega-inlinemenu-style-3 li:hover a::before,.htmega-inlinemenu-style-3 li:hover a::after{-webkit-animation:lineanimation .6s ease-in-out;animation:lineanimation .6s ease-in-out;z-index:1;opacity:1}.htmega-inlinemenu-style-3 li::before{border-width:0 0 0 2px;-webkit-transform-origin:left bottom;transform-origin:left bottom}.htmega-inlinemenu-style-3 li::after{border-width:0 2px 0 0;-webkit-transform-origin:right top;transform-origin:right top}.htmega-inlinemenu-style-3 li a::before{border-width:2px 0 0;-webkit-transform-origin:left top;transform-origin:left top}.htmega-inlinemenu-style-3 li a::after{border-width:0 0 2px;-webkit-transform-origin:right bottom;transform-origin:right bottom}.htmega-inlinemenu-style-3 li:hover::before{-webkit-animation-delay:-.45s;animation-delay:-.45s}.htmega-inlinemenu-style-3 li:hover::after{-webkit-animation-delay:-.15s;animation-delay:-.15s}.htmega-inlinemenu-style-3 li:hover a::before{-webkit-animation-delay:-.3s;animation-delay:-.3s}.htmega-inlinemenu-style-3 li:hover a::after{-webkit-animation-delay:0;animation-delay:0}.htmega-inlinemenu-style-3 li a span{position:relative;z-index:3}@-webkit-keyframes lineanimation{0%,33%{opacity:0;-webkit-transform:rotate(45deg) scale(1.5);transform:rotate(45deg) scale(1.5)}100%{opacity:1;-webkit-transform:none;transform:none}}@keyframes lineanimation{0%,33%{opacity:0;-webkit-transform:rotate(45deg) scale(1.5);transform:rotate(45deg) scale(1.5)}100%{opacity:1;-webkit-transform:none;transform:none}}.htmega-inlinemenu-style-4 li a{position:relative;padding:10px 0}.htmega-inlinemenu-style-4 li a::before,.htmega-inlinemenu-style-4 li a::after{content:'';position:absolute;left:0;width:100%;height:2px;background:#fff;-webkit-transform:scale3d(0,1,1);transform:scale3d(0,1,1);-webkit-transition:-webkit-transform 0.2s;transition:transform 0.2s}.htmega-inlinemenu-style-4 li a::before{top:0;-webkit-transform-origin:0 50%;transform-origin:0 50%}.htmega-inlinemenu-style-4 li a::after{bottom:0;-webkit-transform-origin:100% 50%;transform-origin:100% 50%}.htmega-inlinemenu-style-4 li a:hover::before,.htmega-inlinemenu-style-4 li a:hover::after{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1);-webkit-transition-timing-function:cubic-bezier(.22,.61,.36,1);transition-timing-function:cubic-bezier(.22,.61,.36,1);-webkit-transition-duration:0.4s;transition-duration:0.4s}.htmega-inlinemenu-style-5 li a{position:relative}.htmega-inlinemenu-style-5 ul li{margin:0 10px}.htmega-inlinemenu-style-5 ul li a{position:relative;overflow:hidden;width:130px;padding:1em 0;display:block;padding:1em;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-webkit-tap-highlight-color:#fff0;color:#636363}.htmega-inlinemenu-style-5 ul li a:hover{color:#d94f5c}.htmega-inlinemenu-style-5 ul li a::before{content:'';position:absolute;bottom:0;left:0;width:300%;height:50px;opacity:0;background:url(//enduropoint.si/wp-content/plugins/ht-mega-for-elementor/assets/images/icons/line.svg) no-repeat top left;-webkit-transform:translate3d(130px,0,0);transform:translate3d(130px,0,0);-webkit-transition:-webkit-transform 0s 0.3s,opacity 0.3s;transition:transform 0s 0.3s,opacity 0.3s}.htmega-inlinemenu-style-5 ul li a:hover::before{opacity:1;-webkit-transform:translate3d(-260px,0,0);transform:translate3d(-260px,0,0);-webkit-transition:-webkit-transform 0.5s;transition:transform 0.5s}.htmega-inlinemenu-style-6 ul li a{position:relative;overflow:hidden;height:3em;padding:1em 0;text-align:center;-webkit-transition:color 0.3s;transition:color 0.3s}.htmega-inlinemenu-style-6 ul li a:hover{color:#d94f5c}.htmega-inlinemenu-style-6 ul li:hover a{-webkit-animation:anim-francisco 0.4s forwards;animation:anim-francisco 0.4s forwards;color:#d94f5c}@-webkit-keyframes anim-francisco{50%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}51%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}100%{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes anim-francisco{50%{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}51%{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}100%{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.htmega-inlinemenu-style-7 ul li{margin:0}.htmega-inlinemenu-style-7 ul li a{padding:10px 0;border-top:2px solid #c90dbe;color:#c90dbe;position:relative;margin:0 10px;text-transform:uppercase;letter-spacing:1px;font-weight:400;text-shadow:0 0 1px rgb(255 255 255 / .3)}.htmega-inlinemenu-style-7 ul li a::before{position:absolute;left:0;overflow:hidden;padding:10px 0;max-width:0;border-bottom:2px solid #c90dbe;color:#c90dbe;content:attr(data-hover);-webkit-transition:max-width 0.5s;-moz-transition:max-width 0.5s;transition:max-width 0.5s;top:50%;transform:translateY(-50%)}.htmega-inlinemenu-style-7 ul li a:hover::before,.htmega-inlinemenu-style-7 ul li a:focus::before{max-width:100%}.htmega-inlinemenu-style-8 .linemenu-nav ul li a{padding:0 20px 10px 20px}.htmega-inlinemenu-style-8 .linemenu-nav ul li a::before{position:absolute;bottom:18px;left:-8px;content:" ";transition:all 0.35s ease;transform:rotate(0deg);height:100%;width:0;border-bottom:2px solid rgb(49 45 255 / .5);border-left:0;border-top:0;border-right:0;opacity:0}.htmega-inlinemenu-style-8 .linemenu-nav ul>li:hover>a::before{opacity:1;width:100%;transform:rotate(-20deg)}.htmega-inlinemenu-style-9 .linemenu-nav ul li a{padding:0 25px 0 25px}.htmega-inlinemenu-style-9 .linemenu-nav ul li a::before{position:absolute;left:12px;top:3px;content:" ";height:8px;width:8px;opacity:0;transition:all 0.35s ease;transform:translate(100%,50%);border:0;border-left:2px solid #636363;border-top:2px solid #636363}.htmega-inlinemenu-style-9 .linemenu-nav ul li a::after{position:absolute;right:12px;bottom:0;content:" ";border:2px solid #fff;height:8px;width:8px;border-right:0;border-bottom:0;opacity:0;transition:0.3s ease;transform:translate(-100%,-50%);border:0;border-right:2px solid #636363;border-bottom:2px solid #636363}.htmega-inlinemenu-style-9 .linemenu-nav ul>li:hover>a::before{opacity:1;transform:translate(0%,0%)}.htmega-inlinemenu-style-9 .linemenu-nav ul>li:hover>a::after{opacity:1;transform:translate(0%,0%)}.htmega-inlinemenu-style-10 .linemenu-nav ul li a::before{position:absolute;top:-15px;left:50%;content:" ";height:20px;width:3px;opacity:0;transition:all 0.35s ease;transform:translate(50%);background:#FF6A3B}.htmega-inlinemenu-style-10 .linemenu-nav ul li a::after{position:absolute;bottom:-15px;left:50%;content:" ";height:20px;width:3px;opacity:0;transition:all 0.35s ease;transform:translate(50%);background:#FF6A3B}.htmega-inlinemenu-style-10 .linemenu-nav ul>li:hover>a::after{opacity:1;transform:translate(0%,0%)}.htmega-inlinemenu-style-10 .linemenu-nav ul>li:hover>a::before{opacity:1;transform:translate(0%,0%)}.htmega-inlinemenu-style-1 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::before{opacity:1;transform:none;transform-origin:unset;transition:none}.htmega-inlinemenu-style-2 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::before{opacity:1;transform:none;transition:none}.htmega-inlinemenu-style-2 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::after{opacity:1;transform:none;transition:none}.htmega-inlinemenu-style-3 .linemenu-nav ul.htmega-mainmenu li a{padding:0 8px 0 8px}.htmega-inlinemenu-style-4 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::before,.htmega-inlinemenu-style-4 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::after{opacity:1;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none}.htmega-inlinemenu-style-5 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::before{opacity:1;-webkit-transform:none;transform:none;-webkit-transition:none;transition:none}.htmega-inlinemenu-style-8 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::before{opacity:1;transform:rotate(-20deg);width:100%}.htmega-inlinemenu-style-9 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::before{opacity:1;transform:translate(0%,0%)}.htmega-inlinemenu-style-9 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::after{opacity:1;transform:translate(0%,0%)}.htmega-inlinemenu-style-10 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::before{opacity:1}.htmega-inlinemenu-style-10 .linemenu-nav ul.htmega-mainmenu li.current-menu-item a::after{opacity:1}.htmega-not-found{overflow:hidden;text-align:center;position:relative}.htmega-not-found .content{position:relative;z-index:2}.htmega-not-found .content h1{color:#c0d2ff;font-size:48px;margin-top:35px;margin-bottom:43px}.htmega-not-found .content a.page-back-btn{background:#c0d2ff;height:62px;display:inline-flex;padding:0 40px;line-height:62px;border-radius:31px;color:#131e3a;font-size:16px;font-weight:500;transition:0.4s ease-in-out;text-decoration:none;align-items:center;justify-content:center}.htmega-not-found .content a.page-back-btn:hover{background:#fff;border-radius:20px 0;color:#18012c;transform:translateY(-5px)}.htmega-not-found .content a.page-back-btn i{padding-right:12px;font-size:18px}.htmega-not-found .content a.page-back-btn svg{width:20px;margin-right:8px;fill:#131e3a}.cloud{width:350px;height:120px;background:#1e2a4a;background:linear-gradient(top,#1e2a4a 100%);background:-webkit-linear-gradient(top,#1e2a4a 100%);background:-moz-linear-gradient(top,#1e2a4a 100%);background:-ms-linear-gradient(top,#1e2a4a 100%);background:-o-linear-gradient(top,#1e2a4a 100%);border-radius:100px;-webkit-border-radius:100px;-moz-border-radius:100px;position:absolute;margin:120px auto 20px;transition:ease 1s}.cloud:after,.cloud:before{content:'';position:absolute;background:#1e2a4a;z-index:-1}.cloud:after{width:100px;height:100px;top:-50px;left:50px;border-radius:100px;-webkit-border-radius:100px;-moz-border-radius:100px}.cloud:before{width:180px;height:180px;top:-90px;right:50px;border-radius:200px;-webkit-border-radius:200px;-moz-border-radius:200px}.cloud-1{top:-198px;left:0;-webkit-transform:scale(.3);-moz-transform:scale(.3);transform:scale(.3);opacity:.9;-webkit-animation:htmegaclouds 15s linear infinite;-moz-animation:htmegaclouds 15s linear infinite;-o-animation:htmegaclouds 15s linear infinite}.cloud-2{top:-122px;left:140px;-webkit-transform:scale(.3);-moz-transform:scale(.3);transform:scale(.3);-webkit-animation:htmegaclouds 17s linear infinite;-moz-animation:htmegaclouds 17s linear infinite;-o-animation:htmegaclouds 17s linear infinite}.cloud-3{left:409px;top:-50px;-webkit-transform:scale(.6);-moz-transform:scale(.6);transform:scale(.6);opacity:.6;-webkit-animation:htmegaclouds 25s linear infinite;-moz-animation:htmegaclouds 25s linear infinite;-o-animation:htmegaclouds 25s linear infinite}.cloud-4{left:-46px;bottom:135px;-webkit-transform:scale(.6);-moz-transform:scale(.6);transform:scale(.6);opacity:.8;-webkit-animation:htmegaclouds 25s linear infinite;-moz-animation:htmegaclouds 25s linear infinite;-o-animation:htmegaclouds 25s linear infinite}.cloud-5{left:469px;bottom:-57px;-webkit-transform:scale(.75);-moz-transform:scale(.75);transform:scale(.75);opacity:.75;-webkit-animation:htmegaclouds 18s linear infinite;-moz-animation:htmegaclouds 18s linear infinite;-o-animation:htmegaclouds 18s linear infinite}.cloud-6{left:100%;top:263px;-webkit-transform:scale(.5);-moz-transform:scale(.5);transform:scale(.5);opacity:.8;-webkit-animation:htmegaclouds 20s linear infinite;-moz-animation:htmegaclouds 20s linear infinite;-o-animation:htmegaclouds 20s linear infinite}@-webkit-keyframes htmegaclouds{0%{margin-left:1000px}100%{margin-left:-1000px}}@-moz-keyframes htmegaclouds{0%{margin-left:1000px}100%{margin-left:-1000px}}@-o-keyframes htmegaclouds{0%{margin-left:1000px}100%{margin-left:-1000px}}.htmega-error-style-2 .content{text-align:left;padding-left:65px}.htmega-error-style-2 .content h2{color:#fff;font-size:48px;font-weight:400;margin-bottom:4px}.htmega-error-style-2 .content h1{color:#fff;font-size:50px;font-weight:400;line-height:1.2;margin-bottom:7px;margin-top:0}.htmega-error-style-2 .content h1 span{color:#fff;font-size:116px;padding-right:21px}.htmega-error-style-2 .content p{color:#fff;font-size:32px;line-height:54px;margin-bottom:32px}.htmega-error-style-2 .content a.page-back-btn{background:#fff;color:#131e3a;height:75px;display:inline-block;padding:0 60px;font-size:30px;line-height:71px;border-radius:31px;transition:.4 ease-in-out}.htmega-error-style-2 .content a.page-back-btn:hover{background:#fff;border-radius:20px 0;color:#18012c;transform:translateY(-5px)}.htmega-error-style-3 .content{padding-bottom:10px}.htmega-error-style-3 .content h2{color:#d5cff2;font-size:52px;margin-bottom:16px}.htmega-error-style-3 .content p{color:#d5cff2;font-size:30px;line-height:44px;margin-bottom:38px;font-family:"Montserrat",sans-serif}.htmega-error-style-3 .content a.page-back-btn{background:#fd5c5e;display:inline-block;border-radius:31px;color:#d5cff2;font-size:36px;transition:0.5s ease-in-out;padding:0}.htmega-error-style-3 .content a.page-back-btn i{font-size:inherit;padding-right:inherit}.htmega-error-style-3 .content a.page-back-btn:hover{transform:scale(1.2);background:#18012c;color:#fff}.not-found-4{padding:310px 0}.not-found-4 .content{text-align:left}.not-found-4 .content h2{color:#fcfcfc;font-size:36px;line-height:64px;font-weight:400;text-align:left;margin-bottom:30px}.not-found-4 .content a.page-back-btn{background:#da4c00;color:#fff;height:54px;display:inline-block;padding:0 40px;line-height:54px;font-size:16px;font-weight:600;border-radius:27px;transition:0.5s ease-in-out;margin-right:26px;font-family:"Montserrat",sans-serif}.not-found-4 .content a.page-back-btn:hover{background:#da4c00 none repeat scroll 0 0;border-radius:27px;color:#fff;opacity:.7;transform:translateY(0)}.not-found-4 .content a.page-back-btn.error_contact{background:#ff8a00}.htmega-counter-content{line-height:1}.htmega-counter-icon span{display:inline-block}.htmega-counter-img,.htmega-counter-icon{margin:auto}.htmega-counter-icon svg{width:20px}.htmega-counter-area .htmega-counter-img{display:inline-flex;align-items:center;justify-content:center}.htmega-counter-style-1{text-align:center}.htmega-counter-style-1 .htmega-counter-icon i{font-size:36px;color:#ed552d}.htmega-counter-style-1 .htmega-counter-content span{color:dimgray;font-size:36px;font-weight:700;margin-top:20px;display:inline-block;font-family:"Montserrat",sans-serif}.htmega-counter-style-1 .htmega-counter-content h2{color:#898989;font-weight:400;font-size:17px;margin:0;position:relative;margin-top:9px;display:block;padding-bottom:15px}.htmega-counter-style-1 .htmega-counter-content h2::before{background:#d5d5d5;width:48px;height:1px;content:"";position:absolute;bottom:0;left:50%;transform:translateX(-50%)}.htmega-counter-style-2{display:flex;align-items:center;justify-content:center}.htmega-counter-style-2 .htmega-counter-content{text-align:center}.htmega-countericon-align-left{flex-direction:row}.htmega-countericon-align-right{flex-direction:row-reverse}.htmega-counter-style-2 .htmega-counter-icon{padding-right:20px}.htmega-counter-style-2 .htmega-counter-icon i{font-size:48px;color:#383838}.htmega-counter-style-2 .htmega-counter-content span{color:#383838;font-size:24px;font-weight:600;margin-top:13px;display:inline-block;font-family:"Montserrat",sans-serif;position:relative}.htmega-counter-style-2 .htmega-counter-content h2{color:#383838;font-weight:400;font-size:20px;margin:0;position:relative;display:block}.htmega-counter-area{position:relative}.htmega-counter-area::before{position:absolute;content:"";left:0;right:0;top:0;bottom:0;background-color:#fff0;opacity:.8}.htmega-counter-content{position:relative;z-index:1}.htmega-counter-style-3 .htmega-counter-img{display:inline-block;position:relative}.htmega-counter-style-3 .htmega-counter-img::before{position:absolute;content:"";left:0;right:0;top:0;bottom:0;background:#52b6bc;opacity:.8;border-radius:100%}.htmega-counter-style-3 .htmega-counter-content{position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:100%}.htmega-counter-style-3{text-align:center}.htmega-counter-style-3 .htmega-counter-content span{color:#fff;font-size:40px;font-weight:600;margin-top:13px;font-family:'Courgette',cursive}.htmega-counter-style-3 .htmega-counter-content h2{color:#fff;font-weight:400;font-size:20px;margin:0;margin-top:4px;font-family:'Courgette',cursive}.htmega-counter-style-4{display:flex;align-items:center;justify-content:center}.htmega-counter-style-4 .htmega-counter-img{padding-right:25px}.htmega-counter-style-4 .htmega-counter-content{text-align:center}.htmega-counter-style-4 .htmega-counter-content span{color:#585858;font-size:24px;font-weight:600;margin-top:13px;display:inline-block;font-family:"Montserrat",sans-serif;position:relative}.htmega-counter-style-4 .htmega-counter-content h2{color:#585858;font-weight:600;font-size:24px;margin:0;position:relative;display:block;padding-bottom:14px}.htmega-counter-style-4 .htmega-counter-content h2::before{position:absolute;content:"";bottom:0;background:#ed552d;width:70px;height:2px;left:50%;transform:translateX(-50%)}.htmega-counter-style-5{text-align:center}.htmega-counter-style-5 .htmega-counter-icon i{font-size:36px;color:#ed552d}.htmega-counter-style-5 .htmega-counter-content span{color:#18012c;font-size:36px;font-weight:700;margin-top:20px;display:inline-block;font-family:'Lobster Two',cursive}.htmega-counter-style-5 .htmega-counter-content span.color-1{color:#b1c642}.htmega-counter-style-5 .htmega-counter-content span.color-2{color:#ff5020}.htmega-counter-style-5 .htmega-counter-content span.color-3{color:#ffc10d}.htmega-counter-style-5 .htmega-counter-content span.color-4{color:#68b9d8}.htmega-counter-style-5 .htmega-counter-content h2{color:#444;font-weight:400;font-size:24px;margin:0;margin-top:9px;display:block;padding-bottom:15px;font-family:'Lobster Two',cursive}.htmega-counter-style-6{text-align:center}.htmega-counter-style-6 .htmega-counter-icon{display:flex;justify-content:center;align-items:center}.htmega-counter-style-6 .htmega-counter-icon span{color:#363636;font-size:36px;font-weight:600;display:inline-block;font-family:"Montserrat",sans-serif;padding-left:15px}.htmega-counter-style-6 .htmega-counter-content h2{color:#363636;font-weight:600;font-size:16px;margin:0;display:block;font-family:"Montserrat",sans-serif;margin-top:13px;text-transform:uppercase}.htmega-counter-style-6 .htmega-counter-content::after{content:"";position:absolute;top:-10px;width:35px;border:1px dashed #fff0;left:40%}[class*="htmega"] .row-1>[class*="col"]{padding-left:1px;padding-right:1px}.grid_post .elementor-widget{margin-bottom:0!important}.row--10>[class*="col"]{padding-left:10px;padding-right:10px}.mt--30,.ht-post.mt--30{margin-top:30px}.mt--20,.ht-post.mt--20{margin-top:20px}.gradient-overlay .thumb a{display:block;position:relative}.gradient-overlay .thumb a::before{position:absolute;left:0;top:0;width:100%;height:100%;content:"";z-index:2;opacity:.3;right:0}.gradient-overlay.gradient-overlay-1 .thumb a::before{background-image:linear-gradient(#f10afd,#1cc3e2);background-image:-webkit-gradient(#f10afd,#1cc3e2);background-image:-webkit-linear-gradient(#f10afd,#1cc3e2);background-image:-moz-linear-gradient(#f10afd,#1cc3e2);background-image:-ms-linear-gradient(#f10afd,#1cc3e2);background-image:-o-linear-gradient(#f10afd,#1cc3e2);opacity:.8}.gradient-overlay.gradient-overlay-2 .thumb a::before{background-image:linear-gradient(#f29a4a,#f2c84c);background-image:-webkit-gradient(#f29a4a,#f2c84c);background-image:-webkit-linear-gradient(#f29a4a,#f2c84c);background-image:-moz-linear-gradient(#f29a4a,#f2c84c);background-image:-ms-linear-gradient(#f29a4a,#f2c84c);background-image:-o-linear-gradient(#f29a4a,#f2c84c);opacity:.8}.gradient-overlay.gradient-overlay-3 .thumb a::before{background-image:linear-gradient(#f7384e,#0fbcb9);background-image:-webkit-gradient(#f7384e,#0fbcb9);background-image:-webkit-linear-gradient(#f7384e,#0fbcb9);background-image:-moz-linear-gradient(#f7384e,#0fbcb9);background-image:-ms-linear-gradient(#f7384e,#0fbcb9);background-image:-o-linear-gradient(#f7384e,#0fbcb9);opacity:.8}.gradient-overlay.gradient-overlay-4 .thumb a::before{background-image:linear-gradient(#bd3664,#222671);background-image:-webkit-gradient(#bd3664,#222671);background-image:-webkit-linear-gradient(#bd3664,#222671);background-image:-moz-linear-gradient(#bd3664,#222671);background-image:-ms-linear-gradient(#bd3664,#222671);background-image:-o-linear-gradient(#bd3664,#222671);opacity:.8}.gradient-overlay.gradient-overlay-5 .thumb a::before{background-image:linear-gradient(#eb3449,#f45a43);background-image:-webkit-gradient(#eb3449,#f45a43);background-image:-webkit-linear-gradient(#eb3449,#f45a43);background-image:-moz-linear-gradient(#eb3449,#f45a43);background-image:-ms-linear-gradient(#eb3449,#f45a43);background-image:-o-linear-gradient(#eb3449,#f45a43);opacity:.8}.gradient-overlay.gradient-overlay-6 .thumb a::before{background-image:linear-gradient(#c03764,#202671);background-image:-webkit-gradient(#c03764,#202671);background-image:-webkit-linear-gradient(#c03764,#202671);background-image:-moz-linear-gradient(#c03764,#202671);background-image:-ms-linear-gradient(#c03764,#202671);background-image:-o-linear-gradient(#c03764,#202671);opacity:.8}.gradient-overlay.gradient-overlay-7 .thumb a::before{background-image:linear-gradient(#eb3449,#f45b43);background-image:-webkit-gradient(#eb3449,#f45b43);background-image:-webkit-linear-gradient(#eb3449,#f45b43);background-image:-moz-linear-gradient(#eb3449,#f45b43);background-image:-ms-linear-gradient(#eb3449,#f45b43);background-image:-o-linear-gradient(#eb3449,#f45b43);opacity:.8}.black-overlay .thumb a{display:block;position:relative}.black-overlay .thumb a::before{position:absolute;left:0;top:0;width:100%;height:100%;content:"";z-index:2;opacity:.2;right:0;background:#000}.ht-post{position:relative;margin-top:2px;overflow:hidden}.ht-post .thumb{overflow:hidden}.ht-post .thumb a img{width:100%;display:block;transition:0.3s ease-out;overflow:hidden;object-fit:cover;height:100%}.ht-post:hover .thumb a img{opacity:1;transform:scale3d(1.1,1.1,1)}.ht-post a.post-category{background:#f05555 none repeat scroll 0 0;color:#fff;display:inline-block;font-size:12px;font-weight:600;height:auto;letter-spacing:1px;line-height:24px;padding:0 8px;position:absolute;text-transform:uppercase;z-index:2}.ht-post a.post-position-top-left{left:0;top:0}.ht-post a.post-position-top-right{right:0;top:0}.ht-post .post-content{position:absolute;bottom:0;z-index:2;padding:20px 10px 20px 20px;width:100%}.ht-post .post-content .content h4,.content .htmega-post-g-title{font-size:20px;line-height:26px;margin-bottom:11px}.ht-post .post-content .content h2,.htmega-post-grid-layout-5 .htb-col-lg-8 .ht-post .post-content .content .htmega-post-g-title,.htmega-post-grid-layout-2 .htb-col-lg-6 .ht-post .post-content .content .htmega-post-g-title{font-size:36px;margin-bottom:11px}.ht-post .post-content .content a{color:#fff}a.htmega-post-g-read-more{display:inline-block}p.htmega-post-g-description{color:#fff}.show-content-under-thumbnail-yes .ht-post .post-content{position:relative}.ht-post .post-content .content .meta{color:#fff;font-size:14px;letter-spacing:2px}.ht-post a.play-video{position:absolute;z-index:3;top:50%;left:50%;transform:translateX(-50%) translateY(-50%);width:50px;height:50px;background:#fff0;border:1px solid #fff;border-radius:100%;padding:0;text-align:center;color:#fff;font-size:24px;transition:0.4s ease-in-out}.ht-post a.play-video:hover{background:#18012c;color:#fff;border:1px solid #18012c}.ht-post a.play-video i{margin-left:4px}.htmega-single-post .post-category a{background:#f05555 none repeat scroll 0 0;color:#fff;display:inline-block;font-size:12px;font-weight:300;line-height:24px;padding:0 9px;text-transform:uppercase;transition:all 0.4s ease 0s}.htmega-single-post .post-category a:hover{background:#18012c;color:#fff}.htmega-single-post ul.meta{display:flex;list-style:outside none none;margin:0 -15px;padding:0}.htmega-single-post ul.meta li{font-size:13px;letter-spacing:2px;margin:0 15px}.htmega-single-post ul.meta li i{font-size:14px;margin-right:10px}.htmega-single-post{position:relative}.htmega-single-post .thumb{overflow:hidden;line-height:0}.htmega-single-post .thumb a{display:block;position:relative}.htmega-single-post a{text-decoration:none}.htmega-single-post .thumb a img{transition:0.4s ease-in-out}.htmega-single-post:hover .thumb a img{transform:scale(1.2)}.htmega-single-post-style-1 .content{position:absolute;bottom:0;padding:40px;width:100%}.htmega-single-post-style-1 .content h2{font-size:24px;font-weight:600;margin-top:15px;margin-bottom:10px;line-height:36px}.htmega-single-post-style-1 .content h2 a,.htmega-single-post-style-1 .content ul.meta li,.htmega-single-post-style-1 .content ul.meta li a{color:#fff}.htmega-single-post-style-2 .content{padding-top:30px}.htmega-single-post-style-2 .content h2{font-size:24px;font-weight:600;margin-top:15px;margin-bottom:10px;line-height:36px}.htmega-single-post-style-2 .content h2 a,.htmega-single-post-style-2 .content ul.meta li,.htmega-single-post-style-2 .content ul.meta li a{color:#464545}.htmega-single-post-style-3 .content{position:absolute;top:50%;width:100%;transform:translateY(-50%);text-align:center}.htmega-single-post-style-3 .content h2{font-size:24px;font-weight:600;margin-top:18px;margin-bottom:22px;line-height:34px}.htmega-single-post-style-3 .content h2 a{color:#fff}.htmega-single-post-style-3 .content ul.meta{justify-content:center}.htmega-single-post-style-3 .content ul.meta li,.htmega-single-post-style-3 .content ul.meta li a{color:#fff}.htmega-single-post-style-4 .content{background:#fff;text-align:center;padding:40px 20px}.htmega-single-post-style-4 .content h2{font-size:24px;font-weight:600;margin-bottom:16px;line-height:36px;margin-top:0}.htmega-single-post-style-4 .content h2 a{color:#464545;transition:0.4s ease-in}.htmega-single-post-style-4 .content h2 a:hover{color:#18012c}.htmega-single-post-style-4 .content ul.meta{justify-content:center}.htmega-single-post-style-4 .content ul.meta li,.htmega-single-post-style-4 .content ul.meta li a{color:#464545}.htmega-single-post-slide{position:relative;overflow:hidden}.htmega-single-post-slide img{width:100%}.htmega-single-post-slide a{text-decoration:none}.htmega-single-post-slide .content ul.post-category{display:block;list-style:outside none none;margin:0;padding:0}.htmega-single-post-slide .content ul.post-category li{margin-right:10px;transition:all 0.4s ease-in-out 0s;line-height:inherit;margin-left:0;display:inline-block}.htmega-single-post-slide .content ul.post-category li a{color:#fff;font-size:13px;font-weight:300;letter-spacing:1px;text-transform:uppercase;padding:5px 9px;display:block;text-decoration:none;line-height:1;background:#f05555 none repeat scroll 0 0}.htmega-single-post-slide .content ul.post-category li a:hover{background:#18012c none repeat scroll 0 0;color:#fff}.htmega-single-post-slide ul.meta{color:#464545;display:block;list-style:outside none none;margin:0;padding:0}.htmega-single-post-slide ul.meta li{font-size:13px;letter-spacing:2px;margin-right:15px;display:inline-block;margin-left:0}.htmega-single-post-slide ul.meta li i{padding-right:10px}.htmega-single-post-slide .content .post-inner h2{margin-top:20px;margin-bottom:10px}.htmega-single-post-slide .content .post-inner p{margin:22px 0 25px;color:#18012c;font-size:14px;line-height:28px}.htmega-single-post-slide .content .post-inner h2 a,.htmega-single-post-slide .content .post-inner ul.meta li a{color:#18012c}.htmega-single-post-slide .post-btn a.readmore-btn{background:#fff0 none repeat scroll 0 0;border:1px solid #464545;border-radius:23px;color:#464545;display:inline-block;font-size:14px;font-weight:400;line-height:44px;padding:0 37px;transition:all 0.4s ease-in-out 0s;text-decoration:none}.htmega-single-post-slide .post-btn a.readmore-btn:hover{background:#18012c none repeat scroll 0 0;border:1px solid #18012c;color:#fff}.htmega-postslider-area img{width:100%}.htmega-postslider-area button.slick-arrow{background:#ccd5d5 none repeat scroll 0 0;border:0 none;bottom:10px;color:#00282a;font-size:24px;height:40px;left:auto;line-height:1;padding:0;position:absolute;right:10px;width:46px;z-index:2;transition:all 0.3s ease-in-out}.htmega-postslider-area button.htmega-carosul-prev.slick-arrow{right:60px}.htmega-arrow-2.htmega-postslider-area button.slick-arrow{background:#d7dae9 none repeat scroll 0 0;border:1px solid #d7dae9;border-radius:100%;color:#2a47e0;font-size:24px;left:0;position:absolute;top:50%;transform:translateY(-50%);transition:all 0.4s ease 0s;z-index:2}.htmega-arrow-2.htmega-postslider-area button.htmega-carosul-next.slick-arrow{left:auto!important;right:0}.htmega-postslider-area .slick-dots li button::before{display:none}.htmega-postslider-area .slick-dots li{background:#ccd5d5 none repeat scroll 0 0;border-radius:100%;height:15px;width:15px}.htmega-postslider-area .slick-dots li.slick-active{background:#00282a none repeat scroll 0 0}.htmega-postslider-layout-1 .content{position:absolute;left:0;top:0;max-width:40%;height:100%;padding:10px;z-index:2}.htmega-postslider-layout-1 .content .post-inner{width:100%;height:100%;background:rgb(0 140 167 / .8);display:flex;flex-direction:column;justify-content:center;padding:30px}.htmega-postslider-layout-1 .content .post-inner h2{font-size:24px;font-weight:500}.htmega-postslider-layout-1 .content .post-inner h2 a,.htmega-postslider-layout-1 .content .post-inner ul.meta li a{color:#fff}.htmega-postslider-layout-1 .content .post-inner p{color:#fff;font-size:14px;line-height:28px}.htmega-postslider-layout-1 ul.meta{color:#fff}.htmega-postslider-layout-1 .post-btn a.readmore-btn{border:1px solid #fff;color:#fff}.htmega-single-post-slide .thumb a{display:block;height:100%}.htmega-single-post-slide .thumb a img{object-fit:cover;width:100%;height:100%}.htmega-postslider-layout-2 .content .post-inner h2{font-size:24px;font-weight:500;margin-top:20px;margin-bottom:18px}.htmega-postslider-layout-2 .content .post-inner h2 a{color:#464545}.htmega-postslider-layout-2 .content .post-inner ul.meta li,.htmega-postslider-layout-2 .content .post-inner ul.meta li a{color:#464545}.htmega-postslider-layout-2 .content .post-inner p{color:#464545}.htmega-postslider-layout-2 .content .post-inner .post-btn{margin-top:19px}.htmega-post-slider-right .content{display:flex;align-items:center;height:100%;position:relative;z-index:2}.htmega-postslider-layout-3 .content{position:absolute;top:50%;width:100%;transform:translateY(-50%);text-align:center;z-index:2}.htmega-postslider-layout-3 .content .post-inner h2{font-size:24px;font-weight:500;margin-top:20px;margin-bottom:18px;padding:0 26%;line-height:34px}.htmega-postslider-layout-3 .content .post-inner h2 a{color:#fff}.htmega-postslider-layout-3 .content .post-inner ul.meta{justify-content:center}.htmega-postslider-layout-3 .content .post-inner ul.meta li,.htmega-postslider-layout-3 .content .post-inner ul.meta li a{color:#fff}.htmega-postslider-layout-3 .content .post-inner .post-btn{margin-top:19px}.htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn{border:1px solid #fff;color:#fff}.htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn:hover{background:#18012c;color:#fff;border:1px solid #18012c}.htmega-postslider-layout-3 .content ul.post-category{justify-content:center}.htmega-postslider-layout-4 .content{position:absolute;text-align:center;bottom:0;padding:20px}.htmega-postslider-layout-4 .content .post-inner{background:rgb(0 86 255 / .7);padding:25px;text-align:left}.htmega-postslider-layout-4 .content .post-inner h2{font-size:24px;font-weight:500;margin-bottom:13px;line-height:34px}.htmega-postslider-layout-4 .content .post-inner h2 a{color:#fff}.htmega-postslider-layout-4 .content .post-inner ul.meta li{color:#fff}.htmega-postslider-layout-4 .content .post-inner ul.meta li a{color:#fff}.htmega-postslider-layout-4 .content ul.post-category{justify-content:center}.htmega-postslider-layout-5 .content{background:#f4f4f4;padding:60px}.htmega-postslider-layout-5 .content .post-inner h2{font-size:24px;font-weight:500;margin-top:20px;margin-bottom:18px;line-height:34px}.htmega-postslider-layout-5 .content .post-inner h2 a{color:#464545}.htmega-postslider-layout-5 .content .post-inner ul.meta li,.htmega-postslider-layout-5 .content .post-inner ul.meta li a{color:#464545}.htmega-postslider-layout-5 .content .post-inner .post-btn{margin-top:19px}.htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn{border:1px solid #494849;color:#494849}.htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn:hover{background:#18012c;color:#fff;border:1px solid #18012c}.htmega-arrow-2.htmega-postslider-area.htmega-postslider-style-5 button.slick-arrow{top:30%}.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots{bottom:0;display:flex;flex-direction:column;justify-content:space-between;position:absolute;right:0;top:0;width:200px;z-index:2}.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li{align-items:center;background:#fff0 none repeat scroll 0 0;border-bottom:5px solid #828282;border-left:5px solid #828282;border-radius:0;border-right:5px solid #828282;cursor:pointer;display:flex;flex-basis:100%;height:auto;margin:0;overflow:hidden;padding:20px;position:relative;text-align:left;transition:all 0.5s ease-in-out 0s;width:auto;z-index:2}.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li:first-child{border-top:5px solid #828282}.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li.slick-active{background:#fff0 none repeat scroll 0 0;border:5px solid #fff}.htmega-postslider-style-4.htmega-postslider-area.thumb-st-layout-4 ul.slick-dots li:last-child{border-bottom:0!important}.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li h6{bottom:0;color:#fff;font-weight:500;line-height:22px;margin:0}.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li img{height:100%;object-fit:cover;width:100%}.htmega-postslider-style-4.htmega-postslider-area ul.slick-dots li:after{content:"";background:#fff0;left:0;height:0;position:absolute;width:100%;height:100%;z-index:2;text-align:center;display:flex;justify-content:center;align-items:center;font-size:132px;color:#fff;transition:all 0.3s ease-in-out}.htmega-postslider-style-4.thumb-st-layout-4.htmega-postslider-area ul.slick-dots li:after{opacity:0}.htmega-postslider-style-4.thumb-st-layout-4.htmega-postslider-area ul.slick-dots li.slick-active:after,.htmega-postslider-style-4.thumb-st-layout-4.htmega-postslider-area ul.slick-dots li:hover:after{opacity:1}.htmega-post-slider-st-6{display:flex;flex-direction:row-reverse}.htmega-post-slider-st-6 .htmega-post-slider-right{width:45%}.htmega-post-slider-st-6 .htmega-post-slider-left{width:55%}.htmega-post-slider-st-6 .htmega-post-slider-right{border:25px solid #ddd}.htmega-post-slider-st-6 .htmega-post-slider-right .content{background-color:#fff0;background-image:linear-gradient(60deg,#3237C2 0%,#f2295b 100%);padding:30px}.htmega-post-slider-left .thumb{height:100%}.htmega-post-slider-st-7{flex-direction:row}.htmega-post-slider-st-7 .htmega-post-slider-right{width:55%}.htmega-post-slider-st-7 .htmega-post-slider-left{width:45%}.htmega-post-slider-st-7 .htmega-post-slider-right{border:none}.htmega-post-slider-st-7 .htmega-post-slider-right .content{background-color:none;background-image:none}.htmega-post-slider-st-7{background-color:rgb(255 255 255 / .2);border-radius:15px;overflow:hidden}.htmega-single-post-slide .thumb a,.ht-post .thumb a{position:relative;display:block}.htmega-single-post-slide .thumb a:after,.ht-post .thumb a:after,.htmega-single-post-slide.htmega-postslider-layout-3 .thumb a:before{content:"";position:absolute;background:#fff0;top:0;left:0;width:100%;z-index:0;height:100%;transition:all 0.3s ease-in-out}.htmega-single-post-slide.htmega-postslider-layout-3 .thumb a:before{opacity:0;transition:all 0.3s ease-in-out}.htmega-single-post-slide.htmega-postslider-layout-3:hover .thumb a:before{opacity:1}.htmega-postslider-area .slick-slide>div{line-height:0}@media (max-width:767px){.htmega-post-slider-st-6{flex-direction:column-reverse}.htmega-post-slider-st-6 .htmega-post-slider-right{width:100%}.htmega-post-slider-st-6 .htmega-post-slider-left{width:100%}}.htmega-image-gridstyle-4 .htb-row>[class*="col"]{padding-left:10px;padding-right:10px}.htmega-masonry-activation.htmega-image-gridstyle-5 .htb-row>[class*="col"]{padding-left:25px;padding-right:25px}.htmega-masonry-activation .htmega-singleimage-grid{overflow:hidden}.htmega-singleimage-grid .thumb img{width:100%}.htmega-singleimage-grid .thumb{line-height:0}.htmega-singleimage-grid h2{margin:0}.htmega-singleimage-gridstyle-1{width:100%;height:100%;float:left;overflow:hidden;position:relative;text-align:center;cursor:default;margin-top:30px;overflow:hidden}.htmega-singleimage-gridstyle-1 .thumb{overflow:hidden}.htmega-singleimage-gridstyle-1 .thumb a{position:relative;display:block;z-index:2}.htmega-singleimage-gridstyle-1 .thumb a::before{width:100%;height:100%;position:absolute;top:0;left:0;opacity:0;background-color:rgb(0 0 0 / .5);-webkit-transition:all .4s ease-in-out;transition:all .4s ease-in-out;content:"";z-index:1}.htmega-singleimage-gridstyle-1 .thumb a img{display:block;position:relative;-webkit-transition:all .4s linear;transition:all .4s linear}.htmega-singleimage-gridstyle-1:hover .thumb a::before{opacity:1}.htmega-singleimage-gridstyle-1:hover .thumb a img{-webkit-transform:scale(1.2);transform:scale(1.2)}.htmega-singleimage-gridstyle-1 .image-grid-content h2{text-transform:uppercase;color:#fff;text-align:center;position:absolute;font-size:17px;background:rgb(0 0 0 / .6);-webkit-transform:translateY(-100px);transform:translateY(-100px);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;padding:10px;width:100%;top:0;z-index:3}.htmega-singleimage-gridstyle-1 .image-grid-content a.read-btn{text-decoration:none;display:inline-block;text-transform:uppercase;color:#fff;border:1px solid #fff;background-color:#fff0;opacity:0;filter:alpha(opacity=0);-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;margin:50px 0 0;padding:7px 14px;position:absolute;top:50%;margin:0;left:50%;-webkit-transform:translateX(-50%) translateY(-70%);transform:translateX(-50%) translateY(-70%)}.htmega-singleimage-gridstyle-1 .image-grid-content a.read-btn:hover{-webkit-box-shadow:0 0 5px #fff;box-shadow:0 0 5px #fff}.htmega-singleimage-gridstyle-1:hover .image-grid-content{opacity:1;filter:alpha(opacity=100)}.htmega-singleimage-gridstyle-1:hover .image-grid-content h2{opacity:1;filter:alpha(opacity=100);-webkit-transform:translateY(0);transform:translateY(0)}.htmega-singleimage-gridstyle-1:hover .image-grid-content a.read-btn{opacity:1;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);-webkit-transition-delay:.2s;transition-delay:.2s;z-index:4}.custom-col-5{padding-left:0;padding-right:0;-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;width:20%;max-width:20%}.htmega-singleimage-gridstyle-2{width:100%;height:100%;float:left;overflow:hidden;position:relative;text-align:center;cursor:default}.htmega-singleimage-gridstyle-2 .thumb{overflow:hidden}.htmega-singleimage-gridstyle-2 .thumb a{position:relative;display:block;z-index:2}.htmega-singleimage-gridstyle-2 .thumb a::before{width:100%;height:100%;position:absolute;overflow:hidden;top:0;left:0;background-color:rgb(0 0 0 / .6);opacity:0;filter:alpha(opacity=0);-webkit-transform:translate(460px,-100px) rotate(180deg);transform:translate(460px,-100px) rotate(180deg);-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;content:"";z-index:1}.htmega-singleimage-gridstyle-2 .thumb a img{display:block;position:relative;-webkit-transition:all .4s linear;transition:all .4s linear;width:100%}.htmega-singleimage-gridstyle-2:hover .thumb a::before{opacity:1;filter:alpha(opacity=100);-webkit-transition-delay:0s;transition-delay:0s;-webkit-transform:translate(0,0);transform:translate(0,0)}.htmega-singleimage-gridstyle-2:hover .thumb a img{-webkit-transform:scale(1.2);transform:scale(1.2)}.htmega-singleimage-gridstyle-2 .image-grid-content h2{text-transform:uppercase;color:#fff;text-align:center;position:relative;font-size:17px;padding:10px;background:rgb(0 0 0 / .6);position:absolute;top:0;width:100%;opacity:0;transition:0.4s ease-in-out}.htmega-singleimage-gridstyle-2 .image-grid-content a.read-btn{display:inline-block;text-decoration:none;padding:7px 14px;text-transform:uppercase;color:#fff;border:1px solid #fff;background-color:#fff0;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;z-index:4;left:50%;position:absolute;top:50%;-webkit-transform:translateX(-50%) translateY(-80%);transform:translateX(-50%) translateY(-80%);opacity:0}.htmega-singleimage-gridstyle-2 .image-grid-content a.read-btn:hover{-webkit-box-shadow:0 0 5px #fff;box-shadow:0 0 5px #fff}.htmega-singleimage-gridstyle-2:hover .image-grid-content{opacity:1;filter:alpha(opacity=100)}.htmega-singleimage-gridstyle-2:hover .image-grid-content h2{position:absolute;top:20px;z-index:3;opacity:1}.htmega-singleimage-gridstyle-2:hover .image-grid-content a.read-btn{-webkit-transition-delay:0.3s;transition-delay:0.3s;-webkit-transform:translateX(-50%) translateY(-50%);transform:translateX(-50%) translateY(-50%);opacity:1}.htmega-image-gridstyle-3 .htb-row>[class*="col"]{padding-left:0;padding-right:0}.htmega-singleimage-gridstyle-3 .thumb{overflow:hidden}.htmega-singleimage-gridstyle-3 .thumb a img{transition:0.4s ease-in-out}.htmega-singleimage-gridstyle-3:hover .thumb a img{transform:scale(1.1) rotate(3deg)}.htmega-singleimage-grid .thumb>a{display:block}.htmega-singleimage-gridstyle-4{margin-top:20px;position:relative}.masonary-item .htmega-singleimage-gridstyle-4 .thumb{overflow:hidden}.htmega-singleimage-gridstyle-4 .thumb a img{width:100%}.htmega-singleimage-gridstyle-4 .image-grid-content{position:absolute;top:0;bottom:0;left:0;right:0;transition:0.3s ease-out;transition-property:opacity,transform,filter;background:rgb(255 255 255 / .8);opacity:0}.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action{position:absolute;top:50%;width:100%;text-align:center;transform:translateY(-50%);padding:0 80px}.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action h2 a{color:#18012c}.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action p{font-size:16px;font-family:"Montserrat",sans-serif;font-weight:500;margin:0;line-height:28px}.htmega-singleimage-gridstyle-4:hover .image-grid-content{opacity:1;transform:translateX(0) translateY(0)}.htmega-singleimage-gridstyle-5{margin-top:50px;position:relative}.htmega-singleimage-gridstyle-5 .thumb a img{width:100%}.htmega-singleimage-gridstyle-5 .image-grid-content{position:absolute;top:0;bottom:0;left:0;right:0;transition:0.3s ease-out;transition-property:opacity,transform,filter;background:rgb(0 0 0 / .8);opacity:0}.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action{position:absolute;top:50%;width:100%;text-align:center;transform:translateY(-50%);padding:0 20px}.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action h2{color:#fff;margin-bottom:5px;font-size:23px}.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action h2 a{color:#fff}.htmega-singleimage-gridstyle-5 .image-grid-content .hover-action p{font-size:16px;font-family:"Montserrat",sans-serif;font-weight:500;margin:0;line-height:26px;color:#fff}.htmega-singleimage-gridstyle-5:hover .image-grid-content{opacity:1;transform:translateX(0) translateY(0)}.row--5>[class*="col"]{padding-left:5px;padding-right:5px}.ht-thumb-gallery ul.htmega-thumbgallery-for{margin:0;padding:0;list-style:none}.ht-thumb-gallery ul.htmega-thumbgallery-for li{position:relative}.ht-thumb-gallery .slick-slide{line-height:0}.htmega-thumbgallery-for button.slick-arrow{position:absolute;top:50%;left:30px;z-index:2;width:50px;height:50px;background:#000;color:#fff;border:0 none;border-radius:100%;font-size:30px;text-align:center;padding:0;margin:0;transition:0.4s ease-in-out;transform:translateY(-50%);line-height:1}.htmega-thumbgallery-for button.slick-arrow:hover{background:#0056ff;color:#fff}.htmega-thumbgallery-nav{text-align:center}.htmega-thumbgallery-nav button.slick-arrow{border-radius:100%;display:inline-block;height:50px;padding:0;width:50px;transition:all 0.3s ease-in-out}.htmega-thumbnails-style-2 .htmega-thumbgallery-nav button.slick-arrow,.htmega-thumbnails-style-4 .htmega-thumbgallery-nav button.slick-arrow{position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:3}.htmega-thumbnails-style-2 button.htmega-carosul-next.slick-arrow,.htmega-thumbnails-style-4 button.htmega-carosul-next.slick-arrow{left:auto;right:0}.htmega-thumbnails-style-2 .htmega-thumbgallery-nav .slick-arrow+.slick-dots,.htmega-thumbnails-style-4 .htmega-thumbgallery-nav .slick-arrow+.slick-dots{bottom:10px}.htmega-thumbgallery-for button.htmega-carosul-next{left:auto;right:30px}.htmega-thumbgallery-for .slick-dots,.htmega-thumbgallery-nav .slick-dots{bottom:10px;position:absolute;list-style:none;margin:0;padding:0;width:100%;text-align:center}.htmega-thumbgallery-nav .slick-arrow+.slick-dots{bottom:50px}.htmega-thumbgallery-for .slick-dots li,.htmega-thumbgallery-nav .slick-dots li{display:inline-block}.htmega-thumbgallery-for .slick-dots li button,.htmega-thumbgallery-nav .slick-dots li button{background:#ddd;text-indent:-99999px;padding:0;margin-right:8px;border-radius:100%;width:12px;height:12px}.htmega-thumbgallery-for .slick-dots li.slick-active button,.htmega-thumbgallery-nav .slick-dots li.slick-active button{background:#000}.htmega-thumbgallery-for .slick-dots li button::before,.htmega-thumbgallery-nav .slick-dots li button::before{display:none}.htmega-thumbgallery-for.htmega-arrow-2{position:relative}.htmega-thumbgallery-for.htmega-arrow-2 button{position:absolute;top:50%;left:42px;z-index:2;background:#fff0;color:#fff;border:0 none;border-radius:100%;font-size:48px;text-align:center;padding:0;margin:0;transition:0.4s ease-in-out;transform:translateY(-50%)}.htmega-thumbgallery-for.htmega-arrow-2 button:hover{color:#0056ff}.htmega-thumbgallery-for.htmega-arrow-2 button.htmega-carosul-next{left:auto;right:42px}.htmega-thumbgallery-nav .small-thumb{cursor:pointer;position:relative;overflow:hidden}.htmega-thumbgallery-nav .small-thumb img{width:100%}.htmega-thumbgallery-for .content{position:absolute;bottom:40px;left:0;background:rgb(0 86 255 / .7);padding:10px 38px}.htmega-thumbgallery-for .content.right-bottom{bottom:40px;left:auto;right:0}.htmega-thumbgallery-for .content h2{margin:0;color:#fff;font-size:24px;line-height:1.3;font-weight:500;padding:0}.htmega-thumbgallery-for .content h4{font-size:13px;font-weight:400;line-height:1;margin:0;padding:0;color:#fff}.htmega-thumbgallery-nav .slick-slide.slick-current.slick-active.slick-center .small-thumb img{border:3px solid #0056ff}.htmega-thumbgallery-nav .small-thumb img{border:3px solid #d7d7d7}.htmega-thumbgallery-nav.htmega-thumbgallery-nav .slick-slide{padding:7px 3px;line-height:0}.htmega-thumbgallery-nav.htmega-thumbgallery-nav{margin:-3px 0}.htmega-thumbgallery-nav.slick-initialized.slick-slider.slick-dotted.slick-vertical{margin-bottom:0}.htmega-thumbnails-style-2 .htmega-thumbgallery-nav.htmega-thumbgallery-nav .slick-slide{padding:5px 3px}.htmega-thumbnails-style-2 .htmega-thumbgallery-nav.htmega-thumbgallery-nav{margin:0 -3px}.ht-thumb-gallery .slick-slide img{display:block;width:100%}.htmega-thumbgallery-nav .small-thumb:after{content:"";left:0;bottom:0;width:100%;height:100%;background:#fff0;z-index:1;position:absolute;opacity:0;transition:all 0.3s ease-in-out}.htmega-thumbgallery-nav .small-thumb:hover:after,.htmega-thumbgallery-nav .slick-slide.slick-current .small-thumb:after{opacity:1}.htmega-testimonialgrid-style-1 .testimonal{background:#f7f8f9;padding:30px;margin-top:30px}.testimonal,.testimonal *{transition:all 0.3s ease-in-out}.testimonal .clint-info h4{margin:0;padding:0;font-size:19px;line-height:1.3}.htmega-testimonialgrid-style-1 .testimonal .content{display:flex;align-items:center}.htmega-testimonialgrid-style-1 .testimonal .content img{max-width:80px;border-radius:100%}.htmega-testimonialgrid-style-1 .testimonal .content .clint-info{padding-left:25px}.htmega-testimonialgrid-style-1 .testimonal .content .clint-info h4{font-size:18px;color:#383838;margin:0}.htmega-testimonialgrid-style-1 .testimonal .content .clint-info span{color:#1834a6;font-size:13px}.htmega-testimonialgrid-style-1 .testimonal p{color:#5b5b5b;font-size:14px;line-height:26px;margin:0;margin-top:22px}.htmega-testimonialgrid-style-2 .testimonal{background:#fff none repeat scroll 0 0;box-shadow:0 0 10px rgb(0 0 0 / .1);margin-top:30px;padding:40px 30px}.htmega-testimonialgrid-style-2 .testimonal img{border:2px solid #43df9c;border-radius:50%;box-sizing:content-box;float:left;max-width:90px}.htmega-testimonialgrid-style-2 .testimonal .content p{color:#3e3e3e;font-size:16px;line-height:28px;margin-bottom:20px}.htmega-testimonialgrid-style-2 .testimonal .content{overflow:hidden;padding-left:20px}.htmega-testimonialgrid-style-2 .testimonal .content .clint-info{padding-left:50px;position:relative}.htmega-testimonialgrid-style-2 .testimonal .content .clint-info::before{background:#383838 none repeat scroll 0 0;content:"";height:2px;left:0;position:absolute;top:10px;width:30px;transition:03.s ease-in-out}.htmega-testimonialgrid-style-3 .testimonal{background:#fff none repeat scroll 0 0;border-radius:10px;box-shadow:0 0 10px rgb(0 0 0 / .1);margin-top:53px;padding-bottom:27px;position:relative;text-align:center}.htmega-testimonialgrid-style-3 .testimonal{margin-top:82px}.htmega-testimonialgrid-style-3 .testimonal img{border:2px solid #727272;border-radius:50%;box-sizing:content-box;left:50%;max-width:100px;position:absolute;top:0;transform:translate(-50%,-50%)}.htmega-testimonialgrid-style-3 .testimonal .content{margin-top:0;padding-top:73px}.htmega-testimonialgrid-style-3 .testimonal .content p{color:#5b5b5b;font-size:14px;font-style:italic;line-height:24px;margin-bottom:4px;padding:0 4%}.htmega-testimonialgrid-style-3 .testimonal .content h4{color:#5b5b5b;font-size:16px;font-weight:600;line-height:37px;margin:0}.htmega-testimonialgrid-style-4 .testimonal .content{background:#fff none repeat scroll 0 0;box-shadow:0 0 10px rgb(82 182 188 / .25);padding:50px 9%;position:relative;text-align:center}.htmega-testimonialgrid-style-4 .testimonal .clint-info{margin-top:40px;text-align:center}.htmega-testimonialgrid-style-4 .testimonal img{border:2px solid #ececec;border-radius:50%;box-sizing:content-box;display:inline-block;max-width:80px}.htmega-testimonialgrid-style-4 .testimonal .clint-info h4{color:#5c5c5c;font-size:22px;font-weight:700;margin-bottom:4px;margin-top:22px}.htmega-testimonialgrid-style-4 .testimonal .clint-info span{color:#5c5c5c;font-size:15px;font-weight:600}.htmega-testimonialgrid-style-4 .testimonal .content .triangle{border-color:#fff #fff0 #fff0;border-style:solid;border-width:20px;left:50%;margin-top:-1px;position:absolute;top:100%;transform:translateX(-50%)}.htmega-testimonialgrid-style-3 .clint-info .rating,.htmega-testimonialgrid-style-4 .clint-info .rating{justify-content:center}.htmega-testimonialgrid-style-5 .testimonal{background:#f7f8f9 none repeat scroll 0 0;margin-top:30px;padding:48px 30px}.htmega-testimonialgrid-style-5 .clint-info h4{color:#383838;font-size:18px;font-weight:600;margin-bottom:1px}.htmega-testimonialgrid-style-5 p{color:#5b5b5b;font-size:14px;font-style:italic;line-height:26px}.htmega-testimonialgrid-style-5 .clint-info span{color:#1834a6;font-size:14px}.clint-info .rating{color:#ffcf0e;display:flex;list-style:outside none none;margin:4px 0 0;padding:0}.clint-info .rating li{margin-right:8px;font-size:13px}.testimonal{position:relative;z-index:1}.testimonal:before{position:absolute;left:0;height:100%;width:100%;background:#fff0;z-index:-1;content:"";top:0;opacity:0;transition:all 0.3s ease-in-out}.testimonal:hover:before{opacity:1}.navigation_service .htmega-service-style-7::before{display:none}.elementor-widget-htmega-scrollnavigation-addons .swiper-container{height:100vh;margin-left:auto;margin-right:auto;width:100%;overflow:hidden}.htmega-swiper-pagination .swiper-pagination-bullet{background:#000 none repeat scroll 0 0;border-radius:100%;display:inline-block;height:26px;opacity:1;width:26px;opacity:1!important}.htmega-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{background:#3746ad}.scroll-navigation-inner .elementor-section.elementor-section-height-full{height:100vh}.scroll-navigation-inner .elementor-section.elementor-section-items-middle>.elementor-container{align-items:center;height:100vh}.htmega-call-to-action{text-align:center}.htmega-call-to-action .htmega-content .htmega-callto-action-description{color:#fff;font-size:16px;margin:0}.htmega-call-to-action .htmega-content .htmega-callto-action-sub-title{color:#505050;font-size:16px;font-weight:500;margin-bottom:5px;font-family:"Poppins",sans-serif}.htmega-call-to-action .htmega-content .htmega-callto-action-title{color:#f7ca18;font-size:80px;font-weight:600;margin-bottom:27px;font-family:"Poppins",sans-serif}.htmega-call-to-action .htmega-content a.call_btn{background:#f7ca18;padding:0 35px;display:inline-flex;line-height:50px;border-radius:25px;color:#000;font-size:14px;transition:0.4s ease-in-out;text-decoration:none}.htmega-call-to-action .htmega-content a.call_btn:hover{background:#fff;color:#18012c}.callto-action-style-2 .htmega-content .htmega-callto-action-title{color:#fff;font-family:"Poppins",sans-serif;font-size:38px;font-weight:600;margin-bottom:6px}.callto-action-style-2 .htmega-content .htmega-callto-action-description{color:#fff;font-family:"Montserrat",sans-serif;font-weight:300;font-size:18px;margin:0}.callto-action-style-2 .htmega-content a.call_btn{display:inline-flex;border:2px solid #fff;color:#fff;border-radius:25px;padding:0 45px;line-height:50px;font-size:14px;font-weight:600;transition:0.4s ease-in-out}.callto-action-style-2 .htmega-content a.call_btn:hover{background:#fff;color:#18012c;border:2px solid #fff}.callto-action-style-3{box-shadow:0 0 10px rgb(0 0 0 / .1);padding:70px 98px}.callto-action-style-3 .htmega-content a.call_btn{line-height:50px;padding:0}.callto-action-style-3 .htmega-content{display:flex;align-items:center;justify-content:space-around}.callto-action-style-3{position:relative}.callto-action-style-3::before{position:absolute;content:"";background:#999;height:50px;width:2px;left:50%;top:50%;transform:translateX(-50%) translateY(-50%)}.callto-action-style-3 .htmega-content .htmega-callto-action-description{color:#000;font-size:14px;line-height:25px;margin-bottom:5px}.callto-action-style-3 .htmega-content .htmega-callto-action-title{color:#000;font-weight:500;font-size:24px;margin:0}.callto-action-style-3 a.call_btn{display:inline-block;border:2px solid #000;color:#000;border-radius:25px;padding:0 50px;line-height:50px;font-size:14px;font-weight:600;transition:0.4s ease-in-out}.callto-action-style-3 a.call_btn:hover{background:#000;color:#fff;border:2px solid #000}.callto-action-style-4 .htmega-content .htmega-callto-action-title{color:#fff;font-weight:400;font-size:36px;margin-bottom:21px}.callto-action-style-4 .htmega-content .htmega-callto-action-description{color:#fff;font-size:18px;line-height:35px;padding:0 17%;margin-bottom:34px}.callto-action-style-4 a.call_btn{background:#fff;display:inline-block;padding:0 40px;line-height:50px;border-radius:25px;color:#0056ff;font-size:14px;font-weight:400;text-transform:uppercase;transition:0.4s ease-in-out}.callto-action-style-4 a.call_btn:hover{background:#18012c;color:#fff}.callto-action-style-5 .htmega-content .htmega-callto-action-title{color:#fff;font-size:40px;line-height:60px;font-weight:500;padding:0 19%}.callto-action-style-5 .htmega-content .htmega-callto-action-description{color:#fff;font-size:18px;margin-bottom:44px;font-family:'Rubik',sans-serif}.callto-action-style-5 a.call_btn{border:2px solid #fff;display:inline-block;padding:0 46px;line-height:50px;color:#fff;font-weight:500;font-size:14px;text-transform:uppercase;border-radius:4px;transition:0.4s ease-in-out;font-family:'Rubik',sans-serif}.callto-action-style-5 a.call_btn:hover{background:#fff;color:#18012c}.callto-action-style-6 .htmega-content .htmega-callto-action-title{color:#494949;font-size:40px;line-height:58px;font-weight:500}.callto-action-style-6 .htmega-content .htmega-callto-action-description{color:#494949;font-size:18px;margin-bottom:32px;line-height:30px;padding-right:27%}.callto-action-style-6 a.call_btn{display:inline-block;padding:0 37px;line-height:50px;color:#fff;font-weight:500;font-size:14px;text-transform:uppercase;transition:0.4s ease-in-out;background:#e97730;font-family:"Montserrat",sans-serif}.callto-action-style-6 a.call_btn:hover{background:#18012c;color:#fff}.callto-action-style-7 .call-to-action-inner{display:inline-block;padding:100px 240px;background:rgb(255 255 255 / .6)}.callto-action-style-7 .htmega-content .htmega-callto-action-title,.callto-action-style-7 .htmega-content .htmega-callto-action-description{color:#1e1e1e;font-size:42px;line-height:53px;font-weight:700;font-family:'Cormorant Garamond',serif;margin-bottom:29px}.callto-action-style-7 a.call_btn{display:inline-block;color:#2c2c2c;font-weight:600;font-size:24px;transition:0.4s ease-in-out;font-family:'Cormorant Garamond',serif;border-bottom:2px solid #4f4848}.callto-action-style-7 a.call_btn:hover{color:#18012c;border-bottom:2px solid #18012c}.htmega-call-to-action .htmega-content a.call_btn.secondary_btn{margin-left:10px}.htmega-call-to-action-button-icon1-position-left .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_one_text_progression{order:2}.htmega-call-to-action-button-icon1-position-left .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_one_icon_progression{order:1;margin-right:8px}.htmega-call-to-action-button-icon1-position-right .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_one_text_progression{order:1}.htmega-call-to-action-button-icon1-position-right .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_one_icon_progression{order:2;margin-left:8px}.htmega-call-to-action-button-icon2-position-left .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_two_text_progression{order:2}.htmega-call-to-action-button-icon2-position-left .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_two_icon_progression{order:1;margin-right:8px}.htmega-call-to-action-button-icon2-position-right .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_two_text_progression{order:1}.htmega-call-to-action-button-icon2-position-right .htmega-call-to-action .htmega-content a.call_btn .call_to_action_button_two_icon_progression{order:2;margin-left:8px}.htmega-call-to-action .htmega-content a.call_btn svg,.htmega-call-to-action .htmega-content a.call_btn.secondary_btn svg{width:30px;height:30px}.htmega-callto-action-title{position:relative}.htmega-callto-action-title:after,.htmega-callto-action-title:before{content:"";width:0;height:0;bottom:0;position:absolute;left:0;display:none}.htmega-align-center .htmega-callto-action-title:after,.htmega-align-center .htmega-callto-action-title:before{left:50%;transform:translateX(-50%)}.htmega-align-right .htmega-callto-action-title:after,.htmega-align-right .htmega-callto-action-title:before{left:auto;right:0;transform:translateX(0)}.htmega-callto-action-title:before{top:0;bottom:auto}.htmega-twitter-area button.slick-arrow{border:0 none;color:#2d3e50;font-size:60px;left:-60px;position:absolute;top:26%;background:#fff0;height:inherit;padding:0;transition:all 0.3s ease-in-out;z-index:2}.htmega-twitter-area button.htmega-carosul-next{left:auto;right:-60px}.htmega-twitter-area .slick-dots li button::before{display:none}.htmega-twitter-area .slick-dots li{width:10px;height:10px}.htmega-twitter-area .slick-dots li button{background:#000 none repeat scroll 0 0;border-radius:100%;padding:0;width:10px;height:10px}.htmega-twitter-area .slick-dots li.slick-active button{background:#F15D67 none repeat scroll 0 0}.htmega-twitter-single{display:flex;padding-right:15px}.htmega-twitter-single .htmega-thumb{padding-right:30px}.htmega-twitter-single .htmega-thumb img{max-width:70px;border:1px solid #eaeaea}.htmega-twitter-single .htmega-content{margin-top:-7px}.htmega-twitter-single .htmega-content .htmega-author{margin-bottom:6px}.htmega-twitter-single .htmega-content .htmega-author h6{display:inline-block;font-weight:400;font-size:14px;margin:0;position:relative}.htmega-twitter-single .htmega-content .htmega-author h6 a{color:#5c5c5c;transition:0.3s ease-in-out}.htmega-twitter-single .htmega-content .htmega-author h6 a:hover{color:#18012c}.htmega-twitter-single .htmega-content .htmega-author span::before{position:absolute;content:"";left:0;background:#000;height:14px;width:1px;top:50%;transform:translateY(-50%)}.htmega-twitter-single .htmega-content .htmega-author span{color:#000;font-size:14px;padding-left:10px;margin-left:10px;position:relative;display:inline-block}.htmega-twitter-single .htmega-content p{color:#434343;font-size:14px;line-height:25px;margin-bottom:10px}.htmega-twitter-single .htmega-content p a{color:#00c8fa}.htmega-twitter-single .htmega-content ul.twitter-meta{padding:0;margin:0;list-style:none;display:flex}.htmega-twitter-single .htmega-content ul.twitter-meta li{margin-right:14px;padding-right:14px;position:relative}.htmega-twitter-single .htmega-content ul.twitter-meta li a{color:#aaa;font-size:13px;transition:0.3s ease-in-out}.htmega-twitter-single .htmega-content ul.twitter-meta li a:hover{color:#18012c}.htmega-twitter-single .htmega-content ul.twitter-meta li a i{padding-right:10px}.htmega-twitter-single .htmega-content ul.twitter-meta li::after{position:absolute;content:"";background:#000;width:1px;height:11px;right:0;top:50%;transform:translateY(-50%)}.htmega-twitter-single .htmega-content ul.twitter-meta li:last-child::after{display:none}.htmega-twitter-style-2 .htmega-twitter-single{background:#fff;padding:40px;border-radius:4px;display:block}.htmega-twitter-style-2 .htmega-twitter-single .htmega-content .htmega-author span::before{display:none}.htmega-twitter-style-2 .htmega-twitter-single .htmega-content .htmega-author span{padding:0;margin:0}.htmega-twitter-style-2 .ht-twitter-container{display:flex}.htmega-twitter-style-2 .ht-twitter-container .htmega-thumb{padding-right:30px}.htmega-twitter-style-2 .ht-twitter-container .htmega-thumb img{max-width:70px;border:1px solid #eaeaea}.htmega-twitter-style-2 .ht-twitter-container .htmega-content{margin-top:-7px}.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author{margin-bottom:6px}.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6{display:inline-block;font-weight:400;font-size:14px;margin:0;position:relative;font-family:"Poppins",sans-serif}.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6 a{color:#000;transition:0.3s ease-in-out}.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6 a:hover{color:#18012c}.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author h6 a span{color:#a6a6a6}.htmega-twitter-style-2 .ht-twitter-container .htmega-content .htmega-author span{color:#000;font-size:14px;padding-left:10px}.htmega-twitter-style-2 .ht-twitter-container .htmega-content p{color:#434343;font-size:14px;line-height:25px;margin-bottom:10px}.htmega-twitter-style-2 .ht-twitter-container .htmega-content p a{color:#00c8fa}.htmega-twitter-style-2 .twitter-meta-inner{display:flex;justify-content:space-between}.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta{padding:0;margin:0 -10px;list-style:none;display:flex}.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta li{position:relative;margin:0 10px}.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta li a{color:#878787;font-size:13px;transition:0.3s ease-in-out}.htmega-twitter-style-2 .twitter-meta-inner ul.twitter-meta li a:hover{color:#18012c}.htmega-twitter-style-2 .twitter-meta-inner p{margin:0;color:#7f7f7f;font-size:12px}.htmega-twitter-style-2 .slick-slide{padding:0 15px}.htmega-twitter-style-2 .slick-dots{bottom:-45px}.htmega-twitter-style-3 .htmega-twitter-single{background:#fff;border:1px solid #eaeaea;padding:30px 15px 30px 20px}.htmega-twitter-style-3 .htmega-twitter-single .htmega-content ul.twitter-meta li{padding:0}.htmega-twitter-style-3 .htmega-twitter-single .htmega-content ul.twitter-meta li::after{display:none}.htmega-twitter-style-3 .htmega-content .htmega-author{margin-bottom:6px}.htmega-twitter-style-3 .htmega-content .htmega-author h6{display:inline-block;font-weight:400;font-size:14px;margin:0;position:relative}.htmega-twitter-style-3 .htmega-content .htmega-author h6 a{color:#5c5c5c;transition:0.3s ease-in-out}.htmega-twitter-style-3 .htmega-content .htmega-author h6 a:hover{color:#18012c}.htmega-twitter-style-3 .htmega-content .htmega-author span::before{position:absolute;content:"";left:0;background:#000;height:14px;width:1px;top:50%;transform:translateY(-50%)}.htmega-twitter-style-3 .htmega-content .htmega-author span{color:#000;font-size:14px;padding-left:10px;margin-left:10px;position:relative}.htmega-twitter-style-3 .htmega-content p{color:#434343;font-size:14px;line-height:25px;margin-bottom:10px}.htmega-twitter-style-3 .htmega-content p a{color:#00c8fa}.htmega-twitter-style-3 .htmega-content ul.twitter-meta{padding:0;margin:0 -10px;list-style:none;display:flex}.htmega-twitter-style-3 .htmega-content ul.twitter-meta li{position:relative;margin:0 10px}.htmega-twitter-style-3 .htmega-content ul.twitter-meta li a{color:#aaa;font-size:13px;transition:0.3s ease-in-out}.htmega-twitter-style-3 .htmega-content ul.twitter-meta li a:hover{color:#18012c}.htmega-twitter-style-3 .slick-slide{padding:0 15px}.htmega-twitter-style-4 .htmega-twitter-single{display:block;padding:0}.htmega-twitter-style-4 .htmega-twitter-single .htmega-content ul.twitter-meta li{padding:0}.htmega-twitter-style-4 .htmega-twitter-single .htmega-content ul.twitter-meta li::after{display:none}.htmega-twitter-style-4 .htmega-thumb img{max-width:70px;border:1px solid #eaeaea}.htmega-twitter-style-4 .htmega-content{padding-top:25px}.htmega-twitter-style-4 .htmega-content .htmega-author{margin-bottom:6px}.htmega-twitter-style-4 .htmega-content .htmega-author h6 a{color:#5c5c5c;transition:0.3s ease-in-out}.htmega-twitter-style-4 .htmega-content .htmega-author h6 a:hover{color:#18012c}.htmega-twitter-style-4 .htmega-content .htmega-author span{color:#000;font-size:14px;padding-left:10px}.htmega-twitter-style-4 .htmega-content p{color:#434343;font-size:14px;line-height:25px;margin-bottom:10px}.htmega-twitter-style-4 .htmega-content p a{color:#00c8fa}.htmega-twitter-style-4 .htmega-content ul.twitter-meta{padding:0;margin:0;list-style:none;display:flex;padding-top:20px;border-top:1px solid #00c8fa;justify-content:space-between}.htmega-twitter-style-4 .htmega-content ul.twitter-meta li{position:relative}.htmega-twitter-style-4 .htmega-content ul.twitter-meta li a{color:#aaa;font-size:13px;transition:0.3s ease-in-out;display:block}.htmega-twitter-style-4 .htmega-content ul.twitter-meta li a:hover{color:#18012c}.htmega-twitter-style-4 .htmega-content ul.twitter-meta li a i{padding-right:10px}.htmega-twitter-style-4 button.slick-arrow{border:1px solid #000;border-radius:100%;color:#000;font-size:30px;height:50px;line-height:35px;width:50px}.htmega-twitter-style-4 .slick-slide{padding:0 15px}.htmega-twitter-style-5 .htmega-twitter-single{background:#fff;padding:30px 15px 30px 20px;box-shadow:0 0 10px rgb(0 0 0 / .1);margin:5px}.htmega-twitter-style-5 .htmega-content .htmega-author{margin-bottom:6px}.htmega-twitter-style-5 .htmega-content .htmega-author h6 a{color:#5c5c5c;transition:0.3s ease-in-out}.htmega-twitter-style-5 .htmega-content .htmega-author h6 a:hover{color:#18012c}.htmega-twitter-style-5 .htmega-content p{color:#434343;font-size:14px;line-height:25px;margin-bottom:10px}.htmega-twitter-style-5 .htmega-content p a{color:#00c8fa}.htmega-twitter-style-5 .twitter-meta-inner{display:flex;justify-content:space-between}.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta{padding:0;margin:0 -10px;list-style:none;display:flex}.htmega-twitter-style-5 .htmega-twitter-single .htmega-content ul.twitter-meta li::after{display:none}.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta li{position:relative;margin:0 10px;padding:0}.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta li a{color:#878787;font-size:13px;transition:0.3s ease-in-out}.htmega-twitter-style-5 .twitter-meta-inner ul.twitter-meta li a:hover{color:#18012c}.htmega-twitter-style-5 .twitter-meta-inner p{margin:0;color:#7f7f7f;font-size:12px}.htmega-twitter-style-5 .slick-slide{padding:0 15px}.htmega-post-grid-layout-3 .row-1>.htb-col-lg-6>.ht-post,.htmega-post-grid-layout-3 .row-1>.htb-col-lg-6>.ht-post .thumb,.htmega-post-grid-layout-3 .row-1>.htb-col-lg-6>.ht-post .thumb a,.htmega-post-grid-layout-5 .ht-post,.htmega-post-grid-layout-5 .ht-post .thumb,.htmega-post-grid-layout-5 .ht-post .thumb a{height:100%}.htmega-post-grid-layout-5 .row--10>[class*="col"]{padding:10px}.htmega-post-grid-area.htmega-equal-hide-column-yes .ht-post{height:100%}.htmega-post-grid-area .row-1.htb-row .row-1{margin:0}.ht-post-grid-tab{display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:space-between}.ht-post-grid-tab .post-grid{overflow:hidden}.htmega-post-gridtab-layout-1 .post-grid,.htmega-post-gridtab-layout-3 .post-grid{padding:0 1px;margin-bottom:2px}.htmega-post-gridtab-layout-1 .post-content,.htmega-post-gridtab-layout-3 .post-content{margin:0 1px}.htmega-post-gridtab-layout-2 .post-grid,.htmega-post-gridtab-layout-4 .post-grid{padding:0 15px;margin-bottom:30px}.htmega-post-gridtab-layout-2 .post-content,.htmega-post-gridtab-layout-4 .post-content{margin:-30px 15px 0}.htmega-post-gridtab-layout-5 .post-grid{padding:0 10px;margin-bottom:20px}.htmega-post-gridtab-layout-5 .post-content{margin:-20px 10px 0}.ht-post-grid-tab .post-grid.post-grid-one-third{min-width:calc(33.33%);width:calc(33.33%)}.ht-post-grid-tab .post-grid.post-grid-half{min-width:calc(50%);width:calc(50%)}.ht-post-grid-tab .post-grid.post-grid-four{min-width:calc(25%);width:calc(25%)}.ht-post-grid-tab .post-grid.post-third-of-four{min-width:calc(75%);width:calc(75%)}.ht-post-grid-tab .post-content{text-align:center;z-index:9;display:none}.ht-post-grid-tab .post-content.is-visible{display:block}.post-content{position:relative}.post-content .close__wrap{position:absolute;top:30px;right:30px;z-index:9}.post-content .close__wrap button{background:#2a47e0 none repeat scroll 0 0;border:0 none;color:#fff;line-height:1;padding:10px}.post-grid .thumb a img{width:100%;object-fit:cover;height:100%}.post-grid .thumb,.post-grid .thumb a{height:100%}.post-grid .thumb a{width:100%}.single-post-grid-tab{padding:30px;border:1px solid #dfdfdf;background:#f1f1f1;overflow:hidden}.single-post-grid-tab .thumb a img{width:100%}.single-post-grid-tab .thumb{overflow:hidden}.ht-mega-post-grid-right .content{height:100%;display:flex;align-items:center}.ht-mega-post-grid-left{display:flex;align-items:center}.single-post-grid-tab .post-inner{text-align:left}.single-post-grid-tab .post-inner h2{font-size:24px;line-height:36px;margin-top:20px}.single-post-grid-tab .post-inner h2 a{color:#464545}.single-post-grid-tab .post-inner .meta{list-style:none;color:#fff;padding:0;margin:0;display:block;margin:0 -15px}.single-post-grid-tab .post-inner .meta li{color:#464545;font-size:13px;letter-spacing:2px;margin:0 15px;display:inline-block}.single-post-grid-tab .post-inner .meta li i{color:#464545}.single-post-grid-tab .post-inner .meta li a{color:#464545}.single-post-grid-tab .post-inner p{color:#494849;font-size:14px;line-height:28px;margin-top:17px;margin-bottom:28px}.single-post-grid-tab .post-inner .post-category{display:flex;padding:0;list-style:none;margin-left:0}.single-post-grid-tab .post-inner .post-category li{margin-right:10px;transition:0.4s ease-in-out}.single-post-grid-tab .post-inner .post-category li a{background:#2a47e0 none repeat scroll 0 0;color:#fff;font-size:13px;font-weight:300;letter-spacing:1px;padding:2px 7px;text-transform:uppercase}.single-post-grid-tab .post-inner .post-btn a.readmore-btn{background:#fff0;display:inline-block;padding:0 37px;border-radius:23px;font-size:14px;font-weight:400;line-height:44px;transition:0.4s ease-in-out;color:#494849;border:1px solid #494849}@media (max-width:991px){.ht-mega-post-grid-right .content{margin-bottom:15px}.single-post-grid-tab .htb-row{flex-direction:column-reverse}}.ht-custom-carousel .single-custom-carousel img{width:100%}.htmega-carousel-style-1 .slick-slide .single-custom-carousel img{transition:all 0.3s ease 0s;display:block}.htmega-carousel-style-1 .single-custom-carousel{position:relative;transition:all 0.3s ease 0s}.htmega-carousel-style-1 .slick-slide.slick-active .single-custom-carousel{transform:scale(1.15)}.htmega-carousel-style-1 .slick-slide.slick-center .single-custom-carousel{transform:scale(1.3)}.htmega-carousel-style-1 .slick-slide.slick-active{z-index:990;position:relative}.htmega-carousel-style-1 .slick-slide.slick-center{z-index:999;position:relative}.htmega-carousel-style-1 .slick-slide{padding:72px 0;transition:all 0.3s ease 0s}.htmega-carousel-activation .slick-arrow{padding:0}.htmega-carousel-activation .slick-dots{text-align:center;bottom:-60px}.htmega-carousel-activation .slick-dots li{display:inline-block;margin:0}.htmega-carousel-activation .slick-dots li button{border:1px solid #863F51;width:12px;height:12px;padding:0;border-radius:50%;background-color:#fff0;text-indent:-9999px}.htmega-carousel-activation .slick-dots li.slick-active button{background-color:#863F51}.htmega-carousel-style-2 .slick-slide .single-custom-carousel img{transition:all 0.3s ease 0s;display:block}.htmega-carousel-style-2 .single-custom-carousel{position:relative;transition:all 0.3s ease 0s;padding:0 40px;transform:scale(1.1)}.htmega-carousel-style-2 .slick-slide.slick-center .single-custom-carousel{transform:scale(1.3)}.htmega-carousel-style-2 .slick-slide.slick-center{z-index:999;position:relative}.htmega-carousel-style-2 .slick-slide.slick-active{transition:all 0.3s ease 0s}.htmega-carousel-style-2 .slick-slide{padding:72px 0;transition:all 0.3s ease 0s}.htmega-carousel-style-2{position:relative}.htmega-carousel-style-2 button.slick-arrow,.htmega-carousel-style-3 button.slick-arrow{position:absolute;left:-80px;top:50%;transform:translateY(-50%);background:#000;color:#f4f4f4;width:40px;height:40px;border:0 none;border-radius:100%;padding:0;margin:0;font-size:30px;transition:0.3s ease-in-out;line-height:28px}.htmega-carousel-style-2 button.slick-arrow:hover,.htmega-carousel-style-3 button.slick-arrow:hover{background:#0056ff;color:#fff}.htmega-carousel-style-2 button.htmega-carosul-next,.htmega-carousel-style-3 button.htmega-carosul-next{left:auto;right:-80px}.htmega-carousel-style-2.htmega-carousel-animation-style-2 .slick-slide{transition:none}.htmega-carousel-style-2.htmega-carousel-animation-style-2 .slick-slide.slick-active{transition:none}.htmega-carousel-style-2.htmega-carousel-animation-style-2 .slick-slide .single-custom-carousel{padding:0 40px;transition:none}.htmega-carousel-style-2.htmega-carousel-animation-style-2 .slick-slide.slick-active{transform:perspective(400px) rotateY(20deg) scale(1)!important}.htmega-carousel-style-2.htmega-carousel-animation-style-2 .slick-slide.slick-active+.slick-active{transform:perspective(0) rotateY(0deg) scale(1.1)!important}.htmega-carousel-style-2.htmega-carousel-animation-style-2 .slick-slide.slick-active+.slick-active+.slick-active{transform:perspective(400px) rotateY(-20deg) scale(1)!important}.ht-custom-carousel.htmega-carousel-activation .slick-arrow{padding:0;position:absolute;top:50%;z-index:1}.ht-custom-carousel.htmega-carousel-activation .htmega-carosul-next.slick-arrow{right:0}.ht-custom-carousel.htmega-carousel-activation .htmega-carosul-prev.slick-arrow{left:0}.htmega-carousel-style-3 .slick-slide{margin:0 15px}.htmega-carousel-style-3 .slick-list.draggable{margin:0 -15px}.htmega-carousel-style-3 .slick-dots{bottom:-60px}.htmega-carousel-style-3 .slick-dots li{width:10px;height:10px;margin:0 5px;padding:0}.htmega-carousel-style-3 .slick-dots li button{width:10px;height:10px;padding:0;background:#000;border-radius:100%;border:0}.htmega-carousel-style-3 .slick-dots li button::before{display:none}.htmega-carousel-style-3 .slick-dots li.slick-active button{background:#00c8fa}.htmega-carousel-style-4{position:relative}.htmega-carousel-style-4 button.slick-arrow{position:absolute;top:50%;left:0;color:#f4f4f4;border:0 none;font-size:30px;background:#fff0;width:40px;height:50px;line-height:45px;background:#000;transform:translateY(-50%);z-index:2;padding:0}.htmega-carousel-style-4 button.htmega-carosul-next{left:auto;right:0}.htmega-carousel-style-4 .slick-list{margin:0 -15px}.htmega-carousel-style-4 .slick-slide{margin:0 15px}.htmega-carousel-style-5 .slick-slide{margin:0 15px}.htmega-carousel-style-5 .slick-list{margin:0 -15px}.htmega-carousel-style-5 .slick-dots{bottom:-40px;background:#dbdbdb;height:8px;border-radius:4px;left:0;right:0;width:auto}.htmega-carousel-style-5 .slick-dots li{width:33.33%;height:8px;margin:0;left:0;top:-13px;transition:0.4s ease-in-out}.htmega-carousel-style-5 .slick-dots li::before{position:absolute;content:"";left:0;top:0;width:0;height:100%;background:#0056ff;border-radius:4px;transition:0.4s ease-in-out}.htmega-carousel-style-5 .slick-dots li button{width:33.33%;height:8px;margin:0;left:0}.htmega-carousel-style-5 .slick-dots li button{border:none}.htmega-carousel-style-5 .slick-dots li.slick-active button{background:#fff0}.htmega-carousel-style-5 .slick-dots li button::before{display:none}.htmega-carousel-style-5 .slick-dots li.slick-active::before{width:100%}.htmega-carousel-style-6 button.slick-arrow{position:absolute;top:50%;left:0;color:#f4f4f4;border:0 none;font-size:30px;background:#fff0;width:40px;height:50px;background:#000;transform:translateY(-50%);z-index:2;padding:0}.htmega-carousel-style-6 button.htmega-carosul-next{left:auto;right:0}.htmega-carousel-style-6 .slick-dots{background:#19243c none repeat scroll 0 0;margin-top:-8px;position:static}.htmega-carousel-style-6 .slick-dots li{display:inline-block;height:inherit;padding:30px 55px;position:relative;text-align:center;width:auto;z-index:2}.htmega-carousel-style-6 .slick-dots li h6{color:#fff;font-size:14px;font-weight:600;margin:0;position:relative;z-index:3}.htmega-carousel-style-6 .slick-dots li.slick-active::before{position:absolute;content:"";background:#223152;z-index:-1;width:100%;height:116%;bottom:0;left:0}.htmega-carousel-style-7 button.slick-arrow{position:absolute;left:20px;top:50%;transform:translateY(-50%);background:#fff0;color:#f4f4f4;border:0 none;border-radius:100%;padding:0;margin:0;font-size:48px;transition:0.3s ease-in-out;z-index:1}.htmega-carousel-style-7 button.slick-arrow:hover{color:#18012c}.htmega-carousel-style-7 button.htmega-carosul-next{left:auto;right:20px}.htmega-doule-btn svg{width:20px}.htmega-double-button-area{display:flex}.htmega-doublebutton{display:flex;position:relative;width:40%}span.htmega-middle-text{background:#fff none repeat scroll 0 0;border-radius:100%;color:#000;font-family:"Montserrat",sans-serif;font-size:12px;height:26px;left:50%;line-height:25px;position:absolute;text-align:center;top:50%;transform:translateX(-50%) translateY(-50%);width:26px;z-index:3}.htmega-doublebutton a.htmega-doule-btn{color:#fff;font-family:"Montserrat",sans-serif;font-size:14px;height:50px;line-height:50px;transition:all 0.4s ease-in-out 0s;background:#a7d1b0 none repeat scroll 0 0;border-radius:25px 0 0 25px;text-decoration:none;width:100%;text-align:center}.htmega-doublebutton a.htmega-doule-btn:hover,.htmega-doublebutton a.htmega-doule-btn.btn-two:hover{background:#18012c none repeat scroll 0 0;color:#fff}.htmega-doublebutton a.htmega-doule-btn.btn-two{background:#fa9866 none repeat scroll 0 0;border-radius:0 25px 25px 0}.htmega-doublebutton a.htmega-doule-btn-size-sm{height:46px;line-height:46px}.htmega-doublebutton a.htmega-doule-btn-size-md{height:50px;line-height:50px}.htmega-doublebutton a.htmega-doule-btn-size-lg{height:60px;line-height:60px}.htmega-doublebutton a.htmega-doule-btn-size-xl{height:70px;line-height:70px}.htmega-doublebutton a.htmega-doule-btn-size-xs{height:40px;line-height:40px}.htmega-double-button-area a.btn-one{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative;overflow:hidden}.htmega-double-button-area a.btn-one *{position:relative;z-index:2}.htmega-double-button-area a.btn-one::after,.htmega-double-button-area a.btn-one::before{position:absolute;content:"";left:0;width:100%;height:100%;background:#fff0;transition:all 0.3s ease-in-out}.htmega-double-button-area a.btn-one::after{opacity:0}.htmega-double-button-area a.btn-one:hover::after{opacity:1}.htmega-double-button-icon1-position-left .htmega-doule-btn.btn-one .button_one_text_progression{order:2}.htmega-double-button-icon1-position-left .htmega-doule-btn.btn-one .button_one_icon_progression{order:1}.htmega-double-button-area a.btn-two{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;position:relative;overflow:hidden}.htmega-double-button-area a.btn-two *{position:relative;z-index:2}.htmega-double-button-area a.btn-two::after,.htmega-double-button-area a.btn-two::before{position:absolute;content:"";left:0;width:100%;height:100%;background:#fff0;transition:all 0.3s ease-in-out}.htmega-double-button-area .before_bg a.btn-two::after,.htmega-double-button-area .before_bg a.btn-two::before{transform:skewX(-24deg)}.htmega-double-button-area a.btn-two::after{opacity:0}.htmega-double-button-area a.btn-two:hover::after{opacity:1}.htmega-double-button-icon2-position-left .htmega-doule-btn.btn-two .button_two_text_progression{order:2}.htmega-double-button-icon2-position-left .htmega-doule-btn.btn-two .button_two_icon_progression{order:1}a.htmega-doule-btn span{transition:all 0s;display:flex;align-items:center;justify-content:center}.before_bg{overflow:hidden}.before_bg a.htmega-doule-btn{position:relative;background:transparent!important;z-index:1;overflow:initial}.before_bg a.htmega-doule-btn::before{background-color:#a7d1b0;content:"";display:block;height:100%;left:-16px;position:absolute;top:0;transform:skewX(-24deg);width:112%;z-index:-1;transition:0.4s}.before_bg a.htmega-doule-btn.btn-two::before{background-color:#fa9866;left:0;right:-16px}.htmega-doublebutton.before_bg{overflow:hidden}.htmega-doublebutton.before_bg .htmega-doule-btn{color:#fff}.htmega-doublebutton.before_bg .htmega-doule-btn::before,.htmega-doublebutton.before_bg .htmega-doule-btn::after{position:absolute;z-index:-1;top:0;right:-15px;left:-15px;display:block;width:auto;height:100%;content:"";transition:all 0.4s ease 0s;transform:skewX(-24deg);background-color:#fff0}.htmega-doublebutton.before_bg .htmega-doule-btn::after{opacity:0}.htmega-doublebutton.before_bg .htmega-doule-btn:hover::before{opacity:0}.htmega-doublebutton.before_bg .htmega-doule-btn:hover::after{opacity:1}.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(1)::before,.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(1)::after{right:0}.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(1)::before{background:#a7d1b0}.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(1)::after{background:#000}.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(2)::before,.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(2)::after{left:0}.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(2)::before{background:#fa9866}.htmega-doublebutton.before_bg .htmega-doule-btn:nth-child(2)::after{background:#000}.htmega-banner .banner-thumb a{position:relative;display:block;line-height:0}.htmega-banner .banner-thumb{line-height:0}.htmega-banner .banner-thumb *{line-height:normal}.htmega-banner .banner-content a{display:inline-block}.htmega-banner .banner-thumb a::before{background:rgb(255 255 255 / .3);content:"";height:0;left:0;opacity:0;pointer-events:none;position:absolute;top:0;transition:all 0.5s ease 0s;width:0}.htmega-banner .banner-thumb a::after{background:rgb(255 255 255 / .3);bottom:0;content:"";height:0;opacity:0;pointer-events:none;position:absolute;right:0;transition:all 0.5s ease 0s;width:0}.htmega-banner .banner-thumb a img{width:100%}.htmega-banner:hover .banner-thumb a::before{height:100%;opacity:1;width:100%}.htmega-banner:hover .banner-thumb a::after{height:100%;opacity:1;width:100%}.htmega-banner{position:relative}.htmega-banner .banner-content a{border-bottom:1px solid #909b74;color:#383838;font-size:14px;font-weight:700;text-transform:uppercase;transition:all 0.4s ease 0s;text-decoration:none}.htmega-banner .banner-content{position:absolute;z-index:2;width:100%;text-align:center}.htmega-banner-content-pos-center .banner-content{top:50%;right:0;left:auto;padding-right:30px;transform:translateY(-50%)}.htmega-banner-content-pos-bottom .banner-content{bottom:0;padding-bottom:40px}.htmega-banner-content-pos-top .banner-content{top:0;padding-top:40px}.htmega-banner-style-1 .banner-content h6{color:#1f1e26;font-size:20px;font-weight:700;letter-spacing:11px;text-transform:uppercase;margin-bottom:0;font-family:"Poppins",sans-serif}.htmega-banner-style-1 .banner-content h2{color:#1f1e26;font-size:60px;text-transform:uppercase;margin-bottom:1px;font-family:"Poppins",sans-serif}.htmega-banner-style-1 .banner-content p{color:#1f1e26;font-size:16px;text-transform:uppercase;margin:0}.htmega-banner-style-1 .banner-content h3{color:#1f1e26;font-size:24px;font-weight:700;text-transform:uppercase;margin-bottom:6px;font-family:"Poppins",sans-serif}.htmega-banner-style-1 .banner-content a{color:#383838;font-weight:700;text-transform:uppercase;font-size:14px;border-bottom:1px solid #909b74;transition:0.4s}.htmega-banner-style-2 .banner-content h2{color:#1f1e26;font-family:"Poppins",sans-serif;font-size:24px;font-weight:700;margin-bottom:6px;text-transform:uppercase}.htmega-banner-style-3 .banner-content h2{color:#242424;font-size:30px;font-weight:400;margin-bottom:6px;font-family:'Prata',serif}.htmega-banner-style-3 .banner-content p{color:#1f1e26;font-size:14px;text-transform:uppercase;margin:0;font-weight:400;font-family:'Rubik',sans-serif}.htmega-banner-style-4 .banner-content h2{color:#fff;font-size:20px;font-weight:800;margin-bottom:10px;font-family:'Open Sans',sans-serif}.htmega-banner-style-4 .banner-content p{color:#fff;margin:0;font-size:14px;font-family:'Open Sans',sans-serif;font-weight:600;line-height:26px;padding-right:77px;margin-bottom:15px}.htmega-banner-style-4 .banner-content a{font-family:'Open Sans',sans-serif;font-weight:600;background:#fff;height:30px;display:inline-block;padding:0 15px;line-height:30px;color:#000;font-size:12px;border-radius:20px;transition:0.4s ease-in-out}.htmega-banner-style-4 .banner-content a:hover{background:#18012c;color:#fff}.htmega-banner-style-4 .banner-content{text-align:left;padding-left:40px;padding-top:40px;padding-right:40px}.htmega-banner-style-5 .banner-content h2{color:#646161;font-size:24px;font-weight:700;margin-bottom:0;font-family:'Rubik',sans-serif}.htmega-banner-style-5 .banner-content h2 span{color:#f3a395}.htmega-banner-style-5 .banner-content span{color:#f3a395;font-size:24px;font-weight:700;margin-bottom:0;font-family:'Rubik',sans-serif}.htmega-banner-style-5.htmega-banner-content-pos-center .banner-content{top:50%;transform:translateY(-50%);right:0;padding-right:30px}.htmega-banner-style-5 .banner-thumb a::before,.htmega-banner-style-6 .banner-thumb a::before{background:#fff0 none repeat scroll 0 0;border:1px solid #f3a395;content:"";height:100%;left:0;opacity:1;position:absolute;top:0;transition:all 0.4s ease 0s;width:100%;z-index:1}.htmega-banner-style-6 .banner-content{display:flex;justify-content:space-between;flex-direction:column;top:0;width:100%;text-align:center;padding:40px 0;height:100%;transform:translateY(0)}.htmega-banner-style-6 .banner-content h2{color:#646161;font-family:"Rubik",sans-serif;font-size:24px;font-weight:700;margin-bottom:0}.htmega-banner-style-6 .banner-content p{color:#f3a395;font-family:"Rubik",sans-serif;font-size:24px;font-weight:700;margin-bottom:0}.htmegaspcial-banner.htmega-banner-content-pos-right .banner-content{top:50%;right:0;width:auto;transform:translateY(-50%)}.htmegaspcial-banner.htmega-banner-content-pos-left .banner-content{top:50%;left:0;width:auto;transform:translateY(-50%)}.htbanner-badgeimage{position:absolute;top:0;left:0;display:inline-block}.htbanner-badgeimage img{width:100%}.beer-slider input[type="range"]{height:100%}.beer-slider{font-family:"Montserrat",sans-serif;text-transform:uppercase;font-size:.75rem;letter-spacing:1px;margin-bottom:1.5rem;position:relative}.beer-slider::before{background:#fff0;content:"";height:100%;opacity:.35;position:absolute;right:0;top:0;width:100%}.htmega-imagecomparison .beer-handle,.htmega-imagecomparison .beer-range:focus~.beer-handle{box-shadow:none}.htmega-label-pos-center .beer-reveal[data-beer-label]::after,.htmega-label-pos-center .beer-slider[data-beer-label]::after{top:50%}.htmega-label-pos-bottom .beer-reveal[data-beer-label]::after,.htmega-label-pos-bottom .beer-slider[data-beer-label]::after{bottom:1.5rem;top:auto}.beer-reveal[data-beer-label]::after,.beer-slider[data-beer-label]::after{word-break:normal}a.htmega-downloadbtn{font-size:16px;padding:10px 15px;text-transform:uppercase;font-weight:600;text-decoration:none;transition:0.4s}.file_meta{font-size:12px;font-weight:400;margin-top:7px;opacity:.7}.file_meta span{margin-right:10px;position:relative}.file_meta span::before{border-left:1px solid;content:"";height:10px;left:-8px;position:absolute;top:50%;transform:translateY(-50%);width:1px}.file_meta span:first-child::before{display:none}.download_icon{margin-right:10px}.edd_downloads_list .edd_download .edd_download_inner .edd_download_title a{display:inline-block;text-decoration:none}.htmega_buddypress_single{display:inline-block;text-align:center}.htmega_buddypress_single a{text-decoration:none;display:inline-block}.htmega_buddypress_single .buddy_press_meta span{display:block}.elementor-widget-htmega-wcaddtocart-addons a{text-decoration:none}.elementor-widget-htmega-wcaddtocart-addons .quantity{display:inline-block}.elementor-widget-htmega-wcaddtocart-addons .ajax_add_to_cart.added .elementor-button-text::after,.elementor-widget-htmega-wcaddtocart-addons .single_add_to_cart_button.added .elementor-button-text::after{font-family:WooCommerce;content:'\e017';margin-left:.53em;vertical-align:bottom}.elementor-widget-htmega-wcaddtocart-addons .ajax_add_to_cart.loading .elementor-button-text::after,.elementor-widget-htmega-wcaddtocart-addons .single_add_to_cart_button.loading .elementor-button-text::after{font-family:WooCommerce;content:'\e01c';vertical-align:top;-webkit-font-smoothing:antialiased;font-weight:400;position:absolute;top:auto;right:1em;animation:spin 2s linear infinite}.elementor-widget-htmega-wcaddtocart-addons .add_to_cart_button,.elementor-widget-htmega-wcaddtocart-addons .single_add_to_cart_button{position:relative;margin-right:6px}.elementor-widget-htmega-wcaddtocart-addons .ajax_add_to_cart.loading,.elementor-widget-htmega-wcaddtocart-addons .single_add_to_cart_button.loading{padding-right:2.618em}.elementor-widget-htmega-wcpages-addons .col-1,.elementor-widget-htmega-wcpages-addons .col-2{flex:0 0 100%;max-width:100%;padding:0}.elementor-widget-htmega-wcpages-addons .form-row{display:block}.elementor-widget-htmega-wcpages-addons .woocommerce-MyAccount-navigation ul li{list-style:none}.elementor-widget-htmega-wcpages-addons .woocommerce-MyAccount-navigation ul li a{text-decoration:none;display:block}.woocommerce .product-category a{display:inline-block;transition:0.4s}.woocommerce .product-category .mark,.woocommerce .product-category mark{background-color:#fff0;padding:0}.job-manager-application-wrapper .application .application_button,.single_job_listing .application .application_button{height:inherit}.job_application button,.job_application input[type="button"],.job_application input[type="reset"],.job_application input[type="submit"]{height:auto}.job_summary_shortcode .job-type{height:auto!important;margin:0 0 9px}.job_summary_title{font-size:20px;margin-top:10px}.elementor-widget-htmega-jobmanager-addons input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),.elementor-widget-htmega-jobmanager-addons select{width:100%;margin-bottom:10px}.elementor-widget-htmega-jobmanager-addons ul.job_types{list-style:none;margin:15px 0 10px;padding:0}.elementor-widget-htmega-jobmanager-addons ul.job_types li{display:inline-block}.elementor-widget-htmega-jobmanager-addons ul.job_types li:not(:last-child),.elementor-widget-htmega-jobmanager-addons ul.job-dashboard-actions li:not(:last-child){margin-right:10px}.elementor-widget-htmega-jobmanager-addons ul.job-dashboard-actions{list-style:none;padding:0;margin:0}.elementor-widget-htmega-jobmanager-addons ul.job-dashboard-actions li{display:inline-block}.elementor-widget-htmega-jobmanager-addons fieldset{margin-bottom:15px}.post-carousel-wrapper{margin:0 -15px}.post-carousel-wrapper .slick-slide{margin:0 15px}.post-carousel-wrapper .htmega-postslider-layout-1 .content{max-width:100%;width:100%}.post-carousel-wrapper .htmega-postslider-layout-1 .content{padding:0}.post-carousel-wrapper .htmega-postslider-layout-1 .content .post-inner{background:#33a3b9 none repeat scroll 0 0;transition:0.4s}.post-carousel-wrapper .htmega-postslider-layout-1:hover .content .post-inner{background:rgb(51 163 185 / .8) none repeat scroll 0 0}.post-carousel-wrapper button.slick-arrow{background:#5e5e5e none repeat scroll 0 0;border:0 none;border-radius:100%;color:#fff;font-size:30px;height:50px;left:-20px;margin:0;padding:0;position:absolute;top:50%;transform:translateY(-50%);transition:all 0.4s ease-in-out 0s;width:50px;line-height:0;z-index:9999}.post-carousel-wrapper button.htmega-carosul-next.slick-arrow{left:auto;right:-20px}.post-carousel-wrapper .htmega-single-post-slide .content .post-inner ul.meta li{letter-spacing:0}.post-carousel-wrapper .htmega-postslider-layout-2 .content{padding:0 20px;margin-top:-50px;text-align:center;position:relative;z-index:2;overflow:hidden}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner{background:#fff;padding:20px;border-bottom:4px solid #b5b5b5;padding-top:35px;transition:0.4s ease-in-out;position:relative}.post-carousel-wrapper .htmega-postslider-layout-2:hover .content .post-inner{border-bottom:4px solid #0056ff}.post-carousel-wrapper .htmega-postslider-layout-2 .content.htmega-gradient .post-inner{border:none}.post-carousel-wrapper .htmega-postslider-layout-2 .content.htmega-gradient .post-inner:after{content:"";left:0;height:4px;bottom:0;width:100%;position:absolute;z-index:2;background:#b5b5b5;transition:0.4s ease-in-out;background-image:linear-gradient(90deg,#F9DC03 0%,#F25A75 100%);background-color:#fff0}.post-carousel-wrapper .htmega-postslider-layout-2:hover .content.htmega-gradient .post-inner:after{background-image:linear-gradient(90deg,#09E328 0%,#00C1C6 100%)}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul{justify-content:space-between}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul.meta li{color:#8f8f8f;font-size:14px;font-family:'Courgette',cursive}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul.meta li i{font-size:14px;padding-right:12px;color:#a8a8a8}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner ul.meta li a{color:#8f8f8f}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner h2{font-size:20px;font-weight:600;margin-bottom:11px;line-height:28px;margin-bottom:25px;padding:0 30px}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner h2 a{color:#4f4f4f;transition:0.4s ease-in-out}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner h2 a:hover{color:#0056ff}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner p{color:#818181;font-size:14px;line-height:24px;margin-bottom:29px;font-family:"Montserrat",sans-serif;font-weight:300}.post-carousel-wrapper .htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn,.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner .post-btn a.readmore-btn,.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn{border-radius:0;border-style:none none solid;border-width:0 0 1px;border-color:#fff;color:#fff;display:inline-block;font-family:"Montserrat",sans-serif;font-size:14px;font-weight:500;height:inherit;line-height:24px;padding:0;transition:all 0.4s ease-in-out 0s}.post-carousel-wrapper .htmega-postslider-layout-3 .content .post-inner .post-btn a.readmore-btn:hover{color:#33a3b9;border-bottom:1px solid #33a3b9;background:#fff0}.post-carousel-wrapper.htmega-postcarousel-layout-3 button.slick-arrow{background:#263170 none repeat scroll 0 0;border:0 none;color:#fff;font-size:30px;height:40px;margin:0;padding:0;position:absolute;right:15px;top:-48px;transition:all 0.4s ease-in-out 0s;width:46px;border-radius:0}.post-carousel-wrapper.htmega-postcarousel-layout-3 button.htmega-carosul-prev.slick-arrow{right:66px;left:auto}.post-carousel-wrapper .htmega-postslider-layout-4 .post-carousel-flex{display:flex;align-items:center}.post-carousel-wrapper .htmega-postslider-layout-4 .content{flex-basis:58%;position:relative;margin-left:-75px;background:#fff;padding:57px 24px}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner{background:#fff0 none repeat scroll 0 0;padding:0;text-align:left}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul{justify-content:flex-start}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.post-category{margin:0 -5px}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.post-category li{margin:0 5px}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta{margin:0;margin-bottom:10px}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta li{color:#8c8c8c;font-size:14px;font-family:"Montserrat",sans-serif;font-weight:500;margin:0 14px;letter-spacing:0;margin-left:0}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta li i{font-size:16px;padding-right:10px}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner ul.meta li a{color:#8c8c8c}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner h2{font-size:20px;font-weight:600;margin-bottom:19px}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner h2 a{color:#464646;transition:0.4s ease-in-out}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner h2 a:hover{color:#0056ff}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner p{color:#818181;font-size:14px;line-height:24px;font-weight:300;font-family:"Montserrat",sans-serif}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner .post-btn a.readmore-btn{color:#464646;transition:0.4s ease-in-out;font-family:"Montserrat",sans-serif;font-weight:500;background:#fff0;border-bottom:1px solid #464646}.post-carousel-wrapper .htmega-postslider-layout-4 .content .post-inner .post-btn a.readmore-btn:hover{color:#0056ff;border-bottom:1px solid #0056ff;background:#fff0}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner{text-align:left;padding:30px 0}.post-carousel-wrapper .htmega-postslider-layout-5 .content{background:#fff0;padding:0}.post-carousel-wrapper .content .post-inner h2{word-break:break-word}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul{justify-content:flex-start}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta{margin:0 -10px;margin-bottom:7px}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li{color:#8c8c8c;font-size:14px;font-family:"Montserrat",sans-serif;padding:0 10px;font-weight:500;position:relative;margin:0}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li::before{position:absolute;content:"/";right:0;top:2px}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li:last-child::before{display:none}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li a{color:#8c8c8c}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner h2{font-size:24px;font-weight:500;margin-bottom:11px;margin:0}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner h2 a{color:#2b2b2b;transition:0.4s ease-in-out}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner h2 a:hover{color:#0056ff}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner p{color:#6d6a6a;font-size:17px;line-height:29px;margin-bottom:24px;margin-top:10px}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn{border-bottom:1px solid #464646;font-size:14px;transition:0.4s ease-in-out;font-family:"Montserrat",sans-serif;color:#464646;background:#fff0}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner .post-btn a.readmore-btn:hover{border-bottom:1px solid #0056ff;color:#0056ff}.post-carousel-wrapper.htmega-postcarousel-layout-5 button.slick-arrow{position:absolute;top:28%;left:15px;width:46px;height:46px;background:#fff;border:0 none;color:#0056ff;font-size:24px;padding:0;margin:0;transition:0.4s ease-in-out;z-index:2;border-radius:0}.post-carousel-wrapper.htmega-postcarousel-layout-5 button.slick-arrow:hover{background:#0056ff;color:#fff}.post-carousel-wrapper.htmega-postcarousel-layout-5 button.slick-arrow.htmega-carosul-next{left:auto;right:15px}.post-carousel-wrapper.htmega-bottom-right-arrow button.slick-arrow,.post-carousel-wrapper.htmega-bottom-center-arrow button.slick-arrow{top:100%}.post-carousel-wrapper.htmega-top-right-arrow button.slick-arrow{top:0}.post-carousel-wrapper.htmega-top-right-arrow button.slick-arrow{right:50px;left:auto}.post-carousel-wrapper.htmega-top-right-arrow button.htmega-carosul-next.slick-arrow{right:0;left:auto}.post-carousel-wrapper.htmega-bottom-right-arrow button.slick-arrow{right:50px;left:auto}.post-carousel-wrapper.htmega-bottom-right-arrow button.htmega-carosul-next.slick-arrow{right:0;left:auto}.post-carousel-wrapper.htmega-bottom-center-arrow button.slick-arrow{left:50%;margin-left:-40px}.post-carousel-wrapper.htmega-bottom-center-arrow button.htmega-carosul-next.slick-arrow{left:auto;right:50%;margin-right:-40px}.post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-bottom-center-arrow button.htmega-carosul-prev.slick-arrow{right:auto;left:50%}.post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-verticle-center-arrow button.slick-arrow{top:50%}.post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-verticle-center-arrow button.slick-arrow{left:-20px;right:auto}.post-carousel-wrapper.htmega-postcarousel-layout-3.htmega-verticle-center-arrow button.htmega-carosul-next.slick-arrow{left:auto;right:-20px}.htmega-justify-single-image .thumb a{display:block}.htmega-justify-single-image .thumb a img{width:100%}.htmega-justify-single-image .thumb{line-height:0}.shapebg_image--1{background-image:url(//enduropoint.si/wp-content/plugins/ht-mega-for-elementor/assets/css/img/others/business-shape.png);background-repeat:no-repeat;background-size:cover;background-position:center center}.htmega-business-horurs-1 .business-hrs-inner{padding:70px 65px;margin-top:-15px}.htmega-business-horurs-1 .htmega-single-hrs{margin-top:15px}.htmega-business-horurs-1 .htmega-single-hrs span.time{float:right;font-weight:600;color:#000;font-size:20px;font-family:'Dosis',sans-serif}.htmega-business-horurs-1 .htmega-single-hrs span.day{color:#3b3b3b;font-weight:800;font-size:30px;font-family:'Dosis',sans-serif}.htmega-business-horurs-1 .htmega-single-hrs.closed-day span.time{color:#fa2d2d}.htmega-business-horurs-1 .htmega-single-hrs.closed-day span.day{color:#fa2d2d}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs{padding:16px 0;border-top:1px solid #f4f4f4;position:relative}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs:first-child{border-top:1px solid #fff0}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs::before{border:1px dashed #fff;content:"";height:42px;left:50%;position:absolute;top:50%;transform:translateX(-50%) translateY(-50%);width:2px}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs span.day{color:#fafafa;font-weight:400;font-size:18px;font-family:"Montserrat",sans-serif;padding-left:40px}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs span.time{float:right;font-weight:400;color:#fff;font-size:16px;font-family:"Montserrat",sans-serif;padding-right:40px}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs:nth-child(odd){background:#ff6f5e}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs:nth-child(even){background:#fe5743}.htmega-business-horurs-3 .business-hrs-inner{padding:20px 30px;background:#fff;box-shadow:0 0 10px rgb(0 0 0 / .1)}.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs{padding:10px 22px;margin:4px 0}.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs span{font-family:'Lobster Two',cursive}.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs span.day{color:#565656;font-weight:400;font-size:20px}.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs span.time{float:right;font-weight:400;color:#565656;font-size:16px}.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs.closed-day{background:#0056ff}.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs.closed-day span.time{color:#fff}.htmega-business-horurs-3 .business-hrs-inner .htmega-single-hrs.closed-day span.day{color:#fff}.htmega-business-horurs-4 .business-hrs-inner{padding:30px 50px;background-image:url(//enduropoint.si/wp-content/plugins/ht-mega-for-elementor/assets/css/img/bg/bg-image-40.jpg);background-repeat:no-repeat;background-size:cover;background-position:center center}.business-hrs-inner h4.hour-title{text-align:center;padding:20px 0;font-size:24px;font-weight:600}.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs{padding:17px 0;position:relative}.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs:last-child{border:none!important}.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs span{font-family:"Montserrat",sans-serif}.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs span.day{color:#fff;font-weight:500;font-size:16px}.htmega-business-horurs-4 .business-hrs-inner .htmega-single-hrs span.time{float:right;font-weight:300;color:#fff;font-size:14px}.htmega-business-horurs-5 .business-hrs-inner{padding:30px 50px;position:relative;z-index:2}.htmega-business-horurs-5 .business-hrs-inner::before{position:absolute;left:0;top:0;width:100%;height:100%;content:"";z-index:2;right:0;background-image:linear-gradient(#d80d5f,#2f46dc);background-image:-webkit-gradient(#d80d5f,#2f46dc);background-image:-webkit-linear-gradient(#d80d5f,#2f46dc);background-image:-moz-linear-gradient(#d80d5f,#2f46dc);background-image:-ms-linear-gradient(#d80d5f,#2f46dc);background-image:-o-linear-gradient(#d80d5f,#2f46dc);z-index:-1}.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs{padding:17px 0;position:relative}.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs::before{position:absolute;content:"";width:60px;height:2px;left:45%;top:50%;transform:translateX(-50%) translateY(-50%);border:1px dotted #fff}.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs span{font-family:"Montserrat",sans-serif}.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs span.day{color:#fff;font-weight:500;font-size:16px}.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs span.time{float:right;font-weight:300;color:#fff;font-size:14px}.htmega-table-style{border-radius:10px 10px 0 0}.htmega-table-style .htb-table{margin:0}.htmega-table-style .htb-table thead{background-color:#612d91}.htmega-table-style .htb-table thead tr th{text-align:center;border:none;font-size:18px;text-transform:uppercase;font-weight:600;color:#fff;padding:12px 20px;border-right:1px solid #fff}.htmega-table-style table.htb-table tbody>tr:nth-child(odd)>td,.htmega-table-style table.htb-table tbody>tr:nth-child(odd)>th{background:unset}.htmega-table-style .htb-table tbody tr{background:#824f9e}.htmega-table-style .htb-table tbody tr td{text-align:center;border:none;padding:12px 20px;vertical-align:middle;border-bottom:1px solid #fff;color:#fff;font-size:16px;border-right:1px solid #fff}.htmega-table-style .htb-table thead tr th.sorting,.htmega-table-style .htb-table thead tr th.sorting_asc,.htmega-table-style .htb-table thead tr th.sorting_desc{position:relative}.htmega-table-style .htb-table thead tr th.sorting::before,.htmega-table-style .htb-table thead tr th.sorting_asc::before,.htmega-table-style .htb-table thead tr th.sorting_desc::before,.htmega-table-style .htb-table thead tr th.sorting::after,.htmega-table-style .htb-table thead tr th.sorting_desc::after,.htmega-table-style .htb-table thead tr th.sorting_asc::after{position:absolute;content:"\f0d7";right:20px;font-family:FontAwesome;top:50%;transform:translateY(-50%);margin-top:7px;font-size:18px}.htmega-table-style .htb-table thead tr th.sorting::after,.htmega-table-style .htb-table thead tr th.sorting_desc::after,.htmega-table-style .htb-table thead tr th.sorting_asc::after{content:"\f0d8";margin-top:-5px}.htmega-table-style select{width:auto}.ast-container .htmega-table-style select{background-position-y:calc(50%)}.htmega-table-style-2{border-radius:0}.htmega-table-style-2 .htb-table{margin:0}.htmega-table-style-2 .htb-table thead{background-color:#5ac5ff}.htmega-table-style-2 .htb-table thead tr th{text-align:left;border:none;font-size:18px;text-transform:uppercase;font-weight:600;color:#fff;padding:12px 20px;border-right:1px solid #c5c5c5;border-left:1px solid #c5c5c5;padding-left:30px;outline:none}.htmega-table-style-2 .htb-table tbody tr{background:#fff}.htmega-table-style-2 .htb-table tbody tr:nth-child(even){background:#f4f4f4}.htmega-table-style-2 .htb-table tbody tr td{text-align:left;border:none;padding:12px 20px;vertical-align:middle;color:#000;font-size:16px;border-right:1px solid #c5c5c5;padding-left:30px;border-left:1px solid #c5c5c5}.htmega-table-style-2 td a{font-size:16px;font-weight:600;color:#18012c}.htmega-table-style-3{border-radius:0}.htmega-table-style-3 .htb-table{margin:0}.htmega-table-style-3 .htb-table thead{background-color:#727272}.htmega-table-style-3 .htb-table thead tr th{text-align:left;border:none;font-size:18px;text-transform:uppercase;font-weight:600;color:#fff;padding:12px 20px;border-right:1px solid #c5c5c5;border-left:1px solid #c5c5c5;padding-left:30px}.htmega-table-style-3 .htb-table tbody tr{background:#fff}.htmega-table-style-3 .htb-table tbody tr td{text-align:left;border:none;padding:12px 20px;vertical-align:middle;color:#000;font-size:16px;border-right:1px solid #c5c5c5;border-left:1px solid #c5c5c5;border-bottom:1px solid #c5c5c5;padding-left:30px}.htmega-table-style-3 td a{font-size:16px;font-weight:600;color:#18012c}.htmega-table-style table{border:0}.htmega-table-export-btn{display:inline-block;float:right;margin-top:10px;overflow:hidden;background:#824F9E;color:#fff;line-height:1;padding:7px 16px;border-radius:3px;cursor:pointer;transition:all 0.3s ease-in-out}.htmega-table-export-btn:hover{background:#000}.htmega-pricing-list-view a{text-decoration:none}.htmega-pricing-list-view .htb-table{margin:0}.htmega-pricing-list-view .htb-table thead tr th{text-align:center;font-size:16px;font-weight:500;color:#5c5c5c;padding:12px 20px;border-right:1px solid #d4d4d4;border-left:1px solid #d4d4d4;font-family:"Montserrat",sans-serif;text-transform:inherit}.htmega-pricing-list-view .htb-table td.tb-name a{font-size:16px;font-weight:600;color:#18012c}.htmega-pricing-list-view .htb-table tbody tr td{text-align:center;border:none;padding:12px 20px;vertical-align:middle;border-bottom:1px solid #d4d4d4;color:#5c5c5c;font-size:16px;border-right:1px solid #d4d4d4;border-left:1px solid #d4d4d4}.htmega-pricing-list-view .htb-table tbody tr td a{color:#5c5c5c}.table-responsive td.htmega-pricing-row-cell .htmega-pricing-table__head-row-cell-area,.table-responsive .htmega-pricing-table__head-column-cell-text{word-break:initial}.table-responsive.htmega-pricing-list-view{overflow-x:auto}.table-responsive.htmega-pricing-list-view table.table{margin:0}.htmega-pricing-list-view .htmega-pricing-table__head-column-cell-area{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-ms-flex-align:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.htmega-column-position-icon-left .htmega-pricing-table__head-column-cell-area{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.htmega-column-position-icon-right .htmega-pricing-table__head-column-cell-area{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.htmega-column-position-icon-left .htmega-pricing-table__head-column-cell-icon,.htmega-column-position-icon-right .htmega-pricing-table__head-column-cell-icon{width:auto}.htmega-column-position-icon-bottom .htmega-pricing-table__head-column-cell-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.htmega-column-position-icon-top .htmega-pricing-table__head-column-cell-area{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.htmega-column-position-icon-bottom .htmega-pricing-table__head-column-cell-icon,.htmega-column-position-icon-top .htmega-pricing-table__head-column-cell-icon{width:100%}.htmega-pricing-table__head-column-cell .htmega-pricing-table__head-column-cell-area .htmega-pricing-table__head-column-cell-icon img{width:40%}.htmega-pricing-row-cell span.ht-data-label{padding:5px 8px;border-radius:20px;position:relative;background:#11A683;color:#fff;font-size:10px}.htmega-pricing-table-style-4 table.table,.htmega-pricing-table-style-4 table.table td,.htmega-pricing-table-style-4 table.table th{border:none}.htmega-pricing-table-style-4 th.htmega-pricing-table__head-column-cell,.htmega-pricing-table-style-4 td.htmega-pricing-row-cell{position:relative}.htmega-pricing-table-style-4 th.htmega-pricing-table__head-column-cell .htmega-pricing-table__head-column-cell-area:before,.htmega-pricing-table-style-4 td.htmega-pricing-row-cell .htmega-pricing-table__head-row-cell-area:before{position:absolute;content:"";background:#fff0;width:10px;height:10px;left:0;border-radius:50px}.htmega-pricing-row-cell .htmega-button .htb-btn{font-size:14px}.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table{border-collapse:separate;border-spacing:0 20px}.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr{background:#fff;box-shadow:0 0 10px rgb(0 0 0 / .15);border-radius:50px}.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr td:first-child,.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr th:first-child{border-radius:10px 0 0 10px}.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr td:last-child,.htmega-pricing-list-view.htmega-pricing-table-style-4 table.table tr th:last-child{border-radius:0 10px 10px 0}.htmega-column-position-icon-right .htmega-pricing-table__head-column-cell-icon{padding-left:5px}.htmega-column-position-icon-left .htmega-pricing-table__head-column-cell-icon{padding-right:5px}.elementor-widget-htmega-pricinglistview-addons .htmega-pricing-table__head-row-cell-area{display:-webkit-inline-box;display:-webkit-inline-flex;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-ms-flex-align:center;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-top .htmega-pricing-table__head-row-cell-area{-webkit-box-orient:vertical;-webkit-box-direction:reverse;-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-bottom .htmega-pricing-table__head-row-cell-area{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-left .htmega-pricing-table__head-row-cell-area{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-right .htmega-pricing-table__head-row-cell-area{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-bottom .ha-table__body-row-cell-icon,.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-top .ha-table__body-row-cell-icon{width:100%}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-left .ha-table__body-row-cell-icon,.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-right .ha-table__body-row-cell-icon{width:auto}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-right .htmega-pricing-table__head-row-cell-area .htmega-pricing-table__head-row-cell-icon{padding-left:5px}.elementor-widget-htmega-pricinglistview-addons.htmega-row-icon-position-left .htmega-pricing-table__head-row-cell-area .htmega-pricing-table__head-row-cell-icon{padding-right:5px}.htmega-pricing-table-style-2 .htb-table{margin:0}.htmega-pricing-table-style-2 .htb-table thead tr th{vertical-align:bottom;border-bottom:2px solid #dee2e6;padding:0;border:0 none;border-right:1px solid #fff;border-left:1px solid #fff}.htmega-pricing-table-style-2 .htb-table thead tr th:first-child{border:1px solid transparent!important}.htmega-pricing-table-style-2 .htb-table thead tr th span{text-align:center;font-size:24px;font-weight:600;color:#ff6565;font-family:"Montserrat",sans-serif;text-transform:inherit;background:#ffc1c1;display:block;padding:12px 20px;text-transform:initial}.htmega-pricing-table-style-2 .htb-table tbody tr td{text-align:center;border:none;padding:0;border-right:1px solid #fff;border-left:1px solid #fff;border-bottom:1px solid #fff}.htmega-pricing-table-style-2 .htb-table tbody tr td:first-child{border-left:1px solid #fff0;border-bottom:1px solid #fff0}.htmega-pricing-table-style-2 .htb-table tbody tr td span{padding:12px 20px;vertical-align:middle;color:#fff;font-size:16px;background:#ff8686;display:block}.htmega-pricing-table-style-2 .htb-table tbody tr td span i{color:#fff;font-size:16px}.htmega-pricing-table-style-2 .htb-table tbody tr td a{color:#fff}.htmega-pricing-table-style-2 .htb-table td.tb-name a{font-size:16px;font-weight:600;color:#18012c}.htmega-pricing-table-style-3 ul{list-style:none;padding:0;margin:0}.htmega-pricing-table-style-3 ul li{margin-bottom:25px}.htmega-pricing-table-style-3 ul li a{display:flex;flex-wrap:wrap;list-style:none;align-items:center}.htmega-pricing-table-style-3 ul li a .price-list-text{flex:1;min-width:1px;align-items:center;display:flex;flex-wrap:wrap}.htmega-pricing-table-style-3 ul li a .price-list-text span{color:#373737;font-weight:600;font-size:20px}.htmega-pricing-table-style-3 ul li a .price-list-text span.separator{margin-left:20px;border-bottom-style:dotted;border-bottom-width:1px;height:0;color:#ccc;border-bottom-style:dashed;border-bottom-color:#b9b9b9;flex:1;min-width:1px}.htmega-pricing-table-style-3 ul li a .price-text-right{width:auto;padding-left:20px}.htmega-pricing-table-style-3 ul li a .price-text-right span.price{background:#ff8686;display:inline-block;color:#fff;font-weight:600;font-size:20px;height:45px;padding:0 33px;line-height:46px;margin-right:10px;border-radius:22px}.htmega-pricing-table-style-3 ul li a .price-text-right span.basket{display:inline-block;background:#ff9898;height:45px;line-height:44px;width:45px;text-align:center;border-radius:100%;color:#fff;font-size:18px}.htc-verctimeline-wrapper{position:relative;margin-top:30px}.htc-verctimeline-wrapper.htmega-verticletimeline-style-2::before{content:"";position:absolute;left:50%;top:0;width:6px;background:#18012c;height:100%;margin-left:-1px;border-radius:20px}.htc-verctimeline-wrapper .ht-ver-timeline{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between;padding:30px 0;position:relative}.htc-verctimeline-wrapper .ht-ver-timeline::before{content:"";position:absolute;left:50%;top:0;width:2px;background:#d2d2d2;height:100%;margin-left:-1px}.htc-verctimeline-wrapper .ht-ver-timeline:last-child::before{display:none}.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time{width:50%;text-align:right;position:relative;-webkit-align-self:baseline;-moz-align-self:baseline;-ms-flex-item-align:baseline;align-self:baseline;position:relative;top:-53px;padding-right:30px;padding-left:0}.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time::before{position:absolute;content:"";right:-15px;top:50%;margin-top:-15px;height:30px;width:30px;border:7px solid #e98250;border-radius:100%;background:#fff;transform:translateY(-50%)}.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time .vertical-date{width:100px;border:13px solid #f88a55;text-align:center;display:inline-block;height:100px;border-radius:100%;background:#fff;position:relative;top:-15px;margin-right:11px}.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time .vertical-date::before,.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span.month:before{position:absolute;content:"";left:100%;top:50%;height:10px;width:10px;border-top:10px solid #fff0;border-right:10px solid #fff0;border-bottom:10px solid #fff0;border-left:15px solid #f58854;transform:translateY(-50%);margin-left:12px}.htc-verctimeline-wrapper .ht-ver-timeline .vertical-time .vertical-date span{display:block;color:#fc8c56;font-size:18px;font-weight:500;line-height:28px;font-family:"Montserrat",sans-serif;height:100%;display:flex;align-items:center;justify-content:center}.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content{padding-left:123px;text-align:left;width:50%;position:relative;top:-30px}.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content::before{position:absolute;content:"";border-style:dashed;left:25px;height:1px;width:80px;border-width:0 0 2px;top:11px;border-color:#f38753}.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content p{color:#494849;font-size:14px;line-height:28px}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse{-webkit-box-direction:reverse;-webkit-box-orient:horizontal;-webkit-flex-direction:row-reverse;-moz-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time{text-align:left;padding-left:30px;padding-right:0}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time::before{right:auto;left:-15px}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time .vertical-date{margin-right:0;margin-left:11px}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .vertical-time .vertical-date::before{right:115%;left:auto;border-top:10px solid #fff0;border-right:15px solid #fc8c56;border-bottom:10px solid #fff0;border-left:10px solid #fff0}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .timeline-content{padding-left:0;padding-right:123px;text-align:right}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .timeline-content::before{left:auto;right:25px}h6.time_line_title{margin-top:0;margin-bottom:10px;padding:0;line-height:1.3;font-size:19px}.htc-verctimeline-wrapper.htmega-verticletimeline-style-4 .ht-ver-timeline .timeline-content{padding-left:40px}.htc-verctimeline-wrapper.htmega-verticletimeline-style-4 .ht-ver-timeline.vertical-reverse .timeline-content{padding-right:40px;padding-left:0}.htmega-verticletimeline-style-4 .ht-ver-timeline .timeline-content::before,.htmega-verticletimeline-style-4 .ht-ver-timeline .timeline-content::before{display:none}.htmega-verticletimeline-style-4 .ht-ver-timeline .vertical-time .vertical-date{border:none;padding:12px}.htmega-verticletimeline-style-4 .ht-ver-timeline .vertical-time .vertical-date:after,.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span.month:after{position:absolute;background:#e98250;height:100%;width:100%;content:"";top:0;left:0;border-radius:100%}.htmega-verticletimeline-style-4 .ht-ver-timeline .vertical-time .vertical-date span.month{position:relative;z-index:2;background:#fff;border-radius:100%;height:100%;width:100%;top:0;bottom:0;margin:0;display:flex;align-items:center;justify-content:center;padding:5px}.htmega-verticletimeline-style-4 .ht-ver-timeline .vertical-time .vertical-date::before{left:99%;margin:0}.htmega-verticletimeline-style-4 .ht-ver-timeline.vertical-reverse .vertical-time .vertical-date::before{right:99%}.htc-verctimeline-wrapper .ht-ver-timeline--2{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between;padding:40px 0 0;position:relative}.htc-verctimeline-wrapper .ht-ver-timeline--2::before{position:absolute;content:"";width:6px;height:100%;background:#cf2037;left:50%;transform:translateX(-1px);top:0;transition:0.4s ease-in-out;opacity:0;border-radius:20px}.htc-verctimeline-wrapper .ht-ver-timeline--2:hover::before{opacity:1}.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time{width:50%;text-align:right;position:relative;-webkit-align-self:baseline;-moz-align-self:baseline;-ms-flex-item-align:baseline;align-self:baseline;position:relative;padding-right:40px}.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time::before{position:absolute;content:"";right:-12px;top:50%;margin-top:0;height:20px;width:20px;border:6px solid #18012c;border-radius:100%;background:#fff;transform:translateY(-50%);transition:0.4s ease-in-out}.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span{display:block;color:#18012c;font-size:18px;font-weight:700;line-height:28px;font-family:"Montserrat",sans-serif}.htc-verctimeline-wrapper .ht-ver-timeline--2:hover .vertical-time::before{border:6px solid #cf2037}.htc-verctimeline-wrapper .ht-ver-timeline--2 .timeline-content{padding-left:40px;text-align:left;width:50%;position:relative}.htc-verctimeline-wrapper .ht-ver-timeline--2 .timeline-content h6{color:#18012c;font-size:18px;font-weight:700;transition:0.4s ease-in-out}.htc-verctimeline-wrapper .ht-ver-timeline--2 .timeline-content p{color:#313131;font-size:15px;line-height:25px;font-family:"Montserrat",sans-serif}.htc-verctimeline-wrapper .ht-ver-timeline--2:hover .timeline-content h6{color:#cf2037}.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse{-webkit-box-direction:reverse;-webkit-box-orient:horizontal;-webkit-flex-direction:row-reverse;-moz-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time{text-align:left;padding-left:40px;padding-right:0}.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time::before{right:auto;left:-9px}.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time .vertical-date{margin-right:0;margin-left:11px}.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .timeline-content{padding-left:0;padding-right:40px;text-align:right}.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span.month{display:inline-block;position:relative;z-index:1}.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span.month:after{border-radius:0;background:#fff0;z-index:-1}.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time .vertical-date span.month:before{margin:0;border-top:8px solid #fff0;border-right:8px solid #fff0;border-bottom:8px solid #fff0;border-left:12px solid #fff0}.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time .vertical-date span.month:before{right:100%;left:auto;border-top:8px solid #fff0;border-right:12px solid #fff0;border-bottom:8px solid #fff0;border-left:8px solid #fff0}.htc-verctimeline-wrapper .ht-ver-timeline--3{display:-webkit-box;display:-webkit-flex;display:-moz-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;-webkit-justify-content:space-between;-moz-justify-content:space-between;justify-content:space-between;position:relative}.htc-verctimeline-wrapper .ht-ver-timeline--3::before{content:"";position:absolute;left:50%;top:0;width:3px;background:#f4f4f4;height:100%;margin-left:-2px}.htc-verctimeline-wrapper .ht-ver-timeline--3:last-child::before{display:none}.htc-verctimeline-wrapper .ht-ver-timeline--3 .vertical-time{width:50%;text-align:right;padding:0 40px;position:relative;-webkit-align-self:baseline;-moz-align-self:baseline;-ms-flex-item-align:baseline;align-self:baseline;position:relative}.htc-verctimeline-wrapper .ht-ver-timeline--3 .vertical-time .vertical-date span{display:block;color:#18012c;font-size:30px;font-weight:700;line-height:28px;font-family:"Montserrat",sans-serif;position:absolute;left:100%;width:60px;height:60px;background:#f4f4f4;text-align:center;line-height:60px;border-radius:100%;top:0;transform:translateX(-50%);transition:all 0.3s ease-in-out}.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content{padding-left:67px;text-align:left;width:50%;position:relative;top:0}.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content .content{background:#fff;box-shadow:0 0 97px rgb(0 0 0 / .1);padding:38px 30px;position:relative;transition:all 0.3s ease-in-out}.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content .content::before{right:100%;left:auto;border-top:10px solid #fff0;border-right:20px solid #fff;border-bottom:10px solid #fff0;border-left:10px solid #fff0;position:absolute;content:"";margin-top:-15px;height:10px;width:10px;transition:all 0.3s ease-in-out}.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content h6{color:#18012c;font-size:18px;font-weight:700;transition:0.4s ease-in-out;margin-bottom:8px}.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content p{color:#18012c;font-size:14px;line-height:28px;transition:all 0.3s ease-in-out}.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse{-webkit-box-direction:reverse;-webkit-box-orient:horizontal;-webkit-flex-direction:row-reverse;-moz-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .vertical-time{text-align:left;padding:0 40px}.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .vertical-time .vertical-date span{left:auto;right:100%;transform:translateX(50%)}.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .timeline-content{padding-right:67px;text-align:right;padding-left:0}.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .timeline-content .content::before{left:100%;right:auto;border-top:10px solid #fff0;border-right:10px solid #fff0;border-bottom:10px solid #fff0;border-left:15px solid #fff}@media (max-width:767px){.htc-verctimeline-wrapper .ht-ver-timeline--2 .vertical-time{padding-right:30px}.htc-verctimeline-wrapper .ht-ver-timeline--2.vertical-reverse .vertical-time{padding-left:30px}.htc-verctimeline-wrapper .ht-ver-timeline--3 .vertical-time,.htc-verctimeline-wrapper .ht-ver-timeline--3.vertical-reverse .vertical-time{width:auto;padding:0 18px}.htc-verctimeline-wrapper .ht-ver-timeline--3::before{display:none}.htc-verctimeline-wrapper .ht-ver-timeline--3{margin-bottom:30px}}.offcanvas{text-align:center}.offcanvas .canvas-btn{display:inline-block;color:#fff;font-size:16px;font-family:"Montserrat",sans-serif;font-weight:500;padding:13px 36px;line-height:1.4;border-radius:4px;background:#fa9866;text-decoration:none}.offcanvas svg{width:20px;vertical-align:middle}.site-menu .searchform input[type="text"]{color:#fff}.site-menu.show-nav{-webkit-transform:translateX(440px);transform:translateX(440px);-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}.site-menu{width:440px;height:100%;position:fixed;top:0;left:-440px;background:#000;transform:translateX(0);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:300ms ease all;transition:300ms ease all;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:99;overflow-y:auto;padding-top:80px}.admin-bar .site-menu{padding-top:120px}.site-menu a.canvas-closebtn i{border:1px solid #fff;color:#fff;padding:9px;position:absolute;right:20px;top:20px}.admin-bar .site-menu a.canvas-closebtn i{top:60px}.site-menu.align-right-active{transform:translateX(0)}.site-menu.align-right-active.show-nav{-webkit-transform:translateX(-440px);transform:translateX(-440px);-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}.site-menu.align-right-active{left:auto;right:-440px}.site-menu.align-top-active{transform:translateY(0)}.site-menu.align-top-active.show-nav{-webkit-transform:translateY(150px);transform:translateY(150px);-webkit-transform:translate3d(0,150px,0);transform:translate3d(0,150px,0)}.site-menu.align-bottom-active{transform:translateY(0)}.site-menu.align-bottom-active.show-nav{-webkit-transform:translateY(-150px);transform:translateY(-150px);-webkit-transform:translate3d(0,-150px,0);transform:translate3d(0,-150px,0)}.site-menu.align-bottom-active,.site-menu.align-top-active{left:0;right:auto;bottom:-150px;top:auto;width:100%;height:150px}.site-menu.align-top-active{top:-150px;bottom:auto;width:100%;height:150px}.site-menu .content_offcanvas .elementor-widget-wp-widget-nav_menu ul{padding:0;margin:0;list-style:none}.site-menu .content_offcanvas .elementor-widget-wp-widget-nav_menu ul li a{color:#fff;font-size:15px;display:block;padding:13px 0;border-top:1px solid #414141;text-transform:uppercase;text-decoration:none}.site-menu .content_offcanvas .elementor-widget-wp-widget-nav_menu ul li:first-child a{border-top:1px solid #fff0}.site-menu .content_offcanvas .blog-search{margin:0 70px}.site-menu .content_offcanvas .blog-search form input,.site-menu .content_offcanvas_verticle .blog-search form input{border-radius:20px;height:40px}.site-menu .content_offcanvas .blog-search form button,.site-menu .content_offcanvas_verticle .blog-search form button{height:40px}.site-menu .content_offcanvas .blog-search form button:hover,.site-menu .content_offcanvas_verticle .blog-search form button:hover{color:#fff}.site-menu .content_offcanvas_verticle .linemenu-nav ul li{margin:0 10px}.admin-bar .site-menu.align-top-active,.site-menu.align-bottom-active{padding-top:40px!important}.admin-bar .site-menu.align-top-active .elementor-image{margin-top:7px}.site-menu.align-top-active a.canvas-closebtn i,.site-menu.align-bottom-active a.canvas-closebtn i{z-index:999}.magnifier-lens{cursor:pointer}.htmega-animated-heading{text-align:center}.htmega-animated-heading .cd-words-wrapper b{color:#0056ff}.htmega-style-1 h4{color:#515151;font-size:36px;margin:0;font-weight:600}.htmega-style-2 h4 span.beforetext{padding:.25em 0 .325em;margin:0 auto;text-shadow:0 0 80px rgb(255 255 255 / .5);font-size:60px;color:#515151;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:#fff0;-webkit-animation:bgimganimation 80s linear infinite;-webkit-transform:translate3d(0,0,0);-webkit-backface-visibility:hidden;background-color:#007bff}.htmega-style-3 h4{color:#515151;font-size:60px;font-weight:700;margin:0}.htmega-style-4 h4{vertical-align:middle;text-align:center;font-size:36px;color:#4e4e4e;font-weight:400;font-style:italic}.htmega-style-5 h4{font-size:36px}.htmega-style-6 h4{text-align:center;font-size:36px;color:#515151;font-weight:400;margin:0}.htmega-style-6 .cd-words-wrapper b{font-style:italic;font-size:48px;color:#0056ff;margin-top:-9px}.cd-headline.loading-bar .cd-words-wrapper::after{background:#0056ff}.htmega-animated-heading .cd-headline::before{font-size:100px;font-weight:100;position:absolute;z-index:-1;top:0;left:50%;content:attr(data-pltext);-webkit-transform:translateX(-50%) translateY(-14px);-ms-transform:translateX(-50%) translateY(-14px);transform:translateX(-50%) translateY(-14px);text-transform:uppercase;color:#2e98fb24;white-space:nowrap;margin-top:-15px}.htmega-animated-heading .headline-placeholder{position:relative;z-index:1}.htmega-animated-alignment-left .cd-headline::before,.htmega-animated-alignment-right .cd-headline::before{left:0;-webkit-transform:translateX(0) translateY(-14px);-ms-transform:translateX(0) translateY(-14px);transform:translateX(0) translateY(-14px)}.htmega-animated-alignment-right .cd-headline::before{left:auto;right:0}.htmega-carousel-activation{position:relative}.htmega-carousel-activation .panel-slider .content h2{margin-top:0}.panel-slider-wrapper.htmega-carousel-activation .slick-track{margin:0 -2px}.panel-slider-wrapper.htmega-carousel-activation .slick-track .slick-slide{padding:0 2px}.panel-slider-wrapper.htmega-carousel-activation button{position:absolute;top:50%;left:70px;z-index:2;width:50px;height:50px;border-radius:100%;line-height:50px;color:#fff;background:rgb(255 255 255 / .5);border:0 none;transform:translateY(-50%);transition:0.4s ease-in-out;font-size:24px;padding:0}.panel-slider-wrapper.htmega-carousel-activation button svg{width:20px;height:20px}.panel-slider-wrapper.htmega-carousel-activation button:hover svg{fill:#000}.panel-slider-wrapper.htmega-carousel-activation button:hover{background:rgb(24 1 44 / .5)}.panel-slider-wrapper.htmega-carousel-activation button.htmega-carosul-next{left:auto;right:70px}.panel-slider{position:relative}.panel-slider .content{position:absolute;bottom:0;left:0;padding:33px 40px;background:rgb(0 0 0 / .45);width:100%}.panel-slider .content h2{color:#fff;font-size:18px;font-weight:500;margin-bottom:8px}.panel-slider .content h2 a{color:inherit;font-size:inherit;font-family:inherit;text-decoration:none}.panel-slider .content span{color:#fff;font-size:16px}.panel-slide-active-2 .slick-slide{margin:0 2px}.panel_slider_style-1 .htmega-carousel-activation .panel-slider .content{opacity:0;transition:all 0.3s ease-in-out;z-index:-1}.panel_slider_style-1 .htmega-carousel-activation .slick-slide.slick-center .panel-slider .content{opacity:1;z-index:1}.panel-slider .thumb img{width:100%}.panel_slider_area .slick-slide>div{line-height:0}.panel_slider_area .slick-slide>div *{line-height:normal}.panel_slider_style-2 .htmega-carousel-activation .slick-track{margin:0 -2px}.panel_slider_style-2 .htmega-carousel-activation .slick-track .slick-slide{padding:0 2px}.panel_slider_style-2 .htmega-carousel-activation button{position:absolute;top:50%;left:50px;z-index:2;color:#000;border:0 none;transform:translateY(-50%);transition:0.4s ease-in-out;font-size:36px}.panel_slider_style-2 .htmega-carousel-activation button:hover{color:#18012c}.panel_slider_style-2 .htmega-carousel-activation button.htmega-carosul-next{left:auto;right:50px}.panel_slider_style-2 .htmega-carousel-activation .panel-slider{position:relative}.panel_slider_style-2 .htmega-carousel-activation .panel-slider .thumb img{width:100%}.panel_slider_style-2 .htmega-carousel-activation .panel-slider .content{position:absolute;bottom:0;padding:33px 40px;background:rgb(0 0 0 / .8);text-align:center;left:0;width:100%;-webkit-transition:all 0.4s ease-in-out;-moz-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;-webkit-transform:translateY(110%);-moz-transform:translateY(110%);transform:translateY(110%);opacity:0}.panel_slider_style-2 .htmega-carousel-activation .panel-slider .content h2{color:#fff;font-size:18px;font-weight:500;margin-bottom:8px}.panel_slider_style-2 .htmega-carousel-activation .panel-slider .content span{color:#fff;font-size:16px}.panel_slider_style-2 .htmega-carousel-activation .panel-slider:hover .content{-webkit-transform:translateY(0);-moz-transform:translateY(0);transform:translateY(0);opacity:1}.htmega-custom-width .htmega-carousel-activation .slick-active:not(.slick-center) .panel-slider .content{display:none}.panel_slider_style-3 .panel-slider .content-inner{-webkit-transition:opacity .15s 0s;-moz-transition:opacity .15s 0s;transition:opacity .15s 0s;position:absolute;width:100%;text-align:center;height:100%;top:0}.panel_slider_style-3 .panel-slider .content-inner::after{content:'';position:absolute;top:-100%;left:0;height:100%;width:100%;background:#000;-webkit-transition:top .35s;-moz-transition:top .35s;transition:top .35s}.panel_slider_style-3 .panel-slider .content-inner .content{position:absolute;z-index:2;width:100%;top:50%;transform:translateY(-50%);transition:0.4s ease-in-out;opacity:0;bottom:auto;background:transparent!important}.panel_slider_style-3 .panel-slider .content-inner .content h2{color:#fff;margin-bottom:10px;font-size:30px}.panel_slider_style-3 .panel-slider:hover .content-inner::after{top:0}.panel_slider_style-3 .panel-slider:hover .content-inner .content{opacity:1}.panel_slider_style-4 .htmega-carousel-activation button{position:absolute;top:50%;left:0;z-index:2;width:50px;height:50px;border-radius:100%;line-height:50px;color:#000;border:0 none;transform:translateY(-50%);transition:0.4s ease-in-out;font-size:24px;border:1px solid #000}.panel_slider_style-4 .htmega-carousel-activation button:hover{border:1px solid #fff;color:#fff}.panel_slider_style-4 .htmega-carousel-activation button.slick-arrow{left:140px}.panel_slider_style-4 .htmega-carousel-activation button.htmega-carosul-next{left:auto;right:140px}.panel_slider_style-4 .htmega-carousel-activation .slick-slide{padding:72px 0;transition:all 0.3s ease 0s}.panel_slider_style-4 .htmega-carousel-activation .panel-slider{position:relative;transition:all 0.3s ease 0s}.panel_slider_style-4 .htmega-carousel-activation .slick-slide.slick-center .panel-slider{transform:scale(1.3);z-index:2}.panel_slider_style-4 .htmega-carousel-activation .panel-slider{position:relative;transform:scale(.9)}.panel_slider_style-4 .htmega-carousel-activation .panel-slider::before{background:rgb(255 255 255 / .7);position:absolute;content:"";left:0;top:0;width:100%;height:100%;transition:0.3s ease-in-out}.panel_slider_style-4 .htmega-carousel-activation .slick-slide.slick-center .panel-slider::before{display:none}.panel_slider_style-4 .htmega-carousel-activation{margin:0 -70px}.panel_slider_style-4 .htmega-carousel-activation .thumb img{width:100%}.panel_slider_style-4 .htmega-carousel-activation .slick-slide{margin:0 70px}.ht-scroll-image{position:relative;border-style:solid;border-width:20px 20px 20px 20px;border-color:#fff;border-radius:5px 5px 5px 5px;box-shadow:0 8px 20px 0 rgb(0 0 0 / .1);overflow:hidden}.ht-scroll-image .thumb{min-height:600px;transition:background-position 6s ease-in-out;-webkit-transition:background-position 6s ease-in-out;border-style:solid;border-width:0 0 0 0;display:block;position:relative;width:100%;background-repeat:no-repeat;background-size:cover;overflow:hidden;border-top:1px solid #f2f2f2;border-left:1px solid #f2f2f2;border-bottom:1px solid #f2f2f2;border-right:1px solid #f2f2f2;transition-duration:3s}.ht-scroll-image .thumb:hover{background-position:left bottom!important}.ht-vtr-direction-bottom.ht-scroll-image .thumb{background-position:bottom}.ht-vtr-direction-bottom.ht-scroll-image .thumb:hover{background-position:left top!important}.ht-htr-direction-left.ht-scroll-image .thumb{background-position:left center}.ht-htr-direction-left.ht-scroll-image .thumb:hover{background-position:right center!important}.ht-htr-direction-right.ht-scroll-image .thumb{background-position:right center}.ht-htr-direction-right.ht-scroll-image .thumb:hover{background-position:left center!important}.ht-scroll-type-vertical .ht-scroll-image-wrapper,.ht-scroll-type-horizontal .ht-scroll-image-wrapper{overflow:hidden;height:600px;position:relative}.ht-scroll-type-vertical .ht-scroll-image-wrapper{overflow-y:auto}.ht-scroll-type-horizontal .ht-scroll-image-wrapper{overflow-x:auto}.ht-scroll-type-horizontal.ht-scroll-image .thumb img,.ht-scroll-type-horizontal.ht-scroll-image .thumb{max-width:max-content;height:100%;width:max-content}.ht-scroll-type-vertical.ht-scroll-image .thumb,.ht-scroll-type-horizontal.ht-scroll-image .thumb{height:auto!important;min-height:auto!important;overflow:visible}.ht-scroll-image-overlay{content:"";background:#0000004a;width:100%;height:100%;position:absolute;z-index:5;left:0;top:0;transition:all 0.3s ease-in-out}.ht-scroll-image:hover .ht-scroll-image-overlay{opacity:0;visibility:hidden}.ht-scroll-image span.htmega-badge{position:absolute;left:0;top:0;border:1px solid #fff0;border-radius:50px;padding:10px 20px;z-index:9;background:#fff;margin:15px;font-size:13px;line-height:1}.ht-scroll-indicator{display:inline-block;position:absolute;height:auto;top:50%;left:50%;text-align:center;z-index:8;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);transition:all 0.3s ease-in-out}.ht-scroll-indicator svg{width:78px}.ht-scroll-type-horizontal .ht-scroll-indicator{margin-top:-9px}.ht-scroll-type-vertical .ht-scroll-indicator{margin-left:-9px}.ht-scroll-image:hover .ht-scroll-indicator{opacity:0;visibility:hidden}.ht-scroll-image .thumb{-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-position:center;mask-position:center}.ht-event{align-items:center;border:1px solid #efefef;border-radius:10px;display:flex;margin-top:40px;padding:10px}.ht-event .thumb{flex-basis:50%;position:relative}.ht-event .thumb a img{width:100%}.ht-event .content{flex-basis:50%;padding-left:27px}.ht-event .thumb .event-date{background:#141414 none repeat scroll 0 0;color:#fff;padding:8px 0;position:absolute;right:-13px;text-align:center;top:0;width:60px}.ht-event .thumb .event-date span{display:block;font-size:20px;font-style:italic;font-weight:500}.ht-event .content h4{font-size:18px;margin-bottom:15px;margin-top:0}.ht-event .content ul.event-time{display:flex;list-style:outside none none;margin:0;padding:0}.ht-event .content ul.event-time li{color:#909090;font-size:14px}.ht-event .content ul.event-time li i{color:#56a4b1;padding-right:10px}.ht-event .content p{color:#727272;font-size:14px;line-height:24px;margin-top:10px}.ht-event .content .event-btn a{border-bottom:1px solid #727272;color:#727272;font-size:14px;font-weight:500;transition:all 0.4s ease-in-out 0s}.ht-event .content ul.event-time li+li{margin-left:15px;padding-left:15px;position:relative}.ht-event .content ul.event-time li+li::before{background:#9f9f9f none repeat scroll 0 0;content:"";height:15px;left:0;position:absolute;top:28%;width:2px}#htmega-google-map{width:100%}.htmega-google-map-inilasije{position:relative}.htmega-google-map-address-{position:absolute}.htmega-google-map-address-yes{position:absolute;z-index:3;color:#000;background:#fff;right:10%;top:50%;transform:translateY(-50%);max-width:265px;padding:30px;border-radius:10px}.htmega-google-map-address-yes span{font-family:"Montserrat",Sans-serif;font-size:16px;font-weight:700;text-decoration:underline}.htmega-google-map-address-yes p{margin:0}.htmega-baloon-text span{font-weight:600}.header-transparent .mean-container .mean-nav{background:#111 none repeat scroll 0 0;float:left;width:100%}.header-transparent a.meanmenu-reveal i{color:#fff}.mean-container .mean-nav>ul{padding:0}.header-transparent .mean-container .mean-nav a.mean-expand{color:#fff!important}.mean-container .mean-nav>ul li ul{padding-left:10px}.header-transparent .mean-nav ul li a{border-color:#eee;color:#fff;padding:6px 30px 6px 10px}#site-navigation-wrap .dropdown-menu{background-color:inherit;border:inherit;border-radius:inherit;color:inherit;display:block;float:inherit;font-size:inherit;font-family:inherit;list-style:outside none none;margin:0;min-width:inherit;padding:0;position:static;text-align:inherit;z-index:inherit;background-clip:inherit}#site-navigation-wrap .dropdown-menu a{text-decoration:none;color:inherit}.htmega-search-box .btn{font-family:fontawesome;padding:0}.htmega-search-box .fa{font-family:fontawesome}.woocommerce .col-1,.woocommerce .col-2{-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.woocommerce .form-row{display:block}@media (min-width:992px) and (max-width:1199px){.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action{padding:0}}@media (min-width:768px) and (max-width:991px){.htmega-banner-style-4 .banner-content{padding-left:20px;padding-right:20px;padding-top:20px}.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action{padding:0}.htmega-banner-style-4 .banner-content h2{margin-top:0}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs::before{left:40%}.htmega-btn-size-md{padding:16px 25px!important}.htmega-btn-size-xl{padding:35px 30px!important}.htmega-btn-size-lg{padding:25px 30px!important}.htmega-btn-size-sm{padding:8px 20px!important}.htmega-call-to-action .text-right{margin-top:10px;text-align:left!important}.callto-action-style-3::before{display:none}.htmega-newsticker-style-1 .breaking-news-title h5{padding:0 15px}.htmega-team-style-3 .htmega-team-click-action{margin-bottom:-60px}.htmega-social-network li{margin:3px 0}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4{margin-top:0}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action h4{margin-bottom:0;margin-top:0}.htmega-team-style-5 .htmega-team-hover-action .htmega-hover-action span{margin-bottom:3px}.htmega-team .htmega-team-hover-action .htmega-team-hover p{padding:0 5px}.htmega-testimonial-style-5 .testimonial-shape{bottom:45%}.htmega-countbox .ht-count{margin:0 22px 10px}.title-style-two .section-title-txt{padding:0 14%}.post-carousel-wrapper .htmega-postslider-layout-2 .content .post-inner{padding:35px 0 20px}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li{font-size:13px}.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action{padding:0}.htmegainstagram-column-tablet-1 .htmega-instragram ul.htmega-instagram-list li{width:100%}.htmegainstagram-column-tablet-2 .htmega-instragram ul.htmega-instagram-list li{width:50%}.htmegainstagram-column-tablet-3 .htmega-instragram ul.htmega-instagram-list li{width:33.33%}.htmegainstagram-column-tablet-4 .htmega-instragram ul.htmega-instagram-list li{width:25%}.htmegainstagram-column-tablet-5 .htmega-instragram ul.htmega-instagram-list li{width:20%}.htmegainstagram-column-tablet-6 .htmega-instragram ul.htmega-instagram-list li{width:16.66%}.htmega-process-area{background-image:none!important}.htmega-process-column-5 .htmega-single-process-area{flex:0 0 50%;max-width:50%}}@media (max-width:767px){.htmega-tab-nav a{margin:0 5px 10px}.htmega-tab-menu-style-2 a{margin:0 10px 10px}.htmega-tab-menu-style-3 a{margin:5px 3px -1px}.htmega-tab-style-5 .htmega-tab-nav,.htmega-tab-style-5 .htmega-tab-content-area{max-width:100%;flex:0 0 100%}.htmega-tab-style-5 .htmega-tab-content-area{border-left:0}.single-partner{margin-bottom:20px;width:auto}.htmega-brands-style-2 ul.brand-list li{border-right:0 none;margin:0 auto;width:50%}.htmega-brands-style-4 ul.brand-list li{border:0 none;padding:25px 15px;width:50%}.htmega-brands-style-5 .brand-logo-col{flex:0 0 50%;max-width:50%}.htmega-business-horurs-1 .business-hrs-inner{padding:70px 0}.htmega-business-horurs-2 .business-hrs-inner .htmega-single-hrs::before,.htmega-business-horurs-5 .business-hrs-inner .htmega-single-hrs::before{display:none}.htmega-business-horurs-5 .business-hrs-inner,.htmega-business-horurs-4 .business-hrs-inner{padding:30px 20px}.htmega-business-horurs-3 .business-hrs-inner{padding:20px}.htmega-call-to-action .text-right{margin-top:10px;text-align:left!important}.callto-action-style-3::before{display:none}.callto-action-style-3 .htmega-content{display:block}.callto-action-style-7 .call-to-action-inner{padding:0}.htmega-countbox .ht-count::before{display:none}.htmega-countbox .ht-count{margin:0 22px 15px!important}.htmega-carousel-style-1 .slick-slide.slick-center .single-custom-carousel{transform:scale(1)}.ht-custom-carousel.slick-slider .slick-list,.ht-custom-carousel.slick-slider .slick-track{padding:0!important}.htmega-carousel-style-6 .slick-dots li{padding:30px 35px}.htmega-table-style .dataTables_wrapper{overflow-x:auto}.edd_download_columns_0 .edd_download,.edd_download_columns_3 .edd_download{width:100%}.custom-col-5{flex:0 0 100%;max-width:100%;width:100%}a.instagram_follow_btn{margin-top:20px}a.instagram_follow_btn span{font-size:12px;padding:0 5px}.htmega-lightbox img{width:100%}.htmega-mailchimp-style-3 .htmega-input-box input{max-width:inherit;width:auto}.htmega-team-style-3 .htmega-team-click-action{margin-bottom:-58px}.htmega-testimonial-style-5 .testimonial-shape{bottom:38%}.htmega-testimonial-for .testimonial-desc p{padding:0 3%}.htmega-testimonial-style-6,.htmega-testimonial-style-8{padding:0}.htmega-testimonal-nav.slick-slider{max-width:100%}.htmega-testimonial-style-4 .testimonal .testimonal-image{float:none;padding-right:0}.htmega-testimonial-style-4 .testimonal .testimonal-image::after,.htmega-testimonial-style-4 .testimonal .testimonal-image::before{display:none}.htmega-testimonial-style-4 .testimonal .content{padding-left:0;padding-top:20px}.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content{padding-left:25px}.htc-verctimeline-wrapper .ht-ver-timeline.vertical-reverse .timeline-content{padding-right:25px}.htc-verctimeline-wrapper .ht-ver-timeline .timeline-content::before{display:none}.htc-verctimeline-wrapper .ht-ver-timeline--3 .timeline-content{padding-left:60px;width:100%}.htmega-process-area{background-image:none!important}.htmega-process-column-4 .htmega-single-process-area,.htmega-process-column-5 .htmega-single-process-area{flex:0 0 100%;max-width:100%}.htmega-process-column-3 .htmega-single-process-area{flex:0 0 100%;margin-bottom:30px;max-width:100%}.htmega-process-style-2 .htmega-number::before{display:none}.htmega-process-style-4{height:auto;width:auto}.htmega-process-style-4 .htmega-single-process-area{position:inherit}.htmega-process-style-4 .htmega-single-process-area:nth-child(2),.htmega-process-style-4 .htmega-single-process-area:nth-child(4){top:0}.elementor-widget-htmega-scrollnavigation-addons .swiper-slide{height:100vh!important}.scroll-navigation-inner .elementor-image{display:none}.elementor-widget-htmega-scrollnavigation-addons .swiper-container .swiper-wrapper .swiper-slide:first-child .elementor-image{display:block}.htmega_mobile_fit.elementor-section.elementor-section-height-full{height:100vh}.htmega_mobile_fit.elementor-section.elementor-section-items-middle .elementor-container{align-items:center}.htmega_mobile_fit.elementor-section.elementor-section-items-middle .elementor-container{align-items:center;height:100%}.ht-event{display:block}.ht-event .thumb{margin-bottom:20px}.htmega-postcarousel-layout-3 .slick-arrow{display:none!important}.htmega-countbox .ht-count{margin:0 22px 10px}.title-style-two .section-title-txt::before,.title-style-two .section-title-txt::after{display:none}figure.gallery-item{margin-top:20px!important}.htmega-switcher-nav.nav{background:#fff0 none repeat scroll 0 0}.post-carousel-wrapper .htmega-postslider-layout-4 .post-carousel-flex{display:block}.post-carousel-wrapper .htmega-postslider-layout-4 .content{margin-left:0;padding:30px 20px}.post-carousel-wrapper .htmega-postslider-layout-5 .content .post-inner ul.meta li{font-size:13px}.htmega-singleimage-gridstyle-4 .image-grid-content .hover-action{padding:0}.htmegainstagram-column-mobile-1 .htmega-instragram ul.htmega-instagram-list li{width:100%}.htmegainstagram-column-mobile-2 .htmega-instragram ul.htmega-instagram-list li{width:50%}.htmegainstagram-column-mobile-3 .htmega-instragram ul.htmega-instagram-list li{width:33.33%}.htmegainstagram-column-mobile-4 .htmega-instragram ul.htmega-instagram-list li{width:25%}.htmegainstagram-column-mobile-5 .htmega-instragram ul.htmega-instagram-list li{width:20%}.htmegainstagram-column-mobile-6 .htmega-instragram ul.htmega-instagram-list li{width:16.66%}.htmega-postslider-layout-1 .content,.htmega-postslider-layout-4 .content{position:static;max-width:100%;padding:0}.post-carousel-wrapper .htmega-postslider-layout-1 .content{position:absolute}.thumb-st-layout-4 .content{position:absolute}.thumb-st-layout-4.htmega-postslider-area ul.slick-dots{width:80px}}[class*='htmega-'] svg{height:auto}[class*='htmega-'] svg path{transition:all 0.3s ease-in-out}[class*='htmega-']>div{overflow-wrap:break-word;word-break:break-word}[class*='htmega-'] [type=button]:focus,[class*='htmega-'] [type=submit]:focus,[class*='htmega-'] button:focus{outline:none}.ht-countdown-flip{display:flex;flex-wrap:wrap;justify-content:center;width:100%;height:auto;border-radius:5px}.ht-countdown-flip .htmega-time .htmega-time-inner{position:relative;display:block;width:170px;height:180px;transform:translateZ(0);transform:translate3d(0,0,0);text-align:center;-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:479px;border:2px solid #E7E7E7;border-radius:10px}@media only screen and (min-width:992px) and (max-width:1199px){.ht-countdown-flip .htmega-time .htmega-time-inner{width:52px;height:36px}}@media only screen and (min-width:768px) and (max-width:991px){.ht-countdown-flip .htmega-time .htmega-time-inner{height:46px}}@media only screen and (max-width:767px){.ht-countdown-flip .htmega-time .htmega-time-inner{width:40px;height:28px}}@media only screen and (max-width:575px){.ht-countdown-flip .htmega-time .htmega-time-inner{width:60px;height:46px}}.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count{font-size:96px;line-height:180px;position:absolute;top:0;display:flex;overflow:hidden;justify-content:center;width:100%!important;transform:translateZ(0);color:#FFF;background-color:#272626;transform-style:flat;font-family:'Montserrat';padding:0;border:none}@media only screen and (min-width:992px) and (max-width:1199px){.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count{font-size:24px;line-height:36px}}@media only screen and (min-width:768px) and (max-width:991px){.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count{line-height:46px}}@media only screen and (max-width:767px){.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count{font-size:20px;line-height:28px}}@media only screen and (max-width:575px){.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count{font-size:36px;line-height:50px}}.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count.htmega-top{height:50%;transform-origin:50% 100%;border-radius:10px 10px 0 0}.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count.htmega-top.htmega-curr{z-index:3;transform:rotateX(0deg)}.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count.htmega-bottom{line-height:0;top:50%;height:50%;transform-origin:50% 0;border-top:1px solid #FFF;border-radius:0 0 10px 10px}.ht-countdown-flip .htmega-time .htmega-time-inner .ht-count.htmega-bottom.htmega-next{z-index:2;transform:rotateX(90deg)}.ht-countdown-flip .htmega-time.htmega-flip .htmega-time-inner .ht-count.htmega-top.htmega-curr{transition:all 250ms ease-in-out;transform:rotateX(-90deg)}.ht-countdown-flip .htmega-time.htmega-flip .htmega-time-inner .ht-count.htmega-bottom.htmega-next{transition:all 250ms ease-in-out 250ms;transform:rotateX(0deg)}.ht-countdown-flip .htmega-time .htmega-label{font-family:"Montserrat",sans-serif;font-size:12px;font-weight:600;line-height:1.25;display:block;width:100%;margin-top:8px;text-align:center}@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (max-width:767px){.ht-countdown-flip .htmega-time .htmega-label{margin-top:4px}}.ht-countdown-default{display:flex;flex-wrap:wrap;justify-content:space-between;width:100%;border-radius:5px}.ht-countdown-default .htmega-time .ht-count{font-size:36px;line-height:50px;display:flex;justify-content:center;width:60px;color:#FFF;border-radius:5px;background-color:#272626}@media only screen and (min-width:992px) and (max-width:1199px){.ht-countdown-default .htmega-time .ht-count{font-size:24px;line-height:36px;width:52px}}@media only screen and (min-width:768px) and (max-width:991px){.ht-countdown-default .htmega-time .ht-count{line-height:46px}}@media only screen and (max-width:767px){.ht-countdown-default .htmega-time .ht-count{font-size:20px;line-height:28px;width:40px}}@media only screen and (max-width:575px){.ht-countdown-default .htmega-time .ht-count{font-size:36px;line-height:46px;width:60px}}.ht-countdown-default .htmega-time .htmega-label{font-family:"Montserrat",sans-serif;font-size:12px;font-weight:600;line-height:1.25;display:block;width:100%;margin-top:8px;text-align:center}@media only screen and (min-width:992px) and (max-width:1199px),only screen and (min-width:768px) and (max-width:991px),only screen and (max-width:767px){.ht-countdown-default .htmega-time .htmega-label{margin-top:4px}}.htmega-flash-flip-countdown-timer .ht-countdown .htmega-days .ht-count{background:#F8575A}.htmega-flash-flip-countdown-timer .ht-countdown .htmega-hours .ht-count{background:#2ACC77}.htmega-flash-flip-countdown-timer .ht-countdown .htmega-mins .ht-count{background:#F6BD56}.htmega-flash-flip-countdown-timer .ht-countdown .htmega-secs .ht-count{background:#508BFF}.ht-countdown-flip .htmega-time .htmega-time-inner:before{content:'';position:absolute;left:-11px;height:20px;width:20px;background:#fff;top:50%;z-index:99;border-radius:100% 100% 100% 100%;transform:translateY(-50%)}.ht-countdown-flip .htmega-time .htmega-time-inner:after{content:'';position:absolute;right:-11px;height:20px;width:20px;background:#fff;top:50%;z-index:99;border-radius:100% 100% 100% 100%;transform:translateY(-50%)}.htmega-table-style .dataTables_wrapper .dataTables_length{border:1px solid #dfdfe5;padding:0 30px}.htmega-table-style .dataTables_wrapper .dataTables_filter input{border:1px solid #dfdfe5;background:#fff0}.htmega-table-style .dataTables_wrapper .dataTables_filter input[type="search"]:focus{color:#333;outline:none}.htmega-table-style .dataTables_wrapper .dataTables_paginate{border:1px solid #dfdfe5}.htmega-table-style .dataTables_wrapper .dataTables_paginate .paginate_button{padding:8px 25px}.htmega-table-style .dataTables_wrapper .dataTables_paginate .paginate_button.current,.htmega-table-style .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{background:#824F9E;color:#fff!important;border:1px solid #824f9e;padding:8px 20px}.htmega-table-style .dataTables_wrapper .dataTables_paginate{padding-top:0}.htmega-table-style select{width:auto;border:0;margin-right:5px;margin-left:5px}.htmega-table-style select:focus-visible{outline:1px solid #ddd}.htmega-table-style,.htmega-table-style.htb-table-responsive{word-break:initial}.htmega-table-style .dataTables_wrapper label{display:inline-flex;word-break:normal;align-items:center}.htmega-error-notice{background:#efefef;padding:10px 17px;border-left:4px solid red;font-size:19px;color:#8b4343}.htmega-pro-load-more-wrapper{display:block;margin-top:30px;text-align:center}.htmega-loadmore-button{display:inline-flex;background:#4FACFE;padding:10px 25px;color:#fff;cursor:pointer;transition:all 0.3s ease-in-out}.htmega-loader-img{margin-left:5px;display:inline-flex;justify-content:center;align-items:center}.htmega-loadmore-button:hover .htmega-loader-img img,.htmega-infinity-loading.htmega-loadmore-button .htmega-loader-img img{-webkit-animation:mymove 0.6s infinite;animation:mymove 0.6s infinite}@-webkit-keyframes mymove{from{transform:rotate(0)}to{transform:rotate(180deg)}}@keyframes mymove{from{transform:rotate(0)}to{transform:rotate(180deg)}}.htmega-load-item-effect{animation:append-animate .5s linear}@keyframes append-animate{from{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}@media (max-width:767px){.htmega-testimonial-style-12 .testimonal{align-items:start;flex-direction:column;gap:30px}.htmega-testimonial-style-12 .testimonal .content{padding-left:0}.htmega-testimonial-style-3 .testimonal img{float:none}.htmega-testimonial-style-3 .testimonal .content{padding-left:0;padding-top:15px}}@font-face {font-family: 'Linearicons';src: url(//enduropoint.si/wp-content/themes/martfury/fonts/linearicons.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/Linearicons.woff) format('woff');font-weight: normal;font-style: normal;font-display: swap;}[class^="icon-"], [class*=" icon-"] {font-family: 'Linearicons' !important;speak: none;font-style: normal;font-weight: normal;font-variant: normal;text-transform: none;line-height: 1;letter-spacing: 0;-webkit-font-feature-settings: "liga";-moz-font-feature-settings: "liga=1";-moz-font-feature-settings: "liga";-ms-font-feature-settings: "liga" 1;font-feature-settings: "liga";-webkit-font-variant-ligatures: discretionary-ligatures;font-variant-ligatures: discretionary-ligatures;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}.icon-home:before {content: "\e600";}.icon-home2:before {content: "\e601";}.icon-home3:before {content: "\e602";}.icon-home4:before {content: "\e603";}.icon-home5:before {content: "\e604";}.icon-home6:before {content: "\e605";}.icon-bathtub:before {content: "\e606";}.icon-toothbrush:before {content: "\e607";}.icon-bed:before {content: "\e608";}.icon-couch:before {content: "\e609";}.icon-chair:before {content: "\e60a";}.icon-city:before {content: "\e60b";}.icon-apartment:before {content: "\e60c";}.icon-pencil:before {content: "\e60d";}.icon-pencil2:before {content: "\e60e";}.icon-pen:before {content: "\e60f";}.icon-pencil3:before {content: "\e610";}.icon-eraser:before {content: "\e611";}.icon-pencil4:before {content: "\e612";}.icon-pencil5:before {content: "\e613";}.icon-feather:before {content: "\e614";}.icon-feather2:before {content: "\e615";}.icon-feather3:before {content: "\e616";}.icon-pen2:before {content: "\e617";}.icon-pen-add:before {content: "\e618";}.icon-pen-remove:before {content: "\e619";}.icon-vector:before {content: "\e61a";}.icon-pen3:before {content: "\e61b";}.icon-blog:before {content: "\e61c";}.icon-brush:before {content: "\e61d";}.icon-brush2:before {content: "\e61e";}.icon-spray:before {content: "\e61f";}.icon-paint-roller:before {content: "\e620";}.icon-stamp:before {content: "\e621";}.icon-tape:before {content: "\e622";}.icon-desk-tape:before {content: "\e623";}.icon-texture:before {content: "\e624";}.icon-eye-dropper:before {content: "\e625";}.icon-palette:before {content: "\e626";}.icon-color-sampler:before {content: "\e627";}.icon-bucket:before {content: "\e628";}.icon-gradient:before {content: "\e629";}.icon-gradient2:before {content: "\e62a";}.icon-magic-wand:before {content: "\e62b";}.icon-magnet:before {content: "\e62c";}.icon-pencil-ruler:before {content: "\e62d";}.icon-pencil-ruler2:before {content: "\e62e";}.icon-compass:before {content: "\e62f";}.icon-aim:before {content: "\e630";}.icon-gun:before {content: "\e631";}.icon-bottle:before {content: "\e632";}.icon-drop:before {content: "\e633";}.icon-drop-crossed:before {content: "\e634";}.icon-drop2:before {content: "\e635";}.icon-snow:before {content: "\e636";}.icon-snow2:before {content: "\e637";}.icon-fire:before {content: "\e638";}.icon-lighter:before {content: "\e639";}.icon-knife:before {content: "\e63a";}.icon-dagger:before {content: "\e63b";}.icon-tissue:before {content: "\e63c";}.icon-toilet-paper:before {content: "\e63d";}.icon-poop:before {content: "\e63e";}.icon-umbrella:before {content: "\e63f";}.icon-umbrella2:before {content: "\e640";}.icon-rain:before {content: "\e641";}.icon-tornado:before {content: "\e642";}.icon-wind:before {content: "\e643";}.icon-fan:before {content: "\e644";}.icon-contrast:before {content: "\e645";}.icon-sun-small:before {content: "\e646";}.icon-sun:before {content: "\e647";}.icon-sun2:before {content: "\e648";}.icon-moon:before {content: "\e649";}.icon-cloud:before {content: "\e64a";}.icon-cloud-upload:before {content: "\e64b";}.icon-cloud-download:before {content: "\e64c";}.icon-cloud-rain:before {content: "\e64d";}.icon-cloud-hailstones:before {content: "\e64e";}.icon-cloud-snow:before {content: "\e64f";}.icon-cloud-windy:before {content: "\e650";}.icon-sun-wind:before {content: "\e651";}.icon-cloud-fog:before {content: "\e652";}.icon-cloud-sun:before {content: "\e653";}.icon-cloud-lightning:before {content: "\e654";}.icon-cloud-sync:before {content: "\e655";}.icon-cloud-lock:before {content: "\e656";}.icon-cloud-gear:before {content: "\e657";}.icon-cloud-alert:before {content: "\e658";}.icon-cloud-check:before {content: "\e659";}.icon-cloud-cross:before {content: "\e65a";}.icon-cloud-crossed:before {content: "\e65b";}.icon-cloud-database:before {content: "\e65c";}.icon-database:before {content: "\e65d";}.icon-database-add:before {content: "\e65e";}.icon-database-remove:before {content: "\e65f";}.icon-database-lock:before {content: "\e660";}.icon-database-refresh:before {content: "\e661";}.icon-database-check:before {content: "\e662";}.icon-database-history:before {content: "\e663";}.icon-database-upload:before {content: "\e664";}.icon-database-download:before {content: "\e665";}.icon-server:before {content: "\e666";}.icon-shield:before {content: "\e667";}.icon-shield-check:before {content: "\e668";}.icon-shield-alert:before {content: "\e669";}.icon-shield-cross:before {content: "\e66a";}.icon-lock:before {content: "\e66b";}.icon-rotation-lock:before {content: "\e66c";}.icon-unlock:before {content: "\e66d";}.icon-key:before {content: "\e66e";}.icon-key-hole:before {content: "\e66f";}.icon-toggle-off:before {content: "\e670";}.icon-toggle-on:before {content: "\e671";}.icon-cog:before {content: "\e672";}.icon-cog2:before {content: "\e673";}.icon-wrench:before {content: "\e674";}.icon-screwdriver:before {content: "\e675";}.icon-hammer-wrench:before {content: "\e676";}.icon-hammer:before {content: "\e677";}.icon-saw:before {content: "\e678";}.icon-axe:before {content: "\e679";}.icon-axe2:before {content: "\e67a";}.icon-shovel:before {content: "\e67b";}.icon-pickaxe:before {content: "\e67c";}.icon-factory:before {content: "\e67d";}.icon-factory2:before {content: "\e67e";}.icon-recycle:before {content: "\e67f";}.icon-trash:before {content: "\e680";}.icon-trash2:before {content: "\e681";}.icon-trash3:before {content: "\e682";}.icon-broom:before {content: "\e683";}.icon-game:before {content: "\e684";}.icon-gamepad:before {content: "\e685";}.icon-joystick:before {content: "\e686";}.icon-dice:before {content: "\e687";}.icon-spades:before {content: "\e688";}.icon-diamonds:before {content: "\e689";}.icon-clubs:before {content: "\e68a";}.icon-hearts:before {content: "\e68b";}.icon-heart:before {content: "\e68c";}.icon-star:before {content: "\e68d";}.icon-star-half:before {content: "\e68e";}.icon-star-empty:before {content: "\e68f";}.icon-flag:before {content: "\e690";}.icon-flag2:before {content: "\e691";}.icon-flag3:before {content: "\e692";}.icon-mailbox-full:before {content: "\e693";}.icon-mailbox-empty:before {content: "\e694";}.icon-at-sign:before {content: "\e695";}.icon-envelope:before {content: "\e696";}.icon-envelope-open:before {content: "\e697";}.icon-paperclip:before {content: "\e698";}.icon-paper-plane:before {content: "\e699";}.icon-reply:before {content: "\e69a";}.icon-reply-all:before {content: "\e69b";}.icon-inbox:before {content: "\e69c";}.icon-inbox2:before {content: "\e69d";}.icon-outbox:before {content: "\e69e";}.icon-box:before {content: "\e69f";}.icon-archive:before {content: "\e6a0";}.icon-archive2:before {content: "\e6a1";}.icon-drawers:before {content: "\e6a2";}.icon-drawers2:before {content: "\e6a3";}.icon-drawers3:before {content: "\e6a4";}.icon-eye:before {content: "\e6a5";}.icon-eye-crossed:before {content: "\e6a6";}.icon-eye-plus:before {content: "\e6a7";}.icon-eye-minus:before {content: "\e6a8";}.icon-binoculars:before {content: "\e6a9";}.icon-binoculars2:before {content: "\e6aa";}.icon-hdd:before {content: "\e6ab";}.icon-hdd-down:before {content: "\e6ac";}.icon-hdd-up:before {content: "\e6ad";}.icon-floppy-disk:before {content: "\e6ae";}.icon-disc:before {content: "\e6af";}.icon-tape2:before {content: "\e6b0";}.icon-printer:before {content: "\e6b1";}.icon-shredder:before {content: "\e6b2";}.icon-file-empty:before {content: "\e6b3";}.icon-file-add:before {content: "\e6b4";}.icon-file-check:before {content: "\e6b5";}.icon-file-lock:before {content: "\e6b6";}.icon-files:before {content: "\e6b7";}.icon-copy:before {content: "\e6b8";}.icon-compare:before {content: "\e6b9";}.icon-folder:before {content: "\e6ba";}.icon-folder-search:before {content: "\e6bb";}.icon-folder-plus:before {content: "\e6bc";}.icon-folder-minus:before {content: "\e6bd";}.icon-folder-download:before {content: "\e6be";}.icon-folder-upload:before {content: "\e6bf";}.icon-folder-star:before {content: "\e6c0";}.icon-folder-heart:before {content: "\e6c1";}.icon-folder-user:before {content: "\e6c2";}.icon-folder-shared:before {content: "\e6c3";}.icon-folder-music:before {content: "\e6c4";}.icon-folder-picture:before {content: "\e6c5";}.icon-folder-film:before {content: "\e6c6";}.icon-scissors:before {content: "\e6c7";}.icon-paste:before {content: "\e6c8";}.icon-clipboard-empty:before {content: "\e6c9";}.icon-clipboard-pencil:before {content: "\e6ca";}.icon-clipboard-text:before {content: "\e6cb";}.icon-clipboard-check:before {content: "\e6cc";}.icon-clipboard-down:before {content: "\e6cd";}.icon-clipboard-left:before {content: "\e6ce";}.icon-clipboard-alert:before {content: "\e6cf";}.icon-clipboard-user:before {content: "\e6d0";}.icon-register:before {content: "\e6d1";}.icon-enter:before {content: "\e6d2";}.icon-exit:before {content: "\e6d3";}.icon-papers:before {content: "\e6d4";}.icon-news:before {content: "\e6d5";}.icon-reading:before {content: "\e6d6";}.icon-typewriter:before {content: "\e6d7";}.icon-document:before {content: "\e6d8";}.icon-document2:before {content: "\e6d9";}.icon-graduation-hat:before {content: "\e6da";}.icon-license:before {content: "\e6db";}.icon-license2:before {content: "\e6dc";}.icon-medal-empty:before {content: "\e6dd";}.icon-medal-first:before {content: "\e6de";}.icon-medal-second:before {content: "\e6df";}.icon-medal-third:before {content: "\e6e0";}.icon-podium:before {content: "\e6e1";}.icon-trophy:before {content: "\e6e2";}.icon-trophy2:before {content: "\e6e3";}.icon-music-note:before {content: "\e6e4";}.icon-music-note2:before {content: "\e6e5";}.icon-music-note3:before {content: "\e6e6";}.icon-playlist:before {content: "\e6e7";}.icon-playlist-add:before {content: "\e6e8";}.icon-guitar:before {content: "\e6e9";}.icon-trumpet:before {content: "\e6ea";}.icon-album:before {content: "\e6eb";}.icon-shuffle:before {content: "\e6ec";}.icon-repeat-one:before {content: "\e6ed";}.icon-repeat:before {content: "\e6ee";}.icon-headphones:before {content: "\e6ef";}.icon-headset:before {content: "\e6f0";}.icon-loudspeaker:before {content: "\e6f1";}.icon-equalizer:before {content: "\e6f2";}.icon-theater:before {content: "\e6f3";}.icon-3d-glasses:before {content: "\e6f4";}.icon-ticket:before {content: "\e6f5";}.icon-presentation:before {content: "\e6f6";}.icon-play:before {content: "\e6f7";}.icon-film-play:before {content: "\e6f8";}.icon-clapboard-play:before {content: "\e6f9";}.icon-media:before {content: "\e6fa";}.icon-film:before {content: "\e6fb";}.icon-film2:before {content: "\e6fc";}.icon-surveillance:before {content: "\e6fd";}.icon-surveillance2:before {content: "\e6fe";}.icon-camera:before {content: "\e6ff";}.icon-camera-crossed:before {content: "\e700";}.icon-camera-play:before {content: "\e701";}.icon-time-lapse:before {content: "\e702";}.icon-record:before {content: "\e703";}.icon-camera2:before {content: "\e704";}.icon-camera-flip:before {content: "\e705";}.icon-panorama:before {content: "\e706";}.icon-time-lapse2:before {content: "\e707";}.icon-shutter:before {content: "\e708";}.icon-shutter2:before {content: "\e709";}.icon-face-detection:before {content: "\e70a";}.icon-flare:before {content: "\e70b";}.icon-convex:before {content: "\e70c";}.icon-concave:before {content: "\e70d";}.icon-picture:before {content: "\e70e";}.icon-picture2:before {content: "\e70f";}.icon-picture3:before {content: "\e710";}.icon-pictures:before {content: "\e711";}.icon-book:before {content: "\e712";}.icon-audio-book:before {content: "\e713";}.icon-book2:before {content: "\e714";}.icon-bookmark:before {content: "\e715";}.icon-bookmark2:before {content: "\e716";}.icon-label:before {content: "\e717";}.icon-library:before {content: "\e718";}.icon-library2:before {content: "\e719";}.icon-contacts:before {content: "\e71a";}.icon-profile:before {content: "\e71b";}.icon-portrait:before {content: "\e71c";}.icon-portrait2:before {content: "\e71d";}.icon-user:before {content: "\e71e";}.icon-user-plus:before {content: "\e71f";}.icon-user-minus:before {content: "\e720";}.icon-user-lock:before {content: "\e721";}.icon-users:before {content: "\e722";}.icon-users2:before {content: "\e723";}.icon-users-plus:before {content: "\e724";}.icon-users-minus:before {content: "\e725";}.icon-group-work:before {content: "\e726";}.icon-woman:before {content: "\e727";}.icon-man:before {content: "\e728";}.icon-baby:before {content: "\e729";}.icon-baby2:before {content: "\e72a";}.icon-baby3:before {content: "\e72b";}.icon-baby-bottle:before {content: "\e72c";}.icon-walk:before {content: "\e72d";}.icon-hand-waving:before {content: "\e72e";}.icon-jump:before {content: "\e72f";}.icon-run:before {content: "\e730";}.icon-woman2:before {content: "\e731";}.icon-man2:before {content: "\e732";}.icon-man-woman:before {content: "\e733";}.icon-height:before {content: "\e734";}.icon-weight:before {content: "\e735";}.icon-scale:before {content: "\e736";}.icon-button:before {content: "\e737";}.icon-bow-tie:before {content: "\e738";}.icon-tie:before {content: "\e739";}.icon-socks:before {content: "\e73a";}.icon-shoe:before {content: "\e73b";}.icon-shoes:before {content: "\e73c";}.icon-hat:before {content: "\e73d";}.icon-pants:before {content: "\e73e";}.icon-shorts:before {content: "\e73f";}.icon-flip-flops:before {content: "\e740";}.icon-shirt:before {content: "\e741";}.icon-hanger:before {content: "\e742";}.icon-laundry:before {content: "\e743";}.icon-store:before {content: "\e744";}.icon-haircut:before {content: "\e745";}.icon-store-24:before {content: "\e746";}.icon-barcode:before {content: "\e747";}.icon-barcode2:before {content: "\e748";}.icon-barcode3:before {content: "\e749";}.icon-cashier:before {content: "\e74a";}.icon-bag:before {content: "\e74b";}.icon-bag2:before {content: "\e74c";}.icon-cart:before {content: "\e74d";}.icon-cart-empty:before {content: "\e74e";}.icon-cart-full:before {content: "\e74f";}.icon-cart-plus:before {content: "\e750";}.icon-cart-plus2:before {content: "\e751";}.icon-cart-add:before {content: "\e752";}.icon-cart-remove:before {content: "\e753";}.icon-cart-exchange:before {content: "\e754";}.icon-tag:before {content: "\e755";}.icon-tags:before {content: "\e756";}.icon-receipt:before {content: "\e757";}.icon-wallet:before {content: "\e758";}.icon-credit-card:before {content: "\e759";}.icon-cash-dollar:before {content: "\e75a";}.icon-cash-euro:before {content: "\e75b";}.icon-cash-pound:before {content: "\e75c";}.icon-cash-yen:before {content: "\e75d";}.icon-bag-dollar:before {content: "\e75e";}.icon-bag-euro:before {content: "\e75f";}.icon-bag-pound:before {content: "\e760";}.icon-bag-yen:before {content: "\e761";}.icon-coin-dollar:before {content: "\e762";}.icon-coin-euro:before {content: "\e763";}.icon-coin-pound:before {content: "\e764";}.icon-coin-yen:before {content: "\e765";}.icon-calculator:before {content: "\e766";}.icon-calculator2:before {content: "\e767";}.icon-abacus:before {content: "\e768";}.icon-vault:before {content: "\e769";}.icon-telephone:before {content: "\e76a";}.icon-phone-lock:before {content: "\e76b";}.icon-phone-wave:before {content: "\e76c";}.icon-phone-pause:before {content: "\e76d";}.icon-phone-outgoing:before {content: "\e76e";}.icon-phone-incoming:before {content: "\e76f";}.icon-phone-in-out:before {content: "\e770";}.icon-phone-error:before {content: "\e771";}.icon-phone-sip:before {content: "\e772";}.icon-phone-plus:before {content: "\e773";}.icon-phone-minus:before {content: "\e774";}.icon-voicemail:before {content: "\e775";}.icon-dial:before {content: "\e776";}.icon-telephone2:before {content: "\e777";}.icon-pushpin:before {content: "\e778";}.icon-pushpin2:before {content: "\e779";}.icon-map-marker:before {content: "\e77a";}.icon-map-marker-user:before {content: "\e77b";}.icon-map-marker-down:before {content: "\e77c";}.icon-map-marker-check:before {content: "\e77d";}.icon-map-marker-crossed:before {content: "\e77e";}.icon-radar:before {content: "\e77f";}.icon-compass2:before {content: "\e780";}.icon-map:before {content: "\e781";}.icon-map2:before {content: "\e782";}.icon-location:before {content: "\e783";}.icon-road-sign:before {content: "\e784";}.icon-calendar-empty:before {content: "\e785";}.icon-calendar-check:before {content: "\e786";}.icon-calendar-cross:before {content: "\e787";}.icon-calendar-31:before {content: "\e788";}.icon-calendar-full:before {content: "\e789";}.icon-calendar-insert:before {content: "\e78a";}.icon-calendar-text:before {content: "\e78b";}.icon-calendar-user:before {content: "\e78c";}.icon-mouse:before {content: "\e78d";}.icon-mouse-left:before {content: "\e78e";}.icon-mouse-right:before {content: "\e78f";}.icon-mouse-both:before {content: "\e790";}.icon-keyboard:before {content: "\e791";}.icon-keyboard-up:before {content: "\e792";}.icon-keyboard-down:before {content: "\e793";}.icon-delete:before {content: "\e794";}.icon-spell-check:before {content: "\e795";}.icon-escape:before {content: "\e796";}.icon-enter2:before {content: "\e797";}.icon-screen:before {content: "\e798";}.icon-aspect-ratio:before {content: "\e799";}.icon-signal:before {content: "\e79a";}.icon-signal-lock:before {content: "\e79b";}.icon-signal-80:before {content: "\e79c";}.icon-signal-60:before {content: "\e79d";}.icon-signal-40:before {content: "\e79e";}.icon-signal-20:before {content: "\e79f";}.icon-signal-0:before {content: "\e7a0";}.icon-signal-blocked:before {content: "\e7a1";}.icon-sim:before {content: "\e7a2";}.icon-flash-memory:before {content: "\e7a3";}.icon-usb-drive:before {content: "\e7a4";}.icon-phone:before {content: "\e7a5";}.icon-smartphone:before {content: "\e7a6";}.icon-smartphone-notification:before {content: "\e7a7";}.icon-smartphone-vibration:before {content: "\e7a8";}.icon-smartphone-embed:before {content: "\e7a9";}.icon-smartphone-waves:before {content: "\e7aa";}.icon-tablet:before {content: "\e7ab";}.icon-tablet2:before {content: "\e7ac";}.icon-laptop:before {content: "\e7ad";}.icon-laptop-phone:before {content: "\e7ae";}.icon-desktop:before {content: "\e7af";}.icon-launch:before {content: "\e7b0";}.icon-new-tab:before {content: "\e7b1";}.icon-window:before {content: "\e7b2";}.icon-cable:before {content: "\e7b3";}.icon-cable2:before {content: "\e7b4";}.icon-tv:before {content: "\e7b5";}.icon-radio:before {content: "\e7b6";}.icon-remote-control:before {content: "\e7b7";}.icon-power-switch:before {content: "\e7b8";}.icon-power:before {content: "\e7b9";}.icon-power-crossed:before {content: "\e7ba";}.icon-flash-auto:before {content: "\e7bb";}.icon-lamp:before {content: "\e7bc";}.icon-flashlight:before {content: "\e7bd";}.icon-lampshade:before {content: "\e7be";}.icon-cord:before {content: "\e7bf";}.icon-outlet:before {content: "\e7c0";}.icon-battery-power:before {content: "\e7c1";}.icon-battery-empty:before {content: "\e7c2";}.icon-battery-alert:before {content: "\e7c3";}.icon-battery-error:before {content: "\e7c4";}.icon-battery-low1:before {content: "\e7c5";}.icon-battery-low2:before {content: "\e7c6";}.icon-battery-low3:before {content: "\e7c7";}.icon-battery-mid1:before {content: "\e7c8";}.icon-battery-mid2:before {content: "\e7c9";}.icon-battery-mid3:before {content: "\e7ca";}.icon-battery-full:before {content: "\e7cb";}.icon-battery-charging:before {content: "\e7cc";}.icon-battery-charging2:before {content: "\e7cd";}.icon-battery-charging3:before {content: "\e7ce";}.icon-battery-charging4:before {content: "\e7cf";}.icon-battery-charging5:before {content: "\e7d0";}.icon-battery-charging6:before {content: "\e7d1";}.icon-battery-charging7:before {content: "\e7d2";}.icon-chip:before {content: "\e7d3";}.icon-chip-x64:before {content: "\e7d4";}.icon-chip-x86:before {content: "\e7d5";}.icon-bubble:before {content: "\e7d6";}.icon-bubbles:before {content: "\e7d7";}.icon-bubble-dots:before {content: "\e7d8";}.icon-bubble-alert:before {content: "\e7d9";}.icon-bubble-question:before {content: "\e7da";}.icon-bubble-text:before {content: "\e7db";}.icon-bubble-pencil:before {content: "\e7dc";}.icon-bubble-picture:before {content: "\e7dd";}.icon-bubble-video:before {content: "\e7de";}.icon-bubble-user:before {content: "\e7df";}.icon-bubble-quote:before {content: "\e7e0";}.icon-bubble-heart:before {content: "\e7e1";}.icon-bubble-emoticon:before {content: "\e7e2";}.icon-bubble-attachment:before {content: "\e7e3";}.icon-phone-bubble:before {content: "\e7e4";}.icon-quote-open:before {content: "\e7e5";}.icon-quote-close:before {content: "\e7e6";}.icon-dna:before {content: "\e7e7";}.icon-heart-pulse:before {content: "\e7e8";}.icon-pulse:before {content: "\e7e9";}.icon-syringe:before {content: "\e7ea";}.icon-pills:before {content: "\e7eb";}.icon-first-aid:before {content: "\e7ec";}.icon-lifebuoy:before {content: "\e7ed";}.icon-bandage:before {content: "\e7ee";}.icon-bandages:before {content: "\e7ef";}.icon-thermometer:before {content: "\e7f0";}.icon-microscope:before {content: "\e7f1";}.icon-brain:before {content: "\e7f2";}.icon-beaker:before {content: "\e7f3";}.icon-skull:before {content: "\e7f4";}.icon-bone:before {content: "\e7f5";}.icon-construction:before {content: "\e7f6";}.icon-construction-cone:before {content: "\e7f7";}.icon-pie-chart:before {content: "\e7f8";}.icon-pie-chart2:before {content: "\e7f9";}.icon-graph:before {content: "\e7fa";}.icon-chart-growth:before {content: "\e7fb";}.icon-chart-bars:before {content: "\e7fc";}.icon-chart-settings:before {content: "\e7fd";}.icon-cake:before {content: "\e7fe";}.icon-gift:before {content: "\e7ff";}.icon-balloon:before {content: "\e800";}.icon-rank:before {content: "\e801";}.icon-rank2:before {content: "\e802";}.icon-rank3:before {content: "\e803";}.icon-crown:before {content: "\e804";}.icon-lotus:before {content: "\e805";}.icon-diamond:before {content: "\e806";}.icon-diamond2:before {content: "\e807";}.icon-diamond3:before {content: "\e808";}.icon-diamond4:before {content: "\e809";}.icon-linearicons:before {content: "\e80a";}.icon-teacup:before {content: "\e80b";}.icon-teapot:before {content: "\e80c";}.icon-glass:before {content: "\e80d";}.icon-bottle2:before {content: "\e80e";}.icon-glass-cocktail:before {content: "\e80f";}.icon-glass2:before {content: "\e810";}.icon-dinner:before {content: "\e811";}.icon-dinner2:before {content: "\e812";}.icon-chef:before {content: "\e813";}.icon-scale2:before {content: "\e814";}.icon-egg:before {content: "\e815";}.icon-egg2:before {content: "\e816";}.icon-eggs:before {content: "\e817";}.icon-platter:before {content: "\e818";}.icon-steak:before {content: "\e819";}.icon-hamburger:before {content: "\e81a";}.icon-hotdog:before {content: "\e81b";}.icon-pizza:before {content: "\e81c";}.icon-sausage:before {content: "\e81d";}.icon-chicken:before {content: "\e81e";}.icon-fish:before {content: "\e81f";}.icon-carrot:before {content: "\e820";}.icon-cheese:before {content: "\e821";}.icon-bread:before {content: "\e822";}.icon-ice-cream:before {content: "\e823";}.icon-ice-cream2:before {content: "\e824";}.icon-candy:before {content: "\e825";}.icon-lollipop:before {content: "\e826";}.icon-coffee-bean:before {content: "\e827";}.icon-coffee-cup:before {content: "\e828";}.icon-cherry:before {content: "\e829";}.icon-grapes:before {content: "\e82a";}.icon-citrus:before {content: "\e82b";}.icon-apple:before {content: "\e82c";}.icon-leaf:before {content: "\e82d";}.icon-landscape:before {content: "\e82e";}.icon-pine-tree:before {content: "\e82f";}.icon-tree:before {content: "\e830";}.icon-cactus:before {content: "\e831";}.icon-paw:before {content: "\e832";}.icon-footprint:before {content: "\e833";}.icon-speed-slow:before {content: "\e834";}.icon-speed-medium:before {content: "\e835";}.icon-speed-fast:before {content: "\e836";}.icon-rocket:before {content: "\e837";}.icon-hammer2:before {content: "\e838";}.icon-balance:before {content: "\e839";}.icon-briefcase:before {content: "\e83a";}.icon-luggage-weight:before {content: "\e83b";}.icon-dolly:before {content: "\e83c";}.icon-plane:before {content: "\e83d";}.icon-plane-crossed:before {content: "\e83e";}.icon-helicopter:before {content: "\e83f";}.icon-traffic-lights:before {content: "\e840";}.icon-siren:before {content: "\e841";}.icon-road:before {content: "\e842";}.icon-engine:before {content: "\e843";}.icon-oil-pressure:before {content: "\e844";}.icon-coolant-temperature:before {content: "\e845";}.icon-car-battery:before {content: "\e846";}.icon-gas:before {content: "\e847";}.icon-gallon:before {content: "\e848";}.icon-transmission:before {content: "\e849";}.icon-car:before {content: "\e84a";}.icon-car-wash:before {content: "\e84b";}.icon-car-wash2:before {content: "\e84c";}.icon-bus:before {content: "\e84d";}.icon-bus2:before {content: "\e84e";}.icon-car2:before {content: "\e84f";}.icon-parking:before {content: "\e850";}.icon-car-lock:before {content: "\e851";}.icon-taxi:before {content: "\e852";}.icon-car-siren:before {content: "\e853";}.icon-car-wash3:before {content: "\e854";}.icon-car-wash4:before {content: "\e855";}.icon-ambulance:before {content: "\e856";}.icon-truck:before {content: "\e857";}.icon-trailer:before {content: "\e858";}.icon-scale-truck:before {content: "\e859";}.icon-train:before {content: "\e85a";}.icon-ship:before {content: "\e85b";}.icon-ship2:before {content: "\e85c";}.icon-anchor:before {content: "\e85d";}.icon-boat:before {content: "\e85e";}.icon-bicycle:before {content: "\e85f";}.icon-bicycle2:before {content: "\e860";}.icon-dumbbell:before {content: "\e861";}.icon-bench-press:before {content: "\e862";}.icon-swim:before {content: "\e863";}.icon-football:before {content: "\e864";}.icon-baseball-bat:before {content: "\e865";}.icon-baseball:before {content: "\e866";}.icon-tennis:before {content: "\e867";}.icon-tennis2:before {content: "\e868";}.icon-ping-pong:before {content: "\e869";}.icon-hockey:before {content: "\e86a";}.icon-8ball:before {content: "\e86b";}.icon-bowling:before {content: "\e86c";}.icon-bowling-pins:before {content: "\e86d";}.icon-golf:before {content: "\e86e";}.icon-golf2:before {content: "\e86f";}.icon-archery:before {content: "\e870";}.icon-slingshot:before {content: "\e871";}.icon-soccer:before {content: "\e872";}.icon-basketball:before {content: "\e873";}.icon-cube:before {content: "\e874";}.icon-3d-rotate:before {content: "\e875";}.icon-puzzle:before {content: "\e876";}.icon-glasses:before {content: "\e877";}.icon-glasses2:before {content: "\e878";}.icon-accessibility:before {content: "\e879";}.icon-wheelchair:before {content: "\e87a";}.icon-wall:before {content: "\e87b";}.icon-fence:before {content: "\e87c";}.icon-wall2:before {content: "\e87d";}.icon-icons:before {content: "\e87e";}.icon-resize-handle:before {content: "\e87f";}.icon-icons2:before {content: "\e880";}.icon-select:before {content: "\e881";}.icon-select2:before {content: "\e882";}.icon-site-map:before {content: "\e883";}.icon-earth:before {content: "\e884";}.icon-earth-lock:before {content: "\e885";}.icon-network:before {content: "\e886";}.icon-network-lock:before {content: "\e887";}.icon-planet:before {content: "\e888";}.icon-happy:before {content: "\e889";}.icon-smile:before {content: "\e88a";}.icon-grin:before {content: "\e88b";}.icon-tongue:before {content: "\e88c";}.icon-sad:before {content: "\e88d";}.icon-wink:before {content: "\e88e";}.icon-dream:before {content: "\e88f";}.icon-shocked:before {content: "\e890";}.icon-shocked2:before {content: "\e891";}.icon-tongue2:before {content: "\e892";}.icon-neutral:before {content: "\e893";}.icon-happy-grin:before {content: "\e894";}.icon-cool:before {content: "\e895";}.icon-mad:before {content: "\e896";}.icon-grin-evil:before {content: "\e897";}.icon-evil:before {content: "\e898";}.icon-wow:before {content: "\e899";}.icon-annoyed:before {content: "\e89a";}.icon-wondering:before {content: "\e89b";}.icon-confused:before {content: "\e89c";}.icon-zipped:before {content: "\e89d";}.icon-grumpy:before {content: "\e89e";}.icon-mustache:before {content: "\e89f";}.icon-tombstone-hipster:before {content: "\e8a0";}.icon-tombstone:before {content: "\e8a1";}.icon-ghost:before {content: "\e8a2";}.icon-ghost-hipster:before {content: "\e8a3";}.icon-halloween:before {content: "\e8a4";}.icon-christmas:before {content: "\e8a5";}.icon-easter-egg:before {content: "\e8a6";}.icon-mustache2:before {content: "\e8a7";}.icon-mustache-glasses:before {content: "\e8a8";}.icon-pipe:before {content: "\e8a9";}.icon-alarm:before {content: "\e8aa";}.icon-alarm-add:before {content: "\e8ab";}.icon-alarm-snooze:before {content: "\e8ac";}.icon-alarm-ringing:before {content: "\e8ad";}.icon-bullhorn:before {content: "\e8ae";}.icon-hearing:before {content: "\e8af";}.icon-volume-high:before {content: "\e8b0";}.icon-volume-medium:before {content: "\e8b1";}.icon-volume-low:before {content: "\e8b2";}.icon-volume:before {content: "\e8b3";}.icon-mute:before {content: "\e8b4";}.icon-lan:before {content: "\e8b5";}.icon-lan2:before {content: "\e8b6";}.icon-wifi:before {content: "\e8b7";}.icon-wifi-lock:before {content: "\e8b8";}.icon-wifi-blocked:before {content: "\e8b9";}.icon-wifi-mid:before {content: "\e8ba";}.icon-wifi-low:before {content: "\e8bb";}.icon-wifi-low2:before {content: "\e8bc";}.icon-wifi-alert:before {content: "\e8bd";}.icon-wifi-alert-mid:before {content: "\e8be";}.icon-wifi-alert-low:before {content: "\e8bf";}.icon-wifi-alert-low2:before {content: "\e8c0";}.icon-stream:before {content: "\e8c1";}.icon-stream-check:before {content: "\e8c2";}.icon-stream-error:before {content: "\e8c3";}.icon-stream-alert:before {content: "\e8c4";}.icon-communication:before {content: "\e8c5";}.icon-communication-crossed:before {content: "\e8c6";}.icon-broadcast:before {content: "\e8c7";}.icon-antenna:before {content: "\e8c8";}.icon-satellite:before {content: "\e8c9";}.icon-satellite2:before {content: "\e8ca";}.icon-mic:before {content: "\e8cb";}.icon-mic-mute:before {content: "\e8cc";}.icon-mic2:before {content: "\e8cd";}.icon-spotlights:before {content: "\e8ce";}.icon-hourglass:before {content: "\e8cf";}.icon-loading:before {content: "\e8d0";}.icon-loading2:before {content: "\e8d1";}.icon-loading3:before {content: "\e8d2";}.icon-refresh:before {content: "\e8d3";}.icon-refresh2:before {content: "\e8d4";}.icon-undo:before {content: "\e8d5";}.icon-redo:before {content: "\e8d6";}.icon-jump2:before {content: "\e8d7";}.icon-undo2:before {content: "\e8d8";}.icon-redo2:before {content: "\e8d9";}.icon-sync:before {content: "\e8da";}.icon-repeat-one2:before {content: "\e8db";}.icon-sync-crossed:before {content: "\e8dc";}.icon-sync2:before {content: "\e8dd";}.icon-repeat-one3:before {content: "\e8de";}.icon-sync-crossed2:before {content: "\e8df";}.icon-return:before {content: "\e8e0";}.icon-return2:before {content: "\e8e1";}.icon-refund:before {content: "\e8e2";}.icon-history:before {content: "\e8e3";}.icon-history2:before {content: "\e8e4";}.icon-self-timer:before {content: "\e8e5";}.icon-clock:before {content: "\e8e6";}.icon-clock2:before {content: "\e8e7";}.icon-clock3:before {content: "\e8e8";}.icon-watch:before {content: "\e8e9";}.icon-alarm2:before {content: "\e8ea";}.icon-alarm-add2:before {content: "\e8eb";}.icon-alarm-remove:before {content: "\e8ec";}.icon-alarm-check:before {content: "\e8ed";}.icon-alarm-error:before {content: "\e8ee";}.icon-timer:before {content: "\e8ef";}.icon-timer-crossed:before {content: "\e8f0";}.icon-timer2:before {content: "\e8f1";}.icon-timer-crossed2:before {content: "\e8f2";}.icon-download:before {content: "\e8f3";}.icon-upload:before {content: "\e8f4";}.icon-download2:before {content: "\e8f5";}.icon-upload2:before {content: "\e8f6";}.icon-enter-up:before {content: "\e8f7";}.icon-enter-down:before {content: "\e8f8";}.icon-enter-left:before {content: "\e8f9";}.icon-enter-right:before {content: "\e8fa";}.icon-exit-up:before {content: "\e8fb";}.icon-exit-down:before {content: "\e8fc";}.icon-exit-left:before {content: "\e8fd";}.icon-exit-right:before {content: "\e8fe";}.icon-enter-up2:before {content: "\e8ff";}.icon-enter-down2:before {content: "\e900";}.icon-enter-vertical:before {content: "\e901";}.icon-enter-left2:before {content: "\e902";}.icon-enter-right2:before {content: "\e903";}.icon-enter-horizontal:before {content: "\e904";}.icon-exit-up2:before {content: "\e905";}.icon-exit-down2:before {content: "\e906";}.icon-exit-left2:before {content: "\e907";}.icon-exit-right2:before {content: "\e908";}.icon-cli:before {content: "\e909";}.icon-bug:before {content: "\e90a";}.icon-code:before {content: "\e90b";}.icon-file-code:before {content: "\e90c";}.icon-file-image:before {content: "\e90d";}.icon-file-zip:before {content: "\e90e";}.icon-file-audio:before {content: "\e90f";}.icon-file-video:before {content: "\e910";}.icon-file-preview:before {content: "\e911";}.icon-file-charts:before {content: "\e912";}.icon-file-stats:before {content: "\e913";}.icon-file-spreadsheet:before {content: "\e914";}.icon-link:before {content: "\e915";}.icon-unlink:before {content: "\e916";}.icon-link2:before {content: "\e917";}.icon-unlink2:before {content: "\e918";}.icon-thumbs-up:before {content: "\e919";}.icon-thumbs-down:before {content: "\e91a";}.icon-thumbs-up2:before {content: "\e91b";}.icon-thumbs-down2:before {content: "\e91c";}.icon-thumbs-up3:before {content: "\e91d";}.icon-thumbs-down3:before {content: "\e91e";}.icon-share:before {content: "\e91f";}.icon-share2:before {content: "\e920";}.icon-share3:before {content: "\e921";}.icon-magnifier:before {content: "\e922";}.icon-file-search:before {content: "\e923";}.icon-find-replace:before {content: "\e924";}.icon-zoom-in:before {content: "\e925";}.icon-zoom-out:before {content: "\e926";}.icon-loupe:before {content: "\e927";}.icon-loupe-zoom-in:before {content: "\e928";}.icon-loupe-zoom-out:before {content: "\e929";}.icon-cross:before {content: "\e92a";}.icon-menu:before {content: "\e92b";}.icon-list:before {content: "\e92c";}.icon-list2:before {content: "\e92d";}.icon-list3:before {content: "\e92e";}.icon-menu2:before {content: "\e92f";}.icon-list4:before {content: "\e930";}.icon-menu3:before {content: "\e931";}.icon-exclamation:before {content: "\e932";}.icon-question:before {content: "\e933";}.icon-check:before {content: "\e934";}.icon-cross2:before {content: "\e935";}.icon-plus:before {content: "\e936";}.icon-minus:before {content: "\e937";}.icon-percent:before {content: "\e938";}.icon-chevron-up:before {content: "\e939";}.icon-chevron-down:before {content: "\e93a";}.icon-chevron-left:before {content: "\e93b";}.icon-chevron-right:before {content: "\e93c";}.icon-chevrons-expand-vertical:before {content: "\e93d";}.icon-chevrons-expand-horizontal:before {content: "\e93e";}.icon-chevrons-contract-vertical:before {content: "\e93f";}.icon-chevrons-contract-horizontal:before {content: "\e940";}.icon-arrow-up:before {content: "\e941";}.icon-arrow-down:before {content: "\e942";}.icon-arrow-left:before {content: "\e943";}.icon-arrow-right:before {content: "\e944";}.icon-arrow-up-right:before {content: "\e945";}.icon-arrows-merge:before {content: "\e946";}.icon-arrows-split:before {content: "\e947";}.icon-arrow-divert:before {content: "\e948";}.icon-arrow-return:before {content: "\e949";}.icon-expand:before {content: "\e94a";}.icon-contract:before {content: "\e94b";}.icon-expand2:before {content: "\e94c";}.icon-contract2:before {content: "\e94d";}.icon-move:before {content: "\e94e";}.icon-tab:before {content: "\e94f";}.icon-arrow-wave:before {content: "\e950";}.icon-expand3:before {content: "\e951";}.icon-expand4:before {content: "\e952";}.icon-contract3:before {content: "\e953";}.icon-notification:before {content: "\e954";}.icon-warning:before {content: "\e955";}.icon-notification-circle:before {content: "\e956";}.icon-question-circle:before {content: "\e957";}.icon-menu-circle:before {content: "\e958";}.icon-checkmark-circle:before {content: "\e959";}.icon-cross-circle:before {content: "\e95a";}.icon-plus-circle:before {content: "\e95b";}.icon-circle-minus:before {content: "\e95c";}.icon-percent-circle:before {content: "\e95d";}.icon-arrow-up-circle:before {content: "\e95e";}.icon-arrow-down-circle:before {content: "\e95f";}.icon-arrow-left-circle:before {content: "\e960";}.icon-arrow-right-circle:before {content: "\e961";}.icon-chevron-up-circle:before {content: "\e962";}.icon-chevron-down-circle:before {content: "\e963";}.icon-chevron-left-circle:before {content: "\e964";}.icon-chevron-right-circle:before {content: "\e965";}.icon-backward-circle:before {content: "\e966";}.icon-first-circle:before {content: "\e967";}.icon-previous-circle:before {content: "\e968";}.icon-stop-circle:before {content: "\e969";}.icon-play-circle:before {content: "\e96a";}.icon-pause-circle:before {content: "\e96b";}.icon-next-circle:before {content: "\e96c";}.icon-last-circle:before {content: "\e96d";}.icon-forward-circle:before {content: "\e96e";}.icon-eject-circle:before {content: "\e96f";}.icon-crop:before {content: "\e970";}.icon-frame-expand:before {content: "\e971";}.icon-frame-contract:before {content: "\e972";}.icon-focus:before {content: "\e973";}.icon-transform:before {content: "\e974";}.icon-grid:before {content: "\e975";}.icon-grid-crossed:before {content: "\e976";}.icon-layers:before {content: "\e977";}.icon-layers-crossed:before {content: "\e978";}.icon-toggle:before {content: "\e979";}.icon-rulers:before {content: "\e97a";}.icon-ruler:before {content: "\e97b";}.icon-funnel:before {content: "\e97c";}.icon-flip-horizontal:before {content: "\e97d";}.icon-flip-vertical:before {content: "\e97e";}.icon-flip-horizontal2:before {content: "\e97f";}.icon-flip-vertical2:before {content: "\e980";}.icon-angle:before {content: "\e981";}.icon-angle2:before {content: "\e982";}.icon-subtract:before {content: "\e983";}.icon-combine:before {content: "\e984";}.icon-intersect:before {content: "\e985";}.icon-exclude:before {content: "\e986";}.icon-align-center-vertical:before {content: "\e987";}.icon-align-right:before {content: "\e988";}.icon-align-bottom:before {content: "\e989";}.icon-align-left:before {content: "\e98a";}.icon-align-center-horizontal:before {content: "\e98b";}.icon-align-top:before {content: "\e98c";}.icon-square:before {content: "\e98d";}.icon-plus-square:before {content: "\e98e";}.icon-minus-square:before {content: "\e98f";}.icon-percent-square:before {content: "\e990";}.icon-arrow-up-square:before {content: "\e991";}.icon-arrow-down-square:before {content: "\e992";}.icon-arrow-left-square:before {content: "\e993";}.icon-arrow-right-square:before {content: "\e994";}.icon-chevron-up-square:before {content: "\e995";}.icon-chevron-down-square:before {content: "\e996";}.icon-chevron-left-square:before {content: "\e997";}.icon-chevron-right-square:before {content: "\e998";}.icon-check-square:before {content: "\e999";}.icon-cross-square:before {content: "\e99a";}.icon-menu-square:before {content: "\e99b";}.icon-prohibited:before {content: "\e99c";}.icon-circle:before {content: "\e99d";}.icon-radio-button:before {content: "\e99e";}.icon-ligature:before {content: "\e99f";}.icon-text-format:before {content: "\e9a0";}.icon-text-format-remove:before {content: "\e9a1";}.icon-text-size:before {content: "\e9a2";}.icon-bold:before {content: "\e9a3";}.icon-italic:before {content: "\e9a4";}.icon-underline:before {content: "\e9a5";}.icon-strikethrough:before {content: "\e9a6";}.icon-highlight:before {content: "\e9a7";}.icon-text-align-left:before {content: "\e9a8";}.icon-text-align-center:before {content: "\e9a9";}.icon-text-align-right:before {content: "\e9aa";}.icon-text-align-justify:before {content: "\e9ab";}.icon-line-spacing:before {content: "\e9ac";}.icon-indent-increase:before {content: "\e9ad";}.icon-indent-decrease:before {content: "\e9ae";}.icon-text-wrap:before {content: "\e9af";}.icon-pilcrow:before {content: "\e9b0";}.icon-direction-ltr:before {content: "\e9b1";}.icon-direction-rtl:before {content: "\e9b2";}.icon-page-break:before {content: "\e9b3";}.icon-page-break2:before {content: "\e9b4";}.icon-sort-alpha-asc:before {content: "\e9b5";}.icon-sort-alpha-desc:before {content: "\e9b6";}.icon-sort-numeric-asc:before {content: "\e9b7";}.icon-sort-numeric-desc:before {content: "\e9b8";}.icon-sort-amount-asc:before {content: "\e9b9";}.icon-sort-amount-desc:before {content: "\e9ba";}.icon-sort-time-asc:before {content: "\e9bb";}.icon-sort-time-desc:before {content: "\e9bc";}.icon-sigma:before {content: "\e9bd";}.icon-pencil-line:before {content: "\e9be";}.icon-hand:before {content: "\e9bf";}.icon-pointer-up:before {content: "\e9c0";}.icon-pointer-right:before {content: "\e9c1";}.icon-pointer-down:before {content: "\e9c2";}.icon-pointer-left:before {content: "\e9c3";}.icon-finger-tap:before {content: "\e9c4";}.icon-fingers-tap:before {content: "\e9c5";}.icon-reminder:before {content: "\e9c6";}.icon-fingers-crossed:before {content: "\e9c7";}.icon-fingers-victory:before {content: "\e9c8";}.icon-gesture-zoom:before {content: "\e9c9";}.icon-gesture-pinch:before {content: "\e9ca";}.icon-fingers-scroll-horizontal:before {content: "\e9cb";}.icon-fingers-scroll-vertical:before {content: "\e9cc";}.icon-fingers-scroll-left:before {content: "\e9cd";}.icon-fingers-scroll-right:before {content: "\e9ce";}.icon-hand2:before {content: "\e9cf";}.icon-pointer-up2:before {content: "\e9d0";}.icon-pointer-right2:before {content: "\e9d1";}.icon-pointer-down2:before {content: "\e9d2";}.icon-pointer-left2:before {content: "\e9d3";}.icon-finger-tap2:before {content: "\e9d4";}.icon-fingers-tap2:before {content: "\e9d5";}.icon-reminder2:before {content: "\e9d6";}.icon-gesture-zoom2:before {content: "\e9d7";}.icon-gesture-pinch2:before {content: "\e9d8";}.icon-fingers-scroll-horizontal2:before {content: "\e9d9";}.icon-fingers-scroll-vertical2:before {content: "\e9da";}.icon-fingers-scroll-left2:before {content: "\e9db";}.icon-fingers-scroll-right2:before {content: "\e9dc";}.icon-fingers-scroll-vertical3:before {content: "\e9dd";}.icon-border-style:before {content: "\e9de";}.icon-border-all:before {content: "\e9df";}.icon-border-outer:before {content: "\e9e0";}.icon-border-inner:before {content: "\e9e1";}.icon-border-top:before {content: "\e9e2";}.icon-border-horizontal:before {content: "\e9e3";}.icon-border-bottom:before {content: "\e9e4";}.icon-border-left:before {content: "\e9e5";}.icon-border-vertical:before {content: "\e9e6";}.icon-border-right:before {content: "\e9e7";}.icon-border-none:before {content: "\e9e8";}.icon-ellipsis:before {content: "\e9e9";}.icon-uni21:before {content: "\21";}.icon-uni22:before {content: "\22";}.icon-uni23:before {content: "\23";}.icon-uni24:before {content: "\24";}.icon-uni25:before {content: "\25";}.icon-uni26:before {content: "\26";}.icon-uni27:before {content: "\27";}.icon-uni28:before {content: "\28";}.icon-uni29:before {content: "\29";}.icon-uni2a:before {content: "\2a";}.icon-uni2b:before {content: "\2b";}.icon-uni2c:before {content: "\2c";}.icon-uni2d:before {content: "\2d";}.icon-uni2e:before {content: "\2e";}.icon-uni2f:before {content: "\2f";}.icon-uni30:before {content: "\30";}.icon-uni31:before {content: "\31";}.icon-uni32:before {content: "\32";}.icon-uni33:before {content: "\33";}.icon-uni34:before {content: "\34";}.icon-uni35:before {content: "\35";}.icon-uni36:before {content: "\36";}.icon-uni37:before {content: "\37";}.icon-uni38:before {content: "\38";}.icon-uni39:before {content: "\39";}.icon-uni3a:before {content: "\3a";}.icon-uni3b:before {content: "\3b";}.icon-uni3c:before {content: "\3c";}.icon-uni3d:before {content: "\3d";}.icon-uni3e:before {content: "\3e";}.icon-uni3f:before {content: "\3f";}.icon-uni40:before {content: "\40";}.icon-uni41:before {content: "\41";}.icon-uni42:before {content: "\42";}.icon-uni43:before {content: "\43";}.icon-uni44:before {content: "\44";}.icon-uni45:before {content: "\45";}.icon-uni46:before {content: "\46";}.icon-uni47:before {content: "\47";}.icon-uni48:before {content: "\48";}.icon-uni49:before {content: "\49";}.icon-uni4a:before {content: "\4a";}.icon-uni4b:before {content: "\4b";}.icon-uni4c:before {content: "\4c";}.icon-uni4d:before {content: "\4d";}.icon-uni4e:before {content: "\4e";}.icon-uni4f:before {content: "\4f";}.icon-uni50:before {content: "\50";}.icon-uni51:before {content: "\51";}.icon-uni52:before {content: "\52";}.icon-uni53:before {content: "\53";}.icon-uni54:before {content: "\54";}.icon-uni55:before {content: "\55";}.icon-uni56:before {content: "\56";}.icon-uni57:before {content: "\57";}.icon-uni58:before {content: "\58";}.icon-uni59:before {content: "\59";}.icon-uni5a:before {content: "\5a";}.icon-uni5b:before {content: "\5b";}.icon-uni5c:before {content: "\5c";}.icon-uni5d:before {content: "\5d";}.icon-uni5e:before {content: "\5e";}.icon-uni5f:before {content: "\5f";}.icon-uni60:before {content: "\60";}.icon-uni61:before {content: "\61";}.icon-uni62:before {content: "\62";}.icon-uni63:before {content: "\63";}.icon-uni64:before {content: "\64";}.icon-uni65:before {content: "\65";}.icon-uni66:before {content: "\66";}.icon-uni67:before {content: "\67";}.icon-uni68:before {content: "\68";}.icon-uni69:before {content: "\69";}.icon-uni6a:before {content: "\6a";}.icon-uni6b:before {content: "\6b";}.icon-uni6c:before {content: "\6c";}.icon-uni6d:before {content: "\6d";}.icon-uni6e:before {content: "\6e";}.icon-uni6f:before {content: "\6f";}.icon-uni70:before {content: "\70";}.icon-uni71:before {content: "\71";}.icon-uni72:before {content: "\72";}.icon-uni73:before {content: "\73";}.icon-uni74:before {content: "\74";}.icon-uni75:before {content: "\75";}.icon-uni76:before {content: "\76";}.icon-uni77:before {content: "\77";}.icon-uni78:before {content: "\78";}.icon-uni79:before {content: "\79";}.icon-uni7a:before {content: "\7a";}.icon-uni7b:before {content: "\7b";}.icon-uni7c:before {content: "\7c";}.icon-uni7d:before {content: "\7d";}.icon-uni7e:before {content: "\7e";}.icon-copyright:before {content: "\a9";}
 @font-face{font-family:"Ionicons";src:url(//enduropoint.si/wp-content/themes/martfury/fonts/ionicons.woff2) format("woff2"),url(//enduropoint.si/wp-content/themes/martfury/fonts/ionicons.woff) format("woff");font-weight:normal;font-display: swap;font-style:normal}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-alert:before{content:"\f101"}.ion-alert-circled:before{content:"\f100"}.ion-android-add:before{content:"\f2c7"}.ion-android-add-circle:before{content:"\f359"}.ion-android-alarm-clock:before{content:"\f35a"}.ion-android-alert:before{content:"\f35b"}.ion-android-apps:before{content:"\f35c"}.ion-android-archive:before{content:"\f2c9"}.ion-android-arrow-back:before{content:"\f2ca"}.ion-android-arrow-down:before{content:"\f35d"}.ion-android-arrow-dropdown:before{content:"\f35f"}.ion-android-arrow-dropdown-circle:before{content:"\f35e"}.ion-android-arrow-dropleft:before{content:"\f361"}.ion-android-arrow-dropleft-circle:before{content:"\f360"}.ion-android-arrow-dropright:before{content:"\f363"}.ion-android-arrow-dropright-circle:before{content:"\f362"}.ion-android-arrow-dropup:before{content:"\f365"}.ion-android-arrow-dropup-circle:before{content:"\f364"}.ion-android-arrow-forward:before{content:"\f30f"}.ion-android-arrow-up:before{content:"\f366"}.ion-android-attach:before{content:"\f367"}.ion-android-bar:before{content:"\f368"}.ion-android-bicycle:before{content:"\f369"}.ion-android-boat:before{content:"\f36a"}.ion-android-bookmark:before{content:"\f36b"}.ion-android-bulb:before{content:"\f36c"}.ion-android-bus:before{content:"\f36d"}.ion-android-calendar:before{content:"\f2d1"}.ion-android-call:before{content:"\f2d2"}.ion-android-camera:before{content:"\f2d3"}.ion-android-cancel:before{content:"\f36e"}.ion-android-car:before{content:"\f36f"}.ion-android-cart:before{content:"\f370"}.ion-android-chat:before{content:"\f2d4"}.ion-android-checkbox:before{content:"\f374"}.ion-android-checkbox-blank:before{content:"\f371"}.ion-android-checkbox-outline:before{content:"\f373"}.ion-android-checkbox-outline-blank:before{content:"\f372"}.ion-android-checkmark-circle:before{content:"\f375"}.ion-android-clipboard:before{content:"\f376"}.ion-android-close:before{content:"\f2d7"}.ion-android-cloud:before{content:"\f37a"}.ion-android-cloud-circle:before{content:"\f377"}.ion-android-cloud-done:before{content:"\f378"}.ion-android-cloud-outline:before{content:"\f379"}.ion-android-color-palette:before{content:"\f37b"}.ion-android-compass:before{content:"\f37c"}.ion-android-contact:before{content:"\f2d8"}.ion-android-contacts:before{content:"\f2d9"}.ion-android-contract:before{content:"\f37d"}.ion-android-create:before{content:"\f37e"}.ion-android-delete:before{content:"\f37f"}.ion-android-desktop:before{content:"\f380"}.ion-android-document:before{content:"\f381"}.ion-android-done:before{content:"\f383"}.ion-android-done-all:before{content:"\f382"}.ion-android-download:before{content:"\f2dd"}.ion-android-drafts:before{content:"\f384"}.ion-android-exit:before{content:"\f385"}.ion-android-expand:before{content:"\f386"}.ion-android-favorite:before{content:"\f388"}.ion-android-favorite-outline:before{content:"\f387"}.ion-android-film:before{content:"\f389"}.ion-android-folder:before{content:"\f2e0"}.ion-android-folder-open:before{content:"\f38a"}.ion-android-funnel:before{content:"\f38b"}.ion-android-globe:before{content:"\f38c"}.ion-android-hand:before{content:"\f2e3"}.ion-android-hangout:before{content:"\f38d"}.ion-android-happy:before{content:"\f38e"}.ion-android-home:before{content:"\f38f"}.ion-android-image:before{content:"\f2e4"}.ion-android-laptop:before{content:"\f390"}.ion-android-list:before{content:"\f391"}.ion-android-locate:before{content:"\f2e9"}.ion-android-lock:before{content:"\f392"}.ion-android-mail:before{content:"\f2eb"}.ion-android-map:before{content:"\f393"}.ion-android-menu:before{content:"\f394"}.ion-android-microphone:before{content:"\f2ec"}.ion-android-microphone-off:before{content:"\f395"}.ion-android-more-horizontal:before{content:"\f396"}.ion-android-more-vertical:before{content:"\f397"}.ion-android-navigate:before{content:"\f398"}.ion-android-notifications:before{content:"\f39b"}.ion-android-notifications-none:before{content:"\f399"}.ion-android-notifications-off:before{content:"\f39a"}.ion-android-open:before{content:"\f39c"}.ion-android-options:before{content:"\f39d"}.ion-android-people:before{content:"\f39e"}.ion-android-person:before{content:"\f3a0"}.ion-android-person-add:before{content:"\f39f"}.ion-android-phone-landscape:before{content:"\f3a1"}.ion-android-phone-portrait:before{content:"\f3a2"}.ion-android-pin:before{content:"\f3a3"}.ion-android-plane:before{content:"\f3a4"}.ion-android-playstore:before{content:"\f2f0"}.ion-android-print:before{content:"\f3a5"}.ion-android-radio-button-off:before{content:"\f3a6"}.ion-android-radio-button-on:before{content:"\f3a7"}.ion-android-refresh:before{content:"\f3a8"}.ion-android-remove:before{content:"\f2f4"}.ion-android-remove-circle:before{content:"\f3a9"}.ion-android-restaurant:before{content:"\f3aa"}.ion-android-sad:before{content:"\f3ab"}.ion-android-search:before{content:"\f2f5"}.ion-android-send:before{content:"\f2f6"}.ion-android-settings:before{content:"\f2f7"}.ion-android-share:before{content:"\f2f8"}.ion-android-share-alt:before{content:"\f3ac"}.ion-android-star:before{content:"\f2fc"}.ion-android-star-half:before{content:"\f3ad"}.ion-android-star-outline:before{content:"\f3ae"}.ion-android-stopwatch:before{content:"\f2fd"}.ion-android-subway:before{content:"\f3af"}.ion-android-sunny:before{content:"\f3b0"}.ion-android-sync:before{content:"\f3b1"}.ion-android-textsms:before{content:"\f3b2"}.ion-android-time:before{content:"\f3b3"}.ion-android-train:before{content:"\f3b4"}.ion-android-unlock:before{content:"\f3b5"}.ion-android-upload:before{content:"\f3b6"}.ion-android-volume-down:before{content:"\f3b7"}.ion-android-volume-mute:before{content:"\f3b8"}.ion-android-volume-off:before{content:"\f3b9"}.ion-android-volume-up:before{content:"\f3ba"}.ion-android-walk:before{content:"\f3bb"}.ion-android-warning:before{content:"\f3bc"}.ion-android-watch:before{content:"\f3bd"}.ion-android-wifi:before{content:"\f305"}.ion-aperture:before{content:"\f313"}.ion-archive:before{content:"\f102"}.ion-arrow-down-a:before{content:"\f103"}.ion-arrow-down-b:before{content:"\f104"}.ion-arrow-down-c:before{content:"\f105"}.ion-arrow-expand:before{content:"\f25e"}.ion-arrow-graph-down-left:before{content:"\f25f"}.ion-arrow-graph-down-right:before{content:"\f260"}.ion-arrow-graph-up-left:before{content:"\f261"}.ion-arrow-graph-up-right:before{content:"\f262"}.ion-arrow-left-a:before{content:"\f106"}.ion-arrow-left-b:before{content:"\f107"}.ion-arrow-left-c:before{content:"\f108"}.ion-arrow-move:before{content:"\f263"}.ion-arrow-resize:before{content:"\f264"}.ion-arrow-return-left:before{content:"\f265"}.ion-arrow-return-right:before{content:"\f266"}.ion-arrow-right-a:before{content:"\f109"}.ion-arrow-right-b:before{content:"\f10a"}.ion-arrow-right-c:before{content:"\f10b"}.ion-arrow-shrink:before{content:"\f267"}.ion-arrow-swap:before{content:"\f268"}.ion-arrow-up-a:before{content:"\f10c"}.ion-arrow-up-b:before{content:"\f10d"}.ion-arrow-up-c:before{content:"\f10e"}.ion-asterisk:before{content:"\f314"}.ion-at:before{content:"\f10f"}.ion-backspace:before{content:"\f3bf"}.ion-backspace-outline:before{content:"\f3be"}.ion-bag:before{content:"\f110"}.ion-battery-charging:before{content:"\f111"}.ion-battery-empty:before{content:"\f112"}.ion-battery-full:before{content:"\f113"}.ion-battery-half:before{content:"\f114"}.ion-battery-low:before{content:"\f115"}.ion-beaker:before{content:"\f269"}.ion-beer:before{content:"\f26a"}.ion-bluetooth:before{content:"\f116"}.ion-bonfire:before{content:"\f315"}.ion-bookmark:before{content:"\f26b"}.ion-bowtie:before{content:"\f3c0"}.ion-briefcase:before{content:"\f26c"}.ion-bug:before{content:"\f2be"}.ion-calculator:before{content:"\f26d"}.ion-calendar:before{content:"\f117"}.ion-camera:before{content:"\f118"}.ion-card:before{content:"\f119"}.ion-cash:before{content:"\f316"}.ion-chatbox:before{content:"\f11b"}.ion-chatbox-working:before{content:"\f11a"}.ion-chatboxes:before{content:"\f11c"}.ion-chatbubble:before{content:"\f11e"}.ion-chatbubble-working:before{content:"\f11d"}.ion-chatbubbles:before{content:"\f11f"}.ion-checkmark:before{content:"\f122"}.ion-checkmark-circled:before{content:"\f120"}.ion-checkmark-round:before{content:"\f121"}.ion-chevron-down:before{content:"\f123"}.ion-chevron-left:before{content:"\f124"}.ion-chevron-right:before{content:"\f125"}.ion-chevron-up:before{content:"\f126"}.ion-clipboard:before{content:"\f127"}.ion-clock:before{content:"\f26e"}.ion-close:before{content:"\f12a"}.ion-close-circled:before{content:"\f128"}.ion-close-round:before{content:"\f129"}.ion-closed-captioning:before{content:"\f317"}.ion-cloud:before{content:"\f12b"}.ion-code:before{content:"\f271"}.ion-code-download:before{content:"\f26f"}.ion-code-working:before{content:"\f270"}.ion-coffee:before{content:"\f272"}.ion-compass:before{content:"\f273"}.ion-compose:before{content:"\f12c"}.ion-connection-bars:before{content:"\f274"}.ion-contrast:before{content:"\f275"}.ion-crop:before{content:"\f3c1"}.ion-cube:before{content:"\f318"}.ion-disc:before{content:"\f12d"}.ion-document:before{content:"\f12f"}.ion-document-text:before{content:"\f12e"}.ion-drag:before{content:"\f130"}.ion-earth:before{content:"\f276"}.ion-easel:before{content:"\f3c2"}.ion-edit:before{content:"\f2bf"}.ion-egg:before{content:"\f277"}.ion-eject:before{content:"\f131"}.ion-email:before{content:"\f132"}.ion-email-unread:before{content:"\f3c3"}.ion-erlenmeyer-flask:before{content:"\f3c5"}.ion-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.ion-eye:before{content:"\f133"}.ion-eye-disabled:before{content:"\f306"}.ion-female:before{content:"\f278"}.ion-filing:before{content:"\f134"}.ion-film-marker:before{content:"\f135"}.ion-fireball:before{content:"\f319"}.ion-flag:before{content:"\f279"}.ion-flame:before{content:"\f31a"}.ion-flash:before{content:"\f137"}.ion-flash-off:before{content:"\f136"}.ion-folder:before{content:"\f139"}.ion-fork:before{content:"\f27a"}.ion-fork-repo:before{content:"\f2c0"}.ion-forward:before{content:"\f13a"}.ion-funnel:before{content:"\f31b"}.ion-gear-a:before{content:"\f13d"}.ion-gear-b:before{content:"\f13e"}.ion-grid:before{content:"\f13f"}.ion-hammer:before{content:"\f27b"}.ion-happy:before{content:"\f31c"}.ion-happy-outline:before{content:"\f3c6"}.ion-headphone:before{content:"\f140"}.ion-heart:before{content:"\f141"}.ion-heart-broken:before{content:"\f31d"}.ion-help:before{content:"\f143"}.ion-help-buoy:before{content:"\f27c"}.ion-help-circled:before{content:"\f142"}.ion-home:before{content:"\f144"}.ion-icecream:before{content:"\f27d"}.ion-image:before{content:"\f147"}.ion-images:before{content:"\f148"}.ion-information:before{content:"\f14a"}.ion-information-circled:before{content:"\f149"}.ion-ionic:before{content:"\f14b"}.ion-ios-alarm:before{content:"\f3c8"}.ion-ios-alarm-outline:before{content:"\f3c7"}.ion-ios-albums:before{content:"\f3ca"}.ion-ios-albums-outline:before{content:"\f3c9"}.ion-ios-americanfootball:before{content:"\f3cc"}.ion-ios-americanfootball-outline:before{content:"\f3cb"}.ion-ios-analytics:before{content:"\f3ce"}.ion-ios-analytics-outline:before{content:"\f3cd"}.ion-ios-arrow-back:before{content:"\f3cf"}.ion-ios-arrow-down:before{content:"\f3d0"}.ion-ios-arrow-forward:before{content:"\f3d1"}.ion-ios-arrow-left:before{content:"\f3d2"}.ion-ios-arrow-right:before{content:"\f3d3"}.ion-ios-arrow-thin-down:before{content:"\f3d4"}.ion-ios-arrow-thin-left:before{content:"\f3d5"}.ion-ios-arrow-thin-right:before{content:"\f3d6"}.ion-ios-arrow-thin-up:before{content:"\f3d7"}.ion-ios-arrow-up:before{content:"\f3d8"}.ion-ios-at:before{content:"\f3da"}.ion-ios-at-outline:before{content:"\f3d9"}.ion-ios-barcode:before{content:"\f3dc"}.ion-ios-barcode-outline:before{content:"\f3db"}.ion-ios-baseball:before{content:"\f3de"}.ion-ios-baseball-outline:before{content:"\f3dd"}.ion-ios-basketball:before{content:"\f3e0"}.ion-ios-basketball-outline:before{content:"\f3df"}.ion-ios-bell:before{content:"\f3e2"}.ion-ios-bell-outline:before{content:"\f3e1"}.ion-ios-body:before{content:"\f3e4"}.ion-ios-body-outline:before{content:"\f3e3"}.ion-ios-bolt:before{content:"\f3e6"}.ion-ios-bolt-outline:before{content:"\f3e5"}.ion-ios-book:before{content:"\f3e8"}.ion-ios-book-outline:before{content:"\f3e7"}.ion-ios-bookmarks:before{content:"\f3ea"}.ion-ios-bookmarks-outline:before{content:"\f3e9"}.ion-ios-box:before{content:"\f3ec"}.ion-ios-box-outline:before{content:"\f3eb"}.ion-ios-briefcase:before{content:"\f3ee"}.ion-ios-briefcase-outline:before{content:"\f3ed"}.ion-ios-browsers:before{content:"\f3f0"}.ion-ios-browsers-outline:before{content:"\f3ef"}.ion-ios-calculator:before{content:"\f3f2"}.ion-ios-calculator-outline:before{content:"\f3f1"}.ion-ios-calendar:before{content:"\f3f4"}.ion-ios-calendar-outline:before{content:"\f3f3"}.ion-ios-camera:before{content:"\f3f6"}.ion-ios-camera-outline:before{content:"\f3f5"}.ion-ios-cart:before{content:"\f3f8"}.ion-ios-cart-outline:before{content:"\f3f7"}.ion-ios-chatboxes:before{content:"\f3fa"}.ion-ios-chatboxes-outline:before{content:"\f3f9"}.ion-ios-chatbubble:before{content:"\f3fc"}.ion-ios-chatbubble-outline:before{content:"\f3fb"}.ion-ios-checkmark:before{content:"\f3ff"}.ion-ios-checkmark-empty:before{content:"\f3fd"}.ion-ios-checkmark-outline:before{content:"\f3fe"}.ion-ios-circle-filled:before{content:"\f400"}.ion-ios-circle-outline:before{content:"\f401"}.ion-ios-clock:before{content:"\f403"}.ion-ios-clock-outline:before{content:"\f402"}.ion-ios-close:before{content:"\f406"}.ion-ios-close-empty:before{content:"\f404"}.ion-ios-close-outline:before{content:"\f405"}.ion-ios-cloud:before{content:"\f40c"}.ion-ios-cloud-download:before{content:"\f408"}.ion-ios-cloud-download-outline:before{content:"\f407"}.ion-ios-cloud-outline:before{content:"\f409"}.ion-ios-cloud-upload:before{content:"\f40b"}.ion-ios-cloud-upload-outline:before{content:"\f40a"}.ion-ios-cloudy:before{content:"\f410"}.ion-ios-cloudy-night:before{content:"\f40e"}.ion-ios-cloudy-night-outline:before{content:"\f40d"}.ion-ios-cloudy-outline:before{content:"\f40f"}.ion-ios-cog:before{content:"\f412"}.ion-ios-cog-outline:before{content:"\f411"}.ion-ios-color-filter:before{content:"\f414"}.ion-ios-color-filter-outline:before{content:"\f413"}.ion-ios-color-wand:before{content:"\f416"}.ion-ios-color-wand-outline:before{content:"\f415"}.ion-ios-compose:before{content:"\f418"}.ion-ios-compose-outline:before{content:"\f417"}.ion-ios-contact:before{content:"\f41a"}.ion-ios-contact-outline:before{content:"\f419"}.ion-ios-copy:before{content:"\f41c"}.ion-ios-copy-outline:before{content:"\f41b"}.ion-ios-crop:before{content:"\f41e"}.ion-ios-crop-strong:before{content:"\f41d"}.ion-ios-download:before{content:"\f420"}.ion-ios-download-outline:before{content:"\f41f"}.ion-ios-drag:before{content:"\f421"}.ion-ios-email:before{content:"\f423"}.ion-ios-email-outline:before{content:"\f422"}.ion-ios-eye:before{content:"\f425"}.ion-ios-eye-outline:before{content:"\f424"}.ion-ios-fastforward:before{content:"\f427"}.ion-ios-fastforward-outline:before{content:"\f426"}.ion-ios-filing:before{content:"\f429"}.ion-ios-filing-outline:before{content:"\f428"}.ion-ios-film:before{content:"\f42b"}.ion-ios-film-outline:before{content:"\f42a"}.ion-ios-flag:before{content:"\f42d"}.ion-ios-flag-outline:before{content:"\f42c"}.ion-ios-flame:before{content:"\f42f"}.ion-ios-flame-outline:before{content:"\f42e"}.ion-ios-flask:before{content:"\f431"}.ion-ios-flask-outline:before{content:"\f430"}.ion-ios-flower:before{content:"\f433"}.ion-ios-flower-outline:before{content:"\f432"}.ion-ios-folder:before{content:"\f435"}.ion-ios-folder-outline:before{content:"\f434"}.ion-ios-football:before{content:"\f437"}.ion-ios-football-outline:before{content:"\f436"}.ion-ios-game-controller-a:before{content:"\f439"}.ion-ios-game-controller-a-outline:before{content:"\f438"}.ion-ios-game-controller-b:before{content:"\f43b"}.ion-ios-game-controller-b-outline:before{content:"\f43a"}.ion-ios-gear:before{content:"\f43d"}.ion-ios-gear-outline:before{content:"\f43c"}.ion-ios-glasses:before{content:"\f43f"}.ion-ios-glasses-outline:before{content:"\f43e"}.ion-ios-grid-view:before{content:"\f441"}.ion-ios-grid-view-outline:before{content:"\f440"}.ion-ios-heart:before{content:"\f443"}.ion-ios-heart-outline:before{content:"\f442"}.ion-ios-help:before{content:"\f446"}.ion-ios-help-empty:before{content:"\f444"}.ion-ios-help-outline:before{content:"\f445"}.ion-ios-home:before{content:"\f448"}.ion-ios-home-outline:before{content:"\f447"}.ion-ios-infinite:before{content:"\f44a"}.ion-ios-infinite-outline:before{content:"\f449"}.ion-ios-information:before{content:"\f44d"}.ion-ios-information-empty:before{content:"\f44b"}.ion-ios-information-outline:before{content:"\f44c"}.ion-ios-ionic-outline:before{content:"\f44e"}.ion-ios-keypad:before{content:"\f450"}.ion-ios-keypad-outline:before{content:"\f44f"}.ion-ios-lightbulb:before{content:"\f452"}.ion-ios-lightbulb-outline:before{content:"\f451"}.ion-ios-list:before{content:"\f454"}.ion-ios-list-outline:before{content:"\f453"}.ion-ios-location:before{content:"\f456"}.ion-ios-location-outline:before{content:"\f455"}.ion-ios-locked:before{content:"\f458"}.ion-ios-locked-outline:before{content:"\f457"}.ion-ios-loop:before{content:"\f45a"}.ion-ios-loop-strong:before{content:"\f459"}.ion-ios-medical:before{content:"\f45c"}.ion-ios-medical-outline:before{content:"\f45b"}.ion-ios-medkit:before{content:"\f45e"}.ion-ios-medkit-outline:before{content:"\f45d"}.ion-ios-mic:before{content:"\f461"}.ion-ios-mic-off:before{content:"\f45f"}.ion-ios-mic-outline:before{content:"\f460"}.ion-ios-minus:before{content:"\f464"}.ion-ios-minus-empty:before{content:"\f462"}.ion-ios-minus-outline:before{content:"\f463"}.ion-ios-monitor:before{content:"\f466"}.ion-ios-monitor-outline:before{content:"\f465"}.ion-ios-moon:before{content:"\f468"}.ion-ios-moon-outline:before{content:"\f467"}.ion-ios-more:before{content:"\f46a"}.ion-ios-more-outline:before{content:"\f469"}.ion-ios-musical-note:before{content:"\f46b"}.ion-ios-musical-notes:before{content:"\f46c"}.ion-ios-navigate:before{content:"\f46e"}.ion-ios-navigate-outline:before{content:"\f46d"}.ion-ios-nutrition:before{content:"\f470"}.ion-ios-nutrition-outline:before{content:"\f46f"}.ion-ios-paper:before{content:"\f472"}.ion-ios-paper-outline:before{content:"\f471"}.ion-ios-paperplane:before{content:"\f474"}.ion-ios-paperplane-outline:before{content:"\f473"}.ion-ios-partlysunny:before{content:"\f476"}.ion-ios-partlysunny-outline:before{content:"\f475"}.ion-ios-pause:before{content:"\f478"}.ion-ios-pause-outline:before{content:"\f477"}.ion-ios-paw:before{content:"\f47a"}.ion-ios-paw-outline:before{content:"\f479"}.ion-ios-people:before{content:"\f47c"}.ion-ios-people-outline:before{content:"\f47b"}.ion-ios-person:before{content:"\f47e"}.ion-ios-person-outline:before{content:"\f47d"}.ion-ios-personadd:before{content:"\f480"}.ion-ios-personadd-outline:before{content:"\f47f"}.ion-ios-photos:before{content:"\f482"}.ion-ios-photos-outline:before{content:"\f481"}.ion-ios-pie:before{content:"\f484"}.ion-ios-pie-outline:before{content:"\f483"}.ion-ios-pint:before{content:"\f486"}.ion-ios-pint-outline:before{content:"\f485"}.ion-ios-play:before{content:"\f488"}.ion-ios-play-outline:before{content:"\f487"}.ion-ios-plus:before{content:"\f48b"}.ion-ios-plus-empty:before{content:"\f489"}.ion-ios-plus-outline:before{content:"\f48a"}.ion-ios-pricetag:before{content:"\f48d"}.ion-ios-pricetag-outline:before{content:"\f48c"}.ion-ios-pricetags:before{content:"\f48f"}.ion-ios-pricetags-outline:before{content:"\f48e"}.ion-ios-printer:before{content:"\f491"}.ion-ios-printer-outline:before{content:"\f490"}.ion-ios-pulse:before{content:"\f493"}.ion-ios-pulse-strong:before{content:"\f492"}.ion-ios-rainy:before{content:"\f495"}.ion-ios-rainy-outline:before{content:"\f494"}.ion-ios-recording:before{content:"\f497"}.ion-ios-recording-outline:before{content:"\f496"}.ion-ios-redo:before{content:"\f499"}.ion-ios-redo-outline:before{content:"\f498"}.ion-ios-refresh:before{content:"\f49c"}.ion-ios-refresh-empty:before{content:"\f49a"}.ion-ios-refresh-outline:before{content:"\f49b"}.ion-ios-reload:before{content:"\f49d"}.ion-ios-reverse-camera:before{content:"\f49f"}.ion-ios-reverse-camera-outline:before{content:"\f49e"}.ion-ios-rewind:before{content:"\f4a1"}.ion-ios-rewind-outline:before{content:"\f4a0"}.ion-ios-rose:before{content:"\f4a3"}.ion-ios-rose-outline:before{content:"\f4a2"}.ion-ios-search:before{content:"\f4a5"}.ion-ios-search-strong:before{content:"\f4a4"}.ion-ios-settings:before{content:"\f4a7"}.ion-ios-settings-strong:before{content:"\f4a6"}.ion-ios-shuffle:before{content:"\f4a9"}.ion-ios-shuffle-strong:before{content:"\f4a8"}.ion-ios-skipbackward:before{content:"\f4ab"}.ion-ios-skipbackward-outline:before{content:"\f4aa"}.ion-ios-skipforward:before{content:"\f4ad"}.ion-ios-skipforward-outline:before{content:"\f4ac"}.ion-ios-snowy:before{content:"\f4ae"}.ion-ios-speedometer:before{content:"\f4b0"}.ion-ios-speedometer-outline:before{content:"\f4af"}.ion-ios-star:before{content:"\f4b3"}.ion-ios-star-half:before{content:"\f4b1"}.ion-ios-star-outline:before{content:"\f4b2"}.ion-ios-stopwatch:before{content:"\f4b5"}.ion-ios-stopwatch-outline:before{content:"\f4b4"}.ion-ios-sunny:before{content:"\f4b7"}.ion-ios-sunny-outline:before{content:"\f4b6"}.ion-ios-telephone:before{content:"\f4b9"}.ion-ios-telephone-outline:before{content:"\f4b8"}.ion-ios-tennisball:before{content:"\f4bb"}.ion-ios-tennisball-outline:before{content:"\f4ba"}.ion-ios-thunderstorm:before{content:"\f4bd"}.ion-ios-thunderstorm-outline:before{content:"\f4bc"}.ion-ios-time:before{content:"\f4bf"}.ion-ios-time-outline:before{content:"\f4be"}.ion-ios-timer:before{content:"\f4c1"}.ion-ios-timer-outline:before{content:"\f4c0"}.ion-ios-toggle:before{content:"\f4c3"}.ion-ios-toggle-outline:before{content:"\f4c2"}.ion-ios-trash:before{content:"\f4c5"}.ion-ios-trash-outline:before{content:"\f4c4"}.ion-ios-undo:before{content:"\f4c7"}.ion-ios-undo-outline:before{content:"\f4c6"}.ion-ios-unlocked:before{content:"\f4c9"}.ion-ios-unlocked-outline:before{content:"\f4c8"}.ion-ios-upload:before{content:"\f4cb"}.ion-ios-upload-outline:before{content:"\f4ca"}.ion-ios-videocam:before{content:"\f4cd"}.ion-ios-videocam-outline:before{content:"\f4cc"}.ion-ios-volume-high:before{content:"\f4ce"}.ion-ios-volume-low:before{content:"\f4cf"}.ion-ios-wineglass:before{content:"\f4d1"}.ion-ios-wineglass-outline:before{content:"\f4d0"}.ion-ios-world:before{content:"\f4d3"}.ion-ios-world-outline:before{content:"\f4d2"}.ion-ipad:before{content:"\f1f9"}.ion-iphone:before{content:"\f1fa"}.ion-ipod:before{content:"\f1fb"}.ion-jet:before{content:"\f295"}.ion-key:before{content:"\f296"}.ion-knife:before{content:"\f297"}.ion-laptop:before{content:"\f1fc"}.ion-leaf:before{content:"\f1fd"}.ion-levels:before{content:"\f298"}.ion-lightbulb:before{content:"\f299"}.ion-link:before{content:"\f1fe"}.ion-load-a:before{content:"\f29a"}.ion-load-b:before{content:"\f29b"}.ion-load-c:before{content:"\f29c"}.ion-load-d:before{content:"\f29d"}.ion-location:before{content:"\f1ff"}.ion-lock-combination:before{content:"\f4d4"}.ion-locked:before{content:"\f200"}.ion-log-in:before{content:"\f29e"}.ion-log-out:before{content:"\f29f"}.ion-loop:before{content:"\f201"}.ion-magnet:before{content:"\f2a0"}.ion-male:before{content:"\f2a1"}.ion-man:before{content:"\f202"}.ion-map:before{content:"\f203"}.ion-medkit:before{content:"\f2a2"}.ion-merge:before{content:"\f33f"}.ion-mic-a:before{content:"\f204"}.ion-mic-b:before{content:"\f205"}.ion-mic-c:before{content:"\f206"}.ion-minus:before{content:"\f209"}.ion-minus-circled:before{content:"\f207"}.ion-minus-round:before{content:"\f208"}.ion-model-s:before{content:"\f2c1"}.ion-monitor:before{content:"\f20a"}.ion-more:before{content:"\f20b"}.ion-mouse:before{content:"\f340"}.ion-music-note:before{content:"\f20c"}.ion-navicon:before{content:"\f20e"}.ion-navicon-round:before{content:"\f20d"}.ion-navigate:before{content:"\f2a3"}.ion-network:before{content:"\f341"}.ion-no-smoking:before{content:"\f2c2"}.ion-nuclear:before{content:"\f2a4"}.ion-outlet:before{content:"\f342"}.ion-paintbrush:before{content:"\f4d5"}.ion-paintbucket:before{content:"\f4d6"}.ion-paper-airplane:before{content:"\f2c3"}.ion-paperclip:before{content:"\f20f"}.ion-pause:before{content:"\f210"}.ion-person:before{content:"\f213"}.ion-person-add:before{content:"\f211"}.ion-person-stalker:before{content:"\f212"}.ion-pie-graph:before{content:"\f2a5"}.ion-pin:before{content:"\f2a6"}.ion-pinpoint:before{content:"\f2a7"}.ion-pizza:before{content:"\f2a8"}.ion-plane:before{content:"\f214"}.ion-planet:before{content:"\f343"}.ion-play:before{content:"\f215"}.ion-playstation:before{content:"\f30a"}.ion-plus:before{content:"\f218"}.ion-plus-circled:before{content:"\f216"}.ion-plus-round:before{content:"\f217"}.ion-podium:before{content:"\f344"}.ion-pound:before{content:"\f219"}.ion-power:before{content:"\f2a9"}.ion-pricetag:before{content:"\f2aa"}.ion-pricetags:before{content:"\f2ab"}.ion-printer:before{content:"\f21a"}.ion-pull-request:before{content:"\f345"}.ion-qr-scanner:before{content:"\f346"}.ion-quote:before{content:"\f347"}.ion-radio-waves:before{content:"\f2ac"}.ion-record:before{content:"\f21b"}.ion-refresh:before{content:"\f21c"}.ion-reply:before{content:"\f21e"}.ion-reply-all:before{content:"\f21d"}.ion-ribbon-a:before{content:"\f348"}.ion-ribbon-b:before{content:"\f349"}.ion-sad:before{content:"\f34a"}.ion-sad-outline:before{content:"\f4d7"}.ion-scissors:before{content:"\f34b"}.ion-search:before{content:"\f21f"}.ion-settings:before{content:"\f2ad"}.ion-share:before{content:"\f220"}.ion-shuffle:before{content:"\f221"}.ion-skip-backward:before{content:"\f222"}.ion-skip-forward:before{content:"\f223"}.ion-social-android:before{content:"\f225"}.ion-social-android-outline:before{content:"\f224"}.ion-social-angular:before{content:"\f4d9"}.ion-social-angular-outline:before{content:"\f4d8"}.ion-social-apple:before{content:"\f227"}.ion-social-apple-outline:before{content:"\f226"}.ion-social-bitcoin:before{content:"\f2af"}.ion-social-bitcoin-outline:before{content:"\f2ae"}.ion-social-buffer:before{content:"\f229"}.ion-social-buffer-outline:before{content:"\f228"}.ion-social-chrome:before{content:"\f4db"}.ion-social-chrome-outline:before{content:"\f4da"}.ion-social-codepen:before{content:"\f4dd"}.ion-social-codepen-outline:before{content:"\f4dc"}.ion-social-css3:before{content:"\f4df"}.ion-social-css3-outline:before{content:"\f4de"}.ion-social-designernews:before{content:"\f22b"}.ion-social-designernews-outline:before{content:"\f22a"}.ion-social-dribbble:before{content:"\f22d"}.ion-social-dribbble-outline:before{content:"\f22c"}.ion-social-dropbox:before{content:"\f22f"}.ion-social-dropbox-outline:before{content:"\f22e"}.ion-social-euro:before{content:"\f4e1"}.ion-social-euro-outline:before{content:"\f4e0"}.ion-social-facebook:before{content:"\f231"}.ion-social-facebook-outline:before{content:"\f230"}.ion-social-foursquare:before{content:"\f34d"}.ion-social-foursquare-outline:before{content:"\f34c"}.ion-social-freebsd-devil:before{content:"\f2c4"}.ion-social-github:before{content:"\f233"}.ion-social-github-outline:before{content:"\f232"}.ion-social-google:before{content:"\f34f"}.ion-social-google-outline:before{content:"\f34e"}.ion-social-googleplus:before{content:"\f235"}.ion-social-googleplus-outline:before{content:"\f234"}.ion-social-hackernews:before{content:"\f237"}.ion-social-hackernews-outline:before{content:"\f236"}.ion-social-html5:before{content:"\f4e3"}.ion-social-html5-outline:before{content:"\f4e2"}.ion-social-instagram:before{content:"\f351"}.ion-social-instagram-outline:before{content:"\f350"}.ion-social-javascript:before{content:"\f4e5"}.ion-social-javascript-outline:before{content:"\f4e4"}.ion-social-linkedin:before{content:"\f239"}.ion-social-linkedin-outline:before{content:"\f238"}.ion-social-markdown:before{content:"\f4e6"}.ion-social-nodejs:before{content:"\f4e7"}.ion-social-octocat:before{content:"\f4e8"}.ion-social-pinterest:before{content:"\f2b1"}.ion-social-pinterest-outline:before{content:"\f2b0"}.ion-social-python:before{content:"\f4e9"}.ion-social-reddit:before{content:"\f23b"}.ion-social-reddit-outline:before{content:"\f23a"}.ion-social-rss:before{content:"\f23d"}.ion-social-rss-outline:before{content:"\f23c"}.ion-social-sass:before{content:"\f4ea"}.ion-social-skype:before{content:"\f23f"}.ion-social-skype-outline:before{content:"\f23e"}.ion-social-snapchat:before{content:"\f4ec"}.ion-social-snapchat-outline:before{content:"\f4eb"}.ion-social-tumblr:before{content:"\f241"}.ion-social-tumblr-outline:before{content:"\f240"}.ion-social-tux:before{content:"\f2c5"}.ion-social-twitch:before{content:"\f4ee"}.ion-social-twitch-outline:before{content:"\f4ed"}.ion-social-twitter:before{content:"\f243"}.ion-social-twitter-outline:before{content:"\f242"}.ion-social-usd:before{content:"\f353"}.ion-social-usd-outline:before{content:"\f352"}.ion-social-vimeo:before{content:"\f245"}.ion-social-vimeo-outline:before{content:"\f244"}.ion-social-whatsapp:before{content:"\f4f0"}.ion-social-whatsapp-outline:before{content:"\f4ef"}.ion-social-windows:before{content:"\f247"}.ion-social-windows-outline:before{content:"\f246"}.ion-social-wordpress:before{content:"\f249"}.ion-social-wordpress-outline:before{content:"\f248"}.ion-social-yahoo:before{content:"\f24b"}.ion-social-yahoo-outline:before{content:"\f24a"}.ion-social-yen:before{content:"\f4f2"}.ion-social-yen-outline:before{content:"\f4f1"}.ion-social-youtube:before{content:"\f24d"}.ion-social-youtube-outline:before{content:"\f24c"}.ion-soup-can:before{content:"\f4f4"}.ion-soup-can-outline:before{content:"\f4f3"}.ion-speakerphone:before{content:"\f2b2"}.ion-speedometer:before{content:"\f2b3"}.ion-spoon:before{content:"\f2b4"}.ion-star:before{content:"\f24e"}.ion-stats-bars:before{content:"\f2b5"}.ion-steam:before{content:"\f30b"}.ion-stop:before{content:"\f24f"}.ion-thermometer:before{content:"\f2b6"}.ion-thumbsdown:before{content:"\f250"}.ion-thumbsup:before{content:"\f251"}.ion-toggle:before{content:"\f355"}.ion-toggle-filled:before{content:"\f354"}.ion-transgender:before{content:"\f4f5"}.ion-trash-a:before{content:"\f252"}.ion-trash-b:before{content:"\f253"}.ion-trophy:before{content:"\f356"}.ion-tshirt:before{content:"\f4f7"}.ion-tshirt-outline:before{content:"\f4f6"}.ion-umbrella:before{content:"\f2b7"}.ion-university:before{content:"\f357"}.ion-unlocked:before{content:"\f254"}.ion-upload:before{content:"\f255"}.ion-usb:before{content:"\f2b8"}.ion-videocamera:before{content:"\f256"}.ion-volume-high:before{content:"\f257"}.ion-volume-low:before{content:"\f258"}.ion-volume-medium:before{content:"\f259"}.ion-volume-mute:before{content:"\f25a"}.ion-wand:before{content:"\f358"}.ion-waterdrop:before{content:"\f25b"}.ion-wifi:before{content:"\f25c"}.ion-wineglass:before{content:"\f2b9"}.ion-woman:before{content:"\f25d"}.ion-wrench:before{content:"\f2ba"}.ion-xbox:before{content:"\f30c"}@font-face{font-family:ElegantIcons;src: url(//enduropoint.si/wp-content/themes/martfury/fonts/eleganticons.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/ElegantIcons.woff) format('woff'); font-display: swap;font-weight:400;font-style:normal}.arrow-up-down,.arrow_back,.arrow_carrot-2down,.arrow_carrot-2down_alt2,.arrow_carrot-2dwnn_alt,.arrow_carrot-2left,.arrow_carrot-2left_alt,.arrow_carrot-2left_alt2,.arrow_carrot-2right,.arrow_carrot-2right_alt,.arrow_carrot-2right_alt2,.arrow_carrot-2up,.arrow_carrot-2up_alt,.arrow_carrot-2up_alt2,.arrow_carrot-down,.arrow_carrot-down_alt,.arrow_carrot-down_alt2,.arrow_carrot-left,.arrow_carrot-left_alt,.arrow_carrot-left_alt2,.arrow_carrot-right,.arrow_carrot-right_alt,.arrow_carrot-right_alt2,.arrow_carrot-up,.arrow_carrot-up_alt2,.arrow_carrot_up_alt,.arrow_condense,.arrow_condense_alt,.arrow_down,.arrow_down_alt,.arrow_expand,.arrow_expand_alt,.arrow_expand_alt2,.arrow_expand_alt3,.arrow_left,.arrow_left-down,.arrow_left-down_alt,.arrow_left-right,.arrow_left-right_alt,.arrow_left-up,.arrow_left-up_alt,.arrow_left_alt,.arrow_move,.arrow_right,.arrow_right-down,.arrow_right-down_alt,.arrow_right-up,.arrow_right-up_alt,.arrow_right_alt,.arrow_triangle-down,.arrow_triangle-down_alt,.arrow_triangle-down_alt2,.arrow_triangle-left,.arrow_triangle-left_alt,.arrow_triangle-left_alt2,.arrow_triangle-right,.arrow_triangle-right_alt,.arrow_triangle-right_alt2,.arrow_triangle-up,.arrow_triangle-up_alt,.arrow_triangle-up_alt2,.arrow_up,.arrow_up-down_alt,.arrow_up_alt,.icon_adjust-horiz,.icon_adjust-vert,.icon_archive,.icon_archive_alt,.icon_bag,.icon_bag_alt,.icon_balance,.icon_blocked,.icon_book,.icon_book_alt,.icon_box-checked,.icon_box-empty,.icon_box-selected,.icon_briefcase,.icon_briefcase_alt,.icon_building,.icon_building_alt,.icon_calculator_alt,.icon_calendar,.icon_calulator,.icon_camera,.icon_camera_alt,.icon_cart,.icon_cart_alt,.icon_chat,.icon_chat_alt,.icon_check,.icon_check_alt,.icon_check_alt2,.icon_circle-empty,.icon_circle-slelected,.icon_clipboard,.icon_clock,.icon_clock_alt,.icon_close,.icon_close_alt,.icon_close_alt2,.icon_cloud,.icon_cloud-download,.icon_cloud-download_alt,.icon_cloud-upload,.icon_cloud-upload_alt,.icon_cloud_alt,.icon_cog,.icon_cogs,.icon_comment,.icon_comment_alt,.icon_compass,.icon_compass_alt,.icon_cone,.icon_cone_alt,.icon_contacts,.icon_contacts_alt,.icon_creditcard,.icon_currency,.icon_currency_alt,.icon_cursor,.icon_cursor_alt,.icon_datareport,.icon_datareport_alt,.icon_desktop,.icon_dislike,.icon_dislike_alt,.icon_document,.icon_document_alt,.icon_documents,.icon_documents_alt,.icon_download,.icon_drawer,.icon_drawer_alt,.icon_drive,.icon_drive_alt,.icon_easel,.icon_easel_alt,.icon_error-circle,.icon_error-circle_alt,.icon_error-oct,.icon_error-oct_alt,.icon_error-triangle,.icon_error-triangle_alt,.icon_film,.icon_floppy,.icon_floppy_alt,.icon_flowchart,.icon_flowchart_alt,.icon_folder,.icon_folder-add,.icon_folder-add_alt,.icon_folder-alt,.icon_folder-open,.icon_folder-open_alt,.icon_folder_download,.icon_folder_upload,.icon_genius,.icon_gift,.icon_gift_alt,.icon_globe,.icon_globe-2,.icon_globe_alt,.icon_grid-2x2,.icon_grid-3x3,.icon_group,.icon_headphones,.icon_heart,.icon_heart_alt,.icon_hourglass,.icon_house,.icon_house_alt,.icon_id,.icon_id-2,.icon_id-2_alt,.icon_id_alt,.icon_image,.icon_images,.icon_info,.icon_info_alt,.icon_key,.icon_key_alt,.icon_laptop,.icon_lifesaver,.icon_lightbulb,.icon_lightbulb_alt,.icon_like,.icon_like_alt,.icon_link,.icon_link_alt,.icon_loading,.icon_lock,.icon_lock-open,.icon_lock-open_alt,.icon_lock_alt,.icon_mail,.icon_mail_alt,.icon_map,.icon_map_alt,.icon_menu,.icon_menu-circle_alt,.icon_menu-circle_alt2,.icon_menu-square_alt,.icon_menu-square_alt2,.icon_mic,.icon_mic_alt,.icon_minus-06,.icon_minus-box,.icon_minus_alt,.icon_minus_alt2,.icon_mobile,.icon_mug,.icon_mug_alt,.icon_music,.icon_ol,.icon_paperclip,.icon_pause,.icon_pause_alt,.icon_pause_alt2,.icon_pencil,.icon_pencil-edit,.icon_pencil-edit_alt,.icon_pencil_alt,.icon_pens,.icon_pens_alt,.icon_percent,.icon_percent_alt,.icon_phone,.icon_piechart,.icon_pin,.icon_pin_alt,.icon_plus,.icon_plus-box,.icon_plus_alt,.icon_plus_alt2,.icon_printer,.icon_printer-alt,.icon_profile,.icon_pushpin,.icon_pushpin_alt,.icon_puzzle,.icon_puzzle_alt,.icon_question,.icon_question_alt,.icon_question_alt2,.icon_quotations,.icon_quotations_alt,.icon_quotations_alt2,.icon_refresh,.icon_ribbon,.icon_ribbon_alt,.icon_rook,.icon_search,.icon_search-2,.icon_search_alt,.icon_shield,.icon_shield_alt,.icon_star,.icon_star-half,.icon_star-half_alt,.icon_star_alt,.icon_stop,.icon_stop_alt,.icon_stop_alt2,.icon_table,.icon_tablet,.icon_tag,.icon_tag_alt,.icon_tags,.icon_tags_alt,.icon_target,.icon_tool,.icon_toolbox,.icon_toolbox_alt,.icon_tools,.icon_trash,.icon_trash_alt,.icon_ul,.icon_upload,.icon_vol-mute,.icon_vol-mute_alt,.icon_volume-high,.icon_volume-high_alt,.icon_volume-low,.icon_volume-low_alt,.icon_wallet,.icon_wallet_alt,.icon_zoom-in,.icon_zoom-in_alt,.icon_zoom-out,.icon_zoom-out_alt,.social_blogger,.social_blogger_circle,.social_blogger_square,.social_delicious,.social_delicious_circle,.social_delicious_square,.social_deviantart,.social_deviantart_circle,.social_deviantart_square,.social_dribbble,.social_dribbble_circle,.social_dribbble_square,.social_facebook,.social_facebook_circle,.social_facebook_square,.social_flickr,.social_flickr_circle,.social_flickr_square,.social_googledrive,.social_googledrive_alt2,.social_googledrive_square,.social_googleplus,.social_googleplus_circle,.social_googleplus_square,.social_instagram,.social_instagram_circle,.social_instagram_square,.social_linkedin,.social_linkedin_circle,.social_linkedin_square,.social_myspace,.social_myspace_circle,.social_myspace_square,.social_picassa,.social_picassa_circle,.social_picassa_square,.social_pinterest,.social_pinterest_circle,.social_pinterest_square,.social_rss,.social_rss_circle,.social_rss_square,.social_share,.social_share_circle,.social_share_square,.social_skype,.social_skype_circle,.social_skype_square,.social_spotify,.social_spotify_circle,.social_spotify_square,.social_stumbleupon_circle,.social_stumbleupon_square,.social_tumbleupon,.social_tumblr,.social_tumblr_circle,.social_tumblr_square,.social_twitter,.social_twitter_circle,.social_twitter_square,.social_vimeo,.social_vimeo_circle,.social_vimeo_square,.social_wordpress,.social_wordpress_circle,.social_wordpress_square,.social_youtube,.social_youtube_circle,.social_youtube_square{font-family:ElegantIcons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.arrow_up:before{content:"\21"}.arrow_down:before{content:"\22"}.arrow_left:before{content:"\23"}.arrow_right:before{content:"\24"}.arrow_left-up:before{content:"\25"}.arrow_right-up:before{content:"\26"}.arrow_right-down:before{content:"\27"}.arrow_left-down:before{content:"\28"}.arrow-up-down:before{content:"\29"}.arrow_up-down_alt:before{content:"\2a"}.arrow_left-right_alt:before{content:"\2b"}.arrow_left-right:before{content:"\2c"}.arrow_expand_alt2:before{content:"\2d"}.arrow_expand_alt:before{content:"\2e"}.arrow_condense:before{content:"\2f"}.arrow_expand:before{content:"\30"}.arrow_move:before{content:"\31"}.arrow_carrot-up:before{content:"\32"}.arrow_carrot-down:before{content:"\33"}.arrow_carrot-left:before{content:"\34"}.arrow_carrot-right:before{content:"\35"}.arrow_carrot-2up:before{content:"\36"}.arrow_carrot-2down:before{content:"\37"}.arrow_carrot-2left:before{content:"\38"}.arrow_carrot-2right:before{content:"\39"}.arrow_carrot-up_alt2:before{content:"\3a"}.arrow_carrot-down_alt2:before{content:"\3b"}.arrow_carrot-left_alt2:before{content:"\3c"}.arrow_carrot-right_alt2:before{content:"\3d"}.arrow_carrot-2up_alt2:before{content:"\3e"}.arrow_carrot-2down_alt2:before{content:"\3f"}.arrow_carrot-2left_alt2:before{content:"\40"}.arrow_carrot-2right_alt2:before{content:"\41"}.arrow_triangle-up:before{content:"\42"}.arrow_triangle-down:before{content:"\43"}.arrow_triangle-left:before{content:"\44"}.arrow_triangle-right:before{content:"\45"}.arrow_triangle-up_alt2:before{content:"\46"}.arrow_triangle-down_alt2:before{content:"\47"}.arrow_triangle-left_alt2:before{content:"\48"}.arrow_triangle-right_alt2:before{content:"\49"}.arrow_back:before{content:"\4a"}.icon_minus-06:before{content:"\4b"}.icon_plus:before{content:"\4c"}.icon_close:before{content:"\4d"}.icon_check:before{content:"\4e"}.icon_minus_alt2:before{content:"\4f"}.icon_plus_alt2:before{content:"\50"}.icon_close_alt2:before{content:"\51"}.icon_check_alt2:before{content:"\52"}.icon_zoom-out_alt:before{content:"\53"}.icon_zoom-in_alt:before{content:"\54"}.icon_search:before{content:"\55"}.icon_box-empty:before{content:"\56"}.icon_box-selected:before{content:"\57"}.icon_minus-box:before{content:"\58"}.icon_plus-box:before{content:"\59"}.icon_box-checked:before{content:"\5a"}.icon_circle-empty:before{content:"\5b"}.icon_circle-slelected:before{content:"\5c"}.icon_stop_alt2:before{content:"\5d"}.icon_stop:before{content:"\5e"}.icon_pause_alt2:before{content:"\5f"}.icon_pause:before{content:"\60"}.icon_menu:before{content:"\61"}.icon_menu-square_alt2:before{content:"\62"}.icon_menu-circle_alt2:before{content:"\63"}.icon_ul:before{content:"\64"}.icon_ol:before{content:"\65"}.icon_adjust-horiz:before{content:"\66"}.icon_adjust-vert:before{content:"\67"}.icon_document_alt:before{content:"\68"}.icon_documents_alt:before{content:"\69"}.icon_pencil:before{content:"\6a"}.icon_pencil-edit_alt:before{content:"\6b"}.icon_pencil-edit:before{content:"\6c"}.icon_folder-alt:before{content:"\6d"}.icon_folder-open_alt:before{content:"\6e"}.icon_folder-add_alt:before{content:"\6f"}.icon_info_alt:before{content:"\70"}.icon_error-oct_alt:before{content:"\71"}.icon_error-circle_alt:before{content:"\72"}.icon_error-triangle_alt:before{content:"\73"}.icon_question_alt2:before{content:"\74"}.icon_question:before{content:"\75"}.icon_comment_alt:before{content:"\76"}.icon_chat_alt:before{content:"\77"}.icon_vol-mute_alt:before{content:"\78"}.icon_volume-low_alt:before{content:"\79"}.icon_volume-high_alt:before{content:"\7a"}.icon_quotations:before{content:"\7b"}.icon_quotations_alt2:before{content:"\7c"}.icon_clock_alt:before{content:"\7d"}.icon_lock_alt:before{content:"\7e"}.icon_lock-open_alt:before{content:"\e000"}.icon_key_alt:before{content:"\e001"}.icon_cloud_alt:before{content:"\e002"}.icon_cloud-upload_alt:before{content:"\e003"}.icon_cloud-download_alt:before{content:"\e004"}.icon_image:before{content:"\e005"}.icon_images:before{content:"\e006"}.icon_lightbulb_alt:before{content:"\e007"}.icon_gift_alt:before{content:"\e008"}.icon_house_alt:before{content:"\e009"}.icon_genius:before{content:"\e00a"}.icon_mobile:before{content:"\e00b"}.icon_tablet:before{content:"\e00c"}.icon_laptop:before{content:"\e00d"}.icon_desktop:before{content:"\e00e"}.icon_camera_alt:before{content:"\e00f"}.icon_mail_alt:before{content:"\e010"}.icon_cone_alt:before{content:"\e011"}.icon_ribbon_alt:before{content:"\e012"}.icon_bag_alt:before{content:"\e013"}.icon_creditcard:before{content:"\e014"}.icon_cart_alt:before{content:"\e015"}.icon_paperclip:before{content:"\e016"}.icon_tag_alt:before{content:"\e017"}.icon_tags_alt:before{content:"\e018"}.icon_trash_alt:before{content:"\e019"}.icon_cursor_alt:before{content:"\e01a"}.icon_mic_alt:before{content:"\e01b"}.icon_compass_alt:before{content:"\e01c"}.icon_pin_alt:before{content:"\e01d"}.icon_pushpin_alt:before{content:"\e01e"}.icon_map_alt:before{content:"\e01f"}.icon_drawer_alt:before{content:"\e020"}.icon_toolbox_alt:before{content:"\e021"}.icon_book_alt:before{content:"\e022"}.icon_calendar:before{content:"\e023"}.icon_film:before{content:"\e024"}.icon_table:before{content:"\e025"}.icon_contacts_alt:before{content:"\e026"}.icon_headphones:before{content:"\e027"}.icon_lifesaver:before{content:"\e028"}.icon_piechart:before{content:"\e029"}.icon_refresh:before{content:"\e02a"}.icon_link_alt:before{content:"\e02b"}.icon_link:before{content:"\e02c"}.icon_loading:before{content:"\e02d"}.icon_blocked:before{content:"\e02e"}.icon_archive_alt:before{content:"\e02f"}.icon_heart_alt:before{content:"\e030"}.icon_star_alt:before{content:"\e031"}.icon_star-half_alt:before{content:"\e032"}.icon_star:before{content:"\e033"}.icon_star-half:before{content:"\e034"}.icon_tools:before{content:"\e035"}.icon_tool:before{content:"\e036"}.icon_cog:before{content:"\e037"}.icon_cogs:before{content:"\e038"}.arrow_up_alt:before{content:"\e039"}.arrow_down_alt:before{content:"\e03a"}.arrow_left_alt:before{content:"\e03b"}.arrow_right_alt:before{content:"\e03c"}.arrow_left-up_alt:before{content:"\e03d"}.arrow_right-up_alt:before{content:"\e03e"}.arrow_right-down_alt:before{content:"\e03f"}.arrow_left-down_alt:before{content:"\e040"}.arrow_condense_alt:before{content:"\e041"}.arrow_expand_alt3:before{content:"\e042"}.arrow_carrot_up_alt:before{content:"\e043"}.arrow_carrot-down_alt:before{content:"\e044"}.arrow_carrot-left_alt:before{content:"\e045"}.arrow_carrot-right_alt:before{content:"\e046"}.arrow_carrot-2up_alt:before{content:"\e047"}.arrow_carrot-2dwnn_alt:before{content:"\e048"}.arrow_carrot-2left_alt:before{content:"\e049"}.arrow_carrot-2right_alt:before{content:"\e04a"}.arrow_triangle-up_alt:before{content:"\e04b"}.arrow_triangle-down_alt:before{content:"\e04c"}.arrow_triangle-left_alt:before{content:"\e04d"}.arrow_triangle-right_alt:before{content:"\e04e"}.icon_minus_alt:before{content:"\e04f"}.icon_plus_alt:before{content:"\e050"}.icon_close_alt:before{content:"\e051"}.icon_check_alt:before{content:"\e052"}.icon_zoom-out:before{content:"\e053"}.icon_zoom-in:before{content:"\e054"}.icon_stop_alt:before{content:"\e055"}.icon_menu-square_alt:before{content:"\e056"}.icon_menu-circle_alt:before{content:"\e057"}.icon_document:before{content:"\e058"}.icon_documents:before{content:"\e059"}.icon_pencil_alt:before{content:"\e05a"}.icon_folder:before{content:"\e05b"}.icon_folder-open:before{content:"\e05c"}.icon_folder-add:before{content:"\e05d"}.icon_folder_upload:before{content:"\e05e"}.icon_folder_download:before{content:"\e05f"}.icon_info:before{content:"\e060"}.icon_error-circle:before{content:"\e061"}.icon_error-oct:before{content:"\e062"}.icon_error-triangle:before{content:"\e063"}.icon_question_alt:before{content:"\e064"}.icon_comment:before{content:"\e065"}.icon_chat:before{content:"\e066"}.icon_vol-mute:before{content:"\e067"}.icon_volume-low:before{content:"\e068"}.icon_volume-high:before{content:"\e069"}.icon_quotations_alt:before{content:"\e06a"}.icon_clock:before{content:"\e06b"}.icon_lock:before{content:"\e06c"}.icon_lock-open:before{content:"\e06d"}.icon_key:before{content:"\e06e"}.icon_cloud:before{content:"\e06f"}.icon_cloud-upload:before{content:"\e070"}.icon_cloud-download:before{content:"\e071"}.icon_lightbulb:before{content:"\e072"}.icon_gift:before{content:"\e073"}.icon_house:before{content:"\e074"}.icon_camera:before{content:"\e075"}.icon_mail:before{content:"\e076"}.icon_cone:before{content:"\e077"}.icon_ribbon:before{content:"\e078"}.icon_bag:before{content:"\e079"}.icon_cart:before{content:"\e07a"}.icon_tag:before{content:"\e07b"}.icon_tags:before{content:"\e07c"}.icon_trash:before{content:"\e07d"}.icon_cursor:before{content:"\e07e"}.icon_mic:before{content:"\e07f"}.icon_compass:before{content:"\e080"}.icon_pin:before{content:"\e081"}.icon_pushpin:before{content:"\e082"}.icon_map:before{content:"\e083"}.icon_drawer:before{content:"\e084"}.icon_toolbox:before{content:"\e085"}.icon_book:before{content:"\e086"}.icon_contacts:before{content:"\e087"}.icon_archive:before{content:"\e088"}.icon_heart:before{content:"\e089"}.icon_profile:before{content:"\e08a"}.icon_group:before{content:"\e08b"}.icon_grid-2x2:before{content:"\e08c"}.icon_grid-3x3:before{content:"\e08d"}.icon_music:before{content:"\e08e"}.icon_pause_alt:before{content:"\e08f"}.icon_phone:before{content:"\e090"}.icon_upload:before{content:"\e091"}.icon_download:before{content:"\e092"}.social_facebook:before{content:"\e093"}.social_twitter:before{content:"\e094"}.social_pinterest:before{content:"\e095"}.social_googleplus:before{content:"\e096"}.social_tumblr:before{content:"\e097"}.social_tumbleupon:before{content:"\e098"}.social_wordpress:before{content:"\e099"}.social_instagram:before{content:"\e09a"}.social_dribbble:before{content:"\e09b"}.social_vimeo:before{content:"\e09c"}.social_linkedin:before{content:"\e09d"}.social_rss:before{content:"\e09e"}.social_deviantart:before{content:"\e09f"}.social_share:before{content:"\e0a0"}.social_myspace:before{content:"\e0a1"}.social_skype:before{content:"\e0a2"}.social_youtube:before{content:"\e0a3"}.social_picassa:before{content:"\e0a4"}.social_googledrive:before{content:"\e0a5"}.social_flickr:before{content:"\e0a6"}.social_blogger:before{content:"\e0a7"}.social_spotify:before{content:"\e0a8"}.social_delicious:before{content:"\e0a9"}.social_facebook_circle:before{content:"\e0aa"}.social_twitter_circle:before{content:"\e0ab"}.social_pinterest_circle:before{content:"\e0ac"}.social_googleplus_circle:before{content:"\e0ad"}.social_tumblr_circle:before{content:"\e0ae"}.social_stumbleupon_circle:before{content:"\e0af"}.social_wordpress_circle:before{content:"\e0b0"}.social_instagram_circle:before{content:"\e0b1"}.social_dribbble_circle:before{content:"\e0b2"}.social_vimeo_circle:before{content:"\e0b3"}.social_linkedin_circle:before{content:"\e0b4"}.social_rss_circle:before{content:"\e0b5"}.social_deviantart_circle:before{content:"\e0b6"}.social_share_circle:before{content:"\e0b7"}.social_myspace_circle:before{content:"\e0b8"}.social_skype_circle:before{content:"\e0b9"}.social_youtube_circle:before{content:"\e0ba"}.social_picassa_circle:before{content:"\e0bb"}.social_googledrive_alt2:before{content:"\e0bc"}.social_flickr_circle:before{content:"\e0bd"}.social_blogger_circle:before{content:"\e0be"}.social_spotify_circle:before{content:"\e0bf"}.social_delicious_circle:before{content:"\e0c0"}.social_facebook_square:before{content:"\e0c1"}.social_twitter_square:before{content:"\e0c2"}.social_pinterest_square:before{content:"\e0c3"}.social_googleplus_square:before{content:"\e0c4"}.social_tumblr_square:before{content:"\e0c5"}.social_stumbleupon_square:before{content:"\e0c6"}.social_wordpress_square:before{content:"\e0c7"}.social_instagram_square:before{content:"\e0c8"}.social_dribbble_square:before{content:"\e0c9"}.social_vimeo_square:before{content:"\e0ca"}.social_linkedin_square:before{content:"\e0cb"}.social_rss_square:before{content:"\e0cc"}.social_deviantart_square:before{content:"\e0cd"}.social_share_square:before{content:"\e0ce"}.social_myspace_square:before{content:"\e0cf"}.social_skype_square:before{content:"\e0d0"}.social_youtube_square:before{content:"\e0d1"}.social_picassa_square:before{content:"\e0d2"}.social_googledrive_square:before{content:"\e0d3"}.social_flickr_square:before{content:"\e0d4"}.social_blogger_square:before{content:"\e0d5"}.social_spotify_square:before{content:"\e0d6"}.social_delicious_square:before{content:"\e0d7"}.icon_printer:before{content:"\e103"}.icon_calulator:before{content:"\e0ee"}.icon_building:before{content:"\e0ef"}.icon_floppy:before{content:"\e0e8"}.icon_drive:before{content:"\e0ea"}.icon_search-2:before{content:"\e101"}.icon_id:before{content:"\e107"}.icon_id-2:before{content:"\e108"}.icon_puzzle:before{content:"\e102"}.icon_like:before{content:"\e106"}.icon_dislike:before{content:"\e0eb"}.icon_mug:before{content:"\e105"}.icon_currency:before{content:"\e0ed"}.icon_wallet:before{content:"\e100"}.icon_pens:before{content:"\e104"}.icon_easel:before{content:"\e0e9"}.icon_flowchart:before{content:"\e109"}.icon_datareport:before{content:"\e0ec"}.icon_briefcase:before{content:"\e0fe"}.icon_shield:before{content:"\e0f6"}.icon_percent:before{content:"\e0fb"}.icon_globe:before{content:"\e0e2"}.icon_globe-2:before{content:"\e0e3"}.icon_target:before{content:"\e0f5"}.icon_hourglass:before{content:"\e0e1"}.icon_balance:before{content:"\e0ff"}.icon_rook:before{content:"\e0f8"}.icon_printer-alt:before{content:"\e0fa"}.icon_calculator_alt:before{content:"\e0e7"}.icon_building_alt:before{content:"\e0fd"}.icon_floppy_alt:before{content:"\e0e4"}.icon_drive_alt:before{content:"\e0e5"}.icon_search_alt:before{content:"\e0f7"}.icon_id_alt:before{content:"\e0e0"}.icon_id-2_alt:before{content:"\e0fc"}.icon_puzzle_alt:before{content:"\e0f9"}.icon_like_alt:before{content:"\e0dd"}.icon_dislike_alt:before{content:"\e0f1"}.icon_mug_alt:before{content:"\e0dc"}.icon_currency_alt:before{content:"\e0f3"}.icon_wallet_alt:before{content:"\e0d8"}.icon_pens_alt:before{content:"\e0db"}.icon_easel_alt:before{content:"\e0f0"}.icon_flowchart_alt:before{content:"\e0df"}.icon_datareport_alt:before{content:"\e0f2"}.icon_briefcase_alt:before{content:"\e0f4"}.icon_shield_alt:before{content:"\e0d9"}.icon_percent_alt:before{content:"\e0da"}.icon_globe_alt:before{content:"\e0de"}.icon_clipboard:before{content:"\e0e6"}.glyph{float:left;text-align:center;padding:.75em;margin:.4em 1.5em .75em 0;width:6em;text-shadow:none}.glyph_big{font-size:128px;color:#59c5dc;float:left;margin-right:20px}.glyph div{padding-bottom:10px}.glyph input{font-family:consolas,monospace;font-size:12px;width:100%;text-align:center;border:0;box-shadow:0 0 0 1px #ccc;padding:.2em;-moz-border-radius:5px;-webkit-border-radius:5px}.centered{margin-left:auto;margin-right:auto}.glyph .fs1{font-size:2em}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0} @media print{*,*:before,*:after{background:transparent !important;color:#000 !important;-webkit-box-shadow:none !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.row{margin-left:-15px;margin-right:-15px}.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.clearfix:before,.clearfix:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after{content:" ";display:table}.clearfix:after,.container:after,.container-fluid:after,.row:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none !important}@media (max-width:767px){.visible-xs{display:block !important}table.visible-xs{display:table !important}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (max-width:767px){.visible-xs-block{display:block !important}}@media (max-width:767px){.visible-xs-inline{display:inline !important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block !important}table.visible-sm{display:table !important}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline !important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block !important}table.visible-md{display:table !important}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline !important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block !important}}@media (min-width:1200px){.visible-lg{display:block !important}table.visible-lg{display:table !important}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (min-width:1200px){.visible-lg-block{display:block !important}}@media (min-width:1200px){.visible-lg-inline{display:inline !important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block !important}}@media (max-width:767px){.hidden-xs{display:none !important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none !important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none !important}}@media (min-width:1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table !important}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}.visible-print-block{display:none !important}@media print{.visible-print-block{display:block !important}}.visible-print-inline{display:none !important}@media print{.visible-print-inline{display:inline !important}}.visible-print-inline-block{display:none !important}@media print{.visible-print-inline-block{display:inline-block !important}}@media print{.hidden-print{display:none !important}}
    @font-face {
font-family: 'Bai Jamjuree';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-regular.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-regular.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-regular.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-regular.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-regular.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-regular.svg#BaiJamjuree) format('svg'); } @font-face {
font-family: 'Bai Jamjuree';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-500.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-500.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-500.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-500.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-500.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-500.svg#BaiJamjuree) format('svg'); } @font-face {
font-family: 'Bai Jamjuree';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-600.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-600.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-600.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-600.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-600.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-600.svg#BaiJamjuree) format('svg'); } @font-face {
font-family: 'Bai Jamjuree';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-700.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-700.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-700.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-700.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-700.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/bai-jamjuree-v4-latin-ext-700.svg#BaiJamjuree) format('svg'); } @font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-regular.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-regular.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-regular.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-regular.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-regular.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-regular.svg#WorkSans) format('svg'); } @font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 500;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-500.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-500.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-500.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-500.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-500.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-500.svg#WorkSans) format('svg'); } @font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 600;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-600.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-600.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-600.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-600.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-600.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-600.svg#WorkSans) format('svg'); } @font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 700;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-700.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-700.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-700.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-700.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-700.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-700.svg#WorkSans) format('svg'); } @font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 800;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-800.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-800.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-800.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-800.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-800.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-800.svg#WorkSans) format('svg'); } @font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 900;
font-display: swap;
src: url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-900.eot); src: local(''),
url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-900.eot?#iefix) format('embedded-opentype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-900.woff2) format('woff2'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-900.woff) format('woff'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-900.ttf) format('truetype'), url(//enduropoint.si/wp-content/themes/martfury/fonts/work-sans-v8-latin-ext-900.svg#WorkSans) format('svg'); }
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated>.elementor-widget-wrap {padding: 0px !important;}
.header-layout-5 .site-header .primary-nav {width: 100% !important;}
.social-links-list a i {font-size: 22px;}
.videoWrapper {
position: relative;
padding-bottom: 56.25%; height: 0;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.carousel {
position: relative;
overflow: hidden;
}
.slot {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
z-index: 1;
overflow: hidden;
}
.slot .info-item {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: center;
margin: 0 25px;
text-align: left;
}
.slot .info-content p {
margin: 0px;
color: black;
font-size: 16px;
}
.slot .info-content h3 {
font-size: 19px;
}
.slot .info-item i {
color: #dc3f2e;
}
.slot .info-content {
margin-left: 15px;
}
.slot.next {
display: none;
opacity: 0;
z-index: 2;
}
.slot .item {
position: absolute;
bottom: 0;
left: 0;
right: 0;
top: 0;
background: #000;
}
.slot .item a {
color: #fff;
vertical-align: middle;
}
* {
margin: 0;
padding: 0;
}
.carousel {
width: 100%;
height: 58px;
font-size: 27px;
text-align: center;
}
button.buy_now_button.button.disabled.wc-variation-selection-needed {
display: inline-flex;
align-items: center;
justify-content: center;
}
.woocommerce div.product.product-type-variable p.out-of-stock {
display: none;
}
.woocommerce div.product.product-type-variable .woocommerce-variation-availability p.available-on-backorder {
display: block;
}
.woocommerce div.product.product-type-variable .woocommerce-variation-availability p.out-of-stock {
display: block;
}
.woocommerce p.stock.available-on-backorder {
color: #e7c025 !important;
}
.htmega-banner .banner-thumb a:after,
.htmega-banner .banner-thumb a:before {
display: none !important;
}
a.banner-urlwrap {display: block;}
.br_alabel i.template-i-after.fa.fa-minus-square-o {
background: none !important;
height: 0;
position: relative;
padding-right: 5px;
}
.br_alabel i.template-i-after.fa.fa-repeat {
background: none !important;
height: 0;
position: relative;
padding-right: 5px;
}
@media screen and (max-width: 992px) {
.br_alabel_label.br_alabel_left {
float: unset;
}
.br_alabel_label.br_alabel_left > span {
text-align: left !important;
}
}
.grecaptcha-badge { visibility: hidden; } .mf-background-primary {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.btn-primary,
.btn {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
}
.btn-primary-small {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 40px;
line-height: 39px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
}
.btn-primary-outline {
height: 50px;
line-height: 50px;
padding: 0 25px;
border: 1px solid #bfbfbf;
background-color: transparent;
color: #000;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
}
.btn-primary-outline:hover {
color: #000;
}
.btn-primary-small-outline {
height: 40px;
line-height: 39px;
padding: 0 25px;
border: 1px solid #bfbfbf;
background-color: transparent;
color: #000;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
}
.btn-primary-small-outline:hover {
color: #000;
}
.mf-loading {
position: relative;
}
.mf-loading:before {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
border-color: var(--mf-border-primary-color) var(--mf-border-primary-color) var(--mf-border-primary-color) transparent;
border-width: 2px;
width: 40px;
height: 40px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.mf-vc-loading {
position: relative;
}
.mf-vc-loading .mf-vc-loading--wrapper {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40px;
height: 40px;
}
.mf-vc-loading .mf-vc-loading--wrapper:before {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
border-color: var(--mf-border-primary-color) var(--mf-border-primary-color) var(--mf-border-primary-color) transparent;
border-width: 2px;
width: 100%;
height: 100%;
position: absolute;
}
@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
} @-moz-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
} @-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
} @-ms-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
} @-o-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes mf-spin-fast {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
50% {
-webkit-transform: rotate(900deg);
transform: rotate(900deg);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
to {
-webkit-transform: rotate(1800deg);
transform: rotate(1800deg);
}
}
@-webkit-keyframes mf-spin-fast {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
50% {
-webkit-transform: rotate(900deg);
transform: rotate(900deg);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
to {
-webkit-transform: rotate(1800deg);
transform: rotate(1800deg);
}
}
@-o-keyframes mf-spin-fast {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
50% {
-webkit-transform: rotate(900deg);
transform: rotate(900deg);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
to {
-webkit-transform: rotate(1800deg);
transform: rotate(1800deg);
}
}
@-ms-keyframes mf-spin-fast {
0% {
-webkit-transform: rotate(0);
transform: rotate(0);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
50% {
-webkit-transform: rotate(900deg);
transform: rotate(900deg);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
to {
-webkit-transform: rotate(1800deg);
transform: rotate(1800deg);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
transform: none;
}
} .slick-slider {
position: relative;
display: block;
box-sizing: border-box;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-ms-touch-action: pan-y;
touch-action: pan-y;
-webkit-tap-highlight-color: transparent;
}
.slick-list {
position: relative;
overflow: hidden;
display: block;
margin: 0;
padding: 0;
}
.slick-list:focus {
outline: none;
}
.slick-list.dragging {
cursor: pointer;
cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0);
-o-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
.slick-track {
position: relative;
left: 0;
top: 0;
display: block;
}
.slick-track:before, .slick-track:after {
content: "";
display: table;
}
.slick-track:after {
clear: both;
}
.slick-loading .slick-track {
visibility: hidden;
}
.slick-slide {
float: left;
height: 100%;
min-height: 1px;
display: none;
}
[dir="rtl"] .slick-slide {
float: right;
}
.slick-slide img {
display: block;
}
.slick-slide.slick-loading img {
display: none;
}
.slick-slide.dragging img {
pointer-events: none;
}
.slick-initialized .slick-slide {
display: block;
}
.slick-loading .slick-slide {
visibility: hidden;
}
.slick-vertical .slick-slide {
display: block;
height: auto;
border: 1px solid transparent;
}
.slick-slide:focus {
outline: 0;
}
.slick-arrow.slick-hidden {
display: none;
}
.slick-dots {
list-style: none;
padding-left: 0;
margin-top: 20px;
margin-bottom: 0;
text-align: center;
}
.slick-dots li {
display: inline-block;
padding: 0 5px;
cursor: pointer;
}
.slick-dots li button {
width: 10px;
height: 10px;
border: 1px solid var(--mf-border-primary-color);
background-color: transparent;
border-radius: 50%;
transition: 0.5s;
display: block;
overflow: hidden;
text-indent: -9999px;
font-size: 0;
padding: 0;
}
.slick-dots li:hover button, .slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
.slick-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
} #nprogress {
pointer-events: none;
}
#nprogress .bar {
background-color: var(--mf-background-primary-color);
position: fixed;
z-index: 9999;
top: 0;
left: 0;
width: 100%;
height: 3px;
} #nprogress .peg {
display: block;
position: absolute;
right: 0px;
width: 100px;
height: 100%;
box-shadow: 0 0 10px var(--mf-border-primary-color), 0 0 5px var(--mf-border-primary-color);
opacity: 1.0;
-webkit-transform: rotate(3deg) translate(0px, -4px);
-ms-transform: rotate(3deg) translate(0px, -4px);
transform: rotate(3deg) translate(0px, -4px);
} #nprogress .spinner {
display: none;
}
.nprogress-custom-parent {
overflow: hidden;
position: relative;
}
.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
position: absolute;
}
@-webkit-keyframes nprogress-spinner {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes nprogress-spinner {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
} .col-xs-1-5, .col-sm-1-5, .col-md-1-5, .col-lg-1-5,
.col-xs-2-5, .col-sm-2-5, .col-md-2-5, .col-lg-2-5,
.col-xs-3-5, .col-sm-3-5, .col-md-3-5, .col-lg-3-5,
.col-xs-4-5, .col-sm-4-5, .col-md-4-5, .col-lg-4-5 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col-xs-1-5 {
width: 20%;
float: left;
}
.col-xs-2-5 {
width: 40%;
float: left;
}
.col-xs-3-5 {
width: 60%;
float: left;
}
.col-xs-4-5 {
width: 80%;
float: left;
}
@media (min-width: 768px) {
.col-sm-1-5 {
width: 20%;
float: left;
}
.col-sm-2-5 {
width: 40%;
float: left;
}
.col-sm-3-5 {
width: 60%;
float: left;
}
.col-sm-4-5 {
width: 80%;
float: left;
}
}
@media (min-width: 992px) {
.col-md-1-5 {
width: 20%;
float: left;
}
.col-md-2-5 {
width: 40%;
float: left;
}
.col-md-3-5 {
width: 60%;
float: left;
}
.col-md-4-5 {
width: 80%;
float: left;
}
}
@media (min-width: 1200px) {
.col-lg-1-5 {
width: 20%;
float: left;
}
.col-lg-2-5 {
width: 40%;
float: left;
}
.col-lg-3-5 {
width: 60%;
float: left;
}
.col-lg-4-5 {
width: 80%;
float: left;
}
}
.row-flex {
display: flex;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px;
}
.col-flex-xs-12,
.col-flex-sm-12,
.col-flex-md-12,
.col-flex-lg-12 {
flex: 0 0 100%;
max-width: 100%;
}
.col-flex-xs-11,
.col-flex-sm-11,
.col-flex-md-11,
.col-flex-lg-11 {
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-flex-xs-10,
.col-flex-sm-10,
.col-flex-md-10,
.col-flex-lg-10 {
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-flex-xs-9,
.col-flex-sm-9,
.col-flex-md-9,
.col-flex-lg-9 {
flex: 0 0 75%;
max-width: 75%;
}
.col-flex-xs-8,
.col-flex-sm-8,
.col-flex-md-8,
.col-flex-lg-8 {
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-flex-xs-7,
.col-flex-sm-7,
.col-flex-md-7,
.col-flex-lg-7 {
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-flex-xs-6,
.col-flex-sm-6,
.col-flex-md-6,
.col-flex-lg-6 {
flex: 0 0 50%;
max-width: 50%;
}
.col-flex-xs-5,
.col-flex-sm-5,
.col-flex-md-5,
.col-flex-lg-5 {
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-flex-xs-4,
.col-flex-sm-4,
.col-flex-md-4,
.col-flex-lg-4 {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-flex-xs-3,
.col-flex-sm-3,
.col-flex-md-3,
.col-flex-lg-3 {
flex: 0 0 25%;
max-width: 25%;
}
.col-flex-xs-2,
.col-flex-sm-2,
.col-flex-md-2,
.col-flex-lg-2 {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-flex-xs-1,
.col-flex-sm-1,
.col-flex-md-1,
.col-flex-lg-1 {
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-flex-xs-1-5, .col-flex-sm-1-5, .col-flex-md-1-5, .col-flex-lg-1-5,
.col-flex-xs-2-5, .col-flex-sm-2-5, .col-flex-md-2-5, .col-flex-lg-2-5,
.col-flex-xs-3-5, .col-flex-sm-3-5, .col-flex-md-3-5, .col-flex-lg-3-5,
.col-flex-xs-4-5, .col-flex-sm-4-5, .col-flex-md-4-5, .col-flex-lg-4-5 {
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
.col-flex-xs-12 {
flex: 0 0 100%;
max-width: 100%;
}
.col-flex-xs-11 {
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-flex-xs-10 {
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-flex-xs-9 {
flex: 0 0 75%;
max-width: 75%;
}
.col-flex-xs-8 {
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-flex-xs-7 {
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-flex-xs-6 {
flex: 0 0 50%;
max-width: 50%;
}
.col-flex-xs-5 {
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-flex-xs-4 {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-flex-xs-3 {
flex: 0 0 25%;
max-width: 25%;
}
.col-flex-xs-2 {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-flex-xs-1 {
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-flex-xs-1-5 {
flex: 0 0 20%;
max-width: 20%;
}
.col-flex-xs-2-5 {
flex: 0 0 40%;
max-width: 40%;
}
.col-flex-xs-3-5 {
flex: 0 0 60%;
max-width: 60%;
}
.col-flex-xs-4-5 {
flex: 0 0 80%;
max-width: 80%;
}
@media (min-width: 768px) {
.col-flex-sm-12 {
flex: 0 0 100%;
max-width: 100%;
}
.col-flex-sm-11 {
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-flex-sm-10 {
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-flex-sm-9 {
flex: 0 0 75%;
max-width: 75%;
}
.col-flex-sm-8 {
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-flex-sm-7 {
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-flex-sm-6 {
flex: 0 0 50%;
max-width: 50%;
}
.col-flex-sm-5 {
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-flex-sm-4 {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-flex-sm-3 {
flex: 0 0 25%;
max-width: 25%;
}
.col-flex-sm-2 {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-flex-sm-1 {
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-flex-sm-1-5 {
flex: 0 0 20%;
max-width: 20%;
}
.col-flex-sm-2-5 {
flex: 0 0 40%;
max-width: 40%;
}
.col-flex-sm-3-5 {
flex: 0 0 60%;
max-width: 60%;
}
.col-flex-sm-4-5 {
flex: 0 0 80%;
max-width: 80%;
}
}
@media (min-width: 992px) {
.col-flex-md-12 {
flex: 0 0 100%;
max-width: 100%;
}
.col-flex-md-11 {
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-flex-md-10 {
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-flex-md-9 {
flex: 0 0 75%;
max-width: 75%;
}
.col-flex-md-8 {
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-flex-md-7 {
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-flex-md-6 {
flex: 0 0 50%;
max-width: 50%;
}
.col-flex-md-5 {
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-flex-md-4 {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-flex-md-3 {
flex: 0 0 25%;
max-width: 25%;
}
.col-flex-md-2 {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-flex-md-1 {
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-flex-md-1-5 {
flex: 0 0 20%;
max-width: 20%;
}
.col-flex-md-2-5 {
flex: 0 0 40%;
max-width: 40%;
}
.col-flex-md-3-5 {
flex: 0 0 60%;
max-width: 60%;
}
.col-flex-md-4-5 {
flex: 0 0 80%;
max-width: 80%;
}
}
@media (min-width: 1200px) {
.col-flex-lg-12 {
flex: 0 0 100%;
max-width: 100%;
}
.col-flex-lg-11 {
flex: 0 0 91.66667%;
max-width: 91.66667%;
}
.col-flex-lg-10 {
flex: 0 0 83.33333%;
max-width: 83.33333%;
}
.col-flex-lg-9 {
flex: 0 0 75%;
max-width: 75%;
}
.col-flex-lg-8 {
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.col-flex-lg-7 {
flex: 0 0 58.33333%;
max-width: 58.33333%;
}
.col-flex-lg-6 {
flex: 0 0 50%;
max-width: 50%;
}
.col-flex-lg-5 {
flex: 0 0 41.66667%;
max-width: 41.66667%;
}
.col-flex-lg-4 {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.col-flex-lg-3 {
flex: 0 0 25%;
max-width: 25%;
}
.col-flex-lg-2 {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.col-flex-lg-1 {
flex: 0 0 8.33333%;
max-width: 8.33333%;
}
.col-flex-lg-1-5 {
flex: 0 0 20%;
max-width: 20%;
}
.col-flex-lg-2-5 {
flex: 0 0 40%;
max-width: 40%;
}
.col-flex-lg-3-5 {
flex: 0 0 60%;
max-width: 60%;
}
.col-flex-lg-4-5 {
flex: 0 0 80%;
max-width: 80%;
}
}
.col-mf-7.un-7-cols {
width: 14.2857%;
} * {
box-sizing: border-box;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background: transparent;
}
a:active,
a:hover,
a:focus {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
max-width: 100%;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
-moz-box-sizing: content-box;
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
outline: none;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
border-width: 1px 0 0 1px;
margin: 0 0 1.5em;
}
caption,
td,
th {
padding: 0;
font-weight: normal;
text-align: left;
}
table,
th,
td {
border: 1px solid #d1d1d1;
}
th {
border-width: 0 1px 1px 0;
font-weight: 700;
}
td {
border-width: 0 1px 1px 0;
}
th,
td {
padding: 0.4375em;
}
dl {
margin: 0 0 1.75em;
}
dt {
font-weight: 700;
}
dd {
margin: 0 0 1.75em;
}
blockquote {
border-left: 4px solid var(--mf-border-primary-color);
border-right: 4px solid var(--mf-border-primary-color);
border-right-width: 0;
padding: 0 40px 0 60px;
margin: 0 0 10px;
color: #000;
font-size: 20px;
font-family: "Libre Baskerville", "Times New Roman", Times, serif;
}
blockquote cite {
display: block;
font-style: normal;
color: #000;
font-size: 14px;
text-transform: uppercase;
font-family: "Work Sans", Arial, sans-serif;
font-weight: 600;
margin-top: 20px;
}
blockquote cite:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
padding-right: 15px;
color: #999;
}
.wp-block-quote.is-style-large cite:before {
font-size: 18px;
}
.wp-block-code {
font-family: "Work Sans", Arial, sans-serif;
font-size: 14px;
color: #23282d;
padding: .8em 1em;
border: 1px solid #e2e4e7;
border-radius: 4px;
} :root {
--mf-primary-color: #fcb800;
--mf-dark-color: #000;
--mf-light-color: #fff;
--mf-gray-color: #666;
--mf-background-primary-color: #fcb800;
--mf-background-primary-text-color: #000;
--mf-background-light-color: #fff;
--mf-border-primary-color: #fcb800;
}
body {
color: #666;
font-size: 14px;
font-family: "Work Sans", Arial, sans-serif;
line-height: 1.6;
background: #fff;
word-wrap: break-word;
}
a {
transition: 0.5s;
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: none;
color: var(--mf-primary-color);
}
a:focus {
text-decoration: none;
}
a img {
border: none;
}
img {
max-width: 100%;
}
img.loaded {
height: auto;
}
img:not(.lazy) {
height: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 700;
font-family: "Work Sans", Arial, sans-serif;
line-height: 1.2;
color: var(--mf-dark-color);
}
h1 {
font-size: 36px;
}
h2 {
font-size: 30px;
}
h3 {
font-size: 24px;
}
h4 {
font-size: 18px;
}
h5 {
font-size: 14px;
}
h6 {
font-size: 12px;
}
ul {
list-style-type: square;
padding-left: 20px;
}
ol {
padding-left: 20px;
}
li {
margin-bottom: 7px;
}
p {
margin-bottom: 1.7em;
margin-top: 0;
}  .martfury-modal {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
display: none;
z-index: -1;
}
.martfury-modal.open {
display: block;
z-index: 999999;
}
.mf-quick-view-modal.open {
z-index: 9999;
}
.mf-quick-view-modal .mf-loading {
display: none;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 10;
}
.mf-quick-view-modal .close-modal {
position: absolute;
top: 6px;
right: 10px;
z-index: 999;
font-size: 26px;
color: #666;
opacity: 0;
}
.mf-quick-view-modal .close-modal:hover {
color: #000;
}
.mf-quick-view-modal.loaded .close-modal {
opacity: 1;
}
.mf-quick-view-modal.loading .mf-loading {
display: block;
}
.mf-quick-view-modal .modal-header {
display: none;
}
.mf-quick-view-modal .mf-modal-overlay {
background-color: rgba(0, 0, 0, 0.85);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mf-quick-view-modal .modal-content {
transition: transform 0.5s;
transform: translate(-50%, -50%);
position: absolute;
top: 50%;
left: 50%;
width: 100%;
padding-top: 0;
background-color: transparent;
max-width: 1000px;
}
.mf-quick-view-modal div.product {
background-color: #fff;
width: 100%;
padding-left: 0;
padding-right: 0;
}
.mf-quick-view-modal div.product .product-degree-images,
.mf-quick-view-modal div.product .product-image-ms {
display: none;
}
.mf-quick-view-modal div.product .woocommerce-product-gallery {
min-height: 430px;
}
.mf-quick-view-modal div.product .woocommerce-product-gallery.images {
padding-left: 0;
padding-bottom: 0;
}
.mf-quick-view-modal div.product .woocommerce-product-gallery.images .woocommerce-product-gallery__image:nth-child(n+2) {
width: 100%;
}
.mf-quick-view-modal div.product .woocommerce-product-gallery__wrapper {
flex-direction: column;
}
.mf-quick-view-modal div.product .woocommerce-product-gallery__wrapper:not(.slick-initialized) .woocommerce-product-gallery__image:not(:first-child) {
display: none;
}
.mf-quick-view-modal div.product .product_title a {
color: #000;
}
.mf-quick-view-modal div.product .entry-summary {
position: absolute;
top: 0;
right: 0;
bottom: 0;
overflow: auto;
padding: 30px 30px 0;
}
.mf-quick-view-modal div.product ::-webkit-scrollbar {
background: transparent;
width: 7px;
}
.mf-quick-view-modal div.product ::-webkit-scrollbar-thumb {
background-color: #ccc;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart div.quantity {
margin-right: 20px;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .single_add_to_cart_button {
min-width: 180px;
background-color: #000;
color: #fff;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .buy_now_button {
margin-left: 20px;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-wishlist-button {
clear: both;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-wishlist-button .yith-wcwl-add-to-wishlist,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-wishlist-button .wcboost-wishlist-button {
margin-left: 0;
padding-top: 10px;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-wishlist-button,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-compare-button {
float: left;
margin-top: 0;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-compare-button {
padding-top: 16px;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-wishlist-button,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-compare-button .compare,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-products-compare-button {
width: auto;
height: auto;
overflow: visible;
display: flex;
align-items: center;
line-height: 1;
padding: 0;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a:before,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a:before,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a:before,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-wishlist-button:before,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-compare-button .compare:before,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-products-compare-button:before {
padding-right: 10px;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a span,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a span,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a span,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-wishlist-button span,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .mf-compare-button .compare span,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-products-compare-button span {
display: block;
padding-left: 10px;
color: #999;
}
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-products-compare-button__text,
.mf-quick-view-modal div.product.mf-has-buy-now form.cart .actions-button .wcboost-wishlist-button__text {
font-size: 16px;
}
.mf-quick-view-modal div.product .mf-entry-product-header .entry-left {
max-width: 100%;
}
.mf-quick-view-modal div.product .woocommerce-product-gallery__image {
width: 100%;
}
.mf-quick-view-modal div.product .slick-slider .slick-arrow {
position: absolute;
font-size: 30px;
cursor: pointer;
color: #999;
transition: 0.5s;
z-index: 999;
opacity: 0;
}
.mf-quick-view-modal div.product .slick-slider .slick-arrow:hover {
color: #000;
}
.mf-quick-view-modal div.product .slick-slider .slick-disabled {
color: #ccc;
cursor: auto;
}
.mf-quick-view-modal div.product .slick-slider .slick-disabled:hover {
color: #ccc;
}
.mf-quick-view-modal div.product .slick-slider .slick-prev-arrow {
left: -20px;
}
.mf-quick-view-modal div.product .slick-slider .slick-next-arrow {
right: -20px;
left: auto;
}
.mf-quick-view-modal div.product .slick-slider:hover .slick-prev-arrow {
left: 5px;
opacity: 1;
}
.mf-quick-view-modal div.product .slick-slider:hover .slick-next-arrow {
right: 5px;
opacity: 1;
}
.mf-quick-view-modal.woocommerce .ribbons .ribbon {
top: 20px;
}
.mf-newsletter-popup {
display: block;
opacity: 0;
transition: opacity 0.35s;
z-index: -9999;
transform: scaleX(0);
}
.mf-newsletter-popup.open {
opacity: 1;
transform: scaleX(1);
}
.mf-newsletter-popup .mf-modal-overlay {
background-color: rgba(0, 0, 0, 0.85);
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mf-newsletter-popup .modal-content {
transition: transform 0.5s;
transform: translate(-50%, -50%);
position: absolute;
top: 50%;
left: 50%;
width: 100%;
padding-top: 0;
background-color: #fff;
max-width: 830px;
}
.mf-newsletter-popup .modal-content .close-modal {
position: absolute;
top: 10px;
right: 10px;
width: 40px;
height: 40px;
text-align: center;
line-height: 42px;
background-color: #000;
color: #fff;
z-index: 10;
}
.mf-newsletter-popup .newletter-content {
padding: 55px 55px 30px;
text-align: center;
position: relative;
}
.mf-newsletter-popup .newletter-content .n-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background-position: center;
background-size: cover;
}
.mf-newsletter-popup .newletter-content .nl-inner {
width: 360px;
}
.mf-newsletter-popup .newletter-content .n-desc {
margin-bottom: 35px;
}
.mf-newsletter-popup .newletter-content .n-desc h3, .mf-newsletter-popup .newletter-content .n-desc h2 {
font-weight: 400;
line-height: 1;
margin: 0 0 20px;
}
.mf-newsletter-popup .newletter-content .n-desc p {
white-space: pre-line;
margin-bottom: 0;
}
.mf-newsletter-popup .newletter-content .mc4wp-form input[type=email] {
width: 100%;
text-align: center;
height: 44px;
line-height: 44px;
margin-bottom: 20px;
border-color: #c9c9c9;
}
.mf-newsletter-popup .newletter-content .mc4wp-form input[type="submit"] {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
height: 40px;
line-height: 39px;
padding: 0 25px;
border-radius: 4px;
}
.mf-newsletter-popup .newletter-content .n-close {
display: inline-block;
margin-top: 45px;
color: #000;
position: relative;
padding-left: 25px;
}
.mf-newsletter-popup .newletter-content .n-close:before {
position: absolute;
top: 3px;
left: 0;
width: 16px;
height: 16px;
border: 1px solid #000;
content: "";
border-radius: 3px;
}
body .notifyjs-corner {
z-index: 99999;
}
.notifyjs-martfury-base {
font-weight: 400;
position: relative;
padding: 15px 40px 15px 60px;
margin-bottom: 10px;
box-shadow: 0 4px 10px 0 rgba(3, 3, 3, 0.1);
max-width: 450px;
}
.notifyjs-martfury-base .message-icon {
position: absolute;
left: 20px;
top: 20px;
font-size: 20px;
}
.notifyjs-martfury-base .button.wc-forward {
display: none;
}
.notifyjs-martfury-base .btn-button {
padding-left: 5px;
color: #299c77;
text-decoration: underline;
}
.notifyjs-martfury-base .close {
position: absolute;
top: 20px;
right: 15px;
font-size: 10px;
}
.notifyjs-martfury-base .message-box {
display: inline-block;
}
.notifyjs-martfury-success {
color: #299c77;
background-color: #bff9d0;
}
.notifyjs-martfury-success .message-icon {
fill: #299c77;
stroke: #299c77;
}
.notifyjs-martfury-error {
color: #d45757;
background-color: #ffd0d0;
}
.notifyjs-martfury-error .message-icon {
fill: #d45757;
stroke: #d45757;
}
.notifyjs-martfury-error li {
list-style: none;
}
.notifyjs-martfury-error .btn-button {
color: #d45757;
} .alignnone {
margin: 0;
}
.aligncenter,
div.aligncenter,
.aligncenter img {
display: block;
margin: 1em auto;
}
.alignright {
float: right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
.wp-caption {
padding: 5px;
max-width: 100%;
text-align: center;
}
.wp-caption img {
display: block;
width: 100%;
height: auto;
margin: 0;
}
.wp-caption-text {
font-size: small;
margin: 0;
padding: 5px 0 0;
}
.gallery-caption {
display: block;
}
.bypostauthor {
display: block;
}
.sticky {
display: block;
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; }
.gallery {
margin-bottom: 1.5em;
margin-left: -7px;
margin-right: -7px;
}
.gallery-item {
display: inline-block;
text-align: center;
vertical-align: top;
width: 100%;
margin: 0;
padding: 7px;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-3 .gallery-item {
max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-caption {
display: block;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
display: none;
} .top-promotion .promotion-content {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 0;
}
.top-promotion .promotion-content .close {
margin-left: 25px;
font-size: 16px;
display: block;
cursor: pointer;
}
.top-promotion .promotion-content .close:hover {
color: #000;
}
.top-promotion .promotion-content .promo-link {
display: flex;
align-items: center;
}
.top-promotion .promotion-content .link {
background-color: #f14705;
color: #fff;
padding: 0 17px;
transition: all 0.5s;
font-weight: 600;
text-align: center;
border: none;
height: 35px;
line-height: 35px;
border-radius: 4px;
font-size: 14px;
display: block;
}
.top-promotion .promo-inner {
display: flex;
align-items: center;
}
.top-promotion .promo-left {
display: flex;
align-items: center;
margin-right: 80px;
}
.top-promotion .promo-left .percent {
margin: 0 15px 0 0;
line-height: 1;
font-weight: 300;
font-size: 48px;
color: #f14705;
}
.top-promotion .promo-left h3 {
font-weight: 400;
font-size: 24px;
margin: 0;
line-height: 1;
}
.top-promotion .promo-right h4 {
margin: 0;
font-weight: 400;
font-size: 18px;
color: #f14705;
}
.top-promotion.style-2 .promotion-content {
padding: 12px 0;
}
.top-promotion.style-2 .promo-left {
margin-right: 25px;
}
.top-promotion.style-2 .promo-left .percent {
-webkit-text-stroke: 1.5px #fff;
color: #f92300;
font-size: 48px;
font-weight: 700;
letter-spacing: -3px;
text-shadow: 0px 5px 3px rgba(0, 0, 0, 0.3);
}
.top-promotion.style-2 .promo-left .label {
-webkit-text-stroke: 1px #3078a6;
color: #ffff;
text-transform: uppercase;
font-weight: 700;
}
.top-promotion.style-2 .promo-left h3 {
color: #0f5887;
font-size: 26px;
font-weight: 600;
text-transform: uppercase;
}
.top-promotion.style-2 .promo-right {
background-color: #ffc119;
padding: 5px 10px;
border: 1px dashed #9f8232;
}
.top-promotion.style-2 .promo-right .label {
font-weight: 500;
color: #0f5887;
line-height: 1;
}
.top-promotion.style-2 .promo-right h4 {
color: #5b8800;
font-size: 18px;
font-weight: 600;
}
.top-promotion.style-2 .promotion-content .link {
background-color: #669900;
}
.top-promotion.style-2 .promotion-content .close {
color: #0f5887;
}
.topbar {
color: var(--mf-gray-color);
background-color: var(--mf-background-light-color);
}
.topbar a {
color: var(--mf-gray-color);
}
.topbar a:hover {
color: var(--mf-dark-color);
}
.topbar .topbar-row {
display: flex;
align-items: center;
flex-wrap: nowrap;
justify-content: space-between;
}
.topbar .topbar-row:before, .topbar .topbar-row:after {
display: none;
}
.topbar .topbar-sidebar {
padding-top: 17px;
padding-bottom: 17px;
display: flex;
flex-wrap: wrap;
align-items: center;
width: auto;
}
.topbar .widget {
margin-bottom: 0;
line-height: 1;
padding: 0 20px;
position: relative;
}
.topbar .widget p {
margin-bottom: 0;
}
.topbar .widget:after {
background-color: #e1e1e1;
width: 2px;
height: 14px;
content: "";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}
.topbar .widget:last-child {
padding-right: 0;
}
.topbar .widget:last-child:after {
display: none;
}
.topbar .widget:first-child {
padding-left: 0;
}
.topbar .topbar-mobile {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}
.topbar .topbar-mobile .widget:last-child {
padding-right: 0;
}
.topbar .topbar-mobile .widget:last-child:after {
display: none;
}
.topbar #lang_sel > ul > li,
.topbar .lang_sel > ul > li {
margin-bottom: 0;
}
.topbar #lang_sel > ul > li a,
.topbar #lang_sel > ul > li a:visited,
.topbar .lang_sel > ul > li a,
.topbar .lang_sel > ul > li a:visited {
text-transform: none;
padding-right: 20px;
display: block;
}
.topbar #lang_sel > ul > li ul,
.topbar .lang_sel > ul > li ul {
width: 100%;
border-top: 19px solid transparent;
border-bottom: 1px solid #e7e7e7;
min-width: 120px;
left: -15px;
white-space: nowrap;
}
.topbar #lang_sel > ul > li ul li,
.topbar .lang_sel > ul > li ul li {
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
padding: 4px 15px !important;
margin-bottom: 0;
background-color: #fff;
}
.topbar #lang_sel > ul > li ul li:first-child,
.topbar .lang_sel > ul > li ul li:first-child {
border-top: 1px solid #e7e7e7;
padding-top: 10px !important;
}
.topbar #lang_sel > ul > li ul li:last-child,
.topbar .lang_sel > ul > li ul li:last-child {
padding-bottom: 10px !important;
}
.topbar .mf-currency-widget ul li a {
color: var(--mf-gray-color);
}
.topbar ul.menu > li {
display: inline-block;
padding: 0 5px;
position: relative;
}
.topbar ul.menu > li > a {
color: var(--mf-gray-color);
}
.topbar ul.menu > li > a:hover {
color: var(--mf-gray-color);
}
.topbar ul.menu > li.menu-item-has-children > a {
position: relative;
padding-right: 20px;
}
.topbar ul.menu > li.menu-item-has-children > a:after {
content: "\e93a";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
padding-left: 5px;
color: #000;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
}
.topbar ul.menu > li:hover > ul {
-webkit-transform: scaleX(1);
-ms-transform: scaleX(1);
transform: scaleX(1);
top: 100%;
}
.topbar ul.menu ul {
top: 150%;
z-index: 99999;
height: auto;
-webkit-transform: scaleX(0);
-ms-transform: scaleX(0);
transform: scaleX(0);
position: absolute;
margin: 0;
padding: 0;
border: 0;
-webkit-transition: top 0.35s;
transition: top 0.35s;
border-top: 18px solid transparent;
border-bottom: 1px solid #e7e7e7;
min-width: 120px;
left: 0;
background-color: transparent;
}
.topbar ul.menu ul li {
padding: 0 15px;
background-color: #fff;
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
}
.topbar ul.menu ul li:first-child {
padding-top: 15px;
border-top: 1px solid #e7e7e7;
}
.topbar ul.menu ul li:last-child {
padding-bottom: 15px;
}
.topbar ul.menu ul li a {
color: #666 !important;
white-space: nowrap;
display: inline-block;
padding: 8px 0;
}
.topbar ul.menu ul li a:hover {
color: #000;
}
.topbar ul.menu ul ul {
display: none;
}
.topbar.topbar-dark {
--mf-gray-color: #000;
}
.topbar.topbar-light {
--mf-gray-color: #fff;
--mf-dark-color: #fff;
}
.topbar-right .widget_nav_menu:last-child ul.menu ul {
right: 0;
left: auto;
}
.header-bar {
display: flex;
align-items: center;
min-height: 50px;
color: var(--mf-dark-color);
justify-content: flex-end;
background-color: transparent;
}
.header-bar a {
color: var(--mf-dark-color);
}
.header-bar ul.menu ul {
right: 0;
width: auto;
left: auto;
min-width: 170px;
border-radius: 0;
box-shadow: none;
font-size: 14px;
border-top: none;
}
.header-bar ul.menu ul ul {
transition: right 0.3s ease 0s, opacity 0.3s;
right: 110%;
left: auto;
top: 0;
box-shadow: none;
display: block;
}
.header-bar ul.menu li {
padding: 18px 0;
text-align: left;
margin: 0;
}
.header-bar ul.menu li > a {
color: var(--mf-dark-color);
}
.header-bar ul.menu li > a:hover {
color: var(--mf-dark-color);
}
.header-bar ul.menu li li {
text-align: left;
display: block;
padding: 0 20px;
position: relative;
}
.header-bar ul.menu li li a {
font-size: 14px;
text-transform: none;
transition: 0.5s;
position: relative;
background-color: transparent;
white-space: nowrap;
line-height: 1;
}
.header-bar ul.menu li li:hover > ul {
top: -10px;
right: 100%;
transform: scaleX(1);
}
.header-bar ul.menu li li:hover > ul li a:hover:before {
left: -30px;
}
.header-bar #lang_sel a.lang_sel_sel, .header-bar .lang_sel a.lang_sel_sel {
color: var(--mf-dark-color);
}
.header-bar .widget-woocommerce-currency-switcher .woocommerce-currency-switcher-form .wSelect-option-icon {
color: var(--mf-dark-color);
}
.header-bar .widget-woocommerce-currency-switcher .woocommerce-currency-switcher-form .wSelect-option-icon.wSelect-selected:after {
color: var(--mf-dark-color);
}
body:not(.rtl) .header-bar .widget:last-child {
padding-right: 0 !important;
}
.site-header {
background-color: var(--mf-background-light-color);
position: relative;
}
.site-header .site-title,
.site-header .site-description {
margin: 0;
line-height: 0;
text-indent: -9999px;
}
.site-header .primary-nav {
float: left;
}
.site-header .primary-nav > ul > li {
padding-top: 17px;
padding-bottom: 17px;
}
.site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.site-header .primary-nav > ul > li > a {
font-size: 16px;
color: var(--mf-dark-color);
line-height: 1;
display: flex;
align-items: flex-end;
}
.site-header .primary-nav > ul > li > a i {
padding-right: 8px;
font-size: 17px;
line-height: 1;
}
.site-header .primary-nav > ul > li > a .mf-svg-icon {
padding-right: 8px;
line-height: 1;
}
.site-header .primary-nav > ul > li > a:hover {
color: var(--mf-gray-color);
}
.site-header .primary-nav > ul > li.menu-item-has-children > a {
position: relative;
margin-right: 22px;
}
.site-header .primary-nav > ul > li.menu-item-has-children > a:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
right: -22px;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
}
.site-header .primary-nav > ul > li.menu-item-has-children > a:before {
content: "";
position: absolute;
top: 120%;
left: calc(50% - 5px);
width: 13px;
height: 13px;
transform: rotate(45deg);
border-left: 1px solid #cccccc;
border-top: 1px solid #cccccc;
background-color: #fff;
z-index: -1;
padding: 0;
margin: 11px -7px 0 0;
transition: top 0.3s ease 0s, opacity 0.1s;
opacity: 0;
}
.site-header .primary-nav > ul > li.menu-item-has-children:hover > a:before {
top: 100%;
opacity: 1;
z-index: 9999;
}
.site-header .primary-nav > ul > li.current-menu-parent > a,
.site-header .primary-nav > ul > li.current-menu-item > a,
.site-header .primary-nav > ul > li.current-menu-ancestor > a {
color: var(--mf-gray-color);
}
.site-header .products-cats-menu .cats-menu-title {
color: var(--mf-dark-color);
font-size: 16px;
font-weight: 600;
margin: 0;
line-height: 1;
position: relative;
cursor: pointer;
display: flex;
align-items: center;
}
.site-header .products-cats-menu .cats-menu-title .text {
color: var(--mf-dark-color);
}
.site-header .products-cats-menu .cats-menu-title i {
display: inline-block;
font-size: 30px;
margin-right: 0;
}
.site-header .products-cats-menu .toggle-product-cats {
position: absolute;
top: 120%;
left: 0;
z-index: -999;
width: 100%;
opacity: 0;
transition: top 0.5s;
transform: scaleX(0);
}
.site-header .products-cats-menu .toggle-product-cats .menu {
border: 1px solid #d3d3d3;
background-color: #fff;
width: 100%;
}
.site-header .products-cats-menu.open .toggle-product-cats, .site-header .products-cats-menu.mf-closed:hover .toggle-product-cats {
opacity: 1;
z-index: 991;
top: 100%;
transform: scaleX(1);
}
.site-header .products-cats-menu .menu {
padding: 0;
margin: 0;
position: relative;
}
.site-header .products-cats-menu .menu > li {
margin: 0;
padding: 0 17px 0 20px;
position: relative;
display: block;
}
.site-header .products-cats-menu .menu > li:first-child {
padding-top: 10px;
}
.site-header .products-cats-menu .menu > li:last-child {
padding-bottom: 10px;
}
.site-header .products-cats-menu .menu > li > a {
line-height: 1;
color: #000;
padding: 9px 0;
display: flex;
align-items: center;
}
.site-header .products-cats-menu .menu > li > a > i {
font-size: 18px;
color: #000;
margin-right: 20px;
}
.site-header .products-cats-menu .menu > li > a .toggle-children {
display: none;
}
.site-header .products-cats-menu .menu > li.menu-item-has-children > a:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
color: #999;
font-size: 11px;
font-weight: 600;
}
.site-header .products-cats-menu .menu > li:hover > a {
color: var(--mf-primary-color);
}
.site-header .products-cats-menu .menu > li:hover > a:after {
color: #000;
}
.site-header .products-cats-menu .menu li {
margin-bottom: 0;
list-style: none;
}
.site-header .products-cats-menu .menu li:hover > ul {
opacity: 1;
z-index: 9999;
top: 0;
left: 100%;
transform: scaleX(1);
margin-top: -1px;
}
.site-header .products-cats-menu .menu li:first-child > ul {
left: 120%;
}
.site-header .products-cats-menu .menu li:first-child:hover > ul {
left: 100%;
}
.site-header .products-cats-menu .menu li.is-mega-menu {
position: static;
}
.site-header .products-cats-menu .menu li.is-mega-menu .dropdown-submenu {
left: 120%;
right: auto;
border: 1px solid #cccccc;
transform: scale(0);
}
.site-header .products-cats-menu .menu li.is-mega-menu:hover .dropdown-submenu {
left: 100%;
transform: scale(1);
}
.site-header .products-cats-menu .menu li.is-mega-menu > ul {
min-height: 100%;
}
.site-header .products-cats-menu .menu li.is-mega-menu > ul .sub-menu li:hover a {
padding-left: 5px;
}
.site-header .products-cats-menu .menu li .mega-menu-content .mr-col.col-md-6:nth-child(2n+1) {
clear: both;
}
.site-header .products-cats-menu .menu li ul {
padding: 10px 0;
transition: left 0.3s ease 0s, opacity 0.3s;
left: 110%;
top: 0;
}
.site-header .recently-viewed .mf-recently-products {
position: absolute;
top: 120%;
left: 15px;
right: 15px;
z-index: -999;
opacity: 0;
-webkit-transition: top 0.5s;
transition: top 0.5s;
transform: scaleX(0);
background-color: #fff;
border: 1px solid #ccc;
}
.site-header .recently-viewed .mf-recently-products.no-products .recently-header {
display: none;
}
.site-header .recently-viewed .mf-recently-products .mf-loading {
height: 100px;
}
.site-header .recently-viewed .mf-recently-products .mf-loading:before {
top: 33%;
}
.site-header .recently-viewed .mf-recently-products > .container {
padding-left: 0;
padding-right: 0;
}
.site-header .recently-viewed .mf-recently-products .product-list {
padding-bottom: 30px;
margin-bottom: 40px;
}
.site-header .recently-viewed .mf-recently-products .product-list.no-products {
margin-bottom: 0;
}
.site-header .recently-viewed .mf-recently-products .slick-arrow {
z-index: 9999;
}
.site-header .recently-viewed .recently-header {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 10;
justify-content: center;
}
.site-header .recently-viewed:hover .mf-recently-products {
top: 100%;
transform: scaleX(1);
z-index: 9999;
opacity: 1;
}
.site-header .recently-viewed:hover .recently-title:after {
transform: rotate(180deg) translateY(50%);
}
.site-header .recently-viewed .recently-title {
font-size: 16px;
font-weight: 400;
margin: 0;
line-height: 1;
position: relative;
padding: 18px 20px 18px 0;
cursor: pointer;
}
.site-header .recently-viewed .recently-title a {
color: #000;
}
.site-header .recently-viewed .recently-title:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
font-weight: 700;
transition: 0.2s;
}
.site-header .header-main {
padding-top: 20px;
padding-bottom: 20px;
background-color: var(--mf-background-light-color);
}
.site-header .header-main .sticky-logo {
display: none;
}
.site-header .header-row {
align-items: center;
display: flex;
}
.site-header .header-row:after, .site-header .header-row:before {
display: none;
}
.site-header .header-logo {
width: 22.5%;
display: flex;
align-items: stretch;
justify-content: space-between;
}
.site-header .header-logo .d-department {
display: flex;
align-items: center;
}
.site-header .header-logo .products-cats-menu {
position: relative;
}
.site-header .header-logo .products-cats-menu .cats-menu-title {
line-height: 25px;
margin: 0;
min-width: 30px;
cursor: pointer;
}
.site-header .header-logo .products-cats-menu .cats-menu-title:after {
content: "";
position: absolute;
top: 40px;
right: 22px;
width: 13px;
height: 13px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
border-left: 1px solid #cccccc;
border-top: 1px solid #cccccc;
background-color: #fff;
z-index: 9999;
padding: 0;
margin: 18px -7px 0 0;
transition: top 0.5s;
opacity: 0;
}
.site-header .header-logo .products-cats-menu:hover .cats-menu-title:after,
.site-header .header-logo .products-cats-menu:hover .toggle-product-cats {
top: 100%;
opacity: 1;
}
.site-header .header-logo .products-cats-menu .toggle-product-cats {
left: -225px;
padding-top: 25px;
top: 40px;
min-width: 270px;
margin-left: 15px;
}
.site-header .header-extras {
width: 77.5%;
display: flex;
align-items: center;
justify-content: space-between;
}
.site-header .product-extra-search {
width: 100%;
}
.site-header .product-extra-search .psearch-content {
display: flex;
width: 100%;
}
.site-header .product-extra-search .product-cat {
width: auto;
float: left;
position: relative;
height: 42px;
line-height: 42px;
cursor: pointer;
}
.site-header .product-extra-search .product-cat.active:hover .cats-search {
opacity: 1;
z-index: 9998;
top: 100%;
transform: scaleX(1);
}
.site-header .product-extra-search .product-cat.active:hover .product-cat-label:before {
z-index: 9999;
opacity: 1;
top: 100%;
}
.site-header .product-extra-search .cats-search {
-webkit-transition: top 0.3s;
transition: top 0.3s;
position: absolute;
left: 0;
top: 110%;
width: auto;
min-width: 200px;
opacity: 0;
z-index: -1;
transform: scaleX(0);
background-color: #fff;
padding: 0;
margin: 0;
border-top: 15px solid transparent;
}
.site-header .product-extra-search .cats-search ::-webkit-scrollbar {
background: transparent;
width: 7px;
}
.site-header .product-extra-search .cats-search ::-webkit-scrollbar-thumb {
background-color: #ccc;
}
.site-header .product-extra-search .cats-search li.product_cat {
max-height: 450px;
overflow-y: auto;
overflow-x: hidden;
border: 1px solid #ccc;
margin: 0;
padding: 15px 0;
}
.site-header .product-extra-search .cats-search li.product_cat > a {
color: #999;
white-space: nowrap;
padding: 0 15px;
}
.site-header .product-extra-search .cats-search li.product_cat > a:hover {
color: #000;
}
.site-header .product-extra-search .cats-search ul {
margin: 0;
padding: 0;
}
.site-header .product-extra-search .cats-search li {
padding: 5px 15px;
margin-bottom: 0;
list-style: none;
line-height: 1;
}
.site-header .product-extra-search .cats-search li a {
color: #999;
white-space: nowrap;
}
.site-header .product-extra-search .cats-search li a:hover {
color: #000;
}
.site-header .product-extra-search .cats-search li ul {
padding-left: 0;
margin-top: 7px;
}
.site-header .product-extra-search .cats-search li ul li {
border: none;
}
.site-header .product-extra-search .cats-search li ul li:last-child {
padding-bottom: 0;
}
.site-header .product-extra-search .hot-words-wrapper {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-top: 10px;
}
.site-header .product-extra-search .hot-words__heading {
font-size: 16px;
font-weight: 500;
text-transform: uppercase;
margin: -2px 18px 0 0;
}
.site-header .product-extra-search .hot-words {
margin: 0 -7px;
padding: 0;
list-style: none;
}
.site-header .product-extra-search .hot-words li {
display: inline-block;
padding: 0 7px;
margin-bottom: 0;
}
.site-header .product-extra-search .hot-words li a {
color: #666;
}
.site-header .product-extra-search .hot-words li a:hover {
color: #000;
}
.site-header .product-extra-search .products-search {
width: 100%;
}
.site-header .product-extra-search .products-search.actived .search-wrapper .search-results {
top: 100%;
transform: scaleX(1);
z-index: 9999;
}
.site-header .product-extra-search .products-search.searching .search-wrapper:before {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
-webkit-animation: mf-spin-fast 1s linear infinite;
animation: mf-spin-fast 1s linear infinite;
content: "";
width: 13px;
height: 13px;
font-weight: 400;
position: absolute;
top: 15px;
right: 19px;
z-index: 999;
}
.site-header .product-extra-search .products-search.searching .search-submit:before {
opacity: 0;
}
.site-header .product-extra-search .search-wrapper {
width: 100%;
display: flex;
position: relative;
}
.site-header .product-extra-search .search-wrapper ::-webkit-scrollbar {
background: transparent;
width: 7px;
}
.site-header .product-extra-search .search-wrapper ::-webkit-scrollbar-thumb {
background-color: #ccc;
}
.site-header .product-extra-search .search-wrapper .search-results {
position: absolute;
top: 110%;
left: -1px;
right: 0;
border: 1px solid #cccccc;
border-top: none;
background-color: #fff;
z-index: -1;
padding: 0 20px;
transform: scaleX(0);
max-height: 500px;
overflow-y: auto;
overflow-x: hidden;
}
.site-header .product-extra-search .search-wrapper .search-results ul {
margin: 15px 0 0;
padding: 0;
list-style: none;
}
.site-header .product-extra-search .search-wrapper .search-results ul li {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.site-header .product-extra-search .search-wrapper .search-results ul li img {
max-width: 60px;
margin-right: 10px;
}
.site-header .product-extra-search .search-wrapper .search-results ul li .title-item {
font-size: 14px;
font-weight: 400;
line-height: 1;
}
.site-header .product-extra-search .search-wrapper .search-results ul li .star-rating {
float: none;
}
.site-header .product-extra-search .search-wrapper .search-results ul li .price-item {
font-size: 16px;
color: #000;
line-height: 1;
margin-top: 5px;
}
.site-header .product-extra-search .search-wrapper .search-results ul li del {
font-size: 14px;
color: #999;
padding-left: 10px;
}
.site-header .product-extra-search .search-wrapper .search-results ul li ins {
text-decoration: none;
color: #ff3300;
}
.site-header .product-extra-search .search-wrapper .search-results ul .search-item {
display: flex;
align-items: center;
}
.site-header .product-extra-search .product-cat-label {
padding-right: 30px;
padding-left: 18px;
border: 1px solid #ccc;
color: #000;
border-radius: 5px 0 0 5px;
position: relative;
height: 100%;
white-space: nowrap;
background-color: #fff;
}
.site-header .product-extra-search .product-cat-label.no-cats {
width: 0;
padding: 0;
overflow: hidden;
border-left: none;
}
.site-header .product-extra-search .product-cat-label:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 10px;
color: #000;
position: absolute;
top: 17px;
right: 12px;
}
.site-header .product-extra-search .product-cat-label:before {
content: "";
position: absolute;
top: 110%;
left: 40%;
width: 13px;
height: 13px;
transform: rotate(45deg) translateY(-50%);
border-left: 1px solid #cccccc;
border-top: 1px solid #cccccc;
background-color: #fff;
z-index: -1;
padding: 0;
margin: 14px 0 0;
opacity: 0;
-webkit-transition: top 0.3s;
transition: top 0.3s;
}
.site-header .product-extra-search .product-cat-dd {
position: absolute;
top: 0;
left: 0;
opacity: 0;
height: 100%;
cursor: pointer;
min-height: 42px;
width: 100%;
z-index: 10;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding-left: 10px;
}
.site-header .product-extra-search .search-field {
float: left;
height: 42px;
line-height: 1;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
border-left: none;
border-right: none;
padding-right: 20px;
padding-left: 20px;
position: relative;
width: 100%;
}
.site-header .product-extra-search .search-field:focus {
outline: none;
}
.site-header .product-extra-search ::-webkit-input-placeholder {
color: #999;
}
.site-header .product-extra-search ::-moz-placeholder {
color: #999;
}
.site-header .product-extra-search :-ms-input-placeholder {
color: #999;
}
.site-header .product-extra-search :-moz-placeholder {
color: #999;
}
.site-header .product-extra-search .search-submit {
float: right;
height: 42px;
line-height: 42px;
padding-left: 20px;
padding-right: 20px;
min-width: 100px;
padding-top: 0;
padding-bottom: 0;
border: none;
font-weight: 700;
border-radius: 0 5px 5px 0;
white-space: nowrap;
}
.site-header.has-hot-words .header-extras {
align-items: flex-start;
}
.site-header.has-hot-words .header-main {
padding-bottom: 10px;
}
.site-header.has-hot-words .header-main .header-row {
align-items: flex-start;
}
.site-header.has-hot-words .extras-menu {
margin-top: 4px;
}
.site-header.has-hot-words .header-logo {
margin-top: 6px;
}
.site-header .extras-menu {
margin: 0 0 0 40px;
padding: 0;
position: relative;
display: flex;
align-items: center;
}
.site-header .extras-menu > li {
list-style: none;
float: right;
margin-bottom: 0;
padding: 0 20px;
}
.site-header .extras-menu > li > a {
color: var(--mf-dark-color);
display: block;
position: relative;
}
.site-header .extras-menu > li > a .mini-item-counter {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
position: absolute;
bottom: -3px;
right: -4px;
font-size: 12px;
font-weight: 700;
border-radius: 50%;
min-width: 18px;
padding: 0 5px;
height: 18px;
text-align: center;
line-height: 18px;
}
.site-header .extras-menu > li > a:after {
content: "";
position: absolute;
top: 110%;
right: 16px;
width: 13px;
height: 13px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
border-left: 1px solid #cccccc;
border-top: 1px solid #cccccc;
background-color: #fff;
z-index: -1;
padding: 0;
margin: 19px -7px 0 0;
opacity: 0;
transition: top 0.3s;
}
.site-header .extras-menu > li:last-child {
padding-right: 0;
}
.site-header .extras-menu > li .extra-icon {
font-size: 30px;
line-height: 1;
}
.site-header .extras-menu .menu-item-account {
min-height: 30px;
}
.site-header .extras-menu .menu-item-account > a {
padding-left: 42px;
line-height: 1.2;
font-weight: 700;
position: relative;
white-space: nowrap;
}
.site-header .extras-menu .menu-item-account > a img {
border-radius: 50%;
}
.site-header .extras-menu .menu-item-account .extra-icon {
position: absolute;
top: 1px;
left: 0;
}
.site-header .extras-menu .menu-item-account.logined {
position: relative;
}
.site-header .extras-menu .menu-item-account.logined .extra-icon {
position: static;
}
.site-header .extras-menu .menu-item-account.logined > a {
padding-left: 0;
width: 32px;
}
.site-header .extras-menu .menu-item-account.logined:hover > ul {
opacity: 1;
z-index: 9998;
top: 100%;
transform: scaleX(1);
}
.site-header .extras-menu .menu-item-account.logined:hover > a:after {
z-index: 9999;
opacity: 1;
top: 100%;
}
.site-header .extras-menu .menu-item-account > ul {
transition: top 0.3s;
position: absolute;
right: 0;
top: 110%;
width: auto;
min-width: 250px;
opacity: 0;
z-index: -1;
border-top: 25px solid transparent;
transform: scaleX(0);
display: block;
border-radius: 0;
box-shadow: none;
}
.site-header .extras-menu .menu-item-account > ul li {
text-align: left;
display: block;
padding: 3px 20px;
float: none;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
background-color: #fff;
margin-bottom: 0;
}
.site-header .extras-menu .menu-item-account > ul li ul {
border: none;
padding: 0;
}
.site-header .extras-menu .menu-item-account > ul li ul li {
border: none;
padding-right: 0;
padding-left: 0;
}
.site-header .extras-menu .menu-item-account > ul li ul li:first-child {
border-top: none;
}
.site-header .extras-menu .menu-item-account > ul li ul li:last-child {
border-bottom: none;
}
.site-header .extras-menu .menu-item-account > ul li:first-child {
border-top: 1px solid #ccc;
}
.site-header .extras-menu .menu-item-account > ul li:last-child {
border-bottom: 1px solid #ccc;
}
.site-header .extras-menu .menu-item-account > ul li a {
color: #666666;
text-transform: none;
transition: 0.5s;
display: inline-block;
position: relative;
background-color: transparent;
white-space: nowrap;
line-height: 1;
border-bottom: 1px solid transparent;
}
.site-header .extras-menu .menu-item-account > ul li a:hover {
color: #000;
border-bottom-color: #000;
}
.site-header .extras-menu .menu-item-account > ul li.line-space {
padding-top: 13px;
position: relative;
}
.site-header .extras-menu .menu-item-account > ul li.line-space:before {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
height: 1px;
content: "";
}
.site-header .extras-menu .menu-item-account > ul li.logout {
padding-top: 10px;
padding-bottom: 10px;
}
.site-header .extras-menu .menu-item-account > ul li > h3 {
font-size: 16px;
font-weight: 600;
line-height: 1;
margin: 16px 0 10px;
color: #000;
}
.site-header .extras-menu .menu-item-cart > a {
position: relative;
}
.site-header .extras-menu .menu-item-cart > a:after {
margin: 17px -7px 0 0;
}
.site-header .extras-menu .menu-item-cart:hover > .mini-cart-content {
opacity: 1;
z-index: 9998;
top: 100%;
transform: scaleX(1);
}
.site-header .extras-menu .menu-item-cart:hover > a:after {
opacity: 1;
z-index: 9999;
top: 100%;
}
.site-header .extras-menu .menu-item-cart .mini-cart-content {
transition: top 0.3s ease 0s, opacity 0.3s;
position: absolute;
right: 0;
top: 110%;
min-width: 370px;
opacity: 0;
z-index: -1;
border-top: 23px solid transparent;
transform: scaleX(0);
display: block;
border-radius: 0;
box-shadow: none;
}
.site-header .extras-menu .menu-item-cart .mini-cart-content .woocommerce-mini-cart__empty-message {
margin: 15px 0;
}
.site-header .extras-menu .menu-item-cart .mini-cart-content .widget_shopping_cart_content {
padding-top: 0;
}
.site-header .extras-menu .menu-item-cart .mini-cart-content .product_list_widget {
max-height: 490px;
padding-left: 20px;
padding-right: 20px;
margin-left: -20px;
margin-right: -20px;
overflow-y: auto;
overflow-x: hidden;
}
.site-header .extras-menu .menu-item-cart .mini-cart-content ::-webkit-scrollbar {
background: transparent;
width: 7px;
}
.site-header .extras-menu .menu-item-cart .mini-cart-content ::-webkit-scrollbar-thumb {
background-color: #ccc;
}
.site-header .extras-menu .menu-item-wishlist > a:after {
display: none;
}
.site-header .extras-menu .menu-item-wishlist .mini-item-counter {
right: 0;
}
.site-header .extras-menu .menu-item-hotline {
display: flex;
align-items: center;
}
.site-header .extras-menu .menu-item-hotline > a {
display: flex;
align-items: center;
}
.site-header .extras-menu .menu-item-hotline .extra-icon {
font-size: 26px;
margin-right: 15px;
color: var(--mf-dark-color);
}
.site-header .extras-menu .menu-item-hotline .hotline-content {
white-space: nowrap;
font-size: 16px;
font-weight: 700;
line-height: 1.2;
color: var(--mf-dark-color);
}
.site-header .extras-menu .menu-item-hotline .hotline-content label {
display: block;
font-size: 14px;
color: var(--mf-gray-color);
font-weight: 400;
}
.site-header .main-menu {
border-top: 1px solid #e1e1e1;
border-bottom: 1px solid #e1e1e1;
}
.site-header .col-header-menu {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
flex-wrap: wrap;
}
.site-header .martfury-container .header-logo,
.site-header .martfury-container .mr-extra-department {
width: 300px;
}
.site-header .martfury-container .header-extras,
.site-header .martfury-container .mr-header-menu {
width: 83.4%;
}
.site-header .header-bottom-feature {
background-repeat: repeat-x;
background-position: left center;
position: absolute;
left: 0;
right: 0;
top: 100%;
z-index: 10;
}
.site-header.header-dark {
--mf-gray-color: #000;
}
.site-header.header-dark .mf-background-primary,
.site-header.header-dark .mini-item-counter {
--mf-background-primary-color: #000;
--mf-background-primary-text-color: #fff;
}
.site-header.header-light {
--mf-dark-color: #fff;
--mf-gray-color: #fff;
}
.header-department-bot .header-logo .d-department {
display: none;
}
.header-department-bot .mr-extra-department .products-cats-menu {
position: relative;
padding-top: 14px;
padding-bottom: 14px;
min-height: 50px;
display: flex;
align-items: center;
}
.header-department-bot .mr-extra-department .products-cats-menu:before {
position: absolute;
top: -1px;
left: 50%;
content: "";
height: 2px;
width: 0;
background-color: var(--mf-background-primary-color);
transition: 0.5s;
}
.header-department-bot .mr-extra-department .products-cats-menu.open:before, .header-department-bot .mr-extra-department .products-cats-menu.mf-closed:hover:before {
width: 100%;
left: 0;
right: 0;
}
.header-department-bot .mr-extra-department .products-cats-menu.open .cats-menu-title:after, .header-department-bot .mr-extra-department .products-cats-menu.mf-closed:hover .cats-menu-title:after {
transform: rotate(180deg) translateY(50%);
}
.header-department-bot .mr-extra-department .cats-menu-title {
padding-left: 22px;
padding-right: 20px;
}
.header-department-bot .mr-extra-department .cats-menu-title i {
display: none;
}
.header-department-bot .mr-extra-department .cats-menu-title:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
font-weight: 700;
transition: 0.2s;
}
.header-department-top .header-logo .d-department .text {
display: none;
}
.header-department-top .header-logo .d-department.mf-close .products-cats-menu .cats-menu-title:after,
.header-department-top .header-logo .d-department.mf-close .toggle-product-cats {
display: none;
}
.header-department-top .header-logo .products-cats-menu:hover .toggle-product-cats {
z-index: 9998;
padding-top: 24px !important;
}
.header-department-top .header-logo .logo {
margin-right: 15px;
}
.header-department-top .header-logo .d-logo {
max-width: calc(100% - 30px);
}
.header-department-top .header-logo.hide-department .d-logo {
max-width: 100%;
}
.header-department-top .header-logo.hide-department .logo {
margin-right: 0;
}
.header-department-top .main-menu .d-department-sticky .cats-menu-title {
display: none;
}
.header-department-top .main-menu .d-department-sticky .toggle-product-cats {
left: 0 !important;
width: 270px;
}
.header-layout-1 .header-bar,
.header-layout-1 .header-bar #lang_sel a.lang_sel_sel,
.header-layout-1 .header-bar .lang_sel a.lang_sel_sel {
font-size: 16px;
}
.header-layout-1 .header-department-bot .header-logo .d-department {
display: none;
}
.header-layout-1 .header-department-bot .header-logo .d-department .cats-menu-title {
position: relative;
padding-right: 22px;
}
.header-layout-1 .header-department-bot .header-logo .d-department .cats-menu-title i {
display: none;
}
.header-layout-1 .header-department-bot .header-logo .d-department .cats-menu-title:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
font-weight: 700;
transition: 0.2s;
background-color: transparent;
margin: 0;
border: none;
opacity: 1;
}
.header-layout-1 .header-department-bot .header-logo .products-cats-menu:hover .cats-menu-title:after {
top: 50%;
transform: rotate(180deg) translateY(50%);
}
.header-layout-1.sticky-header .site-header.minimized .header-main .products-cats-menu .cats-menu-title:after {
display: block;
}
.header-layout-2 .topbar {
background-color: #eff1f2;
}
.header-layout-2 .site-header .header-main {
background-color: var(--mf-background-light-color);
}
.header-layout-2 .site-header .main-menu {
background-color: var(--mf-background-primary-color);
border-color: var(--mf-background-primary-color);
border-bottom: none;
}
.header-layout-2 .site-header .primary-nav > ul > li {
padding-top: 18px;
padding-bottom: 18px;
padding-left: 18px;
padding-right: 18px;
}
.header-layout-2 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-2 .site-header .primary-nav > ul > li:first-child > ul {
left: 0;
border-top: none;
}
.header-layout-2 .site-header .primary-nav > ul > li:last-child {
padding-right: 0;
}
.header-layout-2 .site-header .primary-nav > ul > li.menu-item-has-children > a {
margin-right: 0;
}
.header-layout-2 .site-header .primary-nav > ul > li.menu-item-has-children > a:before {
border-left: none;
border-top: none;
margin-top: 13px;
transition-delay: 0.05s;
}
.header-layout-2 .site-header .primary-nav > ul > li.menu-item-has-children > a:after {
display: none;
}
.header-layout-2 .site-header .primary-nav > ul > li > a {
font-weight: 600;
text-transform: uppercase;
color: var(--mf-background-primary-text-color);
}
.header-layout-2 .site-header .primary-nav > ul > li > a:hover {
opacity: 0.7;
}
.header-layout-2 .site-header .primary-nav > ul > li > a i {
font-size: 20px;
}
.header-layout-2 .site-header .primary-nav > ul > li.current-menu-parent > a,
.header-layout-2 .site-header .primary-nav > ul > li.current-menu-item > a,
.header-layout-2 .site-header .primary-nav > ul > li.current-menu-ancestor > a {
opacity: 0.7;
}
.header-layout-3 .topbar:not(.header-bar),
.header-layout-4 .topbar:not(.header-bar) {
background-color: #dba500;
}
.header-layout-3 .topbar:not(.header-bar) .widget:after,
.header-layout-4 .topbar:not(.header-bar) .widget:after {
background-color: #a37000;
}
.header-layout-3 .header-bar .widget:after,
.header-layout-4 .header-bar .widget:after {
background-color: #654a00;
}
.header-layout-3 .site-header,
.header-layout-4 .site-header {
background-color: var(--mf-background-primary-color);
}
.header-layout-3 .site-header .col-nav-menu,
.header-layout-4 .site-header .col-nav-menu {
position: static;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.header-layout-3 .site-header .header-main,
.header-layout-4 .site-header .header-main {
padding-top: 25px;
padding-bottom: 25px;
background-color: var(--mf-background-primary-color);
}
.header-layout-3 .site-header.has-hot-words .header-main,
.header-layout-4 .site-header.has-hot-words .header-main {
padding-bottom: 10px;
}
.header-layout-3 .site-header .main-menu,
.header-layout-4 .site-header .main-menu {
border-color: rgba(0, 0, 0, 0.15);
border-bottom: none;
}
.header-layout-3 .site-header .header-row,
.header-layout-4 .site-header .header-row {
position: relative;
}
.header-layout-3 .site-header .product-extra-search .search-field,
.header-layout-3 .site-header .product-extra-search .product-cat-label,
.header-layout-4 .site-header .product-extra-search .search-field,
.header-layout-4 .site-header .product-extra-search .product-cat-label {
border-color: transparent;
}
.header-layout-3 .site-header .product-extra-search .product-cat-label,
.header-layout-4 .site-header .product-extra-search .product-cat-label {
border-right-color: #ccc;
}
.header-layout-3 .site-header .primary-nav > ul > li.current-menu-parent > a,
.header-layout-3 .site-header .primary-nav > ul > li.current-menu-item > a,
.header-layout-3 .site-header .primary-nav > ul > li.current-menu-ancestor > a,
.header-layout-4 .site-header .primary-nav > ul > li.current-menu-parent > a,
.header-layout-4 .site-header .primary-nav > ul > li.current-menu-item > a,
.header-layout-4 .site-header .primary-nav > ul > li.current-menu-ancestor > a {
color: rgba(0, 0, 0, 0.7);
}
.header-layout-3 .aws-container .aws-search-form,
.header-layout-4 .aws-container .aws-search-form {
background-color: transparent;
}
.header-layout-3 .aws-container .aws-search-form .aws-form-btn,
.header-layout-4 .aws-container .aws-search-form .aws-form-btn {
border: none;
}
.header-layout-3 .aws-container .aws-search-form .aws-search-field,
.header-layout-4 .aws-container .aws-search-form .aws-search-field {
background-color: #fff;
border: none;
border-right: 1px solid #ccc;
}
.header-layout-3 .aws-container .aws-search-form .aws-search-btn,
.header-layout-4 .aws-container .aws-search-form .aws-search-btn {
background-color: #000;
}
.header-layout-3 .aws-container .aws-search-form .aws-search-btn .aws-search-btn_icon,
.header-layout-4 .aws-container .aws-search-form .aws-search-btn .aws-search-btn_icon {
color: #fff;
}
.header-layout-3 .aws-container .aws-search-form .aws-search-btn:hover,
.header-layout-4 .aws-container .aws-search-form .aws-search-btn:hover {
background-color: #000;
}
.header-layout-3 .aws-container[data-buttons-order="3"] .aws-search-form .aws-search-field,
.header-layout-4 .aws-container[data-buttons-order="3"] .aws-search-form .aws-search-field {
border-right: none;
border-left: 1px solid #ccc;
}
.header-layout-3 .aws-container[data-buttons-order="4"] .aws-search-form .aws-search-field,
.header-layout-4 .aws-container[data-buttons-order="4"] .aws-search-form .aws-search-field {
border-right: none;
border-left: 1px solid #ccc;
}
.header-layout-3 .aws-container[data-buttons-order="6"] .aws-search-form .aws-search-field,
.header-layout-4 .aws-container[data-buttons-order="6"] .aws-search-form .aws-search-field {
border-right: none;
border-left: 1px solid #ccc;
}
.header-layout-3 .site-header .products-cats-menu .menu > li:first-child {
padding-top: 0;
}
.header-layout-3 .site-header .products-cats-menu .menu > li:last-child {
padding-bottom: 0;
}
.header-layout-3 .site-header .products-cats-menu .menu > li > a {
padding-top: 11px;
padding-bottom: 11px;
transition: none;
}
.header-layout-3 .site-header .products-cats-menu .menu > li:hover {
background-color: var(--mf-background-primary-color);
}
.header-layout-3 .site-header .products-cats-menu .menu > li:hover > a {
color: var(--mf-background-primary-text-color);
}
.header-layout-3 .site-header .products-cats-menu .menu > li.menu-item-has-children > a:after {
right: -10px;
}
.header-layout-3 .header-department-bot .mr-extra-department .products-cats-menu {
min-height: 52px;
}
.header-layout-3 .header-department-bot .mr-extra-department .cats-menu-title i {
display: block;
font-size: 24px;
}
.header-layout-3 .header-department-bot .mr-extra-department .cats-menu-title:after {
display: none;
}
.header-layout-5 {
--mf-background-light-color: #022335;
}
.header-layout-5 .site-header .product-extra-search .search-field,
.header-layout-5 .site-header .product-extra-search .product-cat-label {
border-color: transparent;
}
.header-layout-5 .site-header .product-extra-search .product-cat-label {
border-right-color: #ccc;
}
.header-layout-5 .site-header .main-menu {
border-color: transparent;
}
.header-layout-5 .site-header .primary-nav > ul > li > a {
font-weight: 600;
text-transform: uppercase;
}
.header-layout-5 .site-header .primary-nav > ul > li > a i {
margin-right: 3px;
}
.header-layout-5 .site-header .primary-nav > ul > li.menu-item-has-children > a {
margin-right: 0;
}
.header-layout-5 .site-header .primary-nav > ul > li.menu-item-has-children > a:before {
border-left: none;
border-top: none;
margin-top: 13px;
transition-delay: 0.05s;
}
.header-layout-5 .site-header .primary-nav > ul > li.menu-item-has-children > a:after {
display: none;
}
.header-layout-5 .aws-container .aws-search-form {
background-color: transparent;
}
.header-layout-5 .aws-container .aws-search-form .aws-form-btn {
border: none;
}
.header-layout-5 .aws-container .aws-search-form .aws-search-field {
background-color: #fff;
border: none;
border-right: 1px solid #ccc;
}
.header-layout-5 .aws-container[data-buttons-order="3"] .aws-search-form .aws-search-field {
border-right: none;
border-left: 1px solid #ccc;
}
.header-layout-5 .aws-container[data-buttons-order="4"] .aws-search-form .aws-search-field {
border-right: none;
border-left: 1px solid #ccc;
}
.header-layout-5 .aws-container[data-buttons-order="6"] .aws-search-form .aws-search-field {
border-right: none;
border-left: 1px solid #ccc;
}
.header-layout-6 .site-header .main-menu__wrapper {
position: relative;
}
.header-layout-6 .site-header .main-menu {
background-color: #f0f0f0;
border-top: none;
}
.header-layout-6 .site-header .primary-nav {
float: left;
}
.header-layout-6 .site-header .primary-nav > ul > li > a {
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
}
.header-layout-6 .site-header .primary-nav > ul > li > a:hover {
color: var(--mf-primary-color);
}
.header-layout-6 .site-header .primary-nav > ul > li.current-menu-parent > a,
.header-layout-6 .site-header .primary-nav > ul > li.current-menu-item > a,
.header-layout-6 .site-header .primary-nav > ul > li.current-menu-ancestor > a {
color: var(--mf-primary-color);
}
.header-layout-8 .site-header .product-extra-search .search-field,
.header-layout-8 .site-header .product-extra-search .product-cat-label {
background-color: #f9f9f9;
}
.header-layout-8 .site-header .menu-item-hotline .hotline-content span {
color: var(--mf-primary-color);
}
.header-layout-8 .site-header .primary-nav > ul > li > a:hover {
color: var(--mf-primary-color);
}
.header-layout-8 .site-header .primary-nav > ul > li.current-menu-parent > a,
.header-layout-8 .site-header .primary-nav > ul > li.current-menu-item > a,
.header-layout-8 .site-header .primary-nav > ul > li.current-menu-ancestor > a {
color: var(--mf-primary-color);
}
.header-layout-9 .site-header .header-main {
padding-top: 10px;
padding-bottom: 15px;
}
.header-layout-9 .site-header .product-extra-search .search-wrapper {
max-width: 520px;
}
.header-layout-9 .site-header .product-extra-search .product-cat-label {
text-transform: uppercase;
font-weight: 700;
border-right: none;
}
.header-layout-9 .site-header .product-extra-search .search-submit {
text-transform: uppercase;
border-radius: 5px;
margin-left: 10px;
min-width: 130px;
}
.header-layout-9 .site-header .product-extra-search .search-field {
padding-left: 10px;
border-radius: 0 5px 5px 0;
}
.header-layout-9 .site-header .product-extra-search .hot-words li a {
position: relative;
padding-right: 4px;
font-size: 16px;
}
.header-layout-9 .site-header .product-extra-search .hot-words li a:before {
content: '';
position: absolute;
bottom: -1px;
left: 0;
width: 0;
height: 1px;
background-color: #fff;
transition: .3s;
}
.header-layout-9 .site-header .product-extra-search .hot-words li a:after {
content: ',';
position: absolute;
right: 0;
bottom: -2px;
}
.header-layout-9 .site-header .product-extra-search .hot-words li a:hover:before {
width: 100%;
}
.header-layout-9 .site-header .product-extra-search .hot-words li:last-child a {
padding-right: 0;
}
.header-layout-9 .site-header .product-extra-search .hot-words li:last-child a:after {
display: none;
}
.header-layout-9 .site-header .extras-menu .menu-item-hotline {
padding-right: 53px;
}
.header-layout-9 .site-header .primary-nav > ul > li {
position: relative;
}
.header-layout-9 .site-header .primary-nav > ul > li:before {
content: '';
position: absolute;
left: 22px;
top: -2px;
height: 2px;
width: 0;
background-color: #fff;
transition: .3s;
}
.header-layout-9 .site-header .primary-nav > ul > li:first-child:before {
left: 0;
}
.header-layout-9 .site-header .primary-nav > ul > li:hover:before {
width: calc( 100% - 44px);
}
.header-layout-9 .site-header .primary-nav > ul > li:hover:first-child:before {
width: calc( 100% - 22px);
}
.header-layout-9 .site-header .primary-nav > ul > li > a {
text-transform: uppercase;
}
.header-layout-9 .site-header .col-header-extras {
position: static;
display: flex;
align-items: center;
justify-content: flex-end;
flex-wrap: wrap;
}
.header-layout-9 .site-header .recently-viewed .recently-title {
text-transform: uppercase;
padding-left: 25px;
}
.header-layout-9 .site-header .recently-viewed .recently-title:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 16px;
position: absolute;
right: auto;
left: 0;
}
.header-layout-9 .site-header .header-wishlist {
padding: 0 0 0 25px;
margin: 0;
list-style: none;
font-size: 16px;
}
.header-layout-9 .site-header .header-wishlist li {
margin: 0;
}
.header-layout-9 .site-header .header-wishlist i {
position: relative;
top: 2px;
}
.header-layout-9 .site-header .header-wishlist .mini-item-counter--wishlist {
display: none;
}
.header-layout-9 .site-header .header-wishlist .header-wishlist-text {
font-size: 16px;
text-transform: uppercase;
margin-left: 3px;
}
.header-layout-9 .topbar .widget:after {
opacity: .25;
height: 12px;
}
.header-layout-9 .topbar-right a {
text-transform: uppercase;
}
.sticky-header .site-header.minimized .extras-menu .menu-item-account ul {
border-top-width: 15px;
}
.sticky-header .site-header.minimized .extras-menu .menu-item-cart .mini-cart-content {
border-top-width: 14px;
}
.sticky-header .site-header.minimized .extras-menu > li > a:after {
margin-top: 8px;
}
.sticky-header .site-header.minimized .header-main {
position: fixed;
right: 0;
left: 0;
top: 0;
z-index: 9999;
animation-name: fadeInDown;
animation-duration: .25s;
padding-top: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #e1e1e1;
}
.sticky-header .site-header.minimized .header-main .d-logo {
display: none;
}
.sticky-header .site-header.minimized .header-main .d-department {
display: block;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu {
padding: 0;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu:before {
display: none;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu .toggle-product-cats {
padding-top: 16px !important;
margin-left: 0;
top: 120%;
left: 0 !important;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu .cats-menu-title {
padding-left: 0;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu .cats-menu-title .text {
transition: none;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu .cats-menu-title:after {
display: none;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu:hover .toggle-product-cats {
top: 100%;
}
.sticky-header .site-header.minimized.sticky-header-logo .header-main .d-department {
display: none;
}
.sticky-header .site-header.minimized.sticky-header-logo .header-main .d-logo {
display: block;
}
.sticky-header .site-header.minimized.sticky-header-logo .header-main .site-logo {
display: none;
}
.sticky-header .site-header.minimized.sticky-header-logo .header-main .sticky-logo {
display: block;
}
.sticky-header .site-header.minimized.header-department-top .header-logo .d-department .text {
display: block;
}
.sticky-header .site-header.minimized.header-department-top .header-logo .products-cats-menu .toggle-product-cats {
padding-top: 16px !important;
margin-left: 0;
top: 120%;
left: 0 !important;
display: block;
}
.sticky-header .site-header.minimized.header-department-top .header-logo .products-cats-menu:hover .toggle-product-cats {
top: 100%;
}
.sticky-header.admin-bar .site-header.minimized .header-main {
top: 32px;
}
.sticky-header.header-no-department .site-header.minimized .header-main .d-logo {
display: block;
}
.sticky-header.header-no-department .site-header.minimized .header-main .d-logo img {
max-height: 70px;
width: auto;
}
body.display-mobile-menu {
overflow: hidden;
max-height: 100vh;
}
.display-mobile-menu .primary-mobile-nav {
transform: translate3d(475px, 0, 0);
z-index: 999999;
}
.display-mobile-menu .martfury-off-canvas-layer {
display: block;
z-index: 9999;
}
.martfury-off-canvas-layer {
background-color: rgba(0, 0, 0, 0.85);
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: -1;
display: none;
}
.martfury-off-canvas-layer.opened {
display: block;
z-index: 999;
}
.primary-mobile-nav {
width: 475px;
background-color: #fff;
position: fixed;
left: -475px;
top: 0;
overflow: auto;
height: 100%;
color: #aaa;
z-index: -999999;
transition: transform 0.35s ease;
display: none;
}
.primary-mobile-nav .close-canvas-mobile-panel {
font-size: 24px;
color: #000;
}
.primary-mobile-nav .mobile-nav-header {
background-color: var(--mf-background-primary-color);
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px;
}
.primary-mobile-nav .mobile-nav-header h2,
.primary-mobile-nav .mobile-nav-header .mobile-nav-header__title {
font-size: 18px;
font-weight: 600;
margin: 0;
line-height: 1;
color: var(--mf-background-primary-text-color);
}
.primary-mobile-nav .mobile-nav-header h2 a,
.primary-mobile-nav .mobile-nav-header .mobile-nav-header__title a {
color: var(--mf-background-primary-text-color);
}
.primary-mobile-nav .mobile-nav-header .close-mobile-nav {
font-size: 18px;
color: var(--mf-background-primary-text-color);
line-height: 1;
display: none;
}
.primary-mobile-nav ul.menu {
padding: 0;
}
.primary-mobile-nav ul.menu li {
list-style: none;
margin-bottom: 0;
}
.primary-mobile-nav ul.menu li.menu-item-has-children .toggle-menu-children {
font-size: 14px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
}
.primary-mobile-nav ul.menu li > a {
color: #666;
position: relative;
transition: none;
}
.primary-mobile-nav ul.menu li.active > a {
color: #000;
}
.primary-mobile-nav ul.menu li.active > a .toggle-menu-children > i:before {
content: "\e937";
}
.primary-mobile-nav ul.menu ul {
padding-left: 0;
display: none;
padding-top: 10px;
}
.primary-mobile-nav ul.menu ul li {
padding: 5px 0;
}
.primary-mobile-nav ul.menu ul li a {
font-size: 14px;
display: block;
}
.primary-mobile-nav ul.menu ul li a:after {
font-size: 14px;
}
.primary-mobile-nav ul.menu ul ul {
padding-left: 10px;
}
.primary-mobile-nav ul.menu > li {
border-bottom: 1px solid #dedede;
padding: 14px 15px 13px;
}
.primary-mobile-nav ul.menu > li:last-child {
border-bottom: none;
}
.primary-mobile-nav ul.menu > li.active {
background-color: #f6f6f6;
}
.primary-mobile-nav ul.menu > li > a {
display: block;
padding-right: 20px;
color: #000;
}
.primary-user-nav {
width: 375px;
background-color: #fff;
position: fixed;
right: -375px;
top: 0;
overflow: auto;
height: 100%;
color: #aaa;
z-index: 99999;
transition: transform 0.35s ease;
}
.primary-user-nav .close-canvas-mobile-panel {
font-size: 24px;
color: #000;
}
.primary-user-nav .mobile-user-content {
padding: 30px;
}
.primary-user-nav ul.extra-account {
padding: 0;
}
.primary-user-nav ul.extra-account li {
list-style: none;
margin-bottom: 0;
}
.primary-user-nav ul.extra-account li.extra-menu-item > a {
display: none;
}
.primary-user-nav ul.extra-account li > a {
color: #999;
position: relative;
transition: none;
}
.primary-user-nav ul.extra-account li > a:hover {
color: #000;
}
.primary-user-nav ul.extra-account ul {
padding-top: 10px;
padding-left: 0;
}
.primary-user-nav ul.extra-account ul li {
padding: 8px 0;
}
.primary-user-nav ul.extra-account ul li.line-space {
border-bottom: 1px solid #e5e5e5;
margin-bottom: 10px;
padding-top: 0;
}
.primary-user-nav ul.extra-account ul li a {
font-size: 14px;
display: block;
}
.primary-user-nav ul.extra-account ul li a:after {
font-size: 14px;
}
.primary-user-nav ul.extra-account ul li h3 {
font-size: 18px;
font-weight: 600;
line-height: 1;
margin: 16px 0 0;
}
.display-user-mobile .primary-user-nav {
transform: translate3d(-375px, 0, 0);
z-index: 99999;
}
.display-user-mobile .martfury-off-canvas-layer {
display: block;
z-index: 9999;
}
.page-header {
margin: 0;
border-bottom: none;
padding-top: 95px;
padding-bottom: 95px;
}
.page-header .entry-title {
font-size: 48px;
font-weight: 600;
line-height: 1;
margin: 0 0 20px;
}
.page-header .breadcrumbs {
color: var(--mf-primary-color);
display: flex;
flex-wrap: wrap;
margin: 0;
padding: 0;
}
.page-header .breadcrumbs a {
color: #09c;
}
.page-header .breadcrumbs a:hover {
color: var(--mf-primary-color);
}
.page-header .breadcrumbs .sep {
margin: 0 5px;
color: #000;
}
.page-header .breadcrumbs li {
display: inline-block;
margin-bottom: 0;
}
.page-header .breadcrumbs li:last-child a {
color: #000;
pointer-events: none;
}
.page-header-sliders {
padding-top: 0;
padding-bottom: 0;
}
.page-header-sliders .page-header-inner {
overflow: hidden;
position: relative;
}
.page-header-sliders .slick-list,
.page-header-sliders .slick-track {
height: 100%;
}
.page-header-sliders ul {
margin: 0;
padding: 0;
height: 100%;
}
.page-header-sliders ul li {
list-style: none;
height: 100%;
position: relative;
margin-bottom: 0;
}
.page-header-sliders ul li .featured-img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -1;
background-position: center;
}
.page-header-sliders ul li .featured-img:before {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.3);
content: "";
}
.page-header-sliders ul li .link {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
}
.page-header-sliders ul li .page-header-content {
max-width: 800px;
margin: 0 auto;
height: 100%;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
padding: 150px 0;
color: #fff;
text-align: center;
font-size: 16px;
}
.page-header-sliders ul li .subtitle {
font-size: 18px;
text-transform: uppercase;
font-weight: 600;
}
.page-header-sliders ul li .title {
font-size: 48px;
font-weight: 600;
color: #fff;
line-height: 1;
margin: 55px 0 30px;
}
.page-header-sliders ul li .desc {
margin-bottom: 0;
}
.page-header-sliders .slick-arrow-content {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
pointer-events: none;
}
.page-header-sliders .slick-arrow-content .slick-arrow-cont {
position: relative;
height: 100%;
}
.page-header-sliders .slick-arrow-content .slick-arrow {
width: 48px;
height: 48px;
line-height: 50px;
text-align: center;
background-color: rgba(204, 204, 204, 0.5);
transition: 0.5s;
cursor: pointer;
color: #000;
font-size: 18px;
position: absolute;
top: 50%;
left: 0;
transform: translateY(-50%);
pointer-events: auto;
}
.page-header-sliders .slick-arrow-content .slick-arrow:hover {
background-color: #cccccc;
}
.page-header-sliders .slick-arrow-content .slick-next-arrow {
right: 0;
left: auto;
}
.mf-blog-page .page-header-blog.layout-1 {
padding-bottom: 5px;
}
.mf-blog-page .page-header-blog.layout-1 .breadcrumbs {
justify-content: center;
}
.mf-blog-page .page-header-blog.hide-title {
padding: 0;
}
.mf-blog-page .page-header-blog.hide-title .entry-title {
line-height: 0;
text-indent: -9999px;
}
.mf-blog-page.has-blog-cats .page-header-blog.layout-1 {
padding-bottom: 30px;
}
.mf-blog-page.has-blog-cats .site-content {
padding-top: 50px;
}
.single-post-header {
padding-top: 110px;
padding-bottom: 110px;
}
.single-post-header .entry-title {
font-size: 48px;
font-weight: 600;
max-width: 770px;
margin: 0 auto;
line-height: 1;
}
.single-post-header .entry-metas {
margin-top: 30px;
font-size: 16px;
color: #999;
}
.single-post-header .entry-metas a {
color: #191918;
}
.single-post-header .entry-metas a:hover {
color: var(--mf-primary-color);
}
.single-post-header .entry-metas .sep {
color: #191918;
}
.single-post-header.layout-1 {
padding-bottom: 20px;
}
.single-post-header.layout-2 {
position: relative;
padding-top: 180px;
padding-bottom: 180px;
}
.single-post-header.layout-2 .featured-image {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
background-position: center;
z-index: -1;
background-attachment: fixed;
}
.single-post-header.layout-2 .cat-links {
margin-bottom: 40px;
}
.single-post-header.layout-2 .cat-links a {
font-size: 18px;
text-transform: uppercase;
color: #000;
font-weight: 600;
}
.single-post-header.layout-2.has-bg .cat-links a {
color: #fff;
}
.single-post-header.layout-2.has-bg .featured-image:before {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
content: "";
background-color: rgba(0, 0, 0, 0.3);
z-index: -1;
}
.single-post-header.layout-2.has-bg .entry-title {
color: #fff;
}
.single-post-header.layout-2.has-bg .entry-metas {
color: #fff;
}
.single-post-header.layout-2.has-bg .entry-metas a {
color: #fff;
}
.single-post-header.layout-2.has-bg .entry-metas a:hover {
color: var(--mf-primary-color);
}
.single-post-header.layout-2.has-bg .entry-metas .sep {
color: #fff;
}
.single-post-header.layout-3 {
padding-top: 130px;
padding-bottom: 0;
}
.page-header-catalog {
padding-top: 0;
padding-bottom: 0;
}
.page-header-catalog .page-title {
background-color: var(--mf-background-primary-color);
padding-top: 40px;
padding-bottom: 40px;
}
.page-header-catalog .page-title .entry-title {
font-size: 30px;
margin: 0;
}
.page-header-catalog .page-title.hide-title {
padding: 0;
}
.page-header-catalog .page-title.hide-title .entry-title {
line-height: 0;
text-indent: -9999px;
}
.page-header-catalog .page-breadcrumbs {
background-color: #f1f1f1;
}
.page-header-catalog .page-breadcrumbs .breadcrumbs {
padding-top: 20px;
padding-bottom: 20px;
}
.mf-catalog-layout-3 .page-header-catalog,
.mf-catalog-layout-10 .page-header-catalog {
padding-top: 0;
padding-bottom: 0;
}
.mf-catalog-layout-3 .page-header-catalog .page-title,
.mf-catalog-layout-10 .page-header-catalog .page-title {
padding: 0;
}
.mf-catalog-layout-3 .page-header-catalog .page-title .entry-title,
.mf-catalog-layout-10 .page-header-catalog .page-title .entry-title {
line-height: 0;
text-indent: -9999px;
}
.page-header-page {
padding-top: 0;
padding-bottom: 0;
}
.page-header-page .entry-title {
padding-top: 115px;
padding-bottom: 25px;
font-size: 48px;
font-weight: 600;
text-align: center;
margin-bottom: 0;
}
.page-header-page.hide-title .entry-title {
line-height: 0;
text-indent: -9999px;
padding: 0;
}
.page-header-page .page-breadcrumbs {
background-color: #f1f1f1;
}
.page-header-page .page-breadcrumbs .breadcrumbs {
padding-top: 20px;
padding-bottom: 20px;
}
.woocommerce-account .page-header-page .entry-title {
background-color: #f1f1f1;
}
.woocommerce-account.logged-in .page-header-page .entry-title {
background-color: transparent;
}
.page-header-default {
padding-top: 0;
padding-bottom: 0;
}
.page-header-default .page-breadcrumbs {
background-color: #f1f1f1;
}
.page-header-default .page-breadcrumbs .breadcrumbs {
padding-top: 20px;
padding-bottom: 20px;
} .nav a {
color: #999;
font-size: 14px;
display: inline-block;
position: relative;
}
.nav a:hover {
text-decoration: none;
color: #000;
}
.nav ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.nav ul ul {
transition: top 0.3s ease 0s, opacity 0.3s;
position: absolute;
left: 0;
top: 110%;
width: auto;
min-width: 200px;
border: 1px solid #ccc;
background-color: #fff;
opacity: 0;
z-index: -1;
padding: 10px 0;
transform: scaleX(0);
display: block;
border-radius: 0;
box-shadow: none;
}
.nav ul ul ul {
transition: left 0.3s ease 0s, opacity 0.3s;
left: 110%;
top: 0;
box-shadow: none;
padding: 10px 0;
border-top: 1px solid #ccc;
}
.nav li {
display: inline-block;
padding: 10px 22px;
position: relative;
text-align: left;
margin: 0;
}
.nav li:hover > ul {
opacity: 1;
z-index: 999;
top: 100%;
transform: scaleX(1);
}
.nav li li {
text-align: left;
display: block;
padding: 0 30px;
}
.nav li li a {
color: #000;
font-size: 14px;
padding: 8px 0;
text-transform: none;
transition: 0.5s;
display: inline-block;
position: relative;
background-color: transparent;
white-space: nowrap;
line-height: 1;
}
.nav li li a .items-badge {
position: absolute;
right: 0;
top: 8px;
}
.nav li li a .items-badge > span {
position: absolute;
left: 0;
top: 0;
opacity: 0;
margin-left: 10px;
}
.nav li li a .items-badge > span:last-child {
opacity: 1;
}
.nav li li a:hover {
color: var(--mf-primary-color);
background-color: transparent;
}
.nav li li:hover > ul {
top: -10px;
left: 100%;
}
.nav li li:hover > ul li a:hover:before {
left: -30px;
}
.nav li li:first-child > a {
border-top-width: 0;
}
.nav li > ul {
left: -10px;
}
.nav > .menu > li:first-child > ul {
left: -30px;
}
.nav .menu .is-mega-menu {
position: static;
}
.nav .menu .is-mega-menu.has-width {
position: relative;
}
.nav .menu .is-mega-menu:hover .dropdown-submenu {
transform: translateX(-50%) scale(1);
}
.nav .menu .is-mega-menu:hover .dropdown-submenu.alignment {
transform: scale(1);
}
.nav .menu .is-mega-menu:hover.align-left .dropdown-submenu, .nav .menu .is-mega-menu:hover.align-right .dropdown-submenu {
transform: scale(1);
}
.nav .menu .is-mega-menu.align-left .dropdown-submenu {
left: 0;
transform: scale(0);
}
.nav .menu .is-mega-menu.align-right .dropdown-submenu {
right: 0;
left: auto;
transform: scale(0);
}
.nav .menu .is-mega-menu .dropdown-submenu {
left: 50%;
transform: translateX(-50%) scale(0);
width: 100%;
padding: 0;
}
.nav .menu .is-mega-menu .dropdown-submenu > li {
padding: 0;
}
.nav .menu .is-mega-menu .dropdown-submenu .mega-menu-content {
padding: 25px 30px 10px;
}
.nav .menu .is-mega-menu .dropdown-submenu .mega-menu-content > .row {
display: flex;
flex-wrap: wrap;
}
.nav .menu .is-mega-menu .dropdown-submenu .mega-menu-content > .row:after, .nav .menu .is-mega-menu .dropdown-submenu .mega-menu-content > .row:before {
display: none;
}
.nav .menu .is-mega-menu .dropdown-submenu .menu-item-mega a {
white-space: normal;
}
.nav .menu .is-mega-menu .dropdown-submenu .menu-item-mega a.is-label {
color: #000;
font-size: 16px;
margin: 20px 0 0;
padding: 0 0 7px;
font-weight: 600;
}
.nav .menu .is-mega-menu .dropdown-submenu .menu-item-mega > a {
color: #000;
font-size: 16px;
margin: 0;
padding: 0 0 7px;
font-weight: 600;
}
.nav .menu .is-mega-menu .dropdown-submenu .menu-item-mega > a.hide-text {
display: none;
}
.nav .menu .is-mega-menu .dropdown-submenu .menu-item-mega > a.visible-text {
visibility: hidden;
}
.nav .menu .is-mega-menu .dropdown-submenu .menu-item-mega .sub-menu {
background-color: transparent;
}
.nav .menu .is-mega-menu .dropdown-submenu .menu-item-mega .sub-menu .sub-menu {
margin-left: 10px;
padding-bottom: 0;
}
.nav .menu .is-mega-menu .dropdown-submenu .mega-menu-submenu .sub-menu {
position: static;
transform: scaleX(1);
opacity: 1;
width: 100%;
border: none;
z-index: 9999;
min-width: inherit;
}
.nav .menu .is-mega-menu .dropdown-submenu .mega-menu-submenu .sub-menu li {
padding: 0;
}
.nav .menu .is-mega-menu .dropdown-submenu .mega-menu-submenu .sub-menu li:first-child > a {
padding-top: 0;
}
.nav .menu .is-mega-menu:hover .mega-menu-container {
opacity: 1;
top: 100%;
z-index: 9999;
transform: scaleX(1);
}
.nav .menu .is-mega-menu .sub-menu {
transform: scaleX(1);
}
.nav .menu .is-mega-menu.custom-text-color a.is-label {
color: inherit;
}
.nav .menu .is-mega-menu.custom-text-color .dropdown-submenu .menu-item-mega > a {
color: inherit;
}
.nav .menu .is-mega-menu.custom-text-color .mega-menu-submenu .sub-menu li > a {
color: inherit;
}
.nav .menu .hot-badge,
.nav .menu .new-badge,
.nav .menu .trending-badge {
font-size: 12px;
color: #cc3333;
font-weight: 500;
background-color: transparent;
}
.nav .menu .hot-badge {
color: #f08a47;
}
.nav .menu .trending-badge {
color: #0099cc;
}  .catalog-ajax-filter #page {
transition: opacity .7s;
opacity: .2;
}
.catalog-ajax-filter #page.fade-in {
opacity: 1;
}
.mf-preloader .martfury-preloader {
transition: opacity .7s;
opacity: .7;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 99999;
background-color: #fff;
}
.mf-preloader .martfury-preloader.fade-in {
display: none;
}
.site-content {
padding-top: 90px;
padding-bottom: 90px;
}
.page-template-template-homepage .site-content,
.page-template-template-home-full-width .site-content,
.page-template-template-full-width .site-content {
padding-top: 0;
padding-bottom: 0;
}
.sidebar-content .content-area,
.blog-layout-sidebar-content .content-area {
float: right;
}
.single-post.sidebar-content .content-area,
.blog-layout-sidebar-content .content-area {
padding-left: 70px;
}
.single-post.content-sidebar .content-area,
.blog-layout-small-thumb .content-area,
.blog-layout-content-sidebar .content-area {
padding-right: 70px;
}
.mf-taxs-list {
margin-top: 60px;
}
.mf-taxs-list ul {
margin: 0;
padding: 0;
text-align: center;
}
.mf-taxs-list ul li {
list-style: none;
display: inline-block;
padding: 0 15px;
}
.mf-taxs-list ul li a {
font-size: 18px;
font-weight: 600;
color: #999;
line-height: 1;
}
.mf-taxs-list ul li a:hover, .mf-taxs-list ul li a.selected {
color: #000;
}
.blog-wapper {
margin-bottom: 50px;
}
.blog-wapper:nth-child(3n+1) {
clear: both;
}
.blog-wapper .entry-format {
margin-bottom: 25px;
}
.blog-wapper .entry-format > a {
position: relative;
display: block;
}
.blog-wapper .entry-format > a:hover {
opacity: 0.7;
}
.blog-wapper .entry-format.format-link {
text-align: left;
}
.blog-wapper .entry-format.format-link .desc {
font-size: 20px;
color: #000;
margin-bottom: 30px;
}
.blog-wapper .entry-desc {
padding-bottom: 30px;
padding-top: 10px;
}
.blog-wapper .entry-desc p {
margin-bottom: 0;
}
.blog-wapper .categories-links {
margin-bottom: 15px;
}
.blog-wapper .categories-links a {
color: #000;
}
.blog-wapper .categories-links a:hover {
color: var(--mf-primary-color);
}
.blog-wapper .entry-title {
font-size: 20px;
font-weight: 600;
margin: 0 0 20px;
}
.blog-wapper .entry-title a {
color: #000;
}
.blog-wapper .entry-title a:hover {
color: var(--mf-primary-color);
}
.blog-wapper .entry-meta {
color: #999;
}
.blog-wapper .entry-meta:hover {
color: #000;
}
.blog-wapper .entry-meta a {
color: #000;
}
.blog-wapper .entry-meta a:hover {
color: var(--mf-primary-color);
}
.blog-wapper .cat-links {
display: none;
}
.blog-wapper.sticky .entry-title {
position: relative;
padding-left: 30px;
}
.blog-wapper.sticky .entry-title:before {
position: absolute;
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
top: 0;
left: 0;
font-size: 24px;
transition: 0.5s;
}
.blog-wapper.sticky .entry-title:hover:before {
color: var(--mf-primary-color);
}
.blog-wapper.post-item-grid .entry-format > a {
position: relative;
}
.blog-wapper.post-item-grid .entry-format > a:before {
position: absolute;
top: 15px;
right: 15px;
font-family: "Ionicons";
content: "\f4cd";
display: none;
font-size: 24px;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background-color: #242424;
z-index: 10;
}
.blog-wapper.post-item-grid .format-video > a:before {
display: block;
}
.blog-wapper.post-item-grid .format-gallery > a:before {
content: "\f148";
display: block;
}
.blog-wapper.post-item-grid .format-audio > a:before {
content: "\f257";
display: block;
}
.blog-wapper.post-item-grid .format-quote > a:before {
content: "\f347";
display: block;
}
.blog-wapper.post-item-grid .format-link > a:before {
content: "\f1fe";
display: block;
}
.blog-wapper.post-item-list {
margin-bottom: 65px;
}
.blog-wapper.post-item-list.format-link .entry-header {
background-color: #f2f2f2;
padding: 60px;
}
.blog-wapper.post-item-list.format-link .entry-content {
display: none;
}
.blog-wapper.post-item-list.format-quote .entry-content {
display: none;
}
.blog-wapper.post-item-list.format-video, .blog-wapper.post-item-list.format-gallery, .blog-wapper.post-item-list.format-audio, .blog-wapper.post-item-list.format-standard, .blog-wapper.post-item-list.format-image {
display: flex;
}
.blog-wapper.post-item-list.format-video .entry-header, .blog-wapper.post-item-list.format-gallery .entry-header, .blog-wapper.post-item-list.format-audio .entry-header, .blog-wapper.post-item-list.format-standard .entry-header, .blog-wapper.post-item-list.format-image .entry-header {
width: 65.66%;
float: left;
}
.blog-wapper.post-item-list.format-video .entry-format, .blog-wapper.post-item-list.format-gallery .entry-format, .blog-wapper.post-item-list.format-audio .entry-format, .blog-wapper.post-item-list.format-standard .entry-format, .blog-wapper.post-item-list.format-image .entry-format {
margin-bottom: 0;
}
.blog-wapper.post-item-list.format-video .entry-content, .blog-wapper.post-item-list.format-gallery .entry-content, .blog-wapper.post-item-list.format-audio .entry-content, .blog-wapper.post-item-list.format-standard .entry-content, .blog-wapper.post-item-list.format-image .entry-content {
width: 34.33%;
float: right;
padding: 60px;
background-color: #f2f2f2;
display: flex;
justify-content: space-between;
flex-direction: column;
}
.blog-wapper.post-item-list.format-gallery ul.slides {
padding: 0;
overflow: hidden;
margin: 0;
position: relative;
}
.blog-wapper.post-item-list.format-gallery ul.slides li {
float: left;
list-style: none;
margin-bottom: 0;
}
.blog-wapper.post-item-list.format-gallery ul.slides li:focus {
outline: none;
}
.blog-wapper.post-item-list.format-gallery ul.slides .slick-arrow {
font-size: 24px;
z-index: 99;
cursor: pointer;
font-weight: 700;
color: #fff;
transition: 0.5s;
position: absolute;
bottom: 25px;
top: auto;
transform: none;
left: 25px;
width: 40px;
height: 40px;
line-height: 42px;
text-align: center;
background-color: #2f2f2f;
border-radius: 3px;
}
.blog-wapper.post-item-list.format-gallery ul.slides .slick-arrow:hover {
background-color: #000;
}
.blog-wapper.post-item-list.format-gallery ul.slides .slick-arrow.slick-disabled {
cursor: auto;
}
.blog-wapper.post-item-list.format-gallery ul.slides .slick-next-arrow {
left: 75px;
}
.blog-wapper.post-item-list.blog-no-image .entry-content {
background-color: #f2f2f2;
padding: 60px;
width: 100%;
}
.blog-wapper.post-item-list.blog-no-image .entry-header {
display: none;
}
.blog-wapper.post-item-small-thumb {
display: flex;
}
.blog-wapper.post-item-small-thumb .entry-header {
width: 33.33%;
float: left;
padding-right: 15px;
}
.blog-wapper.post-item-small-thumb .entry-format {
margin-bottom: 0;
}
.blog-wapper.post-item-small-thumb .entry-format > a {
position: relative;
display: block;
}
.blog-wapper.post-item-small-thumb .entry-format > a:before {
position: absolute;
top: 15px;
right: 15px;
font-family: "Ionicons";
content: "\f4cd";
display: none;
font-size: 24px;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background-color: #242424;
z-index: 10;
}
.blog-wapper.post-item-small-thumb .format-video > a:before {
display: block;
}
.blog-wapper.post-item-small-thumb .format-gallery > a:before {
content: "\f148";
display: block;
}
.blog-wapper.post-item-small-thumb .format-audio > a:before {
content: "\f257";
display: block;
}
.blog-wapper.post-item-small-thumb .entry-content {
width: 66.66%;
float: right;
padding-left: 15px;
display: flex;
justify-content: space-between;
flex-direction: column;
}
.blog-wapper.post-item-small-thumb .entry-content .entry-title {
margin-bottom: 15px;
}
.blog-wapper.post-item-small-thumb .entry-content .entry-desc {
padding-top: 0;
}
.blog-wapper.post-item-small-thumb .entry-content .entry-content-bottom {
border-top: 1px solid #e1e1e1;
padding-top: 15px;
}
.blog-wapper.post-item-small-thumb.format-quote .entry-header, .blog-wapper.post-item-small-thumb.format-link .entry-header {
width: 100%;
padding-right: 0;
border-bottom: 1px solid #e1e1e1;
padding-bottom: 40px;
}
.blog-wapper.post-item-small-thumb.format-quote .entry-content, .blog-wapper.post-item-small-thumb.format-link .entry-content {
display: none;
}
.blog-wapper.post-item-small-thumb.format-link .entry-header {
background-color: #f2f2f2;
padding: 60px;
border-bottom: none;
}
.blog-wapper.post-item-small-thumb.format-video .entry-header, .blog-wapper.post-item-small-thumb.format-gallery .entry-header, .blog-wapper.post-item-small-thumb.format-standard .entry-header {
margin-top: 6px;
}
.blog-wapper.post-item-small-thumb.format-audio {
display: block;
}
.blog-wapper.post-item-small-thumb.format-audio .entry-header {
width: 100%;
padding-right: 0;
margin-bottom: 30px;
}
.blog-wapper.post-item-small-thumb.format-audio .entry-content {
width: 100%;
padding-left: 0;
}
.blog-wapper.post-item-small-thumb.blog-no-image .entry-header {
display: none;
}
.blog-wapper.post-item-small-thumb.blog-no-image .entry-content {
width: 100%;
padding-left: 0;
border-bottom: 1px solid #e1e1e1;
padding-bottom: 40px;
}
.blog-wapper.post-item-small-thumb.blog-no-image .entry-content .entry-content-bottom {
border-top: none;
padding-top: 0;
}
.blog-layout-sidebar-content .blog-wapper:nth-child(3n+1),
.blog-layout-content-sidebar .blog-wapper:nth-child(3n+1) {
clear: none;
}
.blog-layout-sidebar-content .blog-wapper:nth-child(2n + 2),
.blog-layout-content-sidebar .blog-wapper:nth-child(2n + 2) {
clear: both;
}
.blog-layout-sidebar-content .blog-wapper .entry-format > a,
.blog-layout-content-sidebar .blog-wapper .entry-format > a {
position: relative;
}
.blog-layout-sidebar-content .blog-wapper .entry-format > a:before,
.blog-layout-content-sidebar .blog-wapper .entry-format > a:before {
position: absolute;
top: 15px;
right: 15px;
font-family: "Ionicons";
content: "\f4cd";
display: none;
font-size: 24px;
color: #fff;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background-color: #242424;
z-index: 10;
}
.blog-layout-sidebar-content .blog-wapper .format-video > a:before,
.blog-layout-content-sidebar .blog-wapper .format-video > a:before {
display: block;
}
.blog-layout-sidebar-content .blog-wapper .format-gallery > a:before,
.blog-layout-content-sidebar .blog-wapper .format-gallery > a:before {
content: "\f148";
display: block;
}
.blog-layout-sidebar-content .blog-wapper .format-audio > a:before,
.blog-layout-content-sidebar .blog-wapper .format-audio > a:before {
content: "\f257";
display: block;
}
.blog-layout-sidebar-content .blog-wapper .format-quote > a:before,
.blog-layout-content-sidebar .blog-wapper .format-quote > a:before {
content: "\f347";
display: block;
}
.blog-layout-sidebar-content .blog-wapper .format-link > a:before,
.blog-layout-content-sidebar .blog-wapper .format-link > a:before {
content: "\f1fe";
display: block;
}
.blog-layout-masonry .blog-wapper .entry-image img {
height: auto;
}
.numeric-navigation {
display: flex;
align-items: center;
justify-content: center;
}
.numeric-navigation .page-numbers {
color: #000;
font-size: 14px;
text-align: center;
padding: 0 12px;
height: 32px;
background-color: #f5f5f5;
min-width: 34px;
margin-right: 5px;
margin-left: 5px;
display: flex;
align-items: center;
}
.numeric-navigation .page-numbers.current, .numeric-navigation .page-numbers:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.numeric-navigation .next:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 10px;
padding-left: 8px;
}
.numeric-navigation .prev:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 10px;
padding-left: 8px;
}
.mf-blog-page .paging-navigation {
margin-top: 50px;
margin-bottom: 50px;
display: flex;
align-items: center;
justify-content: center;
}
.mf-blog-page .paging-navigation.infinite {
justify-content: center;
}
.mf-blog-page .paging-navigation.infinite .page-numbers {
display: none;
}
.mf-blog-page .paging-navigation.infinite .next {
display: block;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 15px;
}
.blog-layout-small-thumb .paging-navigation,
.blog-layout-content-sidebar .paging-navigation,
.blog-layout-sidebar-content .paging-navigation {
justify-content: flex-start;
}
.blog-layout-small-thumb .blog-wapper .entry-header .entry-image img,
.blog-layout-content-sidebar .blog-wapper .entry-header .entry-image img,
.blog-layout-sidebar-content .blog-wapper .entry-header .entry-image img {
height: auto;
}
.blog-layout-small-thumb blockquote {
font-size: 16px;
line-height: 2;
}
.single-post .entry-header .entry-format {
margin-bottom: 90px;
}
.single-post .entry-header .entry-title {
font-size: 36px;
font-weight: 600;
line-height: 1;
margin: 0;
}
.single-post .entry-header .entry-metas {
margin-top: 20px;
font-size: 16px;
color: #999;
}
.single-post .entry-header .entry-metas a {
color: #191918;
}
.single-post .entry-header .entry-metas a:hover {
color: var(--mf-primary-color);
}
.single-post .entry-header .entry-metas .sep {
color: #191918;
}
.single-post .entry-format {
text-align: center;
position: relative;
}
.single-post .entry-format.format-quote {
text-align: left;
}
.single-post .entry-format.format-quote blockquote {
font-size: 20px;
}
.single-post .entry-format.format-quote blockquote cite {
margin-top: 55px;
font-size: 16px;
font-weight: 600;
}
.single-post .entry-format.format-quote blockquote cite a {
color: #000;
}
.single-post .entry-format.format-quote blockquote cite a:hover {
color: var(--mf-primary-color);
}
.single-post .entry-format.format-quote blockquote cite:before {
display: none;
}
.single-post .entry-format.format-link {
background-color: #f2f2f2;
padding: 60px;
text-align: left;
}
.single-post .entry-format.format-link .desc {
font-size: 20px;
color: #000;
margin-bottom: 35px;
}
.single-post .entry-format ul.slides {
padding: 0;
overflow: hidden;
margin: 0;
}
.single-post .entry-format ul.slides li {
float: left;
list-style: none;
}
.single-post .entry-format ul.slides li:focus {
outline: none;
}
.single-post .entry-format ul.slides .slick-arrow {
font-size: 24px;
z-index: 99;
cursor: pointer;
font-weight: 700;
color: #fff;
transition: 0.5s;
position: absolute;
top: 50%;
left: 20px;
transform: translateY(-50%);
width: 40px;
height: 40px;
line-height: 42px;
text-align: center;
background-color: #2f2f2f;
}
.single-post .entry-format ul.slides .slick-arrow:hover {
background-color: #000;
}
.single-post .entry-format ul.slides .slick-arrow.slick-disabled {
cursor: auto;
}
.single-post .entry-format ul.slides .slick-next-arrow {
right: 20px;
left: auto;
}
.single-post .entry-footer {
padding-top: 70px;
clear: both;
}
.single-post .entry-footer .tags-links {
text-align: center;
display: block;
color: #999;
}
.single-post .entry-footer .tags-links strong {
color: #000;
font-weight: 600;
}
.single-post .entry-footer .tags-links a {
color: #999;
}
.single-post .entry-footer .tags-links a:hover {
color: var(--mf-primary-color);
}
.single-post .entry-footer .footer-socials {
text-align: center;
margin-top: 30px;
}
.single-post .entry-footer .footer-socials a {
width: 45px;
height: 45px;
line-height: 47px;
text-align: center;
font-size: 24px;
color: #fff;
background-color: #1b4e9b;
display: inline-block;
margin: 0 6px;
}
.single-post .entry-footer .footer-socials .share-twitter {
background-color: #00aeef;
}
.single-post .entry-footer .footer-socials .share-google-plus {
background-color: #cc0000;
}
.single-post .entry-footer .footer-socials .share-pinterest {
background-color: #c82228;
}
.single-post .entry-footer .footer-socials .share-linkedin {
background-color: #0077b5;
}
.single-post .entry-footer .footer-socials .share-vkontakte {
background-color: #4c75a3;
}
.single-post .post-author-box {
background-color: #f0f0f0;
margin-top: 100px;
padding: 60px;
}
.single-post .post-author-box .post-author-avatar {
width: 130px;
float: left;
margin-top: 5px;
}
.single-post .post-author-box .post-author-desc {
padding-left: 160px;
font-size: 16px;
}
.single-post .post-author-box .post-author-desc h3 {
font-size: 24px;
font-weight: 600;
margin: 0 0 10px;
}
.single-post .mf-related-posts {
margin-top: 80px;
}
.single-post .mf-related-posts .related-title {
text-align: center;
font-size: 24px;
font-weight: 600;
margin: 0 0 60px;
}
.single-post .mf-related-posts .entry-header .entry-format {
margin-bottom: 25px;
}
.single-post .mf-related-posts .entry-format.format-link {
padding: 0;
background-color: transparent;
}
.single-post .mf-related-posts .blog-wapper {
margin-bottom: 0;
clear: none;
}
.single-post .mf-related-posts .slick-dots {
text-align: center;
margin: 70px auto 0;
}
.single-post .mf-related-posts .slick-dots li {
display: inline-block;
width: 12px;
height: 12px;
background-color: #ccc;
margin: 0 10px;
border-radius: 50%;
cursor: pointer;
transition: 0.5s;
}
.single-post .mf-related-posts .slick-dots li.slick-active {
background-color: #666;
}
.single-post .mf-related-posts .slick-dots li button {
display: none;
}
.single-post .post-navigation {
padding-top: 60px;
}
.single-post .post-navigation .nav-links:after {
clear: both;
display: block;
content: "";
}
.single-post .post-navigation .nav-previous {
width: 50%;
float: left;
}
.single-post .post-navigation .nav-previous .nav-subtitle {
padding-left: 17px;
}
.single-post .post-navigation .nav-next {
width: 50%;
float: right;
text-align: right;
}
.single-post .post-navigation .nav-next .nav-subtitle {
padding-right: 17px;
}
.single-post .post-navigation .nav-links a {
font-size: 24px;
color: #999;
}
.single-post .post-navigation .nav-links a:hover {
color: var(--mf-primary-color);
}
.single-post .post-navigation .nav-links .nav-title {
font-size: 16px;
color: #000;
font-weight: 600;
line-height: 1.2;
display: block;
margin-top: 15px;
}
.single-post .post-footer {
margin-bottom: 65px;
}
.single-post .comments-area {
padding: 90px 0;
border-top: 1px solid #e1e1e1;
margin-top: 90px;
}
.single-post .comments-area .wp-social-login-widget {
margin-bottom: 30px;
}
.single-post.single-post-layout-3 .single-post-wrapper .entry-header, .single-post.single-post-layout-4 .single-post-wrapper .entry-header {
margin-bottom: 80px;
}
.single-post.single-post-layout-3 .post-author-box, .single-post.single-post-layout-4 .post-author-box {
padding: 45px;
}
.single-post.content-sidebar .comments-area .col-comment, .single-post.sidebar-content .comments-area .col-comment {
width: 100%;
margin-left: 0;
}
.single-post.content-sidebar .comments-area .comments-title, .single-post.sidebar-content .comments-area .comments-title {
text-align: left;
}
.single-post.content-sidebar .comment-respond .comment-reply-title,
.single-post.content-sidebar .comment-respond .form-submit, .single-post.sidebar-content .comment-respond .comment-reply-title,
.single-post.sidebar-content .comment-respond .form-submit {
text-align: left;
}
.single-post.content-sidebar .entry-footer .tags-links,
.single-post.content-sidebar .entry-footer .footer-socials, .single-post.sidebar-content .entry-footer .tags-links,
.single-post.sidebar-content .entry-footer .footer-socials {
text-align: left;
}
.single-post .post-password-form input[type=password] {
border: 1px solid #cfcfcf;
height: 40px;
line-height: 40px;
padding: 0 5px;
}
.single-post .post-password-form input[type=submit] {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
height: 40px;
line-height: 39px;
padding: 0 25px;
}
.error404 .site-content {
padding: 165px 0;
background-color: #efeef0;
}
.error-404 .page-content {
text-align: center;
}
.error-404 .page-content .page-title {
font-size: 36px;
font-weight: 600;
margin: 0 0 30px;
}
.error-404 .page-content a {
color: var(--mf-primary-color);
text-decoration: underline;
}
.error-404 .page-content .search-form {
max-width: 370px;
margin: 40px auto 0;
background-color: #fff;
}
.error-404 .page-content p {
font-size: 18px;
}
.error-404 .page-content img {
margin-bottom: 100px;
}
.error-404 .search-form {
padding: 16px 20px;
border: 0;
}
.page-template-template-coming-soon-page {
text-align: center;
padding-top: 60px;
}
.page-template-template-coming-soon-page .site-content {
padding-top: 50px;
padding-bottom: 50px;
}
.page-template-template-coming-soon-page .site-footer {
border: none;
}
.page-template-template-coming-soon-page .coming-soon-socials {
margin-top: 100px;
}
.page-template-template-coming-soon-page .coming-soon-socials a {
color: #ccc;
}
.page-template-template-coming-soon-page .coming-soon-socials a:hover {
color: #000;
}
.search-results .numeric-navigation {
clear: both;
text-align: center;
}
.search-results .site-content {
padding-top: 50px;
}
.search-results .site-content .blog-wapper {
width: 100%;
display: flex;
}
.search-results .site-content .blog-wapper .entry-header {
width: 65.66%;
float: left;
}
.search-results .site-content .blog-wapper .entry-content {
background-color: #f2f2f2;
padding: 60px;
width: 34.33%;
float: right;
display: flex;
justify-content: space-between;
flex-direction: column;
}
.search-results .site-content .blog-wapper.no-thumb .entry-content {
width: 100%;
float: none;
}
.search-no-results .site-content {
padding-top: 0;
}
.search-no-results .page-header .breadcrumbs {
justify-content: center;
}
.search-no-results .no-results .page-header {
padding-top: 0;
padding-bottom: 0;
}
body.page .comments-area {
border-top: 1px solid #e1e1e1;
padding-top: 90px;
margin-top: 90px;
}
body.page .comments-area .comments-title {
text-align: left;
}
body.page .comments-area .comments-links {
margin-bottom: 20px;
}
body.page .comments-area .col-comment {
margin-left: 0;
width: 100%;
}
body.page .comments-area .comment-respond .comment-reply-title,
body.page .comments-area .comment-respond .form-submit {
text-align: left;
}
.page .entry-content .page-links,
.single-post .entry-content .page-links {
clear: both;
}
.woocommerce {  }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
border-radius: 0;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled],
.woocommerce a.button .disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce button.button .disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce input.button .disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled],
.woocommerce #respond input#submit .disabled {
padding: 0 25px;
color: var(--mf-background-primary-text-color);
}
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.woocommerce a.button:hover, .woocommerce a.button:focus, .woocommerce a.button:active,
.woocommerce button.button:hover,
.woocommerce button.button:focus,
.woocommerce button.button:active,
.woocommerce input.button:hover,
.woocommerce input.button:focus,
.woocommerce input.button:active,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:focus,
.woocommerce #respond input#submit:active {
outline: none;
}
.woocommerce ul.products {
margin: 0;
}
.woocommerce ul.products li.product {
margin-bottom: 25px;
padding-left: 0;
padding-right: 0;
}
.woocommerce ul.products li.product.product-category {
padding: 20px;
border: 1px solid transparent;
}
.woocommerce ul.products li.product.product-category .woocommerce-loop-category__title {
color: #000;
font-weight: 400;
margin-top: 15px;
line-height: 1;
padding: 0;
}
.woocommerce ul.products li.product.product-category .woocommerce-loop-category__title .count {
background-color: transparent;
}
.woocommerce ul.products li.product.product-category:hover {
border-color: #c0c0c0;
}
.woocommerce ul.products li.product.product-category:hover .woocommerce-loop-category__title,
.woocommerce ul.products li.product.product-category:hover .count {
color: var(--mf-primary-color);
}
.woocommerce ul.products li.product .product-inner {
padding: 20px 20px 0;
border: 1px solid transparent;
border-bottom: none;
margin-bottom: 30px;
}
.woocommerce ul.products li.product .product-inner:hover {
border-color: #c0c0c0;
}
.woocommerce ul.products li.product .product-inner:hover .footer-button {
opacity: 1;
}
.woocommerce ul.products li.product .product-inner:hover .mf-product-details-hover {
opacity: 1;
z-index: 100;
background-color: #fff;
border-color: #c0c0c0;
pointer-events: auto;
}
.woocommerce ul.products li.product .product-inner:hover .mf-product-thumbnail .footer-button {
bottom: 0;
}
.woocommerce ul.products li.product .product-inner:hover .hover-image {
opacity: 1;
}
.woocommerce ul.products li.product .product-inner .mf-rating .count {
display: inline-block;
}
.woocommerce ul.products li.product a img {
margin: 0;
width: auto;
}
.woocommerce ul.products li.product a img.lazy {
width: 100%;
}
.woocommerce ul.products li.product .onsale {
margin: 0;
top: 0;
right: 0;
}
.woocommerce ul.products li.product .sold-by-meta {
display: none;
}
.woocommerce ul.products li.product .mf-vendor-name .sold-by-meta {
display: block;
border-bottom: 1px solid #e1e1e1;
padding-bottom: 8px;
margin-bottom: 13px;
line-height: 1.2;
font-size: 12px;
}
.woocommerce ul.products li.product .mf-vendor-name .sold-by-meta a {
color: #000;
text-transform: uppercase;
}
.woocommerce ul.products li.product .mf-vendor-name .sold-by-meta .sold-by-label {
display: none;
}
.woocommerce ul.products li.product .meta-brand {
padding-bottom: 3px;
color: #000;
}
.woocommerce ul.products li.product .meta-brand a {
color: #666;
padding-left: 5px;
}
.woocommerce ul.products li.product .meta-brand a:hover {
color: #000;
}
.woocommerce ul.products li.product .mf-product-details {
position: relative;
}
.woocommerce ul.products li.product .woocommerce-product-details__short-description {
display: none;
}
.woocommerce ul.products li.product .mf-product-price-box .footer-button {
display: none;
}
.woocommerce ul.products li.product .mf-product-content br {
display: none;
}
.woocommerce ul.products li.product .mf-attr-swatches {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: 15px;
margin-left: -5px;
margin-right: -5px;
}
.woocommerce ul.products li.product .mf-attr-swatches .swatch-image {
display: inline-block;
padding: 0 5px;
cursor: pointer;
transition: 0.35s;
overflow: hidden;
}
.woocommerce ul.products li.product .mf-attr-swatches .swatch-image img {
max-width: 45px !important;
height: auto;
border: 1px solid transparent;
}
.woocommerce ul.products li.product .mf-attr-swatches .swatch-image:hover img {
border-color: #c0c0c0;
}
.woocommerce ul.products li.product .mf-attr-swatches .slick-arrow {
z-index: 10;
color: #999;
top: 55%;
transition: 0.5s;
}
.woocommerce ul.products li.product .mf-attr-swatches .slick-arrow:hover {
color: #000;
}
.woocommerce ul.products li.product .mf-attr-swatches .slick-prev-arrow {
left: -13px;
}
.woocommerce ul.products li.product .mf-attr-swatches .slick-next-arrow {
right: -13px;
}
.woocommerce ul.products li.product .mf-attr-swatches.slick-slider {
margin-left: 0;
margin-right: 0;
}
.woocommerce ul.products li.product .mf-product-details-hover {
position: absolute;
left: -21px;
right: -21px;
top: 0;
opacity: 0;
border: 1px solid transparent;
border-top: none;
min-height: 100%;
padding: 0 20px 20px;
pointer-events: none;
}
.woocommerce ul.products li.product .mf-product-details-hover .mf-rating {
display: none;
}
.woocommerce ul.products li.product .mf-product-details-hover .sold-by-meta {
display: block;
border-bottom: 1px solid #e1e1e1;
padding-bottom: 8px;
margin-bottom: 13px;
line-height: 1.2;
font-size: 12px;
color: #000;
}
.woocommerce ul.products li.product .mf-product-details-hover .sold-by-meta .sold-by-label {
display: none;
}
.woocommerce ul.products li.product .mf-product-details-hover .sold-by-meta a {
color: #000;
text-transform: uppercase;
font-weight: 400;
}
.woocommerce ul.products li.product .mf-product-details-hover .sold-by-meta a:hover {
color: var(--mf-primary-color);
}
.woocommerce ul.products li.product .mf-product-details-hover .product-title {
color: var(--mf-primary-color);
}
.woocommerce ul.products li.product .mf-product-details-hover a.button {
font-size: 14px;
height: 42px;
line-height: 42px;
border-radius: 3px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 15px;
}
.woocommerce ul.products li.product .mf-product-details-hover a.button .add-to-cart-text {
transition: padding 0.3s;
line-height: 1;
}
.woocommerce ul.products li.product .mf-product-details-hover a.button.added:after,
.woocommerce ul.products li.product .mf-product-details-hover a.button i {
display: none;
}
.woocommerce ul.products li.product .mf-product-details-hover a.button:after {
display: inline-block;
position: static;
order: -1;
width: 13px;
height: 13px;
border-color: var(--mf-background-primary-text-color) var(--mf-background-primary-text-color) var(--mf-background-primary-text-color) transparent;
}
.woocommerce ul.products li.product .mf-product-details-hover a.button.loading .add-to-cart-text {
padding-left: 5px;
}
.woocommerce ul.products li.product .mf-product-details-hover .added_to_cart {
display: none;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse {
position: relative;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .blockUI,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .blockUI,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse .blockUI {
display: none !important;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a {
padding: 0;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.loading:after {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
display: block;
position: absolute;
top: 10px;
left: 9px;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.loading:hover:after {
border-color: var(--mf-background-primary-text-color) var(--mf-background-primary-text-color) var(--mf-background-primary-text-color) transparent;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.loading .yith-wcwl-icon {
opacity: 0;
}
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist .feedback {
display: none;
}
.woocommerce ul.products li.product .wcboost-wishlist-button {
padding: 0;
}
.woocommerce ul.products li.product .compare-button .compare:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
}
.woocommerce ul.products li.product .compare-button .compare:after {
display: none;
}
.woocommerce ul.products li.product .compare-button .compare.loading {
position: relative;
opacity: 0.5;
}
.woocommerce ul.products li.product .compare-button .compare.loading:after {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
display: block;
position: absolute;
top: 10px;
left: 9px;
}
.woocommerce ul.products li.product .compare-button .compare.loading:before {
opacity: 0;
}
.woocommerce ul.products li.product .compare-button .compare.loading:hover:after {
border-color: var(--mf-background-primary-text-color) var(--mf-background-primary-text-color) var(--mf-background-primary-text-color) transparent;
}
.woocommerce ul.products li.product .compare-button .compare.added {
opacity: 1;
}
.woocommerce ul.products li.product .compare-button .compare.added:before {
opacity: 1;
}
.woocommerce ul.products li.product .compare-button .compare.added:after {
opacity: 0;
}
.woocommerce ul.products li.product .compare-button .blockUI {
display: none !important;
}
.woocommerce ul.products li.product .wcboost-products-compare-button {
display: inline-flex;
justify-content: center;
align-items: center;
}
.woocommerce ul.products li.product .wcboost-products-compare-button .wcboost-products-compare-button__icon {
margin-right: 0;
}
.woocommerce ul.products li.product .wcboost-products-compare-button .wcboost-products-compare-button__text {
display: none;
}
.woocommerce ul.products li.product .wcboost-products-compare-button.loading::before, .woocommerce ul.products li.product .wcboost-products-compare-button.loading::after {
display: none;
}
.woocommerce ul.products li.product .mf-product-thumbnail {
position: relative;
margin-bottom: 12px;
}
.woocommerce ul.products li.product .mf-product-thumbnail .hover-image {
position: absolute;
top: 0;
left: 0;
opacity: 0;
}
.woocommerce ul.products li.product .mf-product-thumbnail.hover-swatch .footer-button {
opacity: 0;
}
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist {
margin: 0 6px;
position: static;
}
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a {
color: #000;
width: 34px;
height: 34px;
line-height: 34px;
margin: 0;
background-color: transparent;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .fa-heart-o:before,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .fa-heart-o:before,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .fa-heart-o:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
}
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a > span,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a > span,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a > span {
display: none;
}
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a:hover,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a:hover,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .yith-wcwl-icon,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon,
.woocommerce ul.products li.product .mf-product-thumbnail .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon {
margin-top: 2px;
font-size: 14px;
margin-right: 0;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-wishlist-button {
margin: 0 6px;
position: static;
color: #000;
font-size: 16px;
width: 34px;
height: 34px;
background-color: transparent;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 50%;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-wishlist-button .wcboost-wishlist-button__icon {
margin: 2px 0 0;
line-height: 1;
font-size: 18px;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-wishlist-button .wcboost-wishlist-button__icon svg {
margin-left: 1px;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-wishlist-button .wcboost-wishlist-button__text {
display: none;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-wishlist-button.added .wcboost-wishlist-button__icon {
margin-top: 0;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-wishlist-button:hover, .woocommerce ul.products li.product .mf-product-thumbnail .wcboost-wishlist-button.added:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.woocommerce ul.products li.product .mf-product-thumbnail .compare-button {
margin-left: 6px;
}
.woocommerce ul.products li.product .mf-product-thumbnail .compare-button .compare {
width: 34px;
height: 34px;
line-height: 34px;
display: block;
overflow: hidden;
color: #000;
background-color: transparent;
margin: 0;
padding: 0;
border-radius: 50%;
}
.woocommerce ul.products li.product .mf-product-thumbnail .compare-button .compare:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.woocommerce ul.products li.product .mf-product-thumbnail .compare-button .compare:before {
width: 34px;
height: 34px;
line-height: 34px;
font-size: 18px;
text-align: center;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-products-compare-button {
width: 34px;
height: 34px;
border-radius: 50%;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-products-compare-button .wcboost-products-compare-button__icon {
font-size: 16px;
color: #000;
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-products-compare-button:hover {
background-color: var(--mf-background-primary-color);
}
.woocommerce ul.products li.product .mf-product-thumbnail .wcboost-products-compare-button:hover .wcboost-products-compare-button__icon {
color: var(--mf-background-primary-text-color);
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button {
position: absolute;
left: 0;
bottom: -15px;
right: 0;
background-color: #fff;
z-index: 10;
opacity: 0;
display: flex;
align-items: center;
justify-content: center;
padding: 10px 0;
transition: bottom 0.3s;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > a,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .added_to_cart {
margin: 0 6px;
padding: 0;
background-color: transparent;
width: 34px;
height: 34px;
color: #000;
border-radius: 50%;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > a .p-icon,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .added_to_cart .p-icon {
height: 34px;
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > a:first-child,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .added_to_cart:first-child {
margin-left: 0;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > a:last-child,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .added_to_cart:last-child {
margin-right: 0;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > a:hover,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .added_to_cart:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .ajax_add_to_cart.loading .p-icon,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > .button.loading .p-icon {
display: none;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .ajax_add_to_cart:after,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > .button:after {
font-size: 14px;
top: 10px;
line-height: 1;
text-align: center;
left: 10px;
width: 14px;
height: 14px;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .ajax_add_to_cart.added,
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button > .button.added {
display: none;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .added_to_cart {
overflow: hidden;
margin-left: 0;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .added_to_cart:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
height: 34px;
font-size: 18px;
display: flex;
align-items: center;
justify-content: center;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .add-to-cart-text {
display: none;
}
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woo-loop-product__title {
margin: 0;
font-weight: 400;
padding: 0 0 5px;
font-size: 14px;
line-height: 1.3;
}
.woocommerce ul.products li.product h2 a,
.woocommerce ul.products li.product .woo-loop-product__title a {
color: #0066cc;
display: inline-block;
}
.woocommerce ul.products li.product h2:hover a,
.woocommerce ul.products li.product .woo-loop-product__title:hover a {
color: var(--mf-primary-color);
}
.woocommerce ul.products li.product .star-rating {
color: #fcb800;
font-size: 16px;
margin-bottom: 0;
}
.woocommerce ul.products li.product .star-rating:before {
color: #ccc;
}
.woocommerce ul.products li.product .star-rating span:before {
color: #fcb800;
}
.woocommerce ul.products li.product .price {
font-size: 16px;
color: #000;
line-height: 1;
display: block;
position: relative;
margin-top: 5px;
margin-bottom: 0;
}
.woocommerce ul.products li.product .price .amount + .amount {
padding-left: 5px;
padding-right: 0;
}
.woocommerce ul.products li.product .price del {
display: inline-block;
padding-left: 5px;
opacity: 1;
color: #999;
font-size: 14px;
}
.woocommerce ul.products li.product .price del span {
color: #999;
}
.woocommerce ul.products li.product .price del .amount {
padding-top: 0;
}
.woocommerce ul.products li.product .price ins {
text-decoration: none;
display: inline-block;
color: #ff3300;
font-size: 16px;
font-weight: 400;
}
.woocommerce ul.products li.product .price ins .amount {
padding-top: 0;
}
.woocommerce ul.products li.product .price .sale {
display: none;
}
.woocommerce ul.products:not(.slick-slider) {
display: flex;
flex-wrap: wrap;
}
.woocommerce ul.products:not(.slick-slider):before, .woocommerce ul.products:not(.slick-slider):after {
display: none;
}
.woocommerce .mf-rating {
display: flex;
align-items: center;
margin-top: 0;
}
.woocommerce .mf-rating .star-rating {
margin-right: 7px;
}
.woocommerce .mf-rating .count {
display: none;
}
.woocommerce .star-rating {
font-size: 16px;
width: 79px;
}
.woocommerce .star-rating:before,
.woocommerce .star-rating span:before {
font-family: Ionicons;
content: "\f2fc\f2fc\f2fc\f2fc\f2fc";
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
letter-spacing: 3px;
}
.woocommerce .star-rating:before {
color: #ccc;
}
.woocommerce .star-rating span:before {
color: #f2b309;
}
.woocommerce .quantity {
position: relative;
}
.woocommerce .quantity .qty {
border-width: 0;
width: 60px;
padding: 10px 0;
-moz-appearance: textfield;
appearance: textfield;
-webkit-appearance: textfield;
text-align: center;
font-weight: 600;
color: #000;
display: inline-block;
background-color: transparent;
}
.woocommerce .quantity .qty::-webkit-outer-spin-button, .woocommerce .quantity .qty::-webkit-inner-spin-button {
-webkit-appearance: none;
}
.woocommerce .mf-shop-content + .term-description {
margin-top: 50px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product {
width: 100%;
margin-bottom: 0;
border-bottom: 1px solid #f0f0f0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product.product-category {
padding: 20px 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product.product-category > a {
display: flex;
align-items: flex-start;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product.product-category .woocommerce-loop-category__title {
padding-left: 20px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .product-inner {
display: flex;
padding: 20px;
margin-bottom: 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-thumbnail {
width: 21%;
margin-bottom: 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-thumbnail .footer-button {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-rating {
margin-top: 5px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-vendor-name {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details {
position: static;
padding-left: 30px;
width: 79%;
display: flex;
justify-content: space-between;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-content {
max-width: 376px;
padding-right: 30px;
float: left;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details h2 {
padding-bottom: 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details h2 a:hover {
color: var(--mf-primary-color);
text-decoration: underline;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box {
float: right;
min-width: 185px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .price {
font-size: 18px;
font-weight: 600;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .price ins {
font-size: 18px;
font-weight: 600;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .price del {
font-size: 14px;
font-weight: 400;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .footer-button {
display: block;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .footer-button > .button.added {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist {
display: inline-block;
margin: 0 5px;
position: static;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a {
display: flex;
align-items: center;
color: #666;
font-size: 14px;
background-color: transparent;
height: auto;
line-height: 1;
font-weight: 400;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a.button,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a.button,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a.button {
padding-left: 15px;
padding-right: 15px;
height: 40px;
line-height: 40px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .fa-heart:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .fa-heart-o:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .yith-wcwl-icon,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .fa-heart:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .fa-heart-o:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .yith-wcwl-icon,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .fa-heart:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .fa-heart-o:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .yith-wcwl-icon {
font-size: 14px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a:hover,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a:hover,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a:hover {
color: var(--mf-primary-color);
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a:hover:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a:hover:before,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a:hover:before {
color: #666;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a > i,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a > i,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a > i {
margin-right: 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a > span,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a > span,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a > span {
display: block;
padding-left: 5px;
margin-top: 1px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .yith-wcwl-add-button .add_to_wishlist.loading:after {
top: 5px;
left: 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .yith-wcwl-add-to-wishlist .feedback {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-wishlist-button {
display: inline-flex;
margin: 0 5px;
position: static;
text-align: center;
background-color: transparent;
color: #666;
font-size: 16px;
line-height: 1;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-wishlist-button .wcboost-wishlist-button__icon {
margin-right: 5px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-wishlist-button .wcboost-wishlist-button__text {
font-size: 14px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-wishlist-button:hover {
color: var(--mf-primary-color);
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .compare-button {
display: inline-block;
margin: 0 5px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .compare-button .compare {
padding: 0;
background-color: transparent;
margin-top: 0;
color: #666;
font-weight: 400;
font-size: 14px;
display: flex;
align-items: center;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .compare-button .compare:before {
padding-right: 5px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .compare-button .compare:after {
top: 5px;
left: -3px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .compare-button .compare:hover {
color: var(--mf-primary-color);
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .compare-button .compare:hover:after {
border-color: var(--mf-border-primary-color) var(--mf-border-primary-color) var(--mf-border-primary-color) transparent;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-products-compare-button {
display: inline-flex;
background-color: transparent;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-products-compare-button .wcboost-products-compare-button__icon {
color: #666;
margin-right: 6px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-products-compare-button .wcboost-products-compare-button__text {
display: inline;
color: #666;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-products-compare-button:hover .wcboost-products-compare-button__icon,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .wcboost-products-compare-button:hover .wcboost-products-compare-button__text {
color: var(--mf-primary-color);
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .action-button {
text-align: center;
margin-top: 10px;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .action-button .clear {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .button:not(.add_to_wishlist) {
font-weight: 600;
border-radius: 3px;
height: 42px;
line-height: 42px;
margin-top: 20px;
width: 100%;
padding-left: 10px;
padding-right: 10px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .button:not(.add_to_wishlist).loading:after {
top: 14px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .button:not(.add_to_wishlist) .p-icon {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .added_to_cart.wc-forward {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
border-radius: 3px;
height: 42px;
line-height: 42px;
margin-top: 20px;
padding-left: 10px;
padding-right: 10px;
width: 100%;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details .mf-product-price-box .product-quick-view {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .woocommerce-product-details__short-description {
display: block;
margin-top: 20px;
margin-bottom: 0;
line-height: 1.4;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .woocommerce-product-details__short-description p {
margin-bottom: 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-content .star-rating {
margin-bottom: 0;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-content .sold-by-meta {
display: block;
margin-top: 10px;
color: #000;
font-size: 14px;
line-height: 1.2;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-content .sold-by-meta a {
color: #000;
border-bottom: 1px solid transparent;
line-height: 1;
display: inline-block;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-content .sold-by-meta a:hover {
border-color: #000;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-content br {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details-hover {
top: 100%;
left: 0;
right: 0;
min-height: inherit;
width: 100%;
padding: 0 5px 10px 20px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details-hover .sold-by-meta,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details-hover h2,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details-hover .price,
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details-hover .meta-brand {
display: none;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details-hover .mf-attr-swatches {
margin-bottom: 0;
max-width: 175px;
}
.woocommerce.shop-view-list ul.products:not(.slick-slider) li.product .mf-product-details-hover a.button {
display: none;
}
.woocommerce .woocommerce-product-details__short-description {
line-height: 1.4;
}
.woocommerce .woocommerce-product-details__short-description p {
margin-bottom: 0;
}
.woocommerce .woocommerce-product-details__short-description ul {
list-style: none;
margin: 0;
padding: 0;
}
.woocommerce .woocommerce-product-details__short-description ul li {
position: relative;
padding-left: 15px;
}
.woocommerce .woocommerce-product-details__short-description ul li:before {
content: '';
width: 6px;
height: 6px;
background-color: #999999;
border-radius: 50%;
position: absolute;
top: 7px;
left: 0;
}
.woocommerce div.product {
margin-bottom: 0;
position: relative;
}
.woocommerce div.product .woocommerce-product-gallery {
width: 43%;
float: left;
padding-bottom: 35px;
}
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
display: none;
}
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image {
cursor: pointer;
}
.woocommerce div.product .woocommerce-product-gallery.loading {
position: relative;
}
.woocommerce div.product .woocommerce-product-gallery.loading:before {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
border-color: var(--mf-border-primary-color) var(--mf-border-primary-color) var(--mf-border-primary-color) transparent;
border-width: 2px;
width: 40px;
height: 40px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.woocommerce div.product .woocommerce-product-gallery.loading::before {
z-index: 99999;
}
.woocommerce div.product .woocommerce-product-gallery.loading::after {
content: '';
display: inline-block;
position: absolute;
background-color: #fff;
top: 0;
right: 0;
left: 0;
bottom: 0;
z-index: 9999;
}
.woocommerce div.product div.images {
margin-bottom: 0;
padding-left: 70px;
position: relative;
}
.woocommerce div.product div.images .mf-video-content .woocommerce-product-gallery__image {
display: none;
}
.woocommerce div.product div.images.active-first-image .mf-video-wrapper {
display: none;
}
.woocommerce div.product div.images.active-first-image .woocommerce-product-gallery__image {
display: block;
width: 100%;
}
.woocommerce div.product div.images.active-first-image .flex-control-nav > li > .i-video {
display: none;
}
.woocommerce div.product div.images .product-image-ms {
position: absolute;
bottom: 0;
left: 70px;
text-align: center;
width: calc(100% - 70px);
}
.woocommerce div.product div.images.without-thumbnails {
padding-left: 0;
}
.woocommerce div.product div.images.without-thumbnails .product-image-ms {
left: 0;
}
.woocommerce div.product div.images .product-degree-images {
position: absolute;
bottom: 50px;
left: 90px;
z-index: 999;
width: 55px;
height: 55px;
text-align: center;
border-radius: 50%;
border: 2px solid var(--mf-border-primary-color);
line-height: 1;
padding-top: 5px;
cursor: pointer;
background-color: #fff;
}
.woocommerce div.product div.images .product-degree-images i {
font-size: 30px;
height: 26px;
display: block;
}
.woocommerce div.product div.images .product-degree-images .number {
display: inline-block;
width: 100%;
margin-left: 2px;
}
.woocommerce div.product div.images .product-degree-images .number small {
font-size: 6px;
vertical-align: top;
margin-top: 2px;
padding-left: 1px;
display: inline-block;
}
.woocommerce div.product div.images .flex-control-nav {
position: absolute;
top: -5px;
left: 0;
width: 70px;
opacity: 0;
}
.woocommerce div.product div.images .flex-control-nav.slick-initialized {
opacity: 1;
transition-delay: 0.5s;
}
.woocommerce div.product div.images .flex-control-nav.no-slick {
opacity: 1;
}
.woocommerce div.product div.images .flex-control-nav li {
float: none;
width: 55px;
padding: 5px 0;
position: relative;
}
.woocommerce div.product div.images .flex-control-nav li:hover img {
border-color: var(--mf-border-primary-color);
}
.woocommerce div.product div.images .flex-control-nav li img {
border: 1px solid #d9d9d9;
opacity: 1;
}
.woocommerce div.product div.images .flex-control-nav li img.flex-active {
border-color: var(--mf-border-primary-color);
}
.woocommerce div.product div.images .flex-control-nav .slick-arrow {
font-size: 14px;
color: #fff;
left: 1px;
transform: none;
right: 1px;
bottom: 0;
z-index: 99;
height: 20px;
line-height: 20px;
text-align: center;
background-color: rgba(0, 0, 0, 0.7);
opacity: 0;
transition: 0.35s;
}
.woocommerce div.product div.images .flex-control-nav .slick-arrow:hover {
background-color: black;
}
.woocommerce div.product div.images .flex-control-nav .slick-prev-arrow {
top: -10px;
}
.woocommerce div.product div.images .flex-control-nav .slick-next-arrow {
bottom: -10px;
top: auto;
}
.woocommerce div.product div.images .flex-control-nav:hover .slick-prev-arrow {
top: 5px;
opacity: 1;
}
.woocommerce div.product div.images .flex-control-nav:hover .slick-next-arrow {
bottom: 7px;
opacity: 1;
}
.woocommerce div.product div.images.has-video .flex-control-nav li {
position: relative;
cursor: pointer;
}
.woocommerce div.product div.images.has-video .flex-control-nav li .i-video {
width: 36px;
height: 36px;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: rgba(0, 0, 0, 0.25);
border: 2px solid rgba(255, 255, 255, 0.5);
font-size: 13px;
color: #fff;
text-align: center;
line-height: 34px;
pointer-events: none;
}
.woocommerce div.product div.images .mf-video-wrapper {
position: relative;
padding-bottom: 56.25%; height: 0;
}
.woocommerce div.product div.images .mf-video-wrapper iframe,
.woocommerce div.product div.images .mf-video-wrapper video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.woocommerce div.product .entry-summary {
width: 57%;
padding-left: 30px;
float: right;
}
.woocommerce div.product div.summary {
margin-bottom: 0;
}
.woocommerce div.product .summary-sep {
height: 90px;
width: 100%;
}
.woocommerce div.product .mf-summary-header {
display: flex;
align-items: center;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 1px solid #e1e1e1;
flex-wrap: wrap;
}
.woocommerce div.product .mf-summary-header br {
display: none;
}
.woocommerce div.product .mf-summary-header .mf-summary-meta {
padding: 0 18px;
position: relative;
}
.woocommerce div.product .mf-summary-header .mf-summary-meta:after {
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
content: "";
width: 1px;
height: 13px;
background-color: #d3d3d3;
}
.woocommerce div.product .mf-summary-header .mf-summary-meta:first-child {
padding-left: 0;
}
.woocommerce div.product .mf-summary-header .mf-summary-meta:last-child {
padding-right: 0;
}
.woocommerce div.product .mf-summary-header .mf-summary-meta:last-child:after {
display: none;
}
.woocommerce div.product .mf-summary-header .sold-by-meta {
font-size: 14px;
color: #000;
}
.woocommerce div.product .mf-summary-header .sold-by-meta a {
font-size: 16px;
text-transform: uppercase;
font-weight: 600;
color: #0099cc;
}
.woocommerce div.product .woocommerce-product-gallery__wrapper {
max-height: 570px;
overflow: hidden;
margin: 0;
display: flex;
align-items: stretch;
}
.woocommerce div.product .woocommerce-product-gallery__wrapper.loaded {
overflow: inherit;
max-height: inherit;
}
.woocommerce div.product .product_title {
font-size: 24px;
color: #000;
font-weight: 400;
line-height: 1.2;
margin-bottom: 6px;
}
.woocommerce div.product .woo-short-description {
margin-bottom: 45px;
color: #666;
}
.woocommerce div.product span.price,
.woocommerce div.product p.price {
color: #000;
font-size: 24px;
margin-bottom: 10px;
font-weight: 600;
line-height: 1;
}
.woocommerce div.product span.price ins,
.woocommerce div.product p.price ins {
font-size: 24px;
color: #ff3300;
text-decoration: none;
font-weight: 600;
}
.woocommerce div.product span.price del,
.woocommerce div.product p.price del {
opacity: 1;
font-size: 14px;
color: #666;
font-weight: 500;
padding-left: 5px;
}
.woocommerce div.product span.price del .woocommerce-Price-amount,
.woocommerce div.product p.price del .woocommerce-Price-amount {
padding-right: 0;
}
.woocommerce div.product span.price del .woocommerce-Price-amount:first-child,
.woocommerce div.product p.price del .woocommerce-Price-amount:first-child {
padding-right: 0;
}
.woocommerce div.product span.price .sale,
.woocommerce div.product p.price .sale {
font-size: 14px;
color: #ff3300;
font-weight: 500;
}
.woocommerce div.product span.price .woocommerce-Price-amount,
.woocommerce div.product p.price .woocommerce-Price-amount {
padding-right: 8px;
}
.woocommerce div.product span.price .woocommerce-Price-amount:last-child,
.woocommerce div.product p.price .woocommerce-Price-amount:last-child {
padding-left: 8px;
padding-right: 0;
}
.woocommerce div.product span.price .woocommerce-Price-amount:first-child,
.woocommerce div.product p.price .woocommerce-Price-amount:first-child {
padding-right: 8px;
padding-left: 0;
}
.woocommerce div.product .woocs_price_info + .sale {
display: none;
}
.woocommerce div.product p.stock {
font-size: 14px;
color: #000;
font-weight: 600;
margin-bottom: 0;
}
.woocommerce div.product p.stock.in-stock {
color: #8bc500;
}
.woocommerce div.product p.stock.out-of-stock {
color: #ff0000;
}
.woocommerce div.product p.stock label {
color: #000;
padding-right: 5px;
font-weight: 400;
}
.woocommerce div.product .woocommerce-product-details__short-description {
padding-bottom: 15px;
margin-bottom: 20px;
border-bottom: 1px solid #e1e1e1;
}
.woocommerce div.product .woocommerce-product-details__short-description .mf-features-text {
background-color: #f4f4f4;
padding: 25px;
}
.woocommerce div.product .woocommerce-product-details__short-description .mf-features-text ul li {
list-style: none;
position: relative;
padding-left: 45px;
margin-bottom: 15px;
}
.woocommerce div.product .woocommerce-product-details__short-description .mf-features-text ul li strong {
color: #000;
font-weight: 600;
}
.woocommerce div.product .woocommerce-product-details__short-description .mf-features-text ul li:last-child {
margin-bottom: 0;
}
.woocommerce div.product .woocommerce-product-details__short-description .mf-features-text ul li:before {
display: none;
}
.woocommerce div.product .woocommerce-product-details__short-description .mf-features-text ul li.no-icon {
padding-left: 0;
}
.woocommerce div.product .woocommerce-product-details__short-description .mf-features-text ul li i {
font-size: 22px;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
}
.woocommerce div.product .woocommerce-product-rating {
margin-bottom: 0;
}
.woocommerce div.product .social-links a {
width: 40px;
height: 40px;
line-height: 40px;
color: #fff;
background-color: #1b4e9b;
margin: 0 5px 10px;
display: inline-block;
text-align: center;
font-size: 20px;
}
.woocommerce div.product .social-links a:last-child {
margin-right: 0;
}
.woocommerce div.product .social-links a:first-child {
margin-left: 0;
}
.woocommerce div.product .social-links svg {
vertical-align: -0.125em;
width: 1em;
height: 1em;
fill: currentColor;
display: inline-block;
}
.woocommerce div.product .social-links .share-twitter {
background-color: #00aeef;
}
.woocommerce div.product .social-links .share-google-plus {
background-color: #cc0000;
}
.woocommerce div.product .social-links .share-linkedin {
background-color: #0077b5;
}
.woocommerce div.product .social-links .share-vkontakte {
background-color: #4c75a3;
}
.woocommerce div.product .social-links .share-pinterest {
background-color: #c8232c;
}
.woocommerce div.product .social-links .share-whatsapp {
background-color: #25d366;
}
.woocommerce div.product .social-links .share-email {
background-color: #7d7d7d;
}
.woocommerce div.product .wc-tabs-wrapper {
margin-bottom: 80px;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs {
text-align: center;
margin-bottom: 50px;
padding: 0;
border-bottom: 1px solid #e1e1e1;
position: relative;
width: 100%;
background-color: transparent;
border-right: none;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs li {
border-radius: 0;
margin: 0;
padding: 0 20px 15px;
border: none;
background-color: transparent;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs li a {
padding: 0;
font-weight: 600;
font-size: 20px;
color: #999;
transition: 0.5s;
line-height: 1;
background-color: transparent;
border-bottom: none;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs li a:before {
display: none;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs li a:hover {
color: #999;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs li.active a {
color: #000;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs li:before, .woocommerce div.product .wc-tabs-wrapper ul.tabs li:after {
display: none;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs:before {
display: none;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs .tl-wc-tab {
position: absolute;
bottom: 0;
width: 100%;
height: 3px;
background-color: var(--mf-background-primary-color);
padding: 0;
z-index: 10;
}
.woocommerce div.product .wc-tabs-wrapper .panel {
margin: 0;
padding: 0;
color: #666;
}
.woocommerce div.product .wc-tabs-wrapper .panel:after {
display: block;
content: "";
clear: both;
}
.woocommerce div.product .wc-tabs-wrapper .panel.woocommerce-Tabs-panel--additional_information > h2 {
display: none;
}
.woocommerce div.product .wc-tabs-wrapper .panel table {
width: 100%;
border: none;
}
.woocommerce div.product .wc-tabs-wrapper .panel table th,
.woocommerce div.product .wc-tabs-wrapper .panel table td {
padding: 5px 20px;
border: none;
}
.woocommerce div.product .wc-tabs-wrapper .panel table th {
font-weight: 600;
color: #333;
text-transform: uppercase;
}
.woocommerce div.product .wc-tabs-wrapper .panel table.un-table th {
background-color: #f2f2f2;
border-bottom: none;
}
.woocommerce div.product .wc-tabs-wrapper .panel .shop_attributes {
border: 1px solid #e1e1e1;
border-bottom: none;
}
.woocommerce div.product .wc-tabs-wrapper .panel .shop_attributes th {
background-color: #f4f4f4;
border-bottom: 1px solid #e1e1e1;
border-right: 1px solid #e1e1e1;
font-weight: 500;
text-transform: none;
color: #000;
}
.woocommerce div.product .wc-tabs-wrapper .panel .shop_attributes td {
background-color: transparent;
border-bottom: 1px solid #e1e1e1;
font-style: normal;
color: #000;
}
.woocommerce div.product p.cart {
margin-bottom: 2em;
}
.woocommerce div.product form.cart {
margin-bottom: 30px;
}
.woocommerce div.product form.cart div.quantity {
float: left;
margin: 0 30px 0 0;
}
.woocommerce div.product form.cart div.quantity .label {
font-size: 12px;
display: block;
line-height: 1;
margin-bottom: 3px;
}
.woocommerce div.product form.cart div.quantity .qty-box {
border: 1px solid rgba(0, 0, 0, 0.25);
padding: 0 20px;
transition: 0.5s;
position: relative;
}
.woocommerce div.product form.cart div.quantity .qty-box:hover {
border-color: #000;
}
.woocommerce div.product form.cart div.quantity .decrease,
.woocommerce div.product form.cart div.quantity .increase {
font-size: 20px;
cursor: pointer;
color: #999;
transition: 0.5s;
display: inline-block;
position: absolute;
top: 50%;
left: 10px;
transform: translateY(-50%);
}
.woocommerce div.product form.cart div.quantity .decrease:hover,
.woocommerce div.product form.cart div.quantity .increase:hover {
color: #000;
}
.woocommerce div.product form.cart div.quantity .increase {
right: 10px;
left: auto;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
background-color: var(--mf-background-primary-color);
height: 52px;
line-height: 52px;
font-weight: 600;
color: var(--mf-background-primary-text-color);
font-size: 18px;
min-width: 200px;
border-radius: 3px;
margin-top: 1px;
}
.woocommerce div.product form.cart .single_add_to_cart_button:after {
top: 18px;
}
.woocommerce div.product form.cart .buy_now_button {
border-radius: 3px;
margin-top: 1px;
margin-left: 30px;
min-width: 180px;
font-size: 18px;
}
.woocommerce div.product form.cart .buy_now_button.disabled {
padding: 0;
}
.woocommerce div.product form.cart .clear {
display: none;
}
.woocommerce div.product form.cart .yith-wcwl-add-to-wishlist,
.woocommerce div.product form.cart .wcboost-wishlist-button {
float: left;
margin-top: 10px;
}
.woocommerce div.product form.cart .mf-compare-button {
float: left;
margin-top: 10px;
}
.woocommerce div.product form.cart table {
border-width: 0 0 1px 0;
}
.woocommerce div.product form.cart table td {
padding-left: 0;
}
.woocommerce div.product form.cart table div.quantity {
float: none;
margin: 0;
}
.woocommerce div.product form.cart table small.stock {
display: block;
float: none;
}
.woocommerce div.product form.cart .variations {
margin-bottom: 1em;
border: 0;
width: 100%;
}
.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
border: 0;
vertical-align: top;
line-height: 1;
}
.woocommerce div.product form.cart .variations label {
font-weight: 700;
}
.woocommerce div.product form.cart .variations select {
max-width: 100%;
min-width: 75%;
display: inline-block;
margin-right: 1em;
}
.woocommerce div.product form.cart .variations td.label {
padding-right: 1em;
}
.woocommerce div.product form.cart .woocommerce-variation-description p {
margin-bottom: 1em;
}
.woocommerce div.product form.cart .reset_variations {
visibility: hidden;
font-size: 0.83em;
}
.woocommerce div.product form.cart .wc-no-matching-variations {
display: none;
}
.woocommerce div.product form.cart .button {
vertical-align: bottom;
float: left;
white-space: nowrap;
}
.woocommerce div.product form.cart .group_table td.label {
padding-right: 1em;
padding-left: 1em;
}
.woocommerce div.product form.cart .group_table td {
vertical-align: top;
padding-bottom: .5em;
border: 0;
}
.woocommerce div.product.mf-has-buy-now form.cart .single_add_to_cart_button {
min-width: 180px;
background-color: #000;
color: #fff;
}
.woocommerce div.product .cart-external {
display: flex;
align-items: center;
margin-bottom: 25px;
}
.woocommerce div.product .cart-external p.cart {
margin-bottom: 0;
width: 100%;
}
.woocommerce div.product .cart-external p.cart .single_add_to_cart_button {
width: 100%;
}
.woocommerce div.product .cart-external .actions-button {
display: flex;
align-items: center;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist,
.woocommerce div.product .wcboost-wishlist-button,
.woocommerce div.product .compare.button {
display: none;
}
.woocommerce div.product .wcboost-products-compare-button {
display: inline-flex;
}
.woocommerce div.product .mf-wishlist-button .yith-wcwl-add-to-wishlist {
display: block;
margin-left: 20px;
margin-top: 0;
}
.woocommerce div.product .mf-wishlist-button .wcboost-wishlist-button {
display: inline-flex;
margin-left: 20px;
margin-top: 0;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a {
width: 34px;
height: 34px;
color: #999;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .fa-heart-o:before,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .fa-heart-o:before,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .fa-heart-o:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 26px;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .yith-wcwl-icon,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .yith-wcwl-icon,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .yith-wcwl-icon {
font-size: 26px;
margin-right: 5px;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a:hover,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a:hover,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a:hover {
color: #000;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a > span,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a > span,
.woocommerce div.product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a > span {
display: none;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist .feedback {
display: none;
}
.woocommerce div.product .yith-wcwl-add-to-wishlist .blockUI:after {
border: none;
animation: none;
}
.woocommerce div.product .wcboost-wishlist-button {
width: 34px;
height: 34px;
color: #999;
align-items: center;
justify-content: center;
background-color: transparent;
font-size: 26px;
}
.woocommerce div.product .wcboost-wishlist-button .wcboost-wishlist-button__icon {
margin-right: 0;
line-height: 1;
}
.woocommerce div.product .wcboost-wishlist-button .wcboost-wishlist-button__text {
display: none;
}
.woocommerce div.product .wcboost-wishlist-button:hover {
color: #000;
}
.woocommerce div.product .mf-compare-button {
margin-left: 20px;
}
.woocommerce div.product .mf-compare-button .blockUI {
display: none !important;
}
.woocommerce div.product .mf-compare-button .compare {
width: 34px;
height: 34px;
overflow: hidden;
color: #999;
border-radius: 50%;
display: block;
}
.woocommerce div.product .mf-compare-button .compare:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
width: 34px;
height: 34px;
line-height: 34px;
font-size: 26px;
text-align: center;
}
.woocommerce div.product .mf-compare-button .compare:hover {
color: #000;
}
.woocommerce div.product .mf-compare-button .compare:after {
display: none;
}
.woocommerce div.product .mf-compare-button .compare.loading {
position: relative;
opacity: 0.25;
}
.woocommerce div.product .mf-compare-button .compare.loading:after {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
display: block;
position: absolute;
top: 10px;
left: 9px;
}
.woocommerce div.product .mf-compare-button .compare.loading:before {
opacity: 0;
}
.woocommerce div.product .mf-compare-button .compare.added {
opacity: 1;
}
.woocommerce div.product .mf-compare-button .compare.added:before {
opacity: 1;
}
.woocommerce div.product .mf-compare-button .compare.added:after {
opacity: 0;
}
.woocommerce div.product .mf-compare-button .wcboost-products-compare-button {
display: inline-flex;
align-items: center;
justify-content: center;
margin-top: 0;
margin-bottom: 0;
}
.woocommerce div.product .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__icon {
font-size: 24px;
line-height: 34px;
color: #999;
margin-right: 0;
}
.woocommerce div.product .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__text {
display: none;
}
.woocommerce div.product .mf-compare-button .wcboost-products-compare-button:hover .wcboost-products-compare-button__icon {
color: #000;
}
.woocommerce div.product.outofstock .woocommerce-product-details__short-description {
border-bottom: none;
padding-bottom: 0;
}
.woocommerce div.product.product-type-grouped .cart .group_table {
width: 100%;
margin-bottom: 20px;
border: none;
}
.woocommerce div.product.product-type-grouped .cart .group_table th {
background-color: #e3e3e3;
border: none;
color: #000;
font-weight: 600;
text-transform: uppercase;
padding: 12px 15px;
}
.woocommerce div.product.product-type-grouped .cart .group_table .button .p-icon {
display: none;
}
.woocommerce div.product.product-type-grouped .cart .group_table .product {
width: 100%;
float: none;
padding: 0;
}
.woocommerce div.product.product-type-grouped .cart .group_table td {
padding: 10px;
color: #666;
}
.woocommerce div.product.product-type-grouped .cart .group_table td:first-child {
padding-left: 0;
}
.woocommerce div.product.product-type-grouped .cart .group_table td:last-child {
padding-right: 0;
}
.woocommerce div.product.product-type-grouped .cart .group_table td.label {
text-align: left;
}
.woocommerce div.product.product-type-grouped .cart .group_table td a {
color: #000;
font-size: 16px;
}
.woocommerce div.product.product-type-grouped .cart .group_table td .woocommerce-Price-amount {
display: block;
}
.woocommerce div.product.product-type-grouped .cart .group_table .price {
color: #000;
font-weight: 600;
font-size: 16px;
line-height: 1.2;
}
.woocommerce div.product.product-type-grouped .cart .group_table .price del {
color: #999;
}
.woocommerce div.product.product-type-grouped .cart .group_table tr:last-child {
border-bottom: none;
}
.woocommerce div.product.product-type-grouped .cart div.quantity {
padding-left: 0;
}
.woocommerce div.product.product-type-grouped .cart div.quantity .label {
display: none;
}
.woocommerce div.product.product-type-variable form.cart .variations {
position: relative;
margin-bottom: 0;
}
.woocommerce div.product.product-type-variable form.cart .variations td {
display: block;
padding: 0;
}
.woocommerce div.product.product-type-variable form.cart .variations td.label {
margin-bottom: 13px;
}
.woocommerce div.product.product-type-variable form.cart .variations td.label .mf-attr-value,
.woocommerce div.product.product-type-variable form.cart .variations td.label .wcboost-variation-swatches__selected-label {
font-weight: 600;
color: #000;
text-transform: capitalize;
}
.woocommerce div.product.product-type-variable form.cart .variations td.label .mf-attr-value {
padding-left: 5px;
}
.woocommerce div.product.product-type-variable form.cart .variations label {
font-weight: 400;
}
.woocommerce div.product.product-type-variable form.cart .variations td.value {
padding: 0;
margin-bottom: 17px;
position: relative;
display: inline-block;
}
.woocommerce div.product.product-type-variable form.cart .variations td.value.show-select {
width: 100%;
}
.woocommerce div.product.product-type-variable form.cart .variations td.value.show-select:after {
opacity: 1;
}
.woocommerce div.product.product-type-variable form.cart .variations .reset_variations {
display: block;
text-align: left;
color: #cc0000;
font-weight: 400;
text-decoration: underline;
margin-top: 7px;
font-size: 14px;
}
.woocommerce div.product.product-type-variable form.cart .variations select {
width: 100%;
margin-right: 0;
color: #000;
background-color: transparent;
padding: 11px 15px 10px;
text-transform: capitalize;
cursor: pointer;
border: 1px solid #d9d9d9;
}
.woocommerce div.product.product-type-variable form.cart .variations select:focus {
outline: none;
}
.woocommerce div.product.product-type-variable form.cart .single_variation_wrap .woocommerce-variation {
margin-bottom: 30px;
}
.woocommerce div.product.product-type-variable form.cart .single_variation_wrap + .actions-button {
display: none;
}
.woocommerce div.product .tawcvs-swatches {
padding: 0;
}
.woocommerce div.product .tawcvs-swatches .swatch {
box-shadow: none;
margin-right: 10px;
border: 1px solid transparent;
opacity: 1;
display: inline-block;
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-image {
border-color: #d9d9d9;
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-label {
width: auto;
padding-right: 7px;
padding-left: 7px;
text-transform: uppercase;
font-weight: 600;
border-color: #d9d9d9;
background-color: transparent;
color: #999;
min-width: 30px;
}
.woocommerce div.product .tawcvs-swatches .swatch.selected {
border-color: var(--mf-border-primary-color);
color: #000;
}
.woocommerce div.product .tawcvs-swatches .swatch.selected:before {
display: none;
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-color {
position: relative;
transition: none;
border: 3px solid transparent;
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-color:after {
position: absolute;
top: -3px;
bottom: -3px;
right: -3px;
left: -3px;
background-color: transparent;
border: 1px solid transparent;
content: "";
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-color:before {
display: none;
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-color.selected {
border-color: #fff;
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-color.selected:after {
border-color: var(--mf-border-primary-color);
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-color.round:after {
border-radius: 50%;
}
.woocommerce div.product .tawcvs-swatches .swatch.swatch-color.rounded:after {
border-radius: 4px;
}
.woocommerce div.product .tawc-deal {
padding: 25px;
background-color: #f4f4f4;
margin-bottom: 25px;
}
.woocommerce div.product .tawc-deal .deal-expire-date {
display: flex;
align-items: flex-start;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-text {
width: 35%;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
white-space: pre-line;
color: #000;
line-height: 1.3;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .timer {
display: inline-block;
float: none;
width: auto;
padding: 0 15px;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .timer:last-child .digits:after {
display: none;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .divider {
display: none;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .digits {
border: 1px solid #d0d0d0;
background-color: #fff;
padding: 12px 8px;
min-width: 56px;
position: relative;
text-align: center;
font-size: 30px;
font-weight: 600;
color: #ff0000;
line-height: 1;
margin-bottom: 5px;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .digits:after {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
right: -19px;
content: ":";
color: #999;
font-size: 24px;
font-weight: 600;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .text {
font-size: 14px;
color: #666666;
}
.woocommerce div.product .tawc-deal .deal-sold:after {
clear: both;
content: "";
display: block;
}
.woocommerce div.product .tawc-deal .deal-sold .deal-sold-text {
width: 35%;
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
white-space: pre-line;
color: #000;
line-height: 1.3;
float: left;
}
.woocommerce div.product .tawc-deal .deal-sold .deal-progress,
.woocommerce div.product .tawc-deal .deal-sold .deal-text {
width: 65%;
padding-left: 15px;
float: right;
}
.woocommerce div.product .tawc-deal .deal-sold .deal-text {
margin-top: 5px;
text-transform: capitalize;
}
.woocommerce div.product .tawc-deal .deal-sold .deal-text .amount {
font-weight: 600;
color: #669900;
}
.woocommerce div.product .product_meta {
padding: 15px 0 0;
border-top: 1px solid #e1e1e1;
color: #999;
}
.woocommerce div.product .product_meta #report_abuse {
color: #000;
text-decoration: underline;
}
.woocommerce div.product .product_meta .simplePopup .wcmp-abuse-report-title {
font-size: 16px;
font-weight: 400;
}
.woocommerce div.product .product_meta .simplePopup .report-abuse-form table {
width: 100%;
border: none;
}
.woocommerce div.product .product_meta .simplePopup .report-abuse-form .submit {
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
background-color: #88aa00;
color: #fff;
height: 40px;
line-height: 39px;
padding: 0 25px;
}
.woocommerce div.product .product_meta .simplePopup .report-abuse-form .submit:hover, .woocommerce div.product .product_meta .simplePopup .report-abuse-form .submit:focus, .woocommerce div.product .product_meta .simplePopup .report-abuse-form .submit:active {
background-color: #88aa00;
color: #fff;
}
.woocommerce div.product .product_meta #report-abuse table {
border: none;
}
.woocommerce div.product .product_meta #report-abuse table tr td {
border: none;
}
.woocommerce div.product .product_meta .sku_wrapper {
display: none;
}
.woocommerce div.product .product_meta .posted_in,
.woocommerce div.product .product_meta .tagged_as {
display: block;
}
.woocommerce div.product .product_meta .posted_in a {
color: #0099cc;
}
.woocommerce div.product .product_meta > span {
font-weight: 400;
}
.woocommerce div.product .product_meta > span span,
.woocommerce div.product .product_meta > span a {
color: #999;
font-weight: 400;
}
.woocommerce div.product .product_meta > span a:hover {
color: #000;
}
.woocommerce div.product .product_meta strong {
font-weight: 400;
color: #000;
}
.woocommerce div.product .product_meta .wcvendors_ships_from br {
display: none;
}
.woocommerce div.product .product_meta .wcvendors_ships_from > span {
color: #000;
}
.woocommerce #reviews #comments {
margin-top: 40px;
}
.woocommerce #reviews #comments .woocommerce-Reviews-title {
font-size: 16px;
color: #000;
font-weight: 500;
margin: 0 0 40px;
background-color: #f5f5f5;
padding: 20px;
}
.woocommerce #reviews #comments ol.commentlist {
padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li {
padding: 0 0 27px;
margin: 0 0 40px;
border-bottom: 1px solid #e1e1e1;
}
.woocommerce #reviews #comments ol.commentlist li:last-child {
border-bottom: none;
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
width: 60px;
border: none;
padding: 0;
background-color: transparent;
border-radius: 50%;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
margin: 0 0 0 90px;
border-radius: 0;
padding: 0;
border: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .star-rating {
float: none;
margin-bottom: 5px;
font-size: 22px;
width: 102px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p {
margin: 0 0 1em;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
font-size: 14px;
color: #999;
margin-bottom: 10px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
font-weight: 400;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta .author-name {
color: #0099cc;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .woocommerce-review__author {
position: relative;
padding-right: 13px;
margin-right: 10px;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text .woocommerce-review__author:after {
position: absolute;
top: 2px;
right: 0;
content: "";
width: 1px;
height: 12px;
background-color: #a9a9a9;
}
.woocommerce #reviews .average-rating .average-label {
font-size: 16px;
color: #000;
font-weight: 400;
margin: 0 0 10px;
line-height: 1;
}
.woocommerce #reviews .average-rating .average-value {
font-size: 58px;
font-weight: 500;
color: #669900;
line-height: 1;
}
.woocommerce #reviews .woocommerce-product-rating {
line-height: 1.4;
}
.woocommerce #reviews .woocommerce-product-rating .mf-rating .count {
display: none;
}
.woocommerce #reviews .woocommerce-product-rating .woocommerce-review-link {
color: #666;
}
.woocommerce #reviews .woocommerce-product-rating .woocommerce-review-link .character {
display: none;
}
.woocommerce #reviews .woocommerce-product-rating .star-rating {
font-size: 24px;
width: 110px;
}
.woocommerce #reviews .bar-rating {
margin-top: 30px;
}
.woocommerce #reviews .bar-rating .star-item {
display: flex;
align-items: center;
line-height: 1;
margin-bottom: 13px;
font-weight: 500;
}
.woocommerce #reviews .bar-rating .star-item .slabel {
min-width: 60px;
}
.woocommerce #reviews .bar-rating .star-item .sbar {
margin-left: 10px;
margin-right: 15px;
min-width: 230px;
}
.woocommerce #reviews .bar-rating .star-item .bar-content {
position: relative;
width: 100%;
height: 10px;
background-color: #f1f1f1;
}
.woocommerce #reviews .bar-rating .star-item .bar-content span {
background-color: #669900;
display: block;
height: 100%;
}
.woocommerce #reviews .comment-respond .comment-reply-title {
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
display: block;
text-align: left;
}
.woocommerce #reviews .comment-form .comment-form-rating {
display: flex;
align-items: center;
flex-wrap: wrap;
color: #000;
margin-bottom: 20px;
}
.woocommerce #reviews .comment-form .comment-form-rating label,
.woocommerce #reviews .comment-form .comment-form-rating .stars {
margin: 0 !important;
}
.woocommerce #reviews .comment-form .comment-form-rating .stars {
padding-top: 5px;
padding-left: 20px;
}
.woocommerce #reviews #respond .form-submit {
text-align: left;
}
.woocommerce #review_form #respond {
position: static;
margin: 0;
width: auto;
padding: 0 0 0;
background: transparent none;
border: 0;
}
.woocommerce #review_form #respond .comment-reply-title {
padding-bottom: 20px;
}
.woocommerce #review_form #respond .comment-form-rating .stars a {
color: #f2b309;
font-size: 16px;
margin-right: 5px;
}
.woocommerce #review_form #respond .required {
color: #cc0000;
}
.woocommerce #review_form #respond .comment-notes {
display: block;
margin-bottom: 20px;
}
.woocommerce #review_form #respond label {
margin-bottom: 8px;
display: block;
}
.woocommerce #review_form #respond p {
margin: 0 0 20px;
}
.woocommerce #review_form #respond .form-submit {
margin-top: 10px;
}
.woocommerce #review_form #respond .form-submit input {
left: auto;
padding: 0 40px;
}
.woocommerce #review_form #respond input[type=text],
.woocommerce #review_form #respond input[type=email],
.woocommerce #review_form #respond textarea {
border: 1px solid #d9d9d9;
transition: 0.5s;
outline: none;
padding: 15px;
width: 100%;
color: #000;
}
.woocommerce #review_form #respond input[type=text]:focus,
.woocommerce #review_form #respond input[type=email]:focus,
.woocommerce #review_form #respond textarea:focus {
border-color: #000;
}
.woocommerce #review_form #respond .comment-form-author,
.woocommerce #review_form #respond .comment-form-email {
width: 50%;
float: left;
padding-right: 15px;
}
.woocommerce #review_form #respond .comment-form-email {
padding-left: 15px;
padding-right: 0;
}
.woocommerce #review_form #respond textarea {
box-sizing: border-box;
width: 100%;
min-height: 165px;
}
.woocommerce table.shop_table {
border: none;
}
.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
border: none;
font-weight: 400;
}
.woocommerce table.shop_table th {
border: none;
color: #000;
border-bottom: 1px solid #e1e1e1;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
background-color: #f2f2f2;
}
.woocommerce table.shop_table td {
border: none;
color: #000;
vertical-align: top;
border-bottom: 1px solid #d6d6d6;
}
.woocommerce table.shop_table tfoot tr th {
background-color: transparent;
font-weight: 400;
text-transform: none;
}
.woocommerce table.wishlist_table {
font-size: 100%;
opacity: 1 !important;
margin-bottom: 80px;
}
.woocommerce table.wishlist_table td {
padding-top: 40px;
padding-bottom: 30px;
text-align: left;
font-size: 16px;
}
.woocommerce table.wishlist_table td.product-price {
width: 200px;
}
.woocommerce table.wishlist_table td.product-add-to-cart {
text-align: right;
padding-right: 0;
}
.woocommerce table.wishlist_table td.product-add-to-cart .button {
display: inline-block !important;
margin-bottom: 0;
border-radius: 3px;
padding: 0 25px !important;
white-space: nowrap;
}
.woocommerce table.wishlist_table td.product-add-to-cart .button:after {
top: 16px;
right: 15px;
}
.woocommerce table.wishlist_table td.product-add-to-cart .button > i + .p-icon {
display: none;
}
.woocommerce table.wishlist_table td.product-add-to-cart .remove_from_wishlist {
border: 1px solid #ccc;
background-color: transparent;
color: #000;
}
.woocommerce table.wishlist_table td.product-add-to-cart .remove_from_wishlist:before {
content: "\e935";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
padding-right: 10px;
}
.woocommerce table.wishlist_table td.product-add-to-cart .dateadded {
font-size: 14px;
}
.woocommerce table.wishlist_table .product-name .product-price,
.woocommerce table.wishlist_table .product-name .product-add-to-cart {
display: none;
}
.woocommerce table.wishlist_table tr td.product-stock-status span.wishlist-in-stock,
.woocommerce table.wishlist_table tr .product-stock-status .in-stock {
color: #669900;
}
.woocommerce table.wishlist_table tr td.product-remove {
vertical-align: middle;
padding-bottom: 30px;
width: 70px;
padding-left: 0;
}
.woocommerce table.wishlist_table tr td.product-remove .remove {
color: #999 !important;
background-color: transparent;
position: relative;
font-size: 0;
}
.woocommerce table.wishlist_table tr td.product-remove .remove:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 16px;
}
.woocommerce table.wishlist_table tr td.product-remove .remove:hover {
color: #000 !important;
background-color: transparent;
}
.woocommerce table.wishlist_table .product-price {
color: #000;
}
.woocommerce table.wishlist_table .product-price del {
color: #999;
font-size: 13px;
}
.woocommerce table.wishlist_table .product-price ins {
color: #cc0000;
margin-right: 10px;
}
.woocommerce table.wishlist_table .product-price .sale {
display: none;
}
.woocommerce .wishlist_table.mobile {
margin: 0;
padding: 0;
}
.woocommerce .wishlist_table.mobile li {
border-bottom: 1px solid #d6d6d6;
margin-bottom: 30px;
padding-bottom: 30px;
}
.woocommerce .wishlist_table.mobile .item-details h3 {
font-size: 16px;
font-weight: 600;
margin: 0 0 10px;
}
.woocommerce .wishlist_table.mobile .item-details .product-name .product-price,
.woocommerce .wishlist_table.mobile .item-details .product-name .product-add-to-cart {
display: none;
}
.woocommerce .wishlist_table.mobile table.item-details-table td.label {
font-size: 14px;
font-weight: 400 !important;
padding: 0;
}
.woocommerce .wishlist_table.mobile table.item-details-table td.value {
font-size: 14px;
padding: 0;
}
.woocommerce .wishlist_table.mobile table.item-details-table td.value ins {
padding-right: 10px;
color: #cc0000;
}
.woocommerce .wishlist_table.mobile table.item-details-table td.value del {
color: #999;
font-size: 13px;
}
.woocommerce .wishlist_table.mobile table.item-details-table td.value .sale {
display: none;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper {
padding-left: 75px;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper:after {
clear: both;
content: "";
display: block;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper table.additional-info td.label {
font-size: 14px;
font-weight: 400 !important;
padding: 0;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper table.additional-info td.value {
font-size: 14px;
padding: 0;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper .product-add-to-cart {
float: left;
margin-right: 10px;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper .product-add-to-cart .button {
margin: 0 !important;
height: 40px;
line-height: 40px;
padding: 0 15px !important;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper .product-remove {
float: left;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper .product-remove > a {
color: #000;
height: 40px;
line-height: 40px;
text-align: center;
border: 1px solid #ccc;
padding: 0 15px;
display: block;
}
.woocommerce .wishlist_table.mobile .additional-info-wrapper .product-remove i:before {
content: "\e935";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 16px;
margin-top: 2px;
}
.woocommerce.wcboost-wishlist .wcboost-wishlist-form .wcboost-wishlist-actions > .button {
background-color: #000 !important;
color: #fff !important;
}
.woocommerce.wcboost-wishlist .shop_table {
margin-bottom: 40px;
}
.woocommerce form .form-row {
margin-bottom: 10px;
padding: 0;
}
.woocommerce form .form-row label {
margin-bottom: 5px;
display: block;
}
.woocommerce form .form-row .input-text {
color: #000;
min-width: inherit;
border: 1px solid #ccc;
padding: 16px;
}
.woocommerce form .form-row .select2-container .select2-choice {
border: 1px solid #ccc;
padding: 12px 25px;
}
.woocommerce form .form-row .select2-container .select2-selection--single {
border: 1px solid #ccc;
padding: 10px 16px;
height: auto;
border-radius: 0;
min-height: 50px;
}
.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__arrow {
top: 15px;
}
.woocommerce form .form-row .select2-container .select2-selection--single .select2-selection__rendered {
padding-left: 0;
}
.woocommerce form .form-row ::-webkit-input-placeholder { color: #999;
font-weight: 400;
}
.woocommerce form .form-row ::-moz-placeholder { color: #999;
font-weight: 400;
}
.woocommerce form .form-row :-ms-input-placeholder { color: #999;
font-weight: 400;
}
.woocommerce form .form-row :-moz-placeholder { color: #999;
font-weight: 400;
}
.woocommerce #shipping_method li {
cursor: pointer;
text-align: left;
line-height: 1;
}
.woocommerce #shipping_method li .woocommerce-Price-amount {
font-weight: 400;
text-align: right;
float: right;
padding-top: 3px;
}
.woocommerce #shipping_method li .shipping_method {
opacity: 0;
display: none;
}
.woocommerce #shipping_method li .shipping_method:checked + label {
color: #000;
}
.woocommerce #shipping_method li .shipping_method:checked + label:before {
content: "\5c";
}
.woocommerce #shipping_method li .shipping_method:checked + label .woocommerce-Price-amount {
color: #fe0000;
}
.woocommerce #shipping_method li input[type="hidden"] + label {
padding-left: 0;
}
.woocommerce #shipping_method li input[type="hidden"] + label:before {
display: none;
}
.woocommerce #shipping_method li label {
display: inline-block;
text-transform: inherit;
position: relative;
line-height: 1;
font-size: 16px;
padding-left: 20px;
cursor: pointer;
color: #666;
}
.woocommerce #shipping_method li label:before {
content: "\5b";
font-family: ElegantIcons;
font-size: 16px;
position: absolute;
top: 1px;
left: -6px;
transition: 0.5s;
}
.woocommerce .woocommerce-shipping-destination {
text-align: left;
font-size: 14px;
}
.woocommerce .track_order {
font-weight: 400;
text-align: center;
font-size: 16px;
}
.woocommerce .track_order .form-row {
text-align: left;
}
.woocommerce .track_order .form-row label {
color: #000;
}
.woocommerce .track_order .form-row .button {
width: 100%;
margin-top: 20px;
}
.woocommerce .track_order .form-track_order {
margin-top: 60px;
}
.woocommerce nav.woocommerce-pagination {
margin-top: 50px;
text-align: center;
}
.woocommerce nav.woocommerce-pagination.loaded {
display: none;
}
.woocommerce nav.woocommerce-pagination ul {
border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
border-right-width: 0;
margin: 0 0 10px;
padding: 0 5px;
list-style: none;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers {
color: #000;
font-size: 14px;
text-align: center;
padding: 0 12px;
height: 32px;
line-height: 32px;
display: block;
background-color: #f5f5f5;
min-width: 34px;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers.next, .woocommerce nav.woocommerce-pagination ul li .page-numbers.prev {
padding: 0 20px;
}
.woocommerce nav.woocommerce-pagination ul li .page-numbers i {
font-size: 10px;
font-weight: 700;
}
.woocommerce nav.woocommerce-pagination ul li:first-child {
margin-left: 0;
}
.woocommerce nav.woocommerce-pagination ul li a:focus {
background-color: transparent;
outline: none;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.woocommerce nav.woocommerce-pagination ul li span.current {
position: relative;
}
.woocommerce nav.woocommerce-pagination ul li span.current:before {
position: absolute;
bottom: -2px;
left: 3px;
border-bottom: 1px solid #000;
content: "";
width: 12px;
height: 1px;
}
.woocommerce nav.woocommerce-pagination ul li .next span:hover,
.woocommerce nav.woocommerce-pagination ul li .prev span:hover {
color: #000;
background-color: transparent;
}
.woocommerce nav.woocommerce-pagination ul li .next {
padding-left: 10px;
}
.woocommerce nav.woocommerce-pagination ul li .prev {
padding-right: 10px;
}
.woocommerce nav.woocommerce-pagination.infinite {
text-align: center;
}
.woocommerce nav.woocommerce-pagination.infinite ul li {
padding: 0;
}
.woocommerce nav.woocommerce-pagination.infinite ul .page-numbers {
display: none;
}
.woocommerce nav.woocommerce-pagination.infinite ul .next {
display: block;
padding-left: 0;
}
.woocommerce nav.woocommerce-pagination.infinite .dots-loading {
font-size: 18px;
letter-spacing: 15px;
text-transform: uppercase;
font-weight: 300;
}
.woocommerce nav.woocommerce-pagination.infinite .dots-loading span {
display: inline-block;
}
.woocommerce .ribbons .ribbon {
color: #fff;
font-size: 14px;
font-weight: 600;
text-align: center;
display: block;
margin: 0;
position: absolute;
background-color: #93be2b;
z-index: 1;
top: 0;
right: 0;
height: 27px;
line-height: 27px;
border-radius: 3px;
padding: 0 13px;
min-width: inherit;
min-height: inherit;
}
.woocommerce .ribbons .ribbon.onsale {
background-color: #f14705;
left: auto;
}
.woocommerce .ribbons .ribbon.featured {
background-color: #ff8c46;
}
.woocommerce .ribbons .ribbon.out-of-stock {
background-color: #000000;
color: #fff;
}
.woocommerce .widget_price_filter .price_slider_wrapper {
padding-top: 3px;
}
.woocommerce .widget_price_filter .price_slider_wrapper:after {
clear: both;
display: block;
content: "";
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #000;
border-radius: 0;
height: 1px;
cursor: pointer;
margin-right: 15px;
}
.woocommerce .widget_price_filter .ui-slider {
margin: 5px 0 10px;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
background-color: #000;
border-radius: 0;
cursor: pointer;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
background-color: #000;
border-radius: 50%;
width: 15px;
height: 15px;
margin-left: 0;
top: -7px;
}
.woocommerce .widget_price_filter .price_slider_amount {
position: relative;
}
.woocommerce .widget_price_filter .price_slider_amount .price_label {
position: absolute;
top: 0;
left: 0;
right: 0;
text-align: left;
font-size: 16px;
color: #999;
}
.woocommerce .widget_price_filter .price_slider_amount .button {
width: 100%;
margin-top: 70px;
font-size: 14px;
}
.woocommerce .content-area .page-description {
padding-bottom: 100px;
}
.woocommerce .mf-toolbar-empty-space {
height: 40px;
}
.woocommerce .shop-toolbar {
background-color: #f5f5f5;
padding: 0 15px;
}
.woocommerce .shop-toolbar.active .mf-filters i:before {
content: "\e937";
}
.woocommerce .shop-toolbar .products-found,
.woocommerce .shop-toolbar .woocommerce-ordering,
.woocommerce .shop-toolbar .mf-filters {
float: left;
min-height: 51px;
display: flex;
align-items: center;
}
.woocommerce .shop-toolbar .products-found strong {
color: #000;
font-weight: 600;
padding-right: 5px;
}
.woocommerce .shop-toolbar .mf-filter-mobile {
display: none;
}
.woocommerce .shop-toolbar .mf-filters {
color: #000;
font-weight: 600;
font-size: 16px;
text-transform: uppercase;
}
.woocommerce .shop-toolbar .mf-filters i {
padding-left: 10px;
font-size: 12px;
color: #000;
font-weight: 700;
}
.woocommerce .shop-toolbar .shop-view {
float: right;
display: flex;
align-items: center;
min-height: 51px;
color: #000;
}
.woocommerce .shop-toolbar .shop-view > span {
padding-right: 5px;
}
.woocommerce .shop-toolbar .shop-view .mf-shop-view {
margin-left: 15px;
font-size: 24px;
color: #999;
line-height: 1;
margin-top: 3px;
display: block;
}
.woocommerce .shop-toolbar .shop-view .mf-shop-view.current {
color: #000;
}
.woocommerce .shop-toolbar.multiple .woocommerce-ordering {
margin-right: 45px;
}
.woocommerce .shop-toolbar .woocommerce-ordering {
color: #000;
margin: 0;
padding: 0;
float: right;
}
.woocommerce .shop-toolbar .woocommerce-ordering li {
list-style: none;
margin-bottom: 0;
}
.woocommerce .shop-toolbar .woocommerce-ordering > li {
display: inline-block;
position: relative;
color: #999;
}
.woocommerce .shop-toolbar .woocommerce-ordering > li.current {
color: #000;
}
.woocommerce .shop-toolbar .woocommerce-ordering .cancel-ordering {
display: none;
}
.woocommerce .shop-toolbar .woocommerce-ordering .current {
min-width: 270px;
display: inline-block;
cursor: pointer;
min-height: 33px;
line-height: 33px;
border: 1px solid #b8b8b8;
background-color: #fff;
padding: 0 25px 0 15px;
}
.woocommerce .shop-toolbar .woocommerce-ordering .current:after {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 10px;
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
color: #000;
}
.woocommerce .shop-toolbar .woocommerce-ordering li > ul {
margin: 0;
position: absolute;
top: 100%;
left: 0;
transition: top 0.5s;
border: 1px solid #b8b8b8;
background-color: #fff;
padding: 10px 15px;
color: #999;
transform: scale(0);
z-index: -999;
line-height: 1.4;
min-width: 100%;
}
.woocommerce .shop-toolbar .woocommerce-ordering li > ul li {
padding: 5px 0;
}
.woocommerce .shop-toolbar .woocommerce-ordering li > ul li a {
color: #999;
white-space: nowrap;
}
.woocommerce .shop-toolbar .woocommerce-ordering li > ul li a.active, .woocommerce .shop-toolbar .woocommerce-ordering li > ul li a:hover {
color: #000;
}
.woocommerce .shop-toolbar .woocommerce-ordering li.current:hover > ul {
transform: scale(1);
z-index: 999;
}
.woocommerce .shop-toolbar:after {
display: block;
content: "";
clear: both;
}
.mf-product-loop-hover-3 ul.products li.product .mf-product-price-box a.button,
.mf-product-loop-hover-4 ul.products li.product .mf-product-price-box a.button {
width: 100%;
padding: 0 15px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mf-product-loop-hover-3 ul.products li.product .mf-product-price-box a.button.loading::after,
.mf-product-loop-hover-4 ul.products li.product .mf-product-price-box a.button.loading::after {
top: 18px;
}
.mf-product-loop-hover-3 ul.products li.product .mf-product-price-box a.button .p-icon,
.mf-product-loop-hover-4 ul.products li.product .mf-product-price-box a.button .p-icon {
display: none;
}
.mf-product-loop-hover-3 ul.products li.product .mf-product-price-box .added_to_cart,
.mf-product-loop-hover-4 ul.products li.product .mf-product-price-box .added_to_cart {
display: none;
}
.mf-product-loop-hover-3.shop-view-list ul.products:not(.slick-slider) .mf-product-price-box > a.button,
.mf-product-loop-hover-4.shop-view-list ul.products:not(.slick-slider) .mf-product-price-box > a.button {
display: none;
}
.mf-product-loop-hover-3 .mf-products-top-carousel ul.products li.product .mf-attr-swatches,
.mf-product-loop-hover-4 .mf-products-top-carousel ul.products li.product .mf-attr-swatches {
display: none;
}
.mf-product-loop-hover-3 .mf-products-top-carousel ul.products li.product .product-inner,
.mf-product-loop-hover-4 .mf-products-top-carousel ul.products li.product .product-inner {
margin-bottom: 0;
}
.mf-product-loop-hover-4 ul.products li.product .product-inner {
border-radius: 10px;
}
.mf-product-loop-hover-4 ul.products li.product .ribbons .ribbon {
height: 22px;
line-height: 22px;
padding-left: 7px;
padding-right: 8px;
border-radius: 6px;
}
.mf-product-loop-hover-4 ul.products li.product .mf-product-thumbnail {
margin-bottom: 22px;
}
.mf-product-loop-hover-4 ul.products li.product .price {
margin-bottom: 10px;
font-size: 18px;
font-weight: 700;
}
.mf-product-loop-hover-4 ul.products li.product .price ins {
color: #669900;
font-weight: 700;
font-size: 18px;
}
.mf-product-loop-hover-4 ul.products li.product .price del {
font-size: 14px;
font-weight: 400;
color: #666666;
margin-right: 9px;
}
.mf-product-loop-hover-4 ul.products li.product .woo-loop-product__title {
padding-bottom: 11px;
position: relative;
}
.mf-product-loop-hover-4 ul.products li.product .woo-loop-product__title a {
display: inline;
color: #000000;
}
.mf-product-loop-hover-4 ul.products li.product .woo-loop-product__title a:hover {
text-decoration: underline;
text-underline-position: under;
}
.mf-product-loop-hover-4 ul.products li.product .button {
margin-top: 20px;
height: 42px;
line-height: 42px;
border-radius: 6px;
}
.product_loop-no-hover ul.products li.product {
margin-bottom: 5px;
}
.product_loop-no-hover ul.products li.product .product-inner {
padding-bottom: 20px;
border: 1px solid transparent;
}
.product_loop-no-hover ul.products li.product .product-inner:hover {
border-color: #c0c0c0;
}
.product_loop-no-hover.elementor-page .mf-products-carousel ul.products li.product .product-inner {
margin-bottom: 10px;
}
.woocommerce-cart .woocommerce h2 {
font-size: 20px;
font-weight: 600;
margin-bottom: 30px;
margin-top: 0;
}
.woocommerce-cart .woocommerce table.cart .backorder_notification,
.woocommerce-cart .woocommerce table.checkout .backorder_notification {
color: #666;
}
.woocommerce-cart .woocommerce table.cart .btn-shop,
.woocommerce-cart .woocommerce table.checkout .btn-shop {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
display: inline-block;
}
.woocommerce-cart .woocommerce table.cart .btn-shop i,
.woocommerce-cart .woocommerce table.checkout .btn-shop i {
display: inline-block;
transform: translateY(2px);
padding-right: 10px;
}
.woocommerce-cart .woocommerce table.cart .empty-cart-button,
.woocommerce-cart .woocommerce table.cart .btn-update,
.woocommerce-cart .woocommerce table.checkout .empty-cart-button,
.woocommerce-cart .woocommerce table.checkout .btn-update {
float: right;
position: relative;
cursor: pointer;
background-color: transparent;
color: #000;
border: 1px solid #7f7f7f;
}
.woocommerce-cart .woocommerce table.cart .btn-update,
.woocommerce-cart .woocommerce table.checkout .btn-update {
padding-left: 50px;
margin-left: 10px;
}
.woocommerce-cart .woocommerce table.cart .btn-update:before,
.woocommerce-cart .woocommerce table.checkout .btn-update:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
color: #000;
font-size: 16px;
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
}
.woocommerce-cart .woocommerce table.cart td.actions,
.woocommerce-cart .woocommerce table.checkout td.actions {
padding-left: 0;
padding-right: 0;
border-bottom: none;
padding-top: 50px;
}
.woocommerce-cart .woocommerce table.shop_table.cart {
margin-bottom: 60px;
}
.woocommerce-cart .woocommerce table.shop_table.cart td {
padding-top: 30px;
padding-bottom: 30px;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name {
padding-top: 45px;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name a {
font-size: 16px;
color: #0066cc;
line-height: 1.2;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name .product-detail-mobile {
display: none;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name dl.variation {
margin: 8px 0 0;
font-size: 14px;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name dl.variation dt {
font-weight: 400;
text-transform: capitalize;
padding-bottom: 3px;
margin-bottom: 0;
color: #999;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name dl.variation dd {
padding-bottom: 3px;
margin-bottom: 0;
color: #000;
}
.woocommerce-cart .woocommerce table.shop_table td.product-name .woocommerce-Price-amount {
display: none;
}
.woocommerce-cart .woocommerce table.shop_table td.product-remove {
width: 70px;
padding-top: 45px;
}
.woocommerce-cart .woocommerce table.shop_table td.product-remove .mf-remove {
color: #000;
font-size: 16px;
}
.woocommerce-cart .woocommerce table.shop_table td.product-remove .mf-remove:hover {
color: var(--mf-primary-color);
}
.woocommerce-cart .woocommerce table.shop_table td.product-subtotal, .woocommerce-cart .woocommerce table.shop_table td.product-quantity, .woocommerce-cart .woocommerce table.shop_table td.product-price {
width: 150px;
font-size: 16px;
padding-top: 45px;
}
.woocommerce-cart .woocommerce table.shop_table td.product-quantity {
padding-top: 38px;
}
.woocommerce-cart .woocommerce table.shop_table td.product-quantity .quantity .label {
display: none;
}
.woocommerce-cart .woocommerce table.shop_table td.product-quantity .product-remove {
display: none;
}
.woocommerce-cart .woocommerce table.shop_table td.product-thumbnail {
width: 150px;
padding-left: 25px;
padding-top: 30px;
}
.woocommerce-cart .woocommerce table.shop_table td .quantity {
border: 1px solid #ccc;
line-height: 36px;
position: relative;
width: 100px;
}
.woocommerce-cart .woocommerce table.shop_table td .quantity .qty {
margin-right: 30px;
margin-left: 30px;
width: 40px;
}
.woocommerce-cart .woocommerce table.shop_table td .quantity .decrease {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.woocommerce-cart .woocommerce table.shop_table td .quantity .increase {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.woocommerce-cart .woocommerce table.shop_table td del bdi {
text-decoration: line-through;
}
.woocommerce-cart .woocommerce .coupon {
margin-bottom: -100%;
}
.woocommerce-cart .woocommerce .coupon label {
display: block;
font-size: 20px;
color: #000;
position: relative;
margin-bottom: 40px;
}
.woocommerce-cart .woocommerce .coupon label:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
}
.woocommerce-cart .woocommerce .coupon .input-text {
width: 100%;
margin-bottom: 30px;
padding: 16px;
border: 1px solid #ccc;
color: #000;
}
.woocommerce-cart .woocommerce .coupon .button {
background-color: transparent;
border: 1px solid #ccc;
color: #000;
}
.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-button {
display: block;
font-size: 20px;
color: #000;
position: relative;
margin-bottom: 35px;
margin-top: 0;
}
.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-button:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 50%;
right: 0;
transform: translateY(-50%);
}
.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-form {
display: block !important;
height: auto !important;
}
.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .form-row {
margin-bottom: 15px;
}
.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .input-text,
.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator select {
width: 100%;
}
.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .button {
background-color: transparent;
border: 1px solid #ccc;
color: #000;
margin-top: 15px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals > h2 {
display: none;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table {
border: 1px solid #ccc;
background-color: #f1f1f1;
border-radius: 0;
padding: 0 30px;
font-size: 16px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table th {
background-color: transparent;
color: #000;
font-weight: 400;
padding: 20px 0;
border-top: none;
text-transform: none;
font-size: 16px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table td {
text-align: right;
padding: 20px 0;
border-top: none;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table td p {
margin-bottom: 5px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table .shipping .shipping-title {
color: #000;
font-weight: 400;
font-size: 16px;
text-align: left;
margin: 0 0 10px;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table .order-total .woocommerce-Price-amount {
color: #ff3300;
font-size: 20px;
font-weight: 600;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table .order-total th {
font-size: 20px;
font-weight: 600;
}
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table .order-total th,
.woocommerce-cart .woocommerce .cart-collaterals .cart_totals table.shop_table .order-total td {
border-bottom: none;
}
.woocommerce-cart .woocommerce .cross-sells {
margin-top: 80px;
}
.woocommerce-cart .woocommerce .cross-sells > h2 {
text-align: center;
}
.woocommerce-cart .woocommerce .cross-sells ul.products li.product {
margin-bottom: 10px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-main {
padding: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items {
border: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items td,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items th {
border: none;
font-weight: 400;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items th {
border: none;
color: #000;
border-bottom: 1px solid #e1e1e1;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
background-color: #f2f2f2 !important;
padding: 9px 12px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items td {
border: none;
color: #000;
vertical-align: top;
border-bottom: 1px solid #d6d6d6;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items tfoot tr th {
background-color: transparent;
font-weight: 400;
text-transform: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__header .wc-block-cart-items__header-product {
visibility: visible;
font-size: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-items__header th {
font-weight: 600;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-item__prices {
font-size: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-components-product-metadata:empty {
display: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-cart-item__quantity input.wc-block-components-quantity-selector__input {
height: 38px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-components-formatted-money-amount {
font-weight: 400;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart-items .wc-block-components-product-name {
font-size: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-totals-item__label {
color: #000;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
font-size: 16px;
color: #666;
padding-top: 16px;
padding-bottom: 6px;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block span.wc-block-cart__totals-title {
font-weight: 400;
color: #000;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__value {
font-weight: 400;
color: #000;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__description,
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-formatted-money-amount {
font-size: 16px;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__description {
font-size: 14px;
color: #000;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__description .wc-block-components-totals-shipping__via {
display: inline;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__description .wc-block-components-shipping-address {
font-weight: 700;
display: inline;
margin-left: 5px;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__description .wc-block-components-totals-shipping__change-address__link {
display: block;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-radio-control__option-checked {
color: #000;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-radio-control__option-checked .wc-block-components-radio-control__description-group {
color: #fe0000;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-button:not(.is-link) {
background-color: #000;
color: #fff;
outline: none;
box-shadow: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-button:not(.is-link):disabled {
opacity: .5;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-button:not(.is-link):disabled .wc-block-components-button__text {
opacity: 1;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-radio-control > * {
margin-bottom: 10px;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-radio-control .wc-block-components-radio-control__option {
padding-left: 24px;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-radio-control .wc-block-components-radio-control__input {
min-height: 12px;
min-width: 12px;
width: 12px;
height: 12px;
outline: none;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-radio-control .wc-block-components-radio-control__input:before {
min-width: 6px;
min-height: 6px;
width: 6px;
height: 6px;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
font-size: 20px;
}
.wp-block-woocommerce-cart .wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-footer-item .wc-block-components-formatted-money-amount {
font-size: 20px;
font-weight: 600;
color: #fe0000;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-panel,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-coupon,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-item,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar div.wc-block-components-shipping-calculator,
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar div.wc-block-components-shipping-rates-control__package:not(.wc-block-components-panel) {
padding-left: 0;
padding-right: 0;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar .wc-block-components-totals-coupon {
color: #000;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-sidebar div.wc-block-components-radio-control > * {
margin-bottom: 5px;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-components-radio-control__option-layout {
display: flex;
align-items: center;
justify-content: space-between;
}
.wp-block-woocommerce-cart .wc-block-cart .wc-block-cart__submit .wc-block-components-button:not(.is-link) {
font-size: 16px;
min-height: 50px;
outline: none;
box-shadow: none;
}
.wp-block-woocommerce-cart .wc-block-cart.is-medium .wc-block-cart-items .wc-block-cart-items__row, .wp-block-woocommerce-cart .wc-block-cart.is-small .wc-block-cart-items .wc-block-cart-items__row {
padding-top: 10px;
padding-bottom: 10px;
}
.wp-block-woocommerce-cart .wc-block-cart.is-medium .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product, .wp-block-woocommerce-cart .wc-block-cart.is-small .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__product {
padding-bottom: 25px;
}
.wp-block-woocommerce-cart .wc-block-cart.is-medium .wc-block-cart-items .wc-block-components-product-name, .wp-block-woocommerce-cart .wc-block-cart.is-small .wc-block-cart-items .wc-block-components-product-name {
font-size: 14px;
}
.wp-block-woocommerce-cart .wc-block-cart.is-medium .wc-block-components-radio-control__input, .wp-block-woocommerce-cart .wc-block-cart.is-small .wc-block-components-radio-control__input {
left: 0;
margin: 0;
}
.wp-block-woocommerce-cart .is-large.wc-block-cart .wc-block-cart-items th {
padding: 12px;
}
.woocommerce-checkout .woocommerce-info {
border: none;
background-color: #f1f1f1;
color: #000;
font-size: 14px;
padding: 20px 25px 20px 65px !important;
}
.woocommerce-checkout .woocommerce-info:before {
content: "\76";
font-family: ElegantIcons;
font-size: 17px;
color: #999;
top: 50%;
transform: translateY(-50%);
left: 25px;
position: absolute;
}
.woocommerce-checkout .woocommerce-info .showlogin,
.woocommerce-checkout .woocommerce-info .showcoupon {
color: #0099cc;
transition: all 0.5s;
}
.woocommerce-checkout form.checkout_coupon {
border-radius: 0;
}
.woocommerce-checkout .woocommerce-notices-wrapper {
clear: both;
}
.woocommerce-checkout form.checkout {
margin-top: 30px;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
opacity: 0;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox:checked + span:before {
content: "\e999";
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox > span {
display: inline-block;
color: #000;
text-transform: inherit;
position: relative;
line-height: 1;
font-size: 14px;
padding-left: 10px;
cursor: pointer;
}
.woocommerce-checkout .woocommerce-form__label-for-checkbox > span:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
position: absolute;
top: -4px;
left: -18px;
color: #000;
transition: 0.5s;
}
.woocommerce-checkout .mailchimp-newsletter input.woocommerce-form__input-checkbox {
opacity: 0;
display: none;
}
.woocommerce-checkout .mailchimp-newsletter input.woocommerce-form__input-checkbox:checked + .woocommerce-form__label-for-checkbox > span:before {
content: "\e999";
}
.woocommerce-checkout .mailchimp-newsletter .woocommerce-form__label-for-checkbox > span {
display: inline-block;
color: #000;
text-transform: inherit;
position: relative;
line-height: 1;
font-size: 14px;
padding-left: 10px;
cursor: pointer;
}
.woocommerce-checkout .mailchimp-newsletter .woocommerce-form__label-for-checkbox > span:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
position: absolute;
top: -4px;
left: -18px;
color: #000;
transition: 0.5s;
}
.woocommerce-checkout .mc4wp-checkbox-woocommerce input[type="checkbox"] {
opacity: 0;
display: none;
}
.woocommerce-checkout .mc4wp-checkbox-woocommerce input[type="checkbox"]:checked + span:before {
content: "\e999";
}
.woocommerce-checkout .mc4wp-checkbox-woocommerce span {
display: inline-block;
color: #000;
text-transform: inherit;
position: relative;
line-height: 1;
font-size: 14px;
padding-left: 30px;
cursor: pointer;
}
.woocommerce-checkout .mc4wp-checkbox-woocommerce span:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
position: absolute;
top: -4px;
left: 0;
color: #000;
transition: 0.5s;
}
.woocommerce-checkout form.login {
border-radius: 0;
}
.woocommerce-checkout form.login .lost_password {
margin-bottom: 0;
}
.woocommerce-checkout form.login .lost_password a {
color: #000;
text-decoration: underline;
}
.woocommerce-checkout form.login .button {
display: block;
min-width: 140px;
margin-top: 20px;
}
.woocommerce-checkout form.checkout h3 {
font-size: 20px;
margin-bottom: 30px;
font-weight: 600;
margin-top: 0;
}
.woocommerce-checkout form.checkout .woocommerce-shipping-fields,
.woocommerce-checkout form.checkout .woocommerce-account-fields {
margin-top: 40px;
}
.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper {
margin-top: 20px;
}
.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label {
font-weight: 400;
}
.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label > span:before {
left: 0;
}
.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label > span.required {
padding-left: 0;
color: #cc0000;
}
.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label > span.required:before {
display: none;
}
.woocommerce-checkout form.checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label a {
text-decoration: underline;
}
.woocommerce-checkout form.checkout .woocommerce-form__label {
font-weight: 400;
}
.woocommerce-checkout form.checkout .woocommerce-form__label > .input-checkbox {
opacity: 0;
margin: 0;
display: none;
}
.woocommerce-checkout form.checkout .woocommerce-form__label > .input-checkbox:checked + span:before {
content: "\e999";
}
.woocommerce-checkout form.checkout .woocommerce-form__label > span {
display: inline-block;
color: #000;
text-transform: none;
position: relative;
line-height: 1;
padding-left: 30px;
cursor: pointer;
}
.woocommerce-checkout form.checkout .woocommerce-form__label > span:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
position: absolute;
top: -3px;
left: 0;
color: #000;
transition: 0.5s;
}
.woocommerce-checkout table.shop_table {
border-radius: 0;
padding: 0 30px;
border: 1px solid #bfbfbf;
border-bottom: none;
background-color: #f6f6f6;
margin: 0;
}
.woocommerce-checkout table.shop_table dt {
font-weight: 400;
color: #999;
}
.woocommerce-checkout table.shop_table tr th {
background-color: transparent;
color: #666;
font-weight: 400;
padding: 20px 0;
border-top: none;
font-size: 16px;
text-transform: none;
}
.woocommerce-checkout table.shop_table tr th:last-child {
text-align: right;
}
.woocommerce-checkout table.shop_table thead th {
text-transform: uppercase;
color: #000;
padding-bottom: 10px;
font-weight: 600;
}
.woocommerce-checkout table.shop_table td {
padding: 20px 0;
border-top: none;
}
.woocommerce-checkout table.shop_table td strong {
font-weight: 400;
}
.woocommerce-checkout table.shop_table td p {
margin-bottom: 5px;
}
.woocommerce-checkout table.shop_table td:last-child {
text-align: right;
}
.woocommerce-checkout table.shop_table tfoot td {
border-top: none;
}
.woocommerce-checkout table.shop_table .shipping th {
color: #000;
width: 50%;
font-weight: 600;
}
.woocommerce-checkout table.shop_table .shipping td {
font-weight: 400;
}
.woocommerce-checkout table.shop_table .shipping .shipping-title {
text-align: left;
font-size: 16px;
color: #000;
font-weight: 600;
margin: 0 0 10px;
}
.woocommerce-checkout table.shop_table .shipping #shipping_method li label {
font-size: 14px;
}
.woocommerce-checkout table.shop_table .cart_item td {
padding: 5px 0;
border-bottom: none;
}
.woocommerce-checkout table.shop_table .cart_item:first-child td {
padding-top: 20px;
}
.woocommerce-checkout table.shop_table .cart-subtotal,
.woocommerce-checkout table.shop_table .order-total {
font-weight: 600;
}
.woocommerce-checkout table.shop_table .cart-subtotal th,
.woocommerce-checkout table.shop_table .order-total th {
color: #000;
font-weight: 600;
}
.woocommerce-checkout table.shop_table .cart-subtotal .woocommerce-Price-amount,
.woocommerce-checkout table.shop_table .order-total .woocommerce-Price-amount {
color: #ff0000;
font-weight: 600;
}
.woocommerce-checkout table.shop_table .order-total {
font-size: 20px;
}
.woocommerce-checkout table.shop_table .order-total th {
color: #000;
font-weight: 600;
font-size: 20px;
}
.woocommerce-checkout table.shop_table .order-total .woocommerce-Price-amount {
color: #ff0000;
font-weight: 600;
}
.woocommerce-checkout #payment {
border-radius: 0;
background-color: transparent;
}
.woocommerce-checkout #payment .wc_payment_methods {
border: 1px solid #bfbfbf;
border-top: none;
background-color: #f6f6f6;
}
.woocommerce-checkout #payment .form-row.place-order {
padding: 0;
margin: 0 -1px;
}
.woocommerce-checkout #payment .form-row.place-order .button {
width: 100%;
margin-top: 20px;
}
.woocommerce-checkout #payment div.payment_box {
background-color: transparent;
color: #999;
margin-bottom: 0;
}
.woocommerce-checkout #payment div.payment_box:before {
display: none;
}
.woocommerce-checkout #payment ul.payment_methods {
padding: 25px;
}
.woocommerce-checkout #payment ul.payment_methods > li {
margin-bottom: 15px;
}
.woocommerce-checkout #payment ul.payment_methods > li:last-child {
margin-bottom: 0;
}
.woocommerce-checkout #payment ul.payment_methods > li > .input-radio {
display: none;
}
.woocommerce-checkout #payment ul.payment_methods > li > .input-radio:checked + label:before {
content: "\5c";
}
.woocommerce-checkout #payment ul.payment_methods > li > label {
color: #000;
position: relative;
line-height: 1;
font-size: 14px;
padding-left: 30px;
cursor: pointer;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.woocommerce-checkout #payment ul.payment_methods > li > label:before {
content: "\5b";
font-family: ElegantIcons;
font-size: 18px;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
color: #000;
transition: 0.5s;
}
.woocommerce-checkout #payment ul.payment_methods > li > label .about_paypal {
line-height: 1;
}
.wp-block-woocommerce-checkout .wc-block-components-text-input input[type=email],
.wp-block-woocommerce-checkout .wc-block-components-text-input input[type=number],
.wp-block-woocommerce-checkout .wc-block-components-text-input input[type=password],
.wp-block-woocommerce-checkout .wc-block-components-text-input input[type=tel],
.wp-block-woocommerce-checkout .wc-block-components-text-input input[type=text],
.wp-block-woocommerce-checkout .wc-block-components-text-input input[type=url] {
border-radius: 0;
border-color: #ccc;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
padding-right: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-form .wc-blocks-components-select__container,
.wp-block-woocommerce-checkout .wc-block-components-form .wc-blocks-components-select__select {
border-radius: 0;
border-color: #ccc;
}
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-radio-control--highlight-checked:after {
border: none;
}
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option {
border: 1px solid #ccc;
margin-bottom: 15px;
}
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option:after {
display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option:last-child {
margin-bottom: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wp-block-woocommerce-checkout .wc-block-components-form .wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
border-radius: 0;
box-shadow: inset 0 0 0 2px #000;
}
.wp-block-woocommerce-checkout .wc-block-components-radio-control > * {
margin-bottom: 10px;
}
.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__option {
padding-left: 40px;
border: 1px solid #ccc;
margin-bottom: 15px;
}
.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__option:last-child {
margin-bottom: 0;
}
.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input {
min-height: 12px;
min-width: 12px;
width: 12px;
height: 12px;
outline: none;
}
.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:checked:before, .wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:before {
min-width: 6px;
min-height: 6px;
width: 6px;
height: 6px;
}
.wp-block-woocommerce-checkout .wc-block-components-address-card__edit,
.wp-block-woocommerce-checkout .wc-block-components-address-form__address_2-toggle {
text-decoration: underline;
}
.wp-block-woocommerce-checkout .wc-block-components-product-name {
font-size: 16px;
}
.wp-block-woocommerce-checkout .wc-block-components-order-summary {
color: #000;
}
.wp-block-woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary__button-text {
font-size: 16px;
font-weight: 600;
text-transform: uppercase;
}
.wp-block-woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item,
.wp-block-woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__total-price {
font-size: 16px;
font-weight: 400;
}
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper {
color: #000;
padding-left: 30px;
padding-right: 30px;
}
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper .wc-block-components-button:not(.is-link) {
background-color: #000;
color: #fff;
outline: none;
box-shadow: none;
}
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper .wc-block-components-button:not(.is-link):disabled {
opacity: .5;
}
.wp-block-woocommerce-checkout .wc-block-components-totals-wrapper .wc-block-components-button:not(.is-link):disabled .wc-block-components-button__text {
opacity: 1;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-subtotal-block .wc-block-components-totals-item {
font-size: 16px;
font-weight: 600;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-subtotal-block .wc-block-components-totals-item .wc-block-components-totals-item__value {
font-weight: inherit;
color: #fe0000;
}
.wp-block-woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-totals-block .wc-block-components-totals-item {
font-size: 16px;
}
.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
font-size: 20px;
}
.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
font-weight: 600;
color: #fe0000;
}
.wp-block-woocommerce-checkout .is-large .wc-block-components-sidebar .wc-block-components-panel,
.wp-block-woocommerce-checkout .is-large .wc-block-components-sidebar .wc-block-components-totals-coupon,
.wp-block-woocommerce-checkout .is-large .wc-block-components-sidebar .wc-block-components-totals-item {
padding-left: 0;
padding-right: 0;
}
.woocommerce-order-received .woocommerce-thankyou-order-received {
font-size: 18px;
color: #333;
}
.woocommerce-order-received ul.order_details li {
font-size: 14px;
}
.woocommerce-order-received ul.order_details li strong {
font-size: 14px;
}
.woocommerce-order-received .order_details strong {
font-weight: 400;
}
.woocommerce-order-received h2,
.woocommerce-order-received h3 {
font-size: 18px;
font-weight: 400;
}
.woocommerce-order-received address {
font-style: normal;
font-weight: 400;
}
.woocommerce-order-received .addresses {
margin: 0 -15px;
}
.woocommerce-order-received .addresses .col-1,
.woocommerce-order-received .addresses .col-2 {
width: 50%;
float: left;
padding: 0 15px;
}
.woocommerce-order-received .addresses:after {
display: block;
clear: both;
content: "";
}
.woocommerce-order-received table.shop_table {
padding: 0;
border: none;
border-bottom: none;
background-color: transparent;
margin: 0 0 60px;
}
.woocommerce-order-received table.shop_table tr th {
color: #000;
background-color: #f2f2f2;
padding: 16px;
}
.woocommerce-order-received table.shop_table tr td {
padding: 16px;
}
.woocommerce-order-received table.shop_table tfoot th {
background-color: transparent;
font-weight: 600;
}
.woocommerce-order-received table.shop_table tfoot .woocommerce-Price-amount {
color: #ff3300;
font-weight: 600;
}
.woocommerce-account .site-content {
background-color: #f1f1f1;
}
.woocommerce-account.logged-in .site-content {
padding-top: 40px;
background-color: transparent;
}
.woocommerce-account .woocommerce .account-info {
width: 100%;
display: flex;
align-items: center;
margin-bottom: 30px;
}
.woocommerce-account .woocommerce .account-info .account-avatar {
margin-right: 15px;
}
.woocommerce-account .woocommerce .account-info .account-avatar img {
border-radius: 50%;
}
.woocommerce-account .woocommerce .account-info .account-name {
font-size: 18px;
line-height: 1;
}
.woocommerce-account .woocommerce .account-info .account-name h3 {
font-size: 18px;
font-weight: 600;
margin: 5px 0 0;
display: block;
}
.woocommerce-account .woocommerce h2 {
font-size: 20px;
font-weight: 400;
}
.woocommerce-account .woocommerce .form-row {
margin-bottom: 12px;
}
.woocommerce-account .woocommerce .form-row label {
margin-bottom: 5px;
}
.woocommerce-account .woocommerce .form-row .input-text {
background-color: transparent;
border: 1px solid #d9d9d9;
border-radius: 3px;
color: #000;
font-weight: 400;
padding: 13px;
}
.woocommerce-account .woocommerce .form-row .input-text:focus {
color: #000;
border-color: #000;
}
.woocommerce-account .woocommerce .form-row ::-webkit-input-placeholder {
color: #999;
font-weight: 400;
}
.woocommerce-account .woocommerce .form-row :-moz-placeholder {
color: #999;
font-weight: 400;
}
.woocommerce-account .woocommerce .form-row ::-moz-placeholder {
color: #999;
font-weight: 400;
}
.woocommerce-account .woocommerce .form-row :-ms-input-placeholder {
color: #999;
font-weight: 400;
}
.woocommerce-account .woocommerce .form-row .select2-container .select2-choice {
border: 1px solid rgba(0, 0, 0, 0.15);
padding-left: 25px;
font-size: 16px;
font-weight: 400;
text-align: center;
color: #999;
background-color: transparent;
}
.woocommerce-account .woocommerce .form-row .select2-container .select2-choice:focus {
color: #000;
border-color: #000;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
line-height: 1;
width: 25%;
float: left;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
padding: 0;
margin: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
list-style: none;
padding: 15px 20px;
background-color: #f6f6f6;
border: 1px solid #d1d1d1;
border-bottom: none;
margin-bottom: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
color: #000;
font-weight: 600;
text-transform: uppercase;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
color: var(--mf-primary-color);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
border-bottom: 1px solid #d1d1d1;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active {
background-color: var(--mf-background-primary-color);
border: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
color: var(--mf-background-primary-text-color);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
width: 70%;
float: right;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content strong {
color: #666;
font-weight: 600;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders {
font-size: 14px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders .button {
height: 40px;
line-height: 39px;
padding: 0 25px;
min-width: 120px;
padding-left: 15px;
padding-right: 15px;
display: block;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders .leave_feedback {
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
background-color: #88aa00;
color: #fff;
margin-top: 10px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders .leave_feedback:hover, .woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders .leave_feedback:focus, .woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders .leave_feedback:active {
background-color: #88aa00;
color: #fff;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .addresses {
margin: 0 -15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .addresses .col-1,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .addresses .col-2 {
width: 50%;
float: left;
padding: 0 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .addresses:after {
display: block;
clear: both;
content: "";
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content h3 {
font-size: 16px;
font-weight: 400;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .orders-title,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .billing-title {
margin: 0;
line-height: 1;
font-size: 20px;
text-transform: capitalize;
padding-bottom: 18px;
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders {
border: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders thead {
line-height: 1;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders thead th {
padding: 15px;
background-color: #f1f1f1;
border-bottom: 1px solid #d9d9d9;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders thead th span {
font-weight: 600;
color: #000;
text-transform: uppercase;
display: block;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody .order td {
padding: 15px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody .order .order-date {
color: #999;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody .order .order-status {
color: #99cc33;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders tbody .order .order-actions {
padding-top: 23px;
padding-right: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-pagination {
margin-bottom: 80px;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .billing-title {
margin-bottom: 35px;
}
.woocommerce-account .woocommerce .woocommerce-Addresses {
margin: 0 -15px;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address {
width: 50%;
float: left;
padding: 0 15px;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address address {
color: #000;
line-height: 2;
font-style: normal;
text-transform: capitalize;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-edit {
margin-top: 30px;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-edit .edit {
color: #0099cc;
font-style: italic;
}
.woocommerce-account .woocommerce .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-edit .edit:hover {
color: var(--mf-primary-color);
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content {
color: #000;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .form-row, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .form-row {
margin-bottom: 15px;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .form-row label, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .form-row label {
line-height: 1;
margin-bottom: 10px;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .password-input, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .password-input {
position: relative;
display: block;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .password-input .show-password-input, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .password-input .show-password-input {
position: absolute;
right: 10px;
top: 12px;
cursor: pointer;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .password-input .show-password-input.display-password, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .password-input .show-password-input.display-password {
opacity: 0.5;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .password-input .show-password-input:before, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .password-input .show-password-input:before {
content: "\e6a5";
font-family: 'Linearicons' !important;
font-weight: 700;
font-size: 16px;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .edit-address,
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content h3, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .edit-address,
.woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content h3 {
font-size: 20px;
font-weight: 600;
color: #000;
text-transform: none;
padding-bottom: 15px;
margin-bottom: 30px;
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
line-height: 1;
width: 100%;
margin-top: 0;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content fieldset, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content fieldset {
border: none;
padding: 0;
margin: 0;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content fieldset legend, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content fieldset legend {
font-size: 20px;
font-weight: 600;
margin-bottom: 15px;
margin-top: 20px;
}
.woocommerce-account.woocommerce-edit-address .woocommerce .woocommerce-MyAccount-content .button, .woocommerce-account.woocommerce-edit-account .woocommerce .woocommerce-MyAccount-content .button {
margin-top: 30px;
}
.woocommerce-account.woocommerce-lost-password form.lost_reset_password {
max-width: 430px;
margin: 0 auto;
background-color: #fff;
padding: 20px;
}
.woocommerce-account.woocommerce-lost-password form.lost_reset_password .form-row label {
color: #000;
}
.woocommerce-account.woocommerce-lost-password form.lost_reset_password .form-row .button {
width: 100%;
margin-top: 15px;
}
.woocommerce .customer-login .tabs-nav {
text-align: center;
margin-bottom: 30px;
}
.woocommerce .customer-login .tabs-nav li {
float: none;
display: inline-block;
}
.woocommerce .customer-login .tabs-nav a {
font-size: 30px;
color: #999;
padding: 0 20px;
font-weight: 600;
}
.woocommerce .customer-login .tabs-nav a.active {
color: #000;
}
.woocommerce .customer-login .tabs-content {
max-width: 430px;
margin: 0 auto;
}
.woocommerce .customer-login .tabs-panel {
background-color: #fff;
padding: 35px 30px 27px;
border: 1px solid #e8e8e8;
border-radius: 5px;
}
.woocommerce .customer-login .tabs-panel form {
margin: 0;
padding: 0;
border: none;
}
.woocommerce .customer-login .tabs-panel h2 {
font-size: 16px;
font-weight: 400;
margin: 0 0 25px;
}
.woocommerce .customer-login .form-row .input-text {
padding: 14px 16px;
text-align: left;
}
.woocommerce .customer-login .form-row .button {
width: 100%;
font-size: 16px;
margin-top: 20px;
border-radius: 3px;
height: 53px;
line-height: 53px;
}
.woocommerce .customer-login .woocommerce-form-row__remember {
position: relative;
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 20px;
}
.woocommerce .customer-login .woocommerce-form-row__remember .woocommerce-form__label-for-checkbox {
display: inline-block;
line-height: 1;
margin-top: 0;
}
.woocommerce .customer-login .password-input {
position: relative;
display: block;
}
.woocommerce .customer-login .password-input .show-password-input {
position: absolute;
right: 10px;
top: 12px;
cursor: pointer;
}
.woocommerce .customer-login .password-input .show-password-input.display-password {
opacity: 0.5;
}
.woocommerce .customer-login .password-input .show-password-input:before {
content: "\e6a5";
font-family: 'Linearicons' !important;
font-weight: 700;
font-size: 16px;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox {
margin: 20px 0;
display: block;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox {
opacity: 0;
display: none;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox .woocommerce-form__input-checkbox:checked + span:before {
content: "\e999";
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox span {
display: inline-block;
color: #000;
text-transform: inherit;
position: relative;
line-height: 1;
padding-left: 30px;
cursor: pointer;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox span:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
position: absolute;
top: -3px;
left: 0;
color: #000;
transition: 0.5s;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox .checkbox-holder {
padding-left: 0;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox .checkbox-holder:before {
display: none;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox .checkbox-holder .woocommerce-form__input-checkbox {
opacity: 1;
display: block;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox .checkbox-holder + span {
padding-left: 10px;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox .checkbox-holder + span:before {
display: none;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox.radio {
margin: 0;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox.radio span:before {
content: "\5b";
font-family: ElegantIcons;
top: -1px;
}
.woocommerce .customer-login .woocommerce-form__label-for-checkbox.radio .woocommerce-form__input-checkbox:checked + span:before {
content: "\5c";
}
.woocommerce .customer-login .mailchimp-newsletter .input-checkbox:checked + .woocommerce-form__label-for-checkbox > span:before {
content: "\e999";
}
.woocommerce .customer-login .mailchimp-newsletter .input-checkbox {
display: none;
}
.woocommerce .customer-login .register br {
display: none;
}
.woocommerce .customer-login .register p {
margin: 0 0 12px;
}
.woocommerce .customer-login label[for="apply_for_vendor"] {
margin: 20px 0 0;
display: block;
}
.woocommerce .customer-login label[for="apply_for_vendor"] .input-checkbox {
opacity: 0;
display: none;
}
.woocommerce .customer-login label[for="apply_for_vendor"] .input-checkbox:checked + span:before {
content: "\e999";
}
.woocommerce .customer-login label[for="apply_for_vendor"] span {
display: inline-block;
color: #000;
text-transform: inherit;
position: relative;
line-height: 1;
padding-left: 30px;
cursor: pointer;
}
.woocommerce .customer-login label[for="apply_for_vendor"] span:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
position: absolute;
top: -3px;
left: 0;
color: #000;
transition: 0.5s;
}
.woocommerce .customer-login .forgetmenot {
margin: 20px 0 10px;
display: block;
}
.woocommerce .customer-login .forgetmenot .input-checkbox {
opacity: 0;
}
.woocommerce .customer-login .forgetmenot .input-checkbox:checked + span:before {
content: "\e999";
}
.woocommerce .customer-login .forgetmenot span {
display: inline-block;
color: #000;
text-transform: inherit;
position: relative;
line-height: 1;
padding-left: 20px;
cursor: pointer;
}
.woocommerce .customer-login .forgetmenot span:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 18px;
position: absolute;
top: -2px;
left: -12px;
color: #000;
transition: 0.5s;
}
.woocommerce .customer-login .wp-social-login-widget {
margin-top: 40px;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
width: 100px;
}
.catalog-sidebar .widget {
background-color: #f5f5f5;
padding: 25px 20px;
margin-bottom: 0;
position: relative;
}
.catalog-sidebar .widget:after {
position: absolute;
bottom: 0;
left: 20px;
right: 20px;
content: "";
height: 1px;
background-color: #d8d8d8;
}
.catalog-sidebar .widget:last-child:after {
display: none;
}
.catalog-sidebar .widget .widget-title {
margin-bottom: 25px;
font-size: 18px;
text-transform: uppercase;
font-weight: 400;
}
.catalog-sidebar .widget ul li .count {
font-size: 13px;
padding-left: 5px;
}
.catalog-sidebar .mf_widget_product_categories,
.catalog-sidebar .widget_product_categories {
margin-bottom: 30px;
}
.catalog-sidebar .mf_widget_product_categories:after,
.catalog-sidebar .widget_product_categories:after {
display: none;
}
.catalog-sidebar .widget_search,
.catalog-sidebar .widget_product_search {
border-bottom: none;
padding-bottom: 20px;
}
.catalog-sidebar .widget_search .search-form,
.catalog-sidebar .widget_product_search .search-form {
background-color: #f5f5f5;
border-color: #f5f5f5;
padding: 12px 20px;
}
.catalog-sidebar .woocommerce-product-search {
border-color: #d8d8d8;
background-color: #fff;
}
.catalog-sidebar .widget_shopping_cart_content .buttons a {
width: 100%;
margin-left: 0;
margin-right: 0;
}
.woocommerce-widget-layered-nav .widget-title {
margin-bottom: 25px;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list {
max-height: 135px;
overflow-y: auto;
scrollbar-color: #666666 #cccccc;
scrollbar-width: thin;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list::-webkit-scrollbar {
width: 6px;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list::-webkit-scrollbar-thumb {
background: #666666;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list::-webkit-scrollbar-track {
background: #cccccc;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
padding: 7px 0;
position: relative;
padding-left: 24px;
line-height: 1;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a {
padding: 0;
position: static;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:before {
position: absolute;
top: 6px;
left: 0;
width: 16px;
height: 16px;
border: 1px solid #d1d1d1;
content: "";
background-color: #fff;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 7px;
left: 0;
font-size: 10px;
opacity: 0;
width: 16px;
height: 16px;
text-align: center;
line-height: 16px;
font-weight: 600;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch {
display: inline-block;
margin-right: 10px;
padding: 7px 0 4px;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-color {
margin-right: 5px;
display: block;
border: 1px solid transparent;
padding: 3px;
border-radius: 50%;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-color .sub-swatch {
width: 30px;
height: 30px;
display: block;
border-radius: 50%;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-color .term-name {
display: none;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-label {
padding: 5px 10px;
border: 1px solid #b8b8b8;
min-width: 47px;
display: block;
text-align: center;
text-transform: uppercase;
color: #000;
background-color: #fff;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-image {
border: 1px solid transparent;
padding: 3px;
border-radius: 50%;
display: block;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-image img {
max-width: 45px;
border-radius: 50%;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch a:after,
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch a:before {
display: none;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a:after {
opacity: 1;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a:before {
border-color: var(--mf-border-primary-color);
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen .count {
font-weight: 600;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen.show-swatch .swatch-color {
border-color: #f04a09;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen.show-swatch .swatch-image {
border-color: #f04a09;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen.show-swatch .swatch-label {
border-color: var(--mf-border-primary-color);
color: var(--mf-primary-color);
}
.woocommerce-widget-layered-nav.mf-widget-layered-nav .slimScrollBar,
.woocommerce-widget-layered-nav.mf-widget-layered-nav .slimScrollRail {
border-radius: 0 !important;
opacity: 1 !important;
}
.woocommerce-widget-layered-nav.mf-widget-layered-nav.no-scroll .slimScrollBar,
.woocommerce-widget-layered-nav.mf-widget-layered-nav.no-scroll .slimScrollRail {
opacity: 0 !important;
}
.woocommerce-widget-layered-nav .search_layered_nav {
position: relative;
margin-bottom: 20px;
margin-top: 5px;
}
.woocommerce-widget-layered-nav .search_layered_nav:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 10px;
font-size: 15px;
color: #000;
}
.woocommerce-widget-layered-nav .search_layered_nav .mf-input-search-nav {
width: 100%;
border-color: #d1d1d1;
height: 34px;
line-height: 34px;
padding: 0 10px;
}
.widget_rating_filter ul .wc-layered-nav-rating {
padding: 7px 0;
position: relative;
}
.widget_rating_filter ul .wc-layered-nav-rating:first-child {
padding-top: 0;
}
.widget_rating_filter ul .wc-layered-nav-rating:first-child a:before {
top: 0;
}
.widget_rating_filter ul .wc-layered-nav-rating:last-child {
padding-bottom: 0;
}
.widget_rating_filter ul .wc-layered-nav-rating .star-rating {
margin-right: 3px;
}
.widget_rating_filter ul .wc-layered-nav-rating a {
display: flex;
align-items: center;
color: #999;
position: relative;
}
.widget_rating_filter ul .wc-layered-nav-rating a:before {
width: 16px;
height: 16px;
border: 1px solid #d1d1d1;
content: "";
background-color: #fff;
margin-top: 1px;
margin-right: .618em;
}
.widget_rating_filter ul .wc-layered-nav-rating a:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 3px;
left: 0;
font-size: 10px;
opacity: 0;
width: 16px;
height: 16px;
text-align: center;
line-height: 16px;
font-weight: 600;
margin-top: 2px;
}
.widget_rating_filter ul .wc-layered-nav-rating.chosen a:after {
opacity: 1;
color: var(--mf-primary-color);
}
.widget_rating_filter ul .wc-layered-nav-rating.chosen a:before {
border-color: var(--mf-border-primary-color);
content: "";
}
.widget_rating_filter ul .wc-layered-nav-rating.chosen .count {
font-weight: 600;
}
.widget_rating_filter ul .wc-layered-nav-rating.chosen.show-swatch .swatch-color {
border-color: #f04a09;
}
.widget_rating_filter ul .wc-layered-nav-rating.chosen.show-swatch .swatch-image {
border-color: #f04a09;
}
.widget_rating_filter ul .wc-layered-nav-rating.chosen.show-swatch .swatch-label {
border-color: var(--mf-border-primary-color);
color: var(--mf-primary-color);
}
.widget_layered_nav_filters .widget-title {
margin-bottom: 20px;
font-size: 16px;
}
.widget_layered_nav_filters ul li {
display: block;
float: none;
padding: 5px 0;
}
.widget_layered_nav_filters ul li.chosen a {
color: #000;
font-weight: 400;
}
.widget_layered_nav_filters ul li.chosen a:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 12px;
color: #000;
}
.mf-catalog-topbar {
display: none;
z-index: -999;
background-color: #f5f5f5;
padding-bottom: 30px;
margin-bottom: 40px;
}
.mf-catalog-topbar.active {
z-index: 1;
}
.mf-catalog-topbar .widget {
width: 20%;
float: left;
padding: 0 15px;
margin-bottom: 30px;
padding-top: 40px;
background-color: transparent;
animation: fadein 2s;
}
.mf-catalog-topbar .widget:after {
display: none;
}
.mf-catalog-topbar .widget .widget-title {
font-size: 14px;
margin-bottom: 25px;
font-weight: 600;
}
.mf-catalog-topbar .widget:nth-child(5n + 1) {
clear: both;
}
.mf-catalog-topbar .widget .woocommerce-ordering li.current > span,
.mf-catalog-topbar .widget .woocommerce-ordering li .sort-by {
display: none;
}
.mf-catalog-topbar .widget .woocommerce-ordering li li .active {
font-weight: 600;
color: var(--mf-primary-color);
}
.mf-catalog-topbar .widget .woocommerce-ordering li li:first-child {
padding-top: 0;
}
.mf-catalog-topbar .widget .woocommerce-ordering li li:last-child {
padding-bottom: 0;
}
.mf-catalog-topbar.widgets-4 .widget {
width: 25%;
}
.mf-catalog-topbar.widgets-3 .widget {
width: 33.33%;
}
.mf-catalog-topbar .widget_layered_nav .count {
display: none;
}
.mf-catalog-topbar .widget_layered_nav ul li {
padding: 5px 0;
}
.mf-catalog-topbar .widget_layered_nav ul li:first-child {
padding-top: 0;
}
.mf-catalog-topbar .widget_layered_nav ul li a {
padding: 0;
line-height: 1;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
padding-left: 0;
display: block;
width: 100%;
margin-right: 0;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item > a:before,
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item > a:after {
display: none;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch {
margin: 0;
display: block;
padding: 7px 0;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch:first-child {
padding-top: 0;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch:last-child {
padding-bottom: 0;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-color {
padding: 0;
margin-left: 0;
border: none;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-color .sub-swatch {
width: 10px;
height: 10px;
display: inline-block;
opacity: 1;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch .swatch-color .term-name {
display: inline-block;
padding: 0 0 0 20px;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch.chosen .swatch-color {
box-shadow: none;
background-color: transparent;
margin-left: -1px;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch.chosen .swatch-color .sub-swatch {
display: none;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch.chosen .swatch-color .term-name {
padding-left: 17px;
}
.mf-catalog-topbar .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.show-swatch.chosen .swatch-color:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
color: var(--mf-primary-color);
font-size: 13px;
}
.mf-catalog-topbar:after {
display: block;
content: "";
clear: both;
}
.mf-catalog-topbar .catalog-filter-actived {
clear: both;
padding: 0 15px;
font-size: 16px;
color: #000;
margin-top: 20px;
width: 100%;
float: left;
}
.mf-catalog-topbar .catalog-filter-actived .found {
font-weight: 600;
}
.mf-catalog-topbar .catalog-filter-actived .remove-filter-actived {
color: var(--mf-primary-color);
margin-left: 25px;
padding-left: 25px;
position: relative;
display: inline-block;
font-weight: 600;
}
.mf-catalog-topbar .catalog-filter-actived .remove-filter-actived:before {
position: absolute;
top: 48%;
transform: translateY(-50%);
height: 17px;
background-color: #cfcfcf;
content: "";
width: 1px;
left: 0;
z-index: 5;
}
.mf-catalog-topbar .catalog-filter-actived .remove-filter-actived i {
font-size: 13px;
padding-right: 10px;
}
.mf-catalog-banners {
margin-bottom: 40px;
}
.mf-catalog-banners:after {
clear: both;
display: block;
content: "";
}
.mf-catalog-banners ul {
margin: 0;
padding: 0;
}
.mf-catalog-banners ul li {
list-style: none;
float: left;
display: none;
}
.mf-catalog-banners ul li:first-child {
display: block;
}
.mf-catalog-banners ul.slick-initialized li {
display: block;
}
.mf-catalog-banners .slick-slide a {
margin: 0;
}
.mf-catalog-banners .slick-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
font-size: 18px;
cursor: pointer;
color: #000;
width: 48px;
height: 48px;
line-height: 48px;
text-align: center;
z-index: 10;
background-color: rgba(204, 204, 204, 0.5);
transition: 0.5s;
}
.mf-catalog-banners .slick-arrow:hover {
background-color: #cccccc;
}
.mf-catalog-banners .slick-disabled {
cursor: auto;
}
.mf-catalog-banners .slick-disabled:hover {
background-color: rgba(204, 204, 204, 0.5);
}
.mf-catalog-banners .slick-prev-arrow {
left: 0;
right: auto;
}
.mf-catalog-brands {
display: flex;
align-items: center;
flex-wrap: wrap;
margin-bottom: 40px;
}
.mf-catalog-brands .brand-item {
width: calc(100%/6);
text-align: center;
}
.mf-catalog-page .site-content {
padding-top: 30px;
}
.mf-catalog-categories {
margin-bottom: 30px;
}
.mf-catalog-categories:after {
display: block;
content: "";
clear: both;
}
.mf-catalog-categories .mf-image-box {
margin-bottom: 30px;
}
.mf-catalog-categories .col-cat:nth-child(3n+1) {
clear: both;
}
.mf-catalog-categories-4 {
margin-bottom: 30px;
}
.mf-catalog-categories-4:after {
display: block;
content: "";
clear: both;
}
.mf-catalog-categories-4 .col-cat:nth-child(6n+1) {
clear: both;
}
.mf-catalog-categories-4 .cat-item {
display: block;
border: 1px solid #bfbfbf;
text-align: center;
transition: 0.5s;
}
.mf-catalog-categories-4 .cat-item h3 {
font-size: 16px;
font-weight: 400;
line-height: 1;
margin: 15px 5px;
transition: 0.5s;
}
.mf-catalog-categories-4 .cat-item:hover {
border-color: var(--mf-border-primary-color);
}
.mf-catalog-categories-4 .cat-item:hover h3 {
color: #0099cc;
}
.mf-products-top-carousel {
position: relative;
margin-bottom: 20px;
z-index: 10;
}
.mf-products-top-carousel:nth-child(2) {
z-index: 9;
}
.mf-products-top-carousel:nth-child(3) {
z-index: 8;
}
.mf-products-top-carousel:nth-child(4) {
z-index: 7;
}
.mf-products-top-carousel:nth-child(5) {
z-index: 6;
}
.mf-products-top-carousel:nth-child(6) {
z-index: 4;
}
.mf-products-top-carousel ul.products {
margin: 0;
position: static;
}
.mf-products-top-carousel ul.products.slick-initialized li.product {
clear: none !important;
margin-bottom: 0;
padding: 0 5px;
}
.mf-products-top-carousel ul.products .slick-dots {
margin: 35px 0 20px;
}
.mf-products-top-carousel ul.products li.product .mf-product-details-hover .mf-attr-swatches {
display: none;
}
.mf-products-top-carousel ul.products li.product .product-inner {
margin-bottom: 35px;
}
.mf-products-top-carousel .slick-list {
margin: 0 -5px;
}
.mf-products-top-carousel .slick-track {
display: flex;
align-items: stretch;
}
.mf-products-top-carousel .carousel-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e1e1e1;
margin: 0 0 30px;
padding-bottom: 13px;
}
.mf-products-top-carousel .carousel-header .title {
font-size: 24px;
font-weight: 400;
margin: 0;
}
.mf-products-top-carousel .carousel-header .cats-list {
padding: 0;
margin: 0 -15px;
}
.mf-products-top-carousel .carousel-header .cats-list li {
display: inline-block;
margin-bottom: 0;
padding: 0 15px;
}
.mf-products-top-carousel .carousel-header .cats-list li a {
color: #666;
}
.mf-products-top-carousel .carousel-header .cats-list li a:hover {
color: var(--mf-primary-color);
}
.mf-products-top-carousel .carousel-header .slick-arrows {
margin-top: 3px;
}
.mf-products-top-carousel .slick-arrow {
position: static;
font-size: 14px;
cursor: pointer;
color: #999;
transition: 0.5s;
transform: none;
}
.mf-products-top-carousel .slick-arrow:hover {
color: #000;
}
.mf-products-top-carousel .slick-disabled {
color: #ccc;
cursor: auto;
}
.mf-products-top-carousel .slick-disabled:hover {
color: #ccc;
}
.mf-products-top-carousel .slick-prev-arrow {
margin-right: 15px;
}
.mf-products-top-carousel .slick-dots {
text-align: center;
margin: 20px 0;
display: none !important;
}
.mf-catalog-top-categories {
display: flex;
align-items: stretch;
margin-bottom: 65px;
flex-wrap: wrap;
}
.mf-catalog-top-categories .top-categories-list {
height: 100%;
background-color: #fff;
padding: 25px 0;
position: relative;
}
.mf-catalog-top-categories .top-categories-list .title {
font-size: 20px;
font-weight: 400;
text-transform: uppercase;
margin: 0 20px 25px;
line-height: 1;
}
.mf-catalog-top-categories .top-categories-list .categories-list {
margin: 0;
padding: 0;
list-style: none;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li {
margin-bottom: 0;
padding: 0 20px;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li .cat-menu-close {
position: absolute;
top: 12px;
right: 20px;
display: none;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li > a {
color: #000;
font-size: 16px;
border-bottom: 1px solid #f0f0f0;
display: block;
padding: 10px 0;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li:last-child a {
border-bottom: none;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li:hover > .sub-categories {
opacity: 1;
z-index: 9999;
left: 100%;
transform: scaleX(1);
}
.mf-catalog-top-categories .top-categories-list .categories-list > li:hover > a {
color: var(--mf-primary-color);
}
.mf-catalog-top-categories .top-categories-list .categories-list .sub-categories {
position: absolute;
top: 0;
opacity: 0;
left: 110%;
bottom: 0;
transform: scaleX(0);
z-index: -1;
transition: left 0.3s ease 0s, opacity 0.3s;
padding: 13px 20px;
background-color: #fff;
border: 1px solid var(--mf-border-primary-color);
margin: 0;
list-style: none;
min-width: 265px;
}
.mf-catalog-top-categories .top-categories-list .categories-list .sub-categories li {
padding: 5px 0;
margin-bottom: 0;
line-height: 1;
}
.mf-catalog-top-categories .top-categories-list .categories-list .sub-categories li a {
white-space: nowrap;
color: #666;
border-bottom: 1px solid transparent;
}
.mf-catalog-top-categories .top-categories-list .categories-list .sub-categories li a:hover {
color: #000;
border-color: #000;
}
.mf-catalog-top-categories .top-categories-grid {
height: 100%;
background-color: #fff;
display: flex;
align-items: stretch;
flex-wrap: wrap;
}
.mf-catalog-top-categories .top-categories-grid .col-cat {
border-right: 1px solid rgba(141, 141, 141, 0.15);
border-bottom: 1px solid rgba(141, 141, 141, 0.15);
}
.mf-catalog-top-categories .top-categories-grid .col-cat:last-child, .mf-catalog-top-categories .top-categories-grid .col-cat:nth-child(3n) {
border-right: none;
}
.mf-catalog-top-categories .top-categories-grid .col-cat:nth-last-child(1), .mf-catalog-top-categories .top-categories-grid .col-cat:nth-last-child(2), .mf-catalog-top-categories .top-categories-grid .col-cat:nth-last-child(3) {
border-bottom: none;
}
.mf-catalog-top-categories .top-categories-grid .cats-box {
display: flex;
align-items: flex-start;
margin-bottom: 10px;
margin-top: 15px;
}
.mf-catalog-top-categories .top-categories-grid .cats-box .col-cat:nth-child(3n+1) {
clear: both;
}
.mf-catalog-top-categories .top-categories-grid .cats-image {
width: 45%;
}
.mf-catalog-top-categories .top-categories-grid .cats-image img {
height: auto;
}
.mf-catalog-top-categories .top-categories-grid .cats-list {
padding: 5px 10px 10px;
}
.mf-catalog-top-categories .top-categories-grid .cats-list .parent-cat {
font-size: 18px;
color: #000;
line-height: 1.2;
display: block;
}
.mf-catalog-top-categories .top-categories-grid .cats-list .parent-cat:hover {
color: var(--mf-primary-color);
}
.mf-catalog-top-categories .top-categories-grid .cats-list ul {
margin: 10px 0 0;
padding: 0;
}
.mf-catalog-top-categories .top-categories-grid .cats-list ul li {
list-style: none;
margin-bottom: 7px;
display: block;
line-height: 1;
}
.mf-catalog-top-categories .top-categories-grid .cats-list ul li a {
color: #666;
border-bottom: 1px solid transparent;
}
.mf-catalog-top-categories .top-categories-grid .cats-list ul li a:hover {
color: #000;
border-color: #000;
}
.mf-catalog-top-categories .top-categories-grid .cats-list ul li.view-more {
margin-top: 15px;
}
.mf-catalog-top-categories .top-categories-grid .cats-list ul li.view-more a {
color: #0066cc;
}
.mf-catalog-top-categories .top-categories-grid .cats-list ul li.view-more a:hover {
color: var(--mf-primary-color);
border-color: var(--mf-border-primary-color);
}
.mf-featured-categories {
margin-bottom: 30px;
}
.mf-other-categories {
background-color: #fff;
padding: 15px 20px;
}
.mf-other-categories .cat-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e1e1e1;
margin: 0 0 50px;
padding-bottom: 13px;
}
.mf-other-categories .cat-header .cat-name {
font-size: 24px;
font-weight: 400;
margin: 0;
}
.mf-other-categories .categories-list:after {
content: "";
display: block;
clear: both;
}
.mf-other-categories .categories-list .col-cat {
margin-bottom: 30px;
}
.mf-other-categories .categories-list .cats-image {
margin-bottom: 15px;
}
.mf-other-categories .categories-list .cats-image img {
height: auto;
}
.mf-other-categories .categories-list .cats-list .parent-cat {
font-size: 18px;
color: #000;
line-height: 1;
}
.mf-other-categories .categories-list .cats-list .parent-cat:hover {
color: var(--mf-primary-color);
}
.mf-other-categories .categories-list .cats-list .sub-categories {
margin: 15px 0 0;
padding: 0;
list-style: none;
}
.mf-other-categories .categories-list .cats-list .sub-categories li {
margin-bottom: 0;
padding: 5px 0;
line-height: 1;
}
.mf-other-categories .categories-list .cats-list .sub-categories li a {
color: #666;
border-bottom: 1px solid transparent;
}
.mf-other-categories .categories-list .cats-list .sub-categories li a:hover {
color: #000;
border-bottom: 1px solid #000;
}
.mf-other-categories .categories-list .cats-list .sub-categories li a img {
height: auto;
}
.mf-catalog-layout-3 .mf-catalog-title,
.mf-catalog-layout-10 .mf-catalog-title {
font-size: 24px;
font-weight: 600;
text-transform: uppercase;
margin: 20px 0;
}
.mf-catalog-layout-2 .site-content,
.mf-catalog-layout-2 .page-header-catalog .page-breadcrumbs {
background-color: #f5f5f5;
}
.mf-catalog-layout-2 .site-content {
padding-top: 0;
}
.mf-catalog-layout-2 .mf-recently-products.footer-recently-viewed {
padding-top: 0;
}
.mf-catalog-layout-2 .mf-products-top-carousel {
background-color: #fff;
padding: 15px 20px;
margin-bottom: 30px;
}
.mf-catalog-layout-2 .mf-products-top-carousel .slick-dots {
display: block !important;
}
.mf-catalog-layout-2 .carousel-header .slick-arrows {
display: none;
}
.single-product .site-content {
padding-top: 30px;
padding-bottom: 0;
}
.mf-entry-product-header {
border-bottom: 1px solid #e1e1e1;
padding-bottom: 8px;
margin-bottom: 20px;
}
.mf-entry-product-header:after {
clear: both;
display: block;
content: "";
}
.mf-entry-product-header .entry-left {
float: left;
max-width: 60%;
}
.mf-entry-product-header .social-links {
float: right;
}
.mf-entry-product-header .entry-meta {
margin: 0;
padding: 0;
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.mf-entry-product-header .entry-meta li {
padding: 0 15px;
position: relative;
margin-bottom: 0;
}
.mf-entry-product-header .entry-meta li:after {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 0;
width: 1px;
background-color: #e8e8e8;
height: 100%;
max-height: 13px;
content: "";
}
.mf-entry-product-header .entry-meta li:first-child {
padding-left: 0;
}
.mf-entry-product-header .entry-meta li:first-child:after {
display: none;
}
.mf-entry-product-header .entry-meta li:last-child {
padding-right: 0;
}
.mf-entry-product-header .woocommerce-product-rating {
display: flex;
align-items: center;
}
.mf-entry-product-header .woocommerce-product-rating .star-rating {
margin-top: 0;
margin-right: 0;
}
.mf-entry-product-header .woocommerce-product-rating .mf-rating .count {
display: none;
}
.mf-entry-product-header .woocommerce-product-rating .woocommerce-review-link {
padding-left: 5px;
color: #666;
}
.mf-entry-product-header .woocommerce-product-rating .woocommerce-review-link:hover {
color: #000;
}
section.up-sells,
section.related {
margin-bottom: 50px;
}
section.up-sells .related-title,
section.related .related-title {
background-color: #f4f4f4;
text-align: center;
border-bottom: 1px solid #e3e3e3;
font-size: 20px;
font-weight: 600;
padding: 15px 0;
margin: 0 0 50px;
}
section.up-sells ul.products,
section.related ul.products {
position: relative;
}
section.up-sells ul.products li,
section.related ul.products li {
clear: none !important;
}
section.up-sells ul.products .slick-arrow,
section.related ul.products .slick-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -54px;
color: #ccc;
font-size: 30px;
transition: 0.5s;
cursor: pointer;
}
section.up-sells ul.products .slick-arrow:hover,
section.related ul.products .slick-arrow:hover {
color: #000;
}
section.up-sells ul.products .slick-arrow.slick-disabled,
section.related ul.products .slick-arrow.slick-disabled {
color: #ccc;
cursor: auto;
}
section.up-sells ul.products .slick-next-arrow,
section.related ul.products .slick-next-arrow {
left: auto;
right: -54px;
}
section.up-sells ul.products .slick-dots,
section.related ul.products .slick-dots {
margin-top: 20px;
margin-bottom: 20px;
display: none !important;
}
section.up-sells ul.products.columns-7,
section.related ul.products.columns-7 {
margin-right: -2px;
}
.mf-product-instagram {
margin-bottom: 75px;
}
.mf-product-instagram h2 {
font-size: 20px;
font-weight: 600;
text-align: center;
margin-bottom: 60px;
padding-bottom: 15px;
border-bottom: 1px solid #e1e1e1;
line-height: 1;
}
.mf-product-instagram ul.products {
margin: 0 -5px;
padding: 0;
}
.mf-product-instagram ul.products li.product {
padding: 0 5px;
margin-bottom: 0 !important;
float: left;
clear: none !important;
}
.mf-product-instagram ul.products .insta-item {
position: relative;
display: block;
}
.mf-product-instagram ul.products .insta-item:before {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
transition: 0.5s;
}
.mf-product-instagram ul.products .insta-item i {
opacity: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
transition: 0.5s;
font-size: 24px;
color: #fff;
}
.mf-product-instagram ul.products .insta-item:hover:before,
.mf-product-instagram ul.products .insta-item:hover i {
opacity: 1;
}
.mf-product-instagram .slick-slider {
position: relative;
}
.mf-product-instagram .slick-slider .slick-arrow {
position: absolute;
top: 50%;
left: -54px;
transform: translateY(-50%);
font-size: 30px;
transition: 0.5s;
color: rgba(0, 0, 0, 0.5);
cursor: pointer;
color: #ccc;
}
.mf-product-instagram .slick-slider .slick-arrow:hover {
color: #000;
}
.mf-product-instagram .slick-slider .slick-arrow.slick-disabled {
color: #ccc;
cursor: auto;
}
.mf-product-instagram .slick-slider .slick-next-arrow {
right: -54px;
left: auto;
}
.mf-product-instagram .slick-slider .slick-dots {
margin-top: 20px;
margin-bottom: 20px;
display: none !important;
}
.pswp .mf-video-wrapper iframe,
.pswp .mf-video-wrapper .wp-video {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.pswp .mf-video-wrapper iframe:-webkit-full-screen {
transform: none;
}
.product-degree-pswp {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: -999999;
display: none;
}
.product-degree-pswp .degree-pswp-bg {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.85);
}
.product-degree-pswp.open {
display: block;
z-index: 999999;
}
.product-degree-pswp .degree-pswp-close {
position: absolute;
top: 10px;
right: 10px;
font-size: 18px;
color: #fff;
transition: 0.5s;
z-index: 99;
cursor: pointer;
}
.mf-product-gallery-degree {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
overflow: hidden;
cursor: ew-resize;
}
.mf-product-gallery-degree .product-degree-images {
display: none;
list-style: none;
margin: 0;
padding: 0;
height: 100%;
background-color: #fff;
position: relative;
}
.mf-product-gallery-degree .product-degree-images:after {
border-color: rgba(175, 175, 175, 0.05) rgba(175, 175, 175, 0.1) rgba(175, 175, 175, 0.15);
border-radius: 50%;
border-style: solid;
border-width: 2px 2px 4px;
bottom: 60px;
content: "";
height: 50%;
left: 50px;
position: absolute;
right: 50px;
z-index: 10;
transition-delay: 0.5s;
}
.mf-product-gallery-degree .product-degree-images li {
height: 100%;
margin-bottom: 0;
}
.mf-product-gallery-degree .product-degree-images img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: auto;
max-height: 500px;
max-width: 100%;
}
.mf-product-gallery-degree .product-degree-images img.previous-image {
visibility: hidden;
}
.mf-product-gallery-degree .product-degree-images img.current-image {
visibility: visible;
}
.mf-product-gallery-degree .mf-gallery-degree-spinner {
width: 40px;
display: block;
margin: 0 auto;
height: 40px;
position: relative;
z-index: 1000;
}
.mf-product-gallery-degree .mf-gallery-degree-spinner:before {
border-width: 2px;
border-color: var(--mf-border-primary-color) var(--mf-border-primary-color) var(--mf-border-primary-color) transparent;
-webkit-border-radius: 50%;
border-radius: 50%;
border-style: solid;
-webkit-animation: mf-spin-fast 1s linear infinite;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 40px;
height: 40px;
font-weight: 400;
display: block;
}
.mf-product-gallery-degree .nav_bar {
position: absolute;
left: 50%;
transform: translateX(-50%);
bottom: 15px;
z-index: 11;
display: flex;
align-items: center;
}
.mf-product-gallery-degree .nav_bar a {
width: 32px;
height: 32px;
overflow: hidden;
color: #000;
margin: 0 5px;
}
.mf-product-gallery-degree .nav_bar a:hover {
color: #000;
}
.mf-product-gallery-degree .nav_bar a:before {
width: 32px;
height: 32px;
padding-left: 2px;
}
.mf-product-gallery-degree .nav_bar a.nav_bar_play:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 30px;
}
.mf-product-gallery-degree .nav_bar a.nav_bar_stop:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 30px;
}
.mf-product-gallery-degree .nav_bar a.nav_bar_previous:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 30px;
}
.mf-product-gallery-degree .nav_bar a.nav_bar_next:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 30px;
} .mf-product-gallery-degree:-webkit-full-screen {
background: #ffffff;
width: 100%;
height: 100%;
margin-top: 0;
padding-top: 200px;
}
.mf-product-gallery-degree:-moz-full-screen {
background: #ffffff;
width: 100%;
height: 100%;
margin-top: 0;
padding-top: 200px;
}
.woocommerce .mf-single-product .mf-product-detail:after {
clear: both;
display: block;
content: "";
}
.woocommerce .mf-single-product.mf-product-layout-2 .mf-entry-product-header {
padding-top: 0;
}
.woocommerce .mf-single-product.mf-product-layout-2 .mf-entry-product-header .entry-left {
max-width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-2 .product-image-ms {
display: none;
}
.woocommerce .mf-single-product.mf-product-layout-2 .woocommerce-product-gallery {
padding-bottom: 0;
}
.woocommerce .mf-single-product.mf-product-layout-2 .mf-product-countdown {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-2 .mf-product-countdown .cd-title {
max-width: 100%;
margin: 0 0 20px;
}
.woocommerce .mf-single-product.mf-product-layout-2 .mf-product-countdown .flip-wrapper:first-child {
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-layout-2 form.cart .actions-button .buy_now_button {
margin-left: 0;
margin-top: 15px;
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-entry-product-header .entry-left {
max-width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .social-links {
margin-top: 15px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-summary-header {
padding-bottom: 0;
border-bottom: none;
}
.woocommerce .mf-single-product.mf-product-layout-3 .woocommerce-product-gallery {
width: 35%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary {
width: 65%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-woo-tabs .panel {
margin-bottom: 50px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-woo-tabs .panel .tab-title {
font-size: 20px;
font-weight: 600;
border-bottom: 1px solid #e1e1e1;
line-height: 1;
padding-bottom: 15px;
margin-bottom: 40px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-woo-tabs .panel .tab-content-wrapper > h2 {
display: none;
}
.woocommerce .mf-single-product.mf-product-layout-3 .product_meta .sku_wrapper {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary {
display: flex;
align-items: flex-start;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-content {
width: 63%;
padding-right: 30px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-content .price {
display: none;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-sidebar {
width: 37%;
padding: 20px 30px;
background-color: #f1f1f1;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-sidebar .price {
font-weight: 500;
margin-bottom: 30px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-sidebar .price ins {
font-size: 30px;
display: block;
font-weight: 600;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-sidebar .price del {
color: #999;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-sidebar .cart .button {
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3 form.cart {
margin-bottom: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3 form.cart div.quantity {
width: 100%;
float: none;
margin-bottom: 20px;
padding-bottom: 15px;
border-bottom: 1px solid #d5d5d5;
}
.woocommerce .mf-single-product.mf-product-layout-3 form.cart div.quantity .label {
font-size: 14px;
margin-bottom: 10px;
color: #000;
}
.woocommerce .mf-single-product.mf-product-layout-3 form.cart div.quantity .qty-box {
background-color: #fff;
border: none;
margin-bottom: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-variable form.cart .variations td.label {
color: #000;
font-size: 14px;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-variable form.cart .variations td.label .mf-attr-value {
display: none;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-variable form.cart .variations td.value {
width: 100%;
margin-bottom: 15px;
position: static;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-variable form.cart .variations select {
width: 100%;
border: none;
background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAANCAYAAAB7AEQGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTM4IDc5LjE1OTgyNCwgMjAxNi8wOS8xNC0wMTowOTowMSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTcgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkZDMzNFMUY4RkRDMzExRTc5M0FCRTQ0OUI5ODE0MzM4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkZDMzNFMUY5RkRDMzExRTc5M0FCRTQ0OUI5ODE0MzM4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6RkMzM0UxRjZGREMzMTFFNzkzQUJFNDQ5Qjk4MTQzMzgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6RkMzM0UxRjdGREMzMTFFNzkzQUJFNDQ5Qjk4MTQzMzgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz72a+MPAAAAj0lEQVR42nyPCw2AMAxEgcwAFrAAEkDCLIAVLHRWNgnDAhZmgTa5JkthXHL7dG9pryeizmhmX3VhMMDOzmxqQQKc7AV3spACG1odNSiQN4BKwdPxktDi7t4ScBKowC3dOtP4A40CrezYACUQDZgpfIA7fDgUAvaIlB6AnIurfiqYEWTTQM7MEPCQ6sSPAAMA5PQhMtT60qcAAAAASUVORK5CYII=);
background-color: #fff;
background-position: right 10px center;
background-repeat: no-repeat;
appearance: none;
-moz-appearance: none;
color: #666;
-webkit-appearance: none;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-variable form.cart .variations .reset_variations {
position: absolute;
top: 0;
right: 0;
margin-top: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-variable form.cart .single_variation_wrap .woocommerce-variation {
margin-bottom: 15px;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-grouped .cart .group_table td {
width: 100%;
display: block;
padding: 5px 0;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-grouped .cart .group_table td a {
font-size: 14px;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-grouped .cart .group_table td:first-child {
margin-top: 15px;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-grouped form.cart div.quantity {
border-bottom: none;
padding-bottom: 0;
margin-bottom: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3.product-type-grouped .price {
margin-bottom: 15px;
}
.woocommerce .mf-single-product.mf-product-layout-3.outofstock .entry-summary-content {
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3.outofstock .entry-summary-content .price {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-3.outofstock .entry-summary-sidebar {
display: none;
}
.woocommerce .mf-single-product.mf-product-layout-3 .cart-external {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-3 .woocommerce-product-details__short-description {
margin-bottom: 0;
border-bottom: none;
}
.woocommerce .mf-single-product.mf-product-layout-3 .tawc-deal .deal-expire-date {
display: block;
margin-bottom: 20px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .tawc-deal .deal-expire-date .deal-expire-text {
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .tawc-deal .deal-expire-date .deal-expire-countdown .days {
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3 .tawc-deal .deal-sold .deal-sold-text {
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .tawc-deal .deal-sold .deal-progress,
.woocommerce .mf-single-product.mf-product-layout-3 .tawc-deal .deal-sold .deal-text {
width: 100%;
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3 .quantity .qty {
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-compare-button .compare {
color: #666;
width: auto;
overflow: visible;
height: auto;
display: flex;
align-items: center;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-compare-button .compare:before {
font-size: 14px;
width: auto;
height: auto;
line-height: inherit;
margin-right: 5px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__icon {
margin-right: 5px;
line-height: normal;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__text {
display: inline;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__icon,
.woocommerce .mf-single-product.mf-product-layout-3 .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__text {
font-size: 14px;
color: #666;
}
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a {
width: auto;
overflow: visible;
height: auto;
display: flex;
align-items: center;
color: #666;
}
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .yith-wcwl-icon,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a .fa-heart-o:before,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .yith-wcwl-icon,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a .fa-heart-o:before,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .yith-wcwl-icon,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a .fa-heart-o:before {
font-size: 14px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a > span,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a > span,
.woocommerce .mf-single-product.mf-product-layout-3 .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a > span {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-3 .wcboost-wishlist-button {
width: auto;
overflow: visible;
height: auto;
display: flex;
align-items: center;
color: #666;
font-size: 14px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .wcboost-wishlist-button .wcboost-wishlist-button__icon {
margin-right: 5px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .wcboost-wishlist-button .wcboost-wishlist-button__text {
display: inline-block;
}
.woocommerce .mf-single-product.mf-product-layout-3 .mf-compare-button .compare.loading:after {
top: 4px;
left: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3 .single_add_to_cart_button {
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3.mf-has-buy-now form.cart .single_add_to_cart_button,
.woocommerce .mf-single-product.mf-product-layout-3.mf-has-buy-now form.cart .buy_now_button {
min-width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .actions-button {
text-align: center;
display: flex;
padding-top: 10px;
width: 100%;
clear: both;
justify-content: center;
flex-wrap: wrap;
}
.woocommerce .mf-single-product.mf-product-layout-3 .actions-button .buy_now_button {
width: 100%;
margin-bottom: 15px;
margin-left: 0;
margin-top: 10px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .actions-button .mf-wishlist-button {
display: inline-block;
}
.woocommerce .mf-single-product.mf-product-layout-3 .actions-button .mf-wishlist-button .yith-wcwl-add-to-wishlist,
.woocommerce .mf-single-product.mf-product-layout-3 .actions-button .mf-wishlist-button .wcboost-wishlist-button {
margin-left: 0;
margin-top: 0;
}
.woocommerce .mf-single-product.mf-product-layout-3 form.cart .mf-compare-button {
display: inline-block;
float: none;
margin-top: 0;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-entry-product-header .entry-left {
max-width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-4 .social-links {
margin-top: 15px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-summary-header {
padding-bottom: 0;
border-bottom: none;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-entry-product-header {
padding-top: 0;
}
.woocommerce .mf-single-product.mf-product-layout-4 .product_meta .sku_wrapper {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-product-detail {
background-color: #fff;
padding: 30px 15px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-product-detail:after {
clear: both;
display: block;
content: "";
}
.woocommerce .mf-single-product.mf-product-layout-4 .summary-sep {
height: 30px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-product-fbt {
background-color: #fff;
border: none;
margin-bottom: 30px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .wc-tabs-wrapper {
background-color: #fff;
padding: 20px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .wc-tabs-wrapper ul.tabs {
text-align: left;
}
.woocommerce .mf-single-product.mf-product-layout-4 .wc-tabs-wrapper ul.tabs li a {
font-size: 19px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .wc-tabs-wrapper ul.tabs li:first-child {
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-product-summary {
margin-left: -15px;
margin-right: -15px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .product-sidebar .widget {
background-color: #fff;
}
.woocommerce .mf-single-product.mf-product-layout-4 .product-sidebar .custom-html-widget {
padding: 20px;
}
.woocommerce .mf-single-product.mf-product-layout-4 .product-sidebar .custom-html-widget .mf-shipping-info {
background-color: transparent;
padding: 0;
}
.woocommerce .mf-single-product.mf-product-layout-4 .product-sidebar .widget_products {
border: none;
background-color: #fff;
}
.woocommerce .mf-single-product.mf-product-layout-4 .product-sidebar .widget_products .widget-title {
margin: 0 20px;
background-color: transparent;
padding-left: 0;
padding-right: 0;
}
.woocommerce .mf-single-product.mf-product-layout-4 .mf-product-fbt ul.products li.product {
width: 33.33%;
}
.woocommerce .mf-single-product.mf-product-layout-4.mf-has-buy-now form.cart .buy_now_button {
margin-left: 20px;
}
.woocommerce .mf-single-product.mf-product-layout-4.mf-has-buy-now form.cart div.quantity {
margin-right: 20px;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images {
padding-left: 0;
width: 46%;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .product-degree-images {
bottom: 80px;
left: 0;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .flex-control-nav {
position: relative;
top: 0;
width: 100%;
margin: 10px -5px 0;
display: flex;
flex-wrap: wrap;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .flex-control-nav li {
display: inline-block;
padding: 0 5px;
width: 65px;
clear: none !important;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .flex-control-nav .slick-arrow {
height: 40px;
line-height: 40px;
width: 20px;
text-align: center;
right: auto;
left: -10px;
transition: 0.35s;
top: 53%;
transform: translateY(-50%);
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .flex-control-nav .slick-next-arrow {
right: -10px;
left: auto;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .flex-control-nav:hover .slick-prev-arrow {
left: 5px;
top: 53%;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .flex-control-nav:hover .slick-next-arrow {
right: 5px;
top: 53%;
}
.woocommerce .mf-single-product.mf-product-sidebar .entry-summary {
width: 54%;
}
.woocommerce .mf-single-product.mf-product-sidebar .mf-summary-header {
padding-bottom: 0;
border-bottom: none;
}
.woocommerce .mf-single-product.mf-product-sidebar .product_meta .sku_wrapper {
display: block;
}
.woocommerce .mf-single-product.mf-product-sidebar form.cart div.quantity {
margin-right: 20px;
}
.woocommerce .mf-single-product.mf-product-sidebar form.cart .yith-wcwl-add-to-wishlist,
.woocommerce .mf-single-product.mf-product-sidebar form.cart .wcboost-wishlist-button,
.woocommerce .mf-single-product.mf-product-sidebar form.cart .mf-compare-button {
margin-left: 15px;
}
.woocommerce .mf-single-product.mf-product-sidebar .social-links {
margin-top: 15px;
}
.woocommerce .mf-single-product.mf-product-sidebar .mf-product-fbt ul.products li.product {
width: 33.33%;
}
.woocommerce .mf-single-product.mf-product-sidebar .woocommerce-tabs ul.tabs {
text-align: left;
}
.woocommerce .mf-single-product.mf-product-sidebar .woocommerce-tabs ul.tabs li a {
font-size: 19px;
}
.woocommerce .mf-single-product.mf-product-sidebar .woocommerce-tabs ul.tabs li:first-child {
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-sidebar .tawc-deal .deal-expire-date {
display: block;
margin-bottom: 30px;
}
.woocommerce .mf-single-product.mf-product-sidebar .tawc-deal .deal-expire-date .deal-expire-text {
width: 100%;
margin-bottom: 15px;
}
.woocommerce .mf-single-product.mf-product-sidebar .tawc-deal .deal-expire-date .deal-expire-countdown .days {
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-sidebar .tawc-deal .deal-sold .deal-sold-text {
width: 100%;
}
.woocommerce .mf-single-product.mf-product-sidebar .tawc-deal .deal-sold .deal-progress,
.woocommerce .mf-single-product.mf-product-sidebar .tawc-deal .deal-sold .deal-text {
width: 100%;
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-layout-5 .product_meta .sku_wrapper,
.woocommerce .mf-single-product.mf-product-layout-5 .product-image-ms {
display: none;
}
.woocommerce .mf-single-product.mf-product-layout-5 .woocommerce-product-gallery {
padding-bottom: 0;
}
.woocommerce .mf-single-product.mf-product-layout-5 .mf-product-countdown {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-5 .mf-product-countdown .cd-title {
max-width: 100%;
margin: 0 0 20px;
}
.woocommerce .mf-single-product.mf-product-layout-5 .mf-product-countdown .flip-wrapper:first-child {
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-layout-5 form.cart .actions-button .buy_now_button {
margin-left: 0;
margin-top: 15px;
width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-6 .product_meta .sku_wrapper {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-6 .social-links {
margin-top: 15px;
}
.woocommerce .mf-single-product.mf-product-layout-6 .mf-entry-product-header .entry-left {
max-width: 100%;
}
.woocommerce .mf-single-product.mf-product-layout-6 .mf-summary-header {
border-bottom: none;
padding-bottom: 0;
}
.product-sidebar .custom-html-widget .mf-shipping-info {
background-color: #f1f1f1;
padding: 25px 30px;
}
.product-sidebar .custom-html-widget .mf-shipping-info li {
display: flex;
align-items: center;
color: #000;
line-height: 1.1;
padding: 7px 0;
}
.product-sidebar .custom-html-widget .mf-shipping-info li i {
font-size: 26px;
padding-right: 25px;
}
.product-sidebar .widget {
margin-bottom: 30px;
}
.product-sidebar .widget .widget-title {
border-bottom: 1px solid #e1e1e1;
padding-bottom: 12px;
}
.product-sidebar .widget_products {
border: 1px solid #e1e1e1;
}
.product-sidebar .widget_products .widget-title {
background-color: #f4f4f4;
padding-left: 20px;
padding-right: 15px;
padding-top: 12px;
}
.product-sidebar .widget_products .product_list_widget {
padding-left: 20px;
padding-right: 20px;
padding-bottom: 20px;
margin-bottom: 20px;
}
.product-sidebar .widget_products .product_list_widget li {
padding: 20px;
border: 1px solid transparent;
transition: 0.5s;
margin-top: 20px;
display: block;
}
.product-sidebar .widget_products .product_list_widget li:last-child {
padding-bottom: 20px;
}
.product-sidebar .widget_products .product_list_widget li:hover {
border-color: #d9d9d9;
}
.product-sidebar .widget_products .product_list_widget li a {
margin-bottom: 0;
}
.product-sidebar .widget_products .product_list_widget li img {
float: none;
width: auto;
margin-right: 0;
margin-top: 0;
}
.product-sidebar .widget_products .product_list_widget .product-title {
color: #0066cc;
font-size: 14px;
margin-top: 15px;
}
.product-sidebar .widget_products .product_list_widget .woocommerce-Price-amount {
font-size: 16px;
color: #000;
font-weight: 400;
}
.product-sidebar .widget_products .product_list_widget ins .woocommerce-Price-amount {
color: #ff3300;
}
.product-sidebar .widget_products .product_list_widget del {
padding-left: 5px;
}
.product-sidebar .widget_products .product_list_widget del .woocommerce-Price-amount {
color: #999;
font-size: 14px;
text-decoration: line-through;
}
.product-sidebar .widget.mf_widget_product_categories {
background-color: #f5f5f5;
padding: 25px 20px;
}
.product-sidebar .widget.mf_widget_product_categories .widget-title {
margin-bottom: 20px;
padding-bottom: 0;
font-size: 18px;
text-transform: uppercase;
font-weight: 400;
border-bottom: none;
}
.product-sidebar .widget.mf_widget_product_categories ul li {
padding-right: 0;
}
.single-product-layout-2 .mf-product-instagram h2,
.single-product-layout-3 .mf-product-instagram h2,
.single-product-layout-5 .mf-product-instagram h2 {
text-align: left;
}
.single-product-layout-2 section.up-sells h2,
.single-product-layout-2 section.related h2,
.single-product-layout-3 section.up-sells h2,
.single-product-layout-3 section.related h2,
.single-product-layout-5 section.up-sells h2,
.single-product-layout-5 section.related h2 {
text-align: left;
background-color: transparent;
}
.single-product-layout-2 div.product.product-type-grouped .cart .group_table {
table-layout: fixed;
}
.single-product-layout-2 div.product.product-type-grouped .cart .group_table td:first-child {
width: auto;
}
.single-product-layout-2 div.product.product-type-grouped .cart .group_table td a {
white-space: normal;
font-size: 14px;
}
.single-product-layout-2 div.product.product-type-grouped .cart .group_table td.woocommerce-grouped-product-list-item__label {
padding: 5px;
}
.single-product-layout-4 .site-content {
background-color: #f1f1f1;
padding-top: 0;
}
.single-product-layout-4 .mf-recently-products.footer-recently-viewed {
background-color: #f1f1f1;
padding-top: 50px;
}
.single-product-layout-4 .footer-history-products .footer-recently-viewed {
background-color: #fff;
}
.single-product-layout-4 .mf-product-fbt {
padding: 20px;
}
.single-product-layout-4 .mf-product-instagram {
background-color: #f1f1f1;
padding-bottom: 30px;
margin-bottom: 0;
}
.single-product-layout-4 .mf-product-instagram h2 {
text-align: left;
margin-bottom: 30px;
margin-top: 0;
}
.single-product-layout-4 .mf-product-instagram .product-instagram-cont {
background-color: #fff;
padding: 15px 20px;
}
.single-product-layout-4 .mf-product-instagram .slick-slider .slick-dots {
display: block !important;
}
.single-product-layout-4 .mf-product-instagram .slick-arrow {
display: none !important;
}
.single-product-layout-4 section.up-sells,
.single-product-layout-4 section.related {
background-color: #f1f1f1;
padding-bottom: 30px;
margin-bottom: 0;
}
.single-product-layout-4 section.up-sells .related-content,
.single-product-layout-4 section.up-sells .up-sells-content,
.single-product-layout-4 section.related .related-content,
.single-product-layout-4 section.related .up-sells-content {
background-color: #fff;
padding: 20px;
}
.single-product-layout-4 section.up-sells h2,
.single-product-layout-4 section.related h2 {
text-align: left;
background-color: transparent;
margin-top: 0;
}
.single-product-layout-4 section.up-sells .product-inner,
.single-product-layout-4 section.related .product-inner {
background-color: #fff;
padding: 0 20px 20px;
}
.single-product-layout-4 section.up-sells ul.products .slick-dots,
.single-product-layout-4 section.related ul.products .slick-dots {
display: block !important;
}
.single-product-layout-4 section.up-sells .slick-arrow,
.single-product-layout-4 section.related .slick-arrow {
display: none !important;
}
.single-product-layout-4 .product-sidebar {
margin-top: 0;
}
.single-product-layout-6 div.product .wc-tabs-wrapper ul.tabs {
text-align: left;
}
.single-product-layout-6 div.product .wc-tabs-wrapper .entry-content .container {
width: 100%;
}
.single-product-layout-6 section.up-sells .related-title,
.single-product-layout-6 section.related .related-title {
text-align: left;
background-color: transparent;
}
.single-product-layout-6 .mf-product-instagram h2 {
text-align: left;
}
.woocommerce-message a.button,
.woocommerce-Message a.button {
height: 40px;
line-height: 39px;
padding: 0 25px;
}
.woocommerce .woocommerce-customer-details address {
border: none;
}
.widget_shopping_cart_content {
border: 1px solid #ccc;
background-color: #fff;
padding: 10px 20px 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total {
margin-top: 20px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 18px;
margin-bottom: 0;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total strong {
color: #000;
font-weight: 600;
}
.widget_shopping_cart_content .woocommerce-mini-cart__total .woocommerce-Price-amount {
font-weight: 600;
color: #ff3300;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons {
margin-top: 20px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
height: 45px;
line-height: 45px;
border-radius: 3px;
min-width: 150px;
margin-bottom: 10px;
white-space: nowrap;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .checkout {
background-color: #e59c00;
margin-left: 15px;
}
.mini-cart-button-lines .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
display: block;
}
.mini-cart-button-lines .widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
width: 100%;
margin-left: 0;
}
.woocommerce ul.cart_list li,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li {
display: flex;
position: relative;
border-bottom: 1px solid #e5e5e5;
padding: 15px 20px 15px 0;
}
.woocommerce ul.cart_list li:last-child,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li:last-child {
border-bottom: none;
}
.woocommerce ul.cart_list li img,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li img {
float: left;
width: 100%;
margin-left: 0;
}
.woocommerce ul.cart_list li .product-image,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .product-image {
float: left;
width: 60px;
}
.woocommerce ul.cart_list li .product-content,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .product-content {
float: left;
padding-left: 15px;
}
.woocommerce ul.cart_list li .product-content .product-name a,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .product-content .product-name a {
font-weight: 400;
}
.woocommerce ul.cart_list li dl,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li dl {
border-left: 0;
padding-left: 0;
}
.woocommerce ul.cart_list li dl dt,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li dl dt {
font-weight: 500;
color: #000;
}
.woocommerce ul.cart_list li dl dd,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li dl dd {
margin-bottom: 0;
}
.woocommerce ul.cart_list li .variation-SoldBy a,
.woocommerce ul.cart_list li .wcfm_dashboard_item_title,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .variation-SoldBy a,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .wcfm_dashboard_item_title {
color: #666;
font-weight: 400;
}
.woocommerce ul.cart_list li .variation-SoldBy a:hover,
.woocommerce ul.cart_list li .wcfm_dashboard_item_title:hover,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .variation-SoldBy a:hover,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .wcfm_dashboard_item_title:hover {
color: #000;
}
.woocommerce ul.cart_list li .quantity,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .quantity {
color: #000;
}
.woocommerce ul.cart_list li .remove_from_cart_button,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .remove_from_cart_button {
position: absolute;
top: 16px;
right: 0;
color: #ccc;
font-size: 14px;
font-weight: 400;
background-color: transparent;
}
.woocommerce ul.cart_list li .remove_from_cart_button:hover,
.woocommerce .widget_shopping_cart_content ul.product_list_widget li .remove_from_cart_button:hover {
color: #000;
}
.woocommerce ul.cart_list .mf-cart-panel-footer,
.woocommerce .widget_shopping_cart_content ul.product_list_widget .mf-cart-panel-footer {
border-top: 1px solid #e5e5e5;
}
.woocommerce .blockUI.blockOverlay {
background-color: rgba(255, 255, 255, 0.7) !important;
opacity: 1 !important;
background-image: none !important;
}
.woocommerce .blockUI.blockOverlay:after {
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-image: none;
z-index: 999;
color: transparent !important;
font-size: 0;
border-width: 1px;
border-color: var(--mf-border-primary-color) var(--mf-border-primary-color) var(--mf-border-primary-color) transparent;
-webkit-border-radius: 50%;
border-style: solid;
-webkit-animation: mf-spin-fast 1s linear infinite;
animation: mf-spin-fast 1s linear infinite;
content: "";
width: 30px;
height: 30px;
font-weight: 400;
}
.woocommerce .blockUI.blockOverlay:before {
display: none;
}
.tooltip {
width: auto;
font-family: "Work Sans", Arial, sans-serif;
white-space: nowrap;
}
.woocommerce #respond input#submit.loading,
.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading {
opacity: 0.25;
}
.woocommerce #respond input#submit.loading:after,
.woocommerce a.button.loading:after,
.woocommerce button.button.loading:after,
.woocommerce input.button.loading:after {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
}
.yith_woocompare_colorbox #cboxTopCenter,
.yith_woocompare_colorbox #cboxTopLeft,
.yith_woocompare_colorbox #cboxTopRight,
.yith_woocompare_colorbox #cboxMiddleLeft,
.yith_woocompare_colorbox #cboxMiddleRight,
.yith_woocompare_colorbox #cboxBottomLeft,
.yith_woocompare_colorbox #cboxBottomCenter,
.yith_woocompare_colorbox #cboxBottomRight {
background: transparent;
width: 0;
height: 0;
}
.yith_woocompare_colorbox #cboxClose {
background: none;
top: 10px;
right: 20px;
bottom: auto;
text-indent: inherit;
overflow: hidden;
color: #fff;
position: fixed;
}
.yith_woocompare_colorbox #cboxClose:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 23px;
width: 23px;
height: 23px;
}
.catalog-ajax-filter .widget_price_filter .price_slider_amount {
min-height: 20px;
}
.catalog-ajax-filter .widget_price_filter .price_slider_amount .button {
display: none;
}
.sticky-product-info-wapper {
position: fixed;
top: -20px;
left: 0;
right: 0;
background-color: #fff;
padding-top: 8px;
padding-bottom: 8px;
border-bottom: 1px solid #e1e1e1;
z-index: -9999;
opacity: 0;
transition: top 0.25s;
}
.sticky-product-info-wapper .sticky-product-inner {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.sticky-product-info-wapper .sc-product-info {
display: flex;
align-items: center;
margin-right: 30px;
}
.sticky-product-info-wapper .sc-product-info .product-thumb {
margin-right: 15px;
}
.sticky-product-info-wapper .sc-product-info .product-thumb img {
max-width: 60px;
}
.sticky-product-info-wapper .sc-product-info .product-name h2 {
font-size: 20px;
line-height: 1;
font-weight: 400;
margin: 0 0 5px;
}
.sticky-product-info-wapper .sc-product-info .sc-tabs {
margin: 0 -12px;
padding: 0;
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.sticky-product-info-wapper .sc-product-info .sc-tabs li {
padding: 0 12px;
margin-bottom: 0;
}
.sticky-product-info-wapper .sc-product-info .sc-tabs li a {
color: #999;
font-weight: 600;
}
.sticky-product-info-wapper .sc-product-cart {
display: flex;
align-items: center;
margin-top: 10px;
}
.sticky-product-info-wapper .sc-product-cart .price {
font-size: 22px;
font-weight: 600;
color: #ff3300;
line-height: 1;
margin-bottom: 0;
margin-right: 25px;
}
.sticky-product-info-wapper .sc-product-cart .price ins,
.sticky-product-info-wapper .sc-product-cart .price del {
display: block;
}
.sticky-product-info-wapper .sc-product-cart .price ins {
text-decoration: none;
margin-bottom: 3px;
}
.sticky-product-info-wapper .sc-product-cart .price del {
color: #999999;
font-size: 14px;
font-weight: 400;
}
.sticky-product-info-wapper .sc-product-cart .price .sale {
display: none;
}
.sticky-product-info-wapper .sc-product-cart .button {
height: 40px;
line-height: 39px;
padding: 0 25px;
border-radius: 4px;
white-space: nowrap;
}
.sticky-product-info-wapper.viewport {
opacity: 1;
top: 0;
z-index: 999;
}
.sticky-product-info-wapper.viewport .sc-product-info .sc-tabs li a.active {
color: var(--mf-primary-color);
}
.single-product-layout-3 .sticky-product-info-wapper .sc-product-info .sc-tabs li a.active {
color: var(--mf-primary-color);
}
.admin-bar .sticky-product-info-wapper.viewport {
top: 32px;
}
.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
clear: both;
}
.woocommerce-error li a.button,
.woocommerce-info li a.button,
.woocommerce-message li a.button {
height: 40px;
line-height: 40px;
}
.woocommerce.search-no-results .mf-catalog-title, .woocommerce.search-results .mf-catalog-title {
font-size: 24px;
font-weight: 600;
margin: 0 0 20px;
}
.mb-filter-active .martfury-off-canvas-layer {
display: block;
z-index: 9999;
background-color: rgba(255, 255, 255, 0.85);
}
.navigation-type-infinite .woocommerce-pagination {
text-align: center;
margin: 0;
}
.navigation-type-infinite .woocommerce-pagination .page-numbers {
display: none;
}
.navigation-type-infinite .woocommerce-pagination .next {
display: block;
font-size: 16px;
letter-spacing: 10px;
text-transform: uppercase;
color: #999;
margin-top: 50px;
margin-bottom: 30px;
}
.account-page-columns.woocommerce-account .site-content,
.account-page-columns.woocommerce-account .page-header-page .entry-title {
background-color: transparent;
}
.account-page-columns .customer-login .col-login {
width: 100%;
margin: 0;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-nav {
display: none;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-content {
max-width: 100%;
display: flex;
justify-content: space-between;
position: relative;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-content:after {
content: "";
position: absolute;
top: 0;
right: 50%;
bottom: 0;
border-right: 1px solid #e8e8e8;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-panel {
padding: 0 15px;
width: 45%;
border: none;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-panel h2 {
font-weight: 600;
font-size: 24px;
}
.account-page-promotion.woocommerce-account .site-content,
.account-page-promotion.woocommerce-account .page-header-page .entry-title {
background-color: transparent;
}
.account-page-promotion .customer-login .martfury-login-promotion {
border: 1px solid #e8e8e8;
max-width: 430px;
}
.account-page-promotion .customer-login .tabs-panel {
padding: 0;
border: none;
}
.account-page-promotion .customer-login .tabs-content {
max-width: 100%;
margin: 40px 30px;
}
.account-page-promotion .customer-login .tabs-nav {
border-bottom: 1px solid #e8e8e8;
display: flex;
align-items: center;
}
.account-page-promotion .customer-login .tabs-nav li {
margin-bottom: 0;
padding: 25px 10px;
width: 50%;
position: relative;
}
.account-page-promotion .customer-login .tabs-nav a {
line-height: 1;
font-size: 24px;
padding: 0;
}
.account-page-promotion .customer-login .tabs-nav a:after {
position: absolute;
bottom: 0;
left: 0;
right: 0;
content: "";
border-bottom: 2px solid var(--mf-border-primary-color);
opacity: 0;
}
.account-page-promotion .customer-login .tabs-nav a.active {
color: var(--mf-primary-color);
}
.account-page-promotion .customer-login .tabs-nav a.active:after {
opacity: 1;
}
.account-page-promotion .col-login-promotion {
padding-left: 0;
}
.account-page-promotion .login-promotion {
margin-top: 25px;
}
.account-page-promotion .login-promotion .pro-title {
font-size: 24px;
margin: 0 0 25px;
font-weight: 600;
}
.account-page-promotion .login-promotion .pro-text {
margin-bottom: 30px;
}
.account-page-promotion .login-promotion .pro-list ul {
margin: 0;
padding: 0;
list-style: none;
}
.account-page-promotion .login-promotion .pro-list ul li {
font-size: 18px;
color: #000;
display: flex;
align-items: center;
padding: 11px 0;
margin-bottom: 0;
}
.account-page-promotion .login-promotion .pro-list ul li i {
font-size: 36px;
color: var(--mf-primary-color);
margin-right: 30px;
}
.account-page-promotion .login-promotion .pro-sep {
border-bottom: 1px solid #d9d9d9;
margin: 40px 0 50px;
}
.account-page-promotion .login-promotion .promotion-ads-content {
border: 1px dashed #b6b6b6;
background-color: #f6f6f6;
display: flex;
align-items: center;
padding: 30px 30px;
}
.account-page-promotion .login-promotion .promotion-ads-title {
font-size: 72px;
color: #669900;
margin: 0 30px 0 0;
}
.account-page-promotion .login-promotion .promotion-ads-text h4 {
font-size: 20px;
}
.account-page-promotion .login-promotion .promotion-ads-text h2, .account-page-promotion .login-promotion .promotion-ads-text h3, .account-page-promotion .login-promotion .promotion-ads-text h4, .account-page-promotion .login-promotion .promotion-ads-text h5, .account-page-promotion .login-promotion .promotion-ads-text h6 {
margin: 0 0 15px;
font-weight: 600;
}
.admin-bar .yith_woocompare_colorbox #cboxClose {
top: 42px;
}
.yith_woocompare_colorbox #cboxContent {
background-color: transparent;
position: static;
}
.yith_woocompare_colorbox #cboxLoadedContent {
margin: 0;
border: none;
padding: 0;
}
.woocommerce-checkout .woocommerce-form-login .woocommerce-form-login__submit {
float: none;
}
.customer-login div.nsl-container-block .nsl-container-buttons a {
max-width: 100%;
}
.woocommerce .tawc-deal .deal-progress .progress-value {
background-color: var(--mf-background-primary-color);
}
.wcboost-variation-swatches__selected-label::before {
display: none;
}
.wcboost-variation-swatches__item.selected, .wcboost-variation-swatches__item:hover {
box-shadow: 0 0 0 1px var(--mf-background-primary-color);
}
.wcboost-variation-swatches--button .wcboost-variation-swatches__item.selected {
background-color: transparent;
}
.wcboost-variation-swatches__name {
font-weight: 600;
}
.wcboost-variation-swatches--color .wcboost-variation-swatches__item {
box-shadow: none;
}
.wcboost-variation-swatches--color .wcboost-variation-swatches__item .wcboost-variation-swatches__name {
position: relative;
}
.wcboost-variation-swatches--color .wcboost-variation-swatches__item.selected, .wcboost-variation-swatches--color .wcboost-variation-swatches__item:hover {
box-shadow: none;
}
.wcboost-variation-swatches--color .wcboost-variation-swatches__item.selected .wcboost-variation-swatches__name:after, .wcboost-variation-swatches--color .wcboost-variation-swatches__item:hover .wcboost-variation-swatches__name:after {
transform: rotate(45deg);
content: "";
display: block;
border: solid #eee;
border-width: 0 2px 2px 0;
position: absolute;
top: 50%;
left: 50%;
margin: -5px 0 0 -3px;
margin-top: -8px;
width: 8px;
height: 12px;
}
.wcboost-wishlist-form table.shop_table tr th.product-date, .wcboost-wishlist-form table.shop_table tr th.product-quantity {
padding-left: 10px;
padding-right: 10px;
}
.wcboost-wishlist-form table.shop_table tr td .quantity {
border: 1px solid #ccc;
line-height: 36px;
position: relative;
width: 100px;
}
.wcboost-wishlist-form table.shop_table tr td .quantity .label {
display: none !important;
}
.wcboost-wishlist-form table.shop_table tr td .quantity .decrease {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.wcboost-wishlist-form table.shop_table tr td .quantity .qty {
margin-right: 30px;
margin-left: 30px;
width: 40px;
}
.wcboost-wishlist-form table.shop_table tr td .quantity .increase {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
cursor: pointer;
}
.wcboost-wishlist-form table.shop_table tr td .added_to_cart {
display: none !important;
}
.wcboost-wishlist-form table.shop_table tr td.product-date {
font-size: 14px;
padding-left: 10px;
padding-right: 10px;
width: 10%;
}
.wcboost-wishlist-form table.shop_table tr td.product-quantity {
padding-left: 10px;
padding-right: 10px;
}
.wcboost-wishlist-form table.shop_table tr td.product-add-to-cart a .add-to-cart-text {
margin-left: 7px;
}
.wcboost-wishlist-form table.shop_table tr td.product-add-to-cart a.loading i {
opacity: 0;
}
.wcboost-wishlist-form table.shop_table tr td.product-add-to-cart a.loading::after {
top: 18px;
left: 27px;
right: auto;
}
.wcboost-wishlist-form table.shop_table tr td.product-add-to-cart a.added i {
opacity: 1;
}
.wcboost-wishlist-form table.shop_table tr td.product-add-to-cart a.added::after {
display: none;
}
@media (max-width: 991px) {
.wcboost-wishlist-form table.shop_table thead {
display: none;
}
.wcboost-wishlist-form table.shop_table tr td {
padding-left: 0;
padding-right: 0;
}
.wcboost-wishlist-form table.shop_table tr td.product-price, .wcboost-wishlist-form table.shop_table tr td.product-stock-status, .wcboost-wishlist-form table.shop_table tr td.product-date {
display: none;
}
.wcboost-wishlist-form table.shop_table tr td.product-quantity, .wcboost-wishlist-form table.shop_table tr td.product-add-to-cart {
display: inline-flex;
padding: 0 5px 30px;
border: none;
}
.wcboost-wishlist-form table.shop_table tr td.product-add-to-cart::after {
content: "";
border-bottom: 1px solid #d6d6d6;
display: block;
width: 100%;
position: absolute;
bottom: 0;
left: 0;
}
.wcboost-wishlist-form table.shop_table tr td.product-thumbnail {
padding-right: 15px;
width: 80px;
}
.wcboost-wishlist-form table.shop_table tr td.product-thumbnail, .wcboost-wishlist-form table.shop_table tr td.product-name {
margin-bottom: 20px;
border: none;
position: relative;
z-index: 100;
}
.wcboost-wishlist-form table.shop_table tr td.product-name > a {
font-size: 16px;
font-weight: 600;
margin: 0 0 10px;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .label {
display: inline-block;
width: 30%;
font-size: 14px;
font-weight: 400;
padding: 0;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-price {
display: block;
font-size: 14px;
padding: 0;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-price .woocommerce-Price-amount {
display: inline;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-price ins {
padding-right: 10px;
color: #cc0000;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-price del {
color: #999;
font-size: 13px;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-date {
font-size: 14px;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-stock-status {
display: block;
font-size: 14px;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-quantity {
margin-top: 7px;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-add-to-cart {
display: block;
text-align: left;
min-width: auto;
float: left;
margin-top: 20px;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-add-to-cart a {
margin-top: 15px;
padding: 0 15px;
font-size: 14px;
line-height: 40px;
height: 40px;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-add-to-cart a.loading i {
opacity: 0;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-add-to-cart a.loading::after {
top: 13px !important;
left: 15px;
right: auto;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-add-to-cart a.added i {
opacity: 1;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-add-to-cart a.added::after {
display: none;
}
.wcboost-wishlist-form table.shop_table tr td.product-name .product-add-to-cart .add-to-cart-text {
margin-left: 7px;
}
.wcboost-wishlist-form table.shop_table tr td.product-add-to-cart .button {
height: 40px;
line-height: 40px;
}
.wcboost-wishlist-form .wcboost-wishlist__item {
position: relative;
display: block;
}
.wcboost-wishlist-form .wcboost-wishlist__item .product-remove {
position: absolute;
bottom: 5px;
right: 0;
padding: 20px 0;
width: auto !important;
border: none;
}
.wcboost-wishlist-form .wcboost-wishlist__item .product-remove a {
display: inline-flex;
color: #000 !important;
width: 40px;
height: 40px;
justify-content: center;
align-items: center;
border: 1px solid #ccc;
padding: 0;
border-radius: 0;
}
}
.wcboost-products-compare__table .product-name a a {
color: #0066cc;
}
.wcboost-products-compare__table .product-name a:hover {
color: var(--mf-primary-color);
}
.wcboost-products-compare__table .star-rating {
float: none;
}
.wcboost-products-compare__table .in-stock {
color: #8bc500;
}
.wcboost-products-compare__table .out-of-stock {
color: #ff0000;
}
.wcboost-products-compare__table .price {
font-size: 16px;
color: #000;
line-height: 1;
display: block;
position: relative;
margin-top: 5px;
margin-bottom: 0;
}
.wcboost-products-compare__table .price .amount + .amount {
padding-left: 5px;
padding-right: 0;
}
.wcboost-products-compare__table .price del {
display: inline-block;
padding-left: 5px;
opacity: 1;
color: #999;
font-size: 14px;
}
.wcboost-products-compare__table .price del span {
color: #999;
}
.wcboost-products-compare__table .price del .amount {
padding-top: 0;
}
.wcboost-products-compare__table .price ins {
text-decoration: none;
display: inline-block;
color: #ff3300;
font-size: 16px;
font-weight: 400;
}
.wcboost-products-compare__table .price ins .amount {
padding-top: 0;
}
.wcboost-products-compare__table .price .sale {
display: none;
}
.wcboost-products-compare__table .product-add-to-cart .add_to_cart_button {
background-color: #000;
color: #fff;
width: 100%;
border-radius: 5px;
padding: 0 25px;
height: 40px;
line-height: 40px;
}
.wcboost-products-compare__table .product-add-to-cart .add_to_cart_button i {
display: none;
}
.wcboost-products-compare__table .product-add-to-cart .add_to_cart_button.loading::after {
top: 36%;
transform: translateY(-36%);
border-color: #fff #fff #fff transparent;
}
.wcboost-products-compare__table .product-add-to-cart .add_to_cart_button.added::after {
display: none;
}
.wcboost-products-compare__table .product-add-to-cart .wc-forward {
display: none;
}
.wcboost-products-compare__tools {
text-align: right;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__header {
font-size: 16px;
color: #161619;
text-transform: capitalize;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__header th {
font-weight: 500;
}
.wc-block-cart table.wc-block-cart-items tr.wc-block-cart-items__row td {
padding-top: 30px;
padding-bottom: 30px;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row td:after {
border-color: #ecf0f4;
opacity: 1;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__product {
font-size: 14px;
color: #1d2128;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__prices {
font-size: 14px;
color: #1d2128;
font-weight: 500;
}
.wc-block-cart table.wc-block-cart-items .wc-block-components-product-price__value.is-discounted {
background-color: transparent;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity {
padding: 15px 0 0;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity input.wc-block-components-quantity-selector__input {
height: auto;
width: 30px;
min-width: 30px;
height: 40px;
line-height: 40px;
padding: 0;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity input.wc-block-components-quantity-selector__input:focus {
border: none;
box-shadow: none;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-components-quantity-selector:after {
display: none;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-components-quantity-selector {
margin-bottom: 10px;
border: 1px solid #ccc;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-components-quantity-selector__button {
font-size: 16px;
line-height: 1;
font-weight: 600;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity .wc-block-components-quantity-selector__button:focus {
box-shadow: none;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-item__quantity button.wc-block-cart-item__remove-link {
text-align: left;
font-size: 14px;
}
.wc-block-cart table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total {
font-size: 16px;
color: #000;
}
.wc-block-cart table.wc-block-cart-items .wc-block-components-formatted-money-amount {
font-weight: 500;
}
.wc-block-cart table.wc-block-cart-items .wc-block-components-product-metadata__description {
display: none;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block {
padding: 26px 31px 31px;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-wrapper:after {
border-color: #e2e2e2;
opacity: 1;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block span.wc-block-cart__totals-title {
text-align: left;
font-size: 16px;
text-transform: capitalize;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__value {
font-weight: 500;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-item__description,
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-formatted-money-amount {
font-size: 14px;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
font-size: 18px;
font-weight: 600;
}
.wc-block-cart__submit .wc-block-components-button {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
margin-top: 20px;
outline: none !important;
font-weight: 600;
}
.wc-block-cart__submit .wc-block-components-button:focus {
box-shadow: none;
}
.wp-block-woocommerce-checkout h2 {
font-weight: 500;
}
.wp-block-woocommerce-checkout .wc-block-components-checkout-place-order-button {
line-height: 30px;
width: auto;
}
.wp-block-woocommerce-checkout input[type=email],
.wp-block-woocommerce-checkout input[type=number],
.wp-block-woocommerce-checkout input[type=tel],
.wp-block-woocommerce-checkout input[type=text],
.wp-block-woocommerce-checkout input[type=url], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=email], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=number], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=tel], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=text], .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=url],
.wp-block-woocommerce-checkout .wc-block-components-textarea {
color: #000;
border: 1px solid #ccc;
}
.wp-block-woocommerce-checkout input[type=email]:focus,
.wp-block-woocommerce-checkout input[type=number]:focus,
.wp-block-woocommerce-checkout input[type=tel]:focus,
.wp-block-woocommerce-checkout input[type=text]:focus,
.wp-block-woocommerce-checkout input[type=url]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=email]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=number]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=tel]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=text]:focus, .wp-block-woocommerce-checkout .wc-block-components-text-input input[type=url]:focus,
.wp-block-woocommerce-checkout .wc-block-components-textarea:focus {
color: #000;
border-color: #ccc;
outline: none;
}
.wp-block-woocommerce-checkout .wc-block-cart-item__prices {
font-size: 14px;
color: #1d2128;
font-weight: 500;
}
.wp-block-woocommerce-checkout .wc-block-components-product-price__value.is-discounted {
background-color: transparent;
}
.wp-block-woocommerce-checkout .wc-block-components-product-metadata__description {
display: none;
}
.wp-block-woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
color: #1d2128;
}
.wp-block-woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.wp-block-woocommerce-checkout .wc-block-components-totals-item__value {
font-weight: 500;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar div.wc-block-components-totals-item {
padding-left: 0;
padding-right: 0;
}
.wp-block-woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
border: none;
font-weight: 600;
}
.wp-block-woocommerce-checkout .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:focus {
outline: none !important;
}
.wp-block-woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:focus {
outline: none !important;
}
.wp-block-woocommerce-checkout .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:focus {
outline: none;
}
img {
max-width: 100%;
}
input[type=text],
input[type=email],
textarea {
border: 1px solid #d9d9d9;
background: #fff;
padding: 10px;
}
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
outline: none;
}
.wp-block-button__link {
padding: 0 25px;
height: 50px;
line-height: 50px;
font-size: 16px;
font-weight: 600;
}
.is-style-outline .wp-block-button__link {
border-width: 1px;
}
.clearfix {
zoom: 1;
}
.clearfix:before, .clearfix:after {
content: "";
display: table;
}
.clearfix:after {
clear: both;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.martfury-tabs .tabs-nav,
.martfury-login-tabs .tabs-nav {
margin: 0;
padding: 0;
overflow: hidden;
list-style-type: none;
}
.martfury-tabs .tabs-nav li,
.martfury-login-tabs .tabs-nav li {
float: left;
}
.martfury-tabs .tabs-nav a,
.martfury-login-tabs .tabs-nav a {
display: block;
}
.martfury-tabs .tabs-content,
.martfury-login-tabs .tabs-content {
position: relative;
}
.martfury-tabs .tabs-panel,
.martfury-login-tabs .tabs-panel {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
opacity: 0;
transition: opacity 0.35s ease;
transform: translateY(10px);
}
.martfury-tabs .tabs-panel.active,
.martfury-login-tabs .tabs-panel.active {
position: relative;
z-index: 2;
opacity: 1;
top: 0;
transform: translateY(0);
transition: all 0.35s ease;
transition-delay: 0.1s;
}
.container {
padding-left: 0;
padding-right: 0;
}
.container .container {
width: 100%;
}
.primary-color {
color: var(--mf-primary-color);
}
.socials-inline {
list-style: none;
padding-left: 0;
margin: 0;
font-size: 16px;
}
.socials-inline li {
display: inline-block;
padding: 0 17px;
margin-bottom: 0;
}
.socials-inline li:last-child {
padding-right: 0;
}
.socials-inline li:first-child {
padding-left: 0;
}
.mf-semi-bold {
font-weight: 600;
}
.mf-medium {
font-weight: 500;
}
.mf-regular {
font-weight: 400;
}
.mf-light {
font-weight: 300;
}
.site-content .vc_col-has-fill > .vc_column-inner,
.site-content .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
.site-content .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
.site-content .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
.site-content .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
.site-content .vc_row-has-fill > .vc_column_container > .vc_column-inner,
.site-content .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
.site-content .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
.site-content .vc_section.vc_section-has-fill,
.site-content .vc_section.vc_section-has-fill + .vc_row-full-width + .vc_section,
.site-content .vc_section.vc_section-has-fill + .vc_section {
padding-top: 0;
}
.vc_row {
background-position: center;
}
.vc_row.vc_row-fluid {
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
}
.vc_row.vc_inner {
margin-left: -15px;
margin-right: -15px;
}
.vc_row > .container-fluid {
padding-left: 15px;
padding-right: 15px;
}
.vc_row.overlay-enable {
position: relative;
}
.vc_row .overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 0;
}
.vc_row.parallax {
background-attachment: fixed;
background-position: 50% 50%;
}
.vc_row .wpb_content_element {
margin-bottom: 0;
}
.vc_row.vc_row-flex > .container-fluid {
width: 100%;
}
.vc_row.vc_row-flex > .container > .row,
.vc_row.vc_row-flex > .container-fluid > .row,
.vc_row.vc_row-flex > .martfury-container > .row {
box-sizing: border-box;
display: flex;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
.vc_row.vc_row-flex > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-flex > .container-fluid > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-flex > .martfury-container > .row > .vc_column_container > .vc_column-inner {
-webkit-box-flex: 1;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.vc_row.vc_row-flex > .container > .row:after, .vc_row.vc_row-flex > .container > .row:before,
.vc_row.vc_row-flex > .container-fluid > .row:after,
.vc_row.vc_row-flex > .container-fluid > .row:before,
.vc_row.vc_row-flex > .martfury-container > .row:after,
.vc_row.vc_row-flex > .martfury-container > .row:before {
display: none;
}
.vc_row.vc_row-o-columns-top > .container > .row,
.vc_row.vc_row-o-columns-top > .container-fluid > .row,
.vc_row.vc_row-o-columns-top > .martfury-container > .row {
-webkit-align-content: flex-start;
-ms-flex-line-pack: start;
align-content: flex-start;
}
.vc_row.vc_row-o-columns-middle > .container > .row,
.vc_row.vc_row-o-columns-middle > .container-fluid > .row,
.vc_row.vc_row-o-columns-middle > .martfury-container > .row {
-webkit-align-content: center;
-ms-flex-line-pack: center;
align-content: center;
}
.vc_row.vc_row-o-columns-bottom > .container > .row,
.vc_row.vc_row-o-columns-bottom > .container-fluid > .row,
.vc_row.vc_row-o-columns-bottom > .martfury-container > .row {
-webkit-align-content: flex-end;
-ms-flex-line-pack: end;
align-content: flex-end;
}
.vc_row.vc_row-o-equal-height > .container > .row .vc_column_container,
.vc_row.vc_row-o-equal-height > .container-fluid > .row .vc_column_container,
.vc_row.vc_row-o-equal-height > .martfury-container > .row .vc_column_container {
-webkit-box-align: stretch;
-webkit-align-items: stretch;
-ms-flex-align: stretch;
align-items: stretch;
display: flex;
}
.vc_row.vc_row-o-content-top > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-top > .container-fluid > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-top > .martfury-container > .row > .vc_column_container > .vc_column-inner {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.vc_row.vc_row-o-content-middle > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-middle > .container-fluid > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-middle > .martfury-container > .row > .vc_column_container > .vc_column-inner {
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
.vc_row.vc_row-o-content-bottom > .container > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-bottom > .container-fluid > .row > .vc_column_container > .vc_column-inner,
.vc_row.vc_row-o-content-bottom > .martfury-container > .row > .vc_column_container > .vc_column-inner {
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.text-left {
text-align: left;
}
.text-center {
text-align: center;
}
.text-right {
text-align: right;
}
.martfury-empty-space .mf_empty_space_md,
.martfury-empty-space .mf_empty_space_xs {
display: none;
}
.martfury-icon-box {
position: relative;
}
.martfury-icon-box.icon_position-top-center {
font-size: 16px;
text-align: center;
}
.martfury-icon-box.icon_position-top-center .mf-icon-area {
margin-bottom: 28px;
}
.martfury-icon-box.icon_position-top-center .box-img {
min-height: 130px;
display: flex;
align-items: center;
justify-content: center;
}
.martfury-icon-box.icon_position-top-center .box-title {
font-weight: 500;
margin-bottom: 17px;
margin-top: 0;
}
.martfury-icon-box.icon_position-top-center .box-title a {
color: #000;
}
.martfury-icon-box.icon_position-top-center .box-icon {
font-size: 90px;
color: var(--mf-primary-color);
}
.martfury-icon-box.icon_position-left {
font-size: 14px;
display: flex;
align-items: center;
}
.martfury-icon-box.icon_position-left.text_center {
justify-content: center;
}
.martfury-icon-box.icon_position-left.text_right {
justify-content: flex-end;
}
.martfury-icon-box.icon_position-left .box-wrapper {
padding-left: 25px;
}
.martfury-icon-box.icon_position-left .box-icon {
color: var(--mf-primary-color);
line-height: 1;
}
.martfury-icon-box.icon_position-left .box-icon i {
font-size: 40px;
}
.martfury-icon-box.icon_position-left .box-title {
font-size: 18px;
font-weight: 500;
margin-bottom: 0;
margin-top: 0;
color: #000;
}
.martfury-icon-box.icon_position-left .box-title a {
color: #000;
}
.martfury-icon-box .box-url {
color: #000;
text-decoration: underline;
margin-top: 23px;
display: inline-block;
}
.martfury-icon-box .box-url:hover {
color: var(--mf-primary-color);
}
.martfury-icon-box-2 {
display: flex;
flex-wrap: wrap;
}
.martfury-icon-box-2 .box-item {
font-size: 14px;
display: flex;
align-items: center;
justify-content: center;
padding: 10px 30px;
margin-bottom: 30px;
}
.martfury-icon-box-2 .box-item .box-content {
padding-left: 25px;
}
.martfury-icon-box-2 .box-item .box-icon {
color: var(--mf-primary-color);
line-height: 1;
}
.martfury-icon-box-2 .box-item .box-icon i {
font-size: 40px;
}
.martfury-icon-box-2 .box-item .box-title {
font-size: 18px;
font-weight: 500;
margin-bottom: 0;
margin-top: 0;
}
.martfury-icon-box-2 .box-item .box-title a {
color: #000;
}
.martfury-icon-box-2 .box-item:nth-child(4n + 1) {
justify-content: start;
width: 22%;
padding-left: 0;
}
.martfury-icon-box-2 .box-item:nth-child(4n + 2) {
width: 28%;
}
.martfury-icon-box-2 .box-item:nth-child(4n + 3) {
width: 28%;
}
.martfury-icon-box-2 .box-item:nth-child(4n + 4) {
justify-content: flex-end;
width: 22%;
padding-right: 0;
}
.martfury-icon-box-2.show-border .box-item {
border-right: 1px solid rgba(45, 45, 45, 0.15);
}
.martfury-icon-box-2.show-border .box-item:nth-child(4n + 4) {
border-right: 0;
}
.martfury-icons-list ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
}
.martfury-icons-list ul li {
padding: 10px;
justify-content: center;
position: relative;
margin-bottom: 0;
}
.martfury-icons-list ul .icon-box-step {
width: 1px;
position: relative;
min-width: 1px;
}
.martfury-icons-list ul .icon-box-step:after {
position: absolute;
top: -20px;
right: 0;
width: 1px;
height: 60px;
background-color: #dadada;
content: "";
}
.martfury-icons-list ul .icon-box-step:last-child {
display: none;
}
.martfury-icons-list.style-2 {
background-color: #fff;
padding: 25px 40px;
}
.martfury-icons-list.style-3 {
border: 1px solid #d9d9d9;
padding: 20px 40px;
}
.martfury-button a {
display: inline-block;
}
.martfury-button.color-dark a {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
}
.martfury-button.color-white a {
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
background-color: #88aa00;
color: #fff;
}
.martfury-button.color-white a:hover, .martfury-button.color-white a:focus, .martfury-button.color-white a:active {
background-color: #88aa00;
color: #fff;
}
.martfury-button.size-large a {
font-size: 24px;
padding: 0 40px;
height: 60px;
line-height: 61px;
}
.martfury-latest-post .post-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid rgba(49, 49, 49, 0.15);
padding-bottom: 14px;
flex-wrap: wrap;
}
.martfury-latest-post .post-header > h2 {
font-size: 24px;
}
.martfury-latest-post .section-title {
font-weight: 600;
margin-top: 0;
margin-bottom: 0;
padding-right: 15px;
}
.martfury-latest-post .extra-links {
list-style: none;
padding-left: 15px;
margin: 0 -20px;
display: flex;
flex-wrap: wrap;
}
.martfury-latest-post .extra-links li {
padding: 0 20px;
margin-bottom: 0;
}
.martfury-latest-post .extra-links a {
color: #000;
font-size: 14px;
font-weight: 400;
}
.martfury-latest-post .extra-links a:hover {
color: var(--mf-primary-color);
}
.martfury-latest-post .post-list {
padding-top: 35px;
display: flex;
flex-wrap: wrap;
}
.martfury-latest-post .post-list:before, .martfury-latest-post .post-list:after {
display: none;
}
.martfury-latest-post .post-list .entry-image img {
height: auto;
}
.martfury-latest-post .blog-wapper:nth-child(3n+1) {
clear: none;
}
.mf-image-box {
border: 1px solid #bfbfbf;
transition: 0.5s;
}
.mf-image-box.no-border {
border: none;
}
.mf-image-box:hover {
border-color: var(--mf-border-primary-color);
}
.mf-image-box .box-title {
font-size: 16px;
font-weight: 400;
margin: 0;
transition: 0.5s;
}
.mf-image-box .box-title a {
color: #000;
}
.mf-image-box .box-title a:hover {
color: var(--mf-primary-color);
}
.mf-image-box .image-content ul {
margin: 15px 0 0;
padding: 0;
}
.mf-image-box .image-content ul li {
list-style: none;
margin-bottom: 7px;
display: block;
line-height: 1;
}
.mf-image-box .image-content ul li:last-child {
margin-bottom: 0;
}
.mf-image-box .image-content ul li a {
color: #666;
border-bottom: 1px solid transparent;
}
.mf-image-box .image-content ul li a:hover {
color: #000;
border-color: #000;
}
.mf-image-box .thumbnail img {
height: auto;
}
.mf-image-box .extra-link.style-2 {
color: #1069c9;
padding-top: 10px;
display: flex;
align-items: center;
border-bottom: none;
}
.mf-image-box .extra-link.style-2:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 11px;
margin-left: 5px;
}
.mf-image-box .extra-link.style-2:hover {
color: #1069c9;
}
.mf-image-box.style-1 {
display: flex;
align-items: flex-start;
}
.mf-image-box.style-1 .thumbnail {
width: 45%;
display: block;
}
.mf-image-box.style-1 .image-content {
padding: 18px 10px 15px;
width: 55%;
}
.mf-image-box.style-1 .image-content .box-title {
font-size: 18px;
color: #000;
line-height: 1;
}
.mf-image-box.style-2 {
text-align: center;
}
.mf-image-box.style-2 .box-title {
padding: 10px 10px 0;
}
.mf-image-box.style-2 .image-content {
margin-bottom: 12px;
}
.mf-image-box.style-2:hover .box-title a {
color: #0099cc;
}
.mf-image-box.title-s2 .image-content .box-title {
font-size: 16px;
font-weight: 600;
}
.martfury-counter {
text-align: center;
}
.martfury-counter .mf-icon {
color: var(--mf-primary-color);
display: block;
margin-bottom: 28px;
}
.martfury-counter .mf-icon i {
font-size: 72px;
}
.martfury-counter .counter {
font-size: 48px;
color: #000;
line-height: 1;
margin-bottom: 10px;
}
.martfury-counter h4 {
font-size: 16px;
color: #666;
margin-top: 0;
margin-bottom: 0;
font-weight: 400;
}
.martfury-journey ul {
position: relative;
list-style: none;
padding-left: 0;
display: flex;
justify-content: space-between;
width: calc(100% - 130px);
margin: auto;
}
.martfury-journey ul:after {
content: '';
width: calc(100% - 40px);
height: 5px;
position: absolute;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
background-color: #ccc;
z-index: 5;
}
.martfury-journey ul li {
margin-bottom: 0;
}
.martfury-journey ul a {
font-size: 18px;
color: #000;
font-weight: 600;
position: relative;
display: block;
padding-bottom: 45px;
}
.martfury-journey ul a span {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 30px;
height: 30px;
background-color: #ccc;
border: 5px solid #ccc;
border-radius: 50%;
transition: 0.5s;
z-index: 9;
}
.martfury-journey ul a.active span, .martfury-journey ul a:hover span {
background-color: var(--mf-background-primary-color);
}
.martfury-journey .journey-content {
padding-top: 70px;
}
.martfury-journey .journey-wrapper {
padding: 30px;
background-color: #fff;
opacity: 0;
max-width: 500px;
position: absolute;
border-radius: 3px;
transition: 0.5s;
}
.martfury-journey .journey-wrapper .journey-title {
font-size: 20px;
color: #000;
font-weight: 400;
margin-bottom: 4px;
}
.martfury-journey .journey-wrapper .avatar {
float: left;
}
.martfury-journey .journey-wrapper .avatar img {
border-radius: 50%;
}
.martfury-journey .journey-wrapper .info {
padding-left: 120px;
}
.martfury-journey .journey-wrapper.active {
opacity: 1;
}
.martfury-journey .journey-wrapper:before {
content: '';
border-width: 0 11px 44px 11px;
border-style: solid;
border-color: transparent transparent #fff transparent;
position: absolute;
bottom: 100%;
left: 75px;
}
.martfury-journey .journey-wrapper.reverse:before {
left: auto;
right: 75px;
}
.martfury-testimonial-slides {
color: #999;
}
.martfury-testimonial-slides .tes-title {
font-size: 20px;
font-weight: 600;
margin: 0 0 30px;
line-height: 1;
}
.martfury-testimonial-slides .slick-list {
padding-top: 50px;
margin-left: -15px;
margin-right: -15px;
}
.martfury-testimonial-slides img {
border-radius: 50%;
}
.martfury-testimonial-slides .name {
color: #000;
font-size: 18px;
font-weight: 600;
}
.martfury-testimonial-slides .job {
padding-left: 5px;
}
.martfury-testimonial-slides a {
color: #000;
font-size: 14px;
font-weight: 600;
display: inline-block;
margin-top: 25px;
}
.martfury-testimonial-slides a i {
font-weight: 600;
padding-left: 5px;
}
.martfury-testimonial-slides .testimonial-info {
position: relative;
background-color: #fff;
padding: 0 40px 40px 40px;
margin: 0 15px;
}
.martfury-testimonial-slides .testimonial-info > i {
font-size: 60px;
color: var(--mf-primary-color);
position: absolute;
right: 20px;
top: 20px;
}
.martfury-testimonial-slides .testi-header {
margin-bottom: 20px;
}
.martfury-testimonial-slides .testi-header span {
display: inline-block;
}
.martfury-testimonial-slides .testi-thumb {
display: inline-block;
transform: translateY(-47px);
}
.martfury-testimonial-slides .slick-arrow {
font-size: 36px;
color: #999999;
transition: 0.5s;
}
.martfury-testimonial-slides .slick-arrow:hover {
color: #000000;
}
.martfury-testimonial-slides .mf-left-arrow {
left: -76px;
}
.martfury-testimonial-slides .mf-right-arrow {
right: -76px;
}
.martfury-testimonial-slides.nav-2 .mf-left-arrow {
right: 35px;
left: auto;
}
.martfury-testimonial-slides.nav-2 .mf-right-arrow {
right: 0;
}
.martfury-testimonial-slides.nav-2 .slick-arrow {
font-size: 16px;
color: #cccccc;
top: -38px;
}
.martfury-testimonial-slides.nav-2 .slick-arrow:hover {
color: var(--mf-primary-color);
}
.martfury-member {
position: relative;
overflow: hidden;
}
.martfury-member img {
height: auto;
}
.martfury-member:hover:after {
opacity: 0.9;
}
.martfury-member:hover .name,
.martfury-member:hover .job,
.martfury-member:hover .socials {
transform: translateY(0);
opacity: 1;
}
.martfury-member:hover .job {
transition-delay: 0.2s;
}
.martfury-member:hover .socials {
transition-delay: 0.4s;
}
.martfury-member:after {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
content: "";
background-color: var(--mf-background-primary-color);
opacity: 0;
transition: 0.5s;
}
.martfury-member .member-content {
position: absolute;
left: 25px;
bottom: 20px;
z-index: 10;
color: #000;
}
.martfury-member .name {
color: #000;
margin: 0 0 2px;
font-weight: 600;
transform: translateY(100%);
transition: 0.5s;
opacity: 0;
}
.martfury-member .job {
transform: translateY(100%);
transition: 0.5s;
opacity: 0;
display: block;
}
.martfury-member .socials {
margin-top: 15px;
transform: translateY(100%);
transition: 0.5s;
opacity: 0;
}
.martfury-member .socials .link {
color: #000;
font-size: 16px;
margin-right: 20px;
}
.martfury-partner {
text-align: center;
}
.martfury-partner .partner-item {
margin-bottom: 20px;
margin-top: 20px;
}
.martfury-partner a {
display: block;
}
.martfury-partner.normal-type .list-item {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.martfury-partner.carousel-type .slick-track {
display: flex;
align-items: center;
}
.martfury-partner.carousel-type img {
margin: auto;
}
.martfury-process .process-content {
position: relative;
display: flex;
align-items: center;
padding-bottom: 95px;
}
.martfury-process .process-content:last-child .process-step:before {
display: none;
}
.martfury-process .process-content:nth-child(odd) {
flex-direction: row-reverse;
}
.martfury-process h3 {
font-size: 22px;
font-weight: 600;
margin-top: 0;
margin-bottom: 30px;
}
.martfury-process .process-image {
text-align: center;
}
.martfury-process .process-step {
text-align: center;
position: static;
}
.martfury-process .process-step .step {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
color: #000;
font-size: 48px;
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
line-height: 100px;
border: 2px solid var(--mf-border-primary-color);
z-index: 9;
}
.martfury-process .process-step:before {
content: '';
width: 2px;
height: 100%;
background-color: var(--mf-background-primary-color);
position: absolute;
top: 0;
left: 50%;
z-index: 4;
}
.martfury-bubbles {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 170px;
height: 170px;
border: 3px solid var(--mf-border-primary-color);
border-radius: 50%;
margin: auto;
}
.martfury-bubbles .bubble {
color: #000;
font-size: 60px;
font-weight: 400;
}
.martfury-bubbles .value {
line-height: 1;
}
.martfury-bubbles h5 {
font-size: 16px;
margin: 0;
font-weight: 400;
}
.martfury-newletter .newsletter-row {
display: flex;
align-items: center;
}
.martfury-newletter .newsletter-row:after, .martfury-newletter .newsletter-row:before {
display: none;
}
.martfury-newletter .form-image {
padding-top: 80px;
}
.martfury-newletter .form-area {
padding-right: 100px;
}
.martfury-newletter .form-title {
font-size: 30px;
font-weight: 300;
margin-top: 0;
margin-bottom: 12px;
}
.martfury-newletter .form-desc {
font-size: 16px;
margin-bottom: 35px;
}
.martfury-newletter .mc4wp-form .mc4wp-form-fields {
display: flex;
align-items: flex-end;
}
.martfury-newletter .mc4wp-form input[type="email"] {
color: #666;
border: 1px solid #ccc;
border-right: 0;
padding: 0 20px;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
outline: none;
height: 48px;
line-height: 48px;
width: 100%;
}
.martfury-newletter .mc4wp-form input[type="submit"] {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
height: 48px;
line-height: 48px;
}
.martfury-newletter.show-border {
border: 1px solid #cccccc;
}
.martfury-newletter.no-image {
padding-top: 50px;
padding-bottom: 60px;
}
.martfury-newletter.no-image .form-area {
padding-right: 15px;
margin: auto;
}
.martfury-newletter .btn-area {
margin-top: 28px;
display: flex;
flex-wrap: wrap;
}
.martfury-newletter .btn-area a {
color: #000;
font-weight: 500;
display: inline-block;
margin: 5px 9px;
}
.martfury-newletter .btn-area a:first-child {
margin-left: 0;
}
.martfury-newletter .btn-area a:last-child {
margin-right: 0;
}
.martfury-faq_group .g-title {
margin: 0;
font-size: 20px;
color: var(--mf-primary-color);
font-weight: 600;
}
.martfury-faq_group .title {
margin: 0 0 0 -30px;
font-size: 16px;
font-weight: 400;
}
.martfury-faq_group .faq-item {
margin-bottom: 65px;
}
.martfury-faq_group .faq-item:after {
display: block;
content: "";
clear: both;
}
.martfury-images-grid h2,
.martfury-images-grid .brand-title {
font-weight: 600;
margin: 0 0 20px;
line-height: 1;
}
.martfury-images-grid h2, .martfury-images-grid h3 {
font-size: 20px;
}
.martfury-images-grid .image-row {
display: flex;
align-items: stretch;
flex-wrap: wrap;
}
.martfury-images-grid .image-row:first-child .image-item {
border-top-width: 1px;
}
.martfury-images-grid .image-item {
display: flex;
padding: 10px;
flex: 0 0 20%;
max-width: 20%;
border-width: 0 1px 1px 0;
border-color: rgba(0, 0, 0, 0.15);
border-style: solid;
background-color: #fff;
margin-bottom: 0;
justify-content: center;
align-items: center;
}
.martfury-images-grid .image-item:first-child {
border-left-width: 1px;
}
.martfury-images-grid .image-item a {
display: block;
width: 100%;
text-align: center;
}
.martfury-images-grid.mf-brand-images .columns-10 .image-item {
flex: 0 0 10%;
max-width: 10%;
}
.martfury-images-grid.mf-brand-images .columns-9 .image-item {
flex: 0 0 11.11111%;
max-width: 11.11111%;
}
.martfury-images-grid.mf-brand-images .columns-8 .image-item {
flex: 0 0 12.5%;
max-width: 12.5%;
}
.martfury-images-grid.mf-brand-images .columns-7 .image-item {
flex: 0 0 14.28571%;
max-width: 14.28571%;
}
.martfury-images-grid.mf-brand-images .columns-6 .image-item {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.martfury-images-grid.mf-brand-images .columns-5 .image-item {
flex: 0 0 20%;
max-width: 20%;
}
.martfury-images-grid.mf-brand-images .columns-4 .image-item {
flex: 0 0 25%;
max-width: 25%;
}
.martfury-images-grid.mf-brand-images .columns-3 .image-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.martfury-images-grid.mf-brand-images .columns-2 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-1 .image-item {
flex: 0 0 100%;
max-width: 100%;
}
.martfury-images-grid.mf-elementor-brand-images .image-item {
border-style: none;
}
.martfury-map-shortcode .info-box {
display: flex;
align-items: center;
}
.martfury-map-shortcode .info-box .box-wrapper {
padding-left: 20px;
}
.martfury-map-shortcode .info-box h4 {
margin-top: 0;
margin-bottom: 10px;
font-weight: 600;
line-height: 1;
}
.martfury-map-shortcode .info-box .mf-map-info {
font-size: 14px;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
transition: border 0.5s;
color: #666;
border: 1px solid rgba(0, 0, 0, 0.15);
padding: 0 15px;
border-radius: 0;
outline: none;
box-sizing: border-box;
height: 50px;
line-height: 50px;
width: 100%;
}
.wpcf7 input[type="text"]:active, .wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:active,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="url"]:active,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="tel"]:active,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:active,
.wpcf7 textarea:focus,
.wpcf7 select:active,
.wpcf7 select:focus {
border-color: rgba(0, 0, 0, 0.35);
}
.wpcf7 textarea {
height: 217px;
}
.wpcf7 input[type="submit"] {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
}
.wpcf7 .wpcf7-form-control-wrap {
display: block;
margin-bottom: 30px;
}
.mf-list {
font-size: 16px;
letter-spacing: -0.5px;
list-style: none;
padding-left: 0;
margin: 0;
}
.mf-list li {
position: relative;
padding-left: 20px;
padding-bottom: 10px;
}
.mf-list li:last-child {
padding-bottom: 0;
margin-bottom: 0;
}
.mf-list li:before {
content: '';
width: 5px;
height: 5px;
position: absolute;
left: 0;
top: 10px;
background-color: #666;
border-radius: 50%;
}
.mf-products-of-category {
display: flex;
background-color: #fff;
}
.mf-products-of-category .mf-loading,
.mf-products-of-category .mf-vc-loading {
min-height: 500px;
width: 100%;
}
.mf-products-of-category .cats-info {
width: 20%;
padding: 30px 20px 40px 30px;
position: relative;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.mf-products-of-category .cats-info h2,
.mf-products-of-category .cats-info .cats-inner__heading {
line-height: 1;
margin-top: 0;
margin-bottom: 42px;
font-weight: 400;
}
.mf-products-of-category .cats-info h2 {
font-size: 24px;
}
.mf-products-of-category .cats-info .cat-title {
color: #000;
}
.mf-products-of-category .cats-info .extra-links {
margin: 0;
padding: 0;
flex-wrap: wrap;
}
.mf-products-of-category .cats-info .extra-links li {
list-style: none;
margin: 8px 0;
}
.mf-products-of-category .cats-info .extra-links li a {
color: #000;
line-height: 1.1;
display: inline-block;
}
.mf-products-of-category .cats-info .extra-links li a:hover {
color: var(--mf-primary-color);
}
.mf-products-of-category .cats-info .footer-link .link {
color: #999;
font-style: italic;
}
.mf-products-of-category .cats-info .footer-link .link:hover {
color: var(--mf-primary-color);
}
.mf-products-of-category .images-slider {
width: 22.5%;
overflow: hidden;
}
.mf-products-of-category .images-slider .image-item {
float: left;
display: none;
}
.mf-products-of-category .images-slider .image-item:first-child {
display: block;
}
.mf-products-of-category .images-slider .slick-initialized .image-item {
display: block;
}
.mf-products-of-category .images-slider .slick-initialized:hover .slick-prev-arrow {
left: 0;
}
.mf-products-of-category .images-slider .slick-initialized:hover .slick-next-arrow {
right: 0;
}
.mf-products-of-category .images-slider .slick-arrow {
width: 30px;
height: 50px;
line-height: 50px;
background-color: rgba(51, 51, 51, 0.7);
font-size: 18px;
color: #fff;
text-align: center;
transition: 0.35s;
z-index: 99;
}
.mf-products-of-category .images-slider .slick-arrow:hover {
background-color: #333333;
}
.mf-products-of-category .images-slider .slick-prev-arrow {
left: -30px;
}
.mf-products-of-category .images-slider .slick-next-arrow {
right: -30px;
}
.mf-products-of-category .images-slider .slick-dots {
position: absolute;
bottom: 20px;
left: 0;
width: 100%;
text-align: center;
}
.mf-products-of-category .images-slider .slick-dots li {
padding: 0 7px;
margin-bottom: 0;
}
.mf-products-of-category .images-slider .slick-dots li button {
background-color: rgba(255, 255, 255, 0.5);
border: none;
}
.mf-products-of-category .images-slider .slick-dots li.slick-active button {
background-color: #fff;
}
.mf-products-of-category .products-box {
width: 57.5%;
}
.mf-products-of-category .products-box > .woocommerce {
height: 100%;
}
.mf-products-of-category .products-box ul.products {
margin-right: 0;
margin-left: 0;
height: 100%;
display: flex;
flex-wrap: wrap;
}
.mf-products-of-category .products-box ul.products:before, .mf-products-of-category .products-box ul.products:after {
display: none;
}
.mf-products-of-category .products-box ul.products li {
padding-left: 0;
padding-right: 0;
margin-bottom: 0;
position: relative;
border-right: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products li .mf-product-details-hover {
display: none;
}
.mf-products-of-category .products-box ul.products li .mf-vendor-name {
display: none;
}
.mf-products-of-category .products-box ul.products li.product .product-inner {
border: none;
margin-bottom: 15px;
padding-top: 15px;
padding-bottom: 0;
}
.mf-products-of-category .products-box ul.products li.product .product-inner .footer-button {
bottom: -15px;
transition: bottom 0.25s;
}
.mf-products-of-category .products-box ul.products li.product .product-inner:hover .mf-product-content h2 {
text-decoration: underline;
}
.mf-products-of-category .products-box ul.products li.product .product-inner:hover .mf-product-content h2 a {
color: var(--mf-primary-color);
}
.mf-products-of-category .products-box ul.products li.product .product-inner:hover .footer-button {
bottom: 0;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(3n+1) {
clear: both;
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(3n+2) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(3n+3) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(3n) {
border-right: none;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(1), .mf-products-of-category .products-box ul.products.columns-3 li:nth-child(2), .mf-products-of-category .products-box ul.products.columns-3 li:nth-child(3) {
border-top: none;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(4n+1) {
clear: both;
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(4n+2) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(4n+3) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(4n+4) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(4n) {
border-right: none;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(1), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(2), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(3), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(4) {
border-top: none;
}
.mf-products-of-category.no-banners-carousel .products-box {
width: 80%;
border-left: 1px solid #e1e1e1;
}
.mf-products-tabs .tabs-header {
background-color: #f4f4f4;
padding: 16px 20px 16px 20px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e3e3e3;
margin-bottom: 30px;
}
.mf-products-tabs .tabs-header h2,
.mf-products-tabs .tabs-header .tabs-cat__heading {
line-height: 1;
margin: 0;
font-weight: 500;
}
.mf-products-tabs .tabs-header h2 a,
.mf-products-tabs .tabs-header .tabs-cat__heading a {
color: #000;
}
.mf-products-tabs .tabs-header h2, .mf-products-tabs .tabs-header h3 {
font-size: 20px;
}
.mf-products-tabs .tabs-header .tabs-header-nav {
display: flex;
align-items: center;
}
.mf-products-tabs .tabs-header .tabs-nav {
margin: 0 -15px;
padding: 0;
list-style: none;
display: flex;
align-items: center;
}
.mf-products-tabs .tabs-header .tabs-nav li {
padding: 0 15px;
margin-bottom: 0;
}
.mf-products-tabs .tabs-header .tabs-nav li a {
color: #666666;
}
.mf-products-tabs .tabs-header .tabs-nav li a:hover, .mf-products-tabs .tabs-header .tabs-nav li a.active {
color: #000;
}
.mf-products-tabs .tabs-header .link {
padding-left: 15px;
color: #666666;
}
.mf-products-tabs .tabs-header .link:hover {
color: #000;
}
.mf-products-tabs .tabs-content {
position: relative;
}
.mf-products-tabs .tabs-content .mf-loading,
.mf-products-tabs .tabs-content .mf-vc-loading {
min-height: 350px;
}
.mf-products-tabs .tabs-panel {
position: absolute;
top: 0;
left: 0;
z-index: -1;
width: 100%;
opacity: 0;
-webkit-transition: opacity 0.35s ease;
transition: opacity 0.35s ease;
-webkit-transform: translateY(10px);
-ms-transform: translateY(10px);
transform: translateY(10px);
}
.mf-products-tabs .tabs-panel.active {
position: relative;
z-index: 2;
opacity: 1;
top: 0;
-webkit-transform: translateY(0);
-ms-transform: translateY(0);
transform: translateY(0);
-webkit-transition: all 0.35s ease;
transition: all 0.35s ease;
-webkit-transition-delay: 0.1s;
transition-delay: 0.1s;
}
.mf-products-tabs ul.products.slick-slider li.product {
clear: none !important;
}
.mf-products-tabs .slick-arrow {
font-size: 30px;
color: #ccc;
text-align: center;
transition: 0.35s;
z-index: 99;
}
.mf-products-tabs .slick-arrow:hover {
color: #000;
}
.mf-products-tabs .slick-arrow.slick-disabled {
color: #ccc;
cursor: auto;
}
.mf-products-tabs .slick-prev-arrow {
left: -50px;
}
.mf-products-tabs .slick-next-arrow {
right: -50px;
}
.mf-products-tabs .slick-dots {
display: none !important;
margin-bottom: 0;
}
.mf-products-tabs.header-style-2 .tabs-header {
background-color: transparent;
padding: 0 0 16px 0;
}
.mf-products-tabs.header-style-2 .tabs-header h2 {
font-weight: 600;
}
.vc_custom_heading.regular {
font-weight: 400;
}
.vc_custom_heading.medium {
font-weight: 500;
}
.vc_custom_heading.semibold {
font-weight: 600;
}
.mf-category-tabs .tabs-title {
display: flex;
align-items: flex-end;
margin-bottom: 20px;
}
.mf-category-tabs .tabs-title h2, .mf-category-tabs .tabs-title h3 {
font-size: 20px;
}
.mf-category-tabs .tabs-title h2,
.mf-category-tabs .tabs-title .tabs__heading {
font-weight: 400;
margin: 0 20px 0 0;
}
.mf-category-tabs .tabs-header {
background-color: #fff;
border-bottom: 1px solid #e1e1e1;
}
.mf-category-tabs .tabs-header .slick-track {
display: flex;
align-items: stretch;
}
.mf-category-tabs .tabs-header .tabs-nav {
height: 116px;
overflow: hidden;
}
.mf-category-tabs .tabs-header .tabs-nav.slick-initialized {
height: auto;
overflow: visible;
}
.mf-category-tabs .tabs-header ul {
margin: 0;
padding: 0 70px;
list-style: none;
}
.mf-category-tabs .tabs-header ul li {
text-align: center;
margin-bottom: 0;
width: 12.5%;
padding: 25px 5px;
position: relative;
height: auto;
}
.mf-category-tabs .tabs-header ul li:after {
content: "";
position: absolute;
bottom: 0;
right: 0;
height: 2px;
width: 0;
opacity: 0;
transition: 0.35s;
background-color: var(--mf-background-primary-color);
}
.mf-category-tabs .tabs-header ul li.active:after {
opacity: 1;
width: 100%;
left: 0;
}
.mf-category-tabs .tabs-header ul li i {
font-size: 36px;
line-height: 1;
}
.mf-category-tabs .tabs-header ul li h2 {
font-size: 14px;
}
.mf-category-tabs .tabs-header ul li h2,
.mf-category-tabs .tabs-header ul li .tab-header__title {
font-weight: 400;
margin: 10px 0 0;
transition: 0.5s;
}
.mf-category-tabs .tabs-header ul li a {
color: #000;
display: block;
}
.mf-category-tabs .tabs-header ul li a img {
margin: 0 auto;
}
.mf-category-tabs .tabs-header ul li a.active {
color: var(--mf-primary-color);
}
.mf-category-tabs .tabs-header ul li a.active h2 {
color: var(--mf-primary-color);
}
.mf-category-tabs .tabs-header .slick-arrow {
font-size: 24px;
color: #ccc;
transition: 0.5s;
}
.mf-category-tabs .tabs-header .slick-arrow:hover {
color: #000;
}
.mf-category-tabs .tabs-header .slick-arrow.slick-disabled {
cursor: auto;
color: #ccc;
}
.mf-category-tabs .tabs-header .slick-prev-arrow {
left: 25px;
}
.mf-category-tabs .tabs-header .slick-next-arrow {
right: 25px;
}
.mf-category-tabs .tabs-content {
padding: 20px 60px 40px;
background-color: #fff;
}
.mf-category-tabs .tabs-content ul {
margin: 0;
padding: 0;
list-style: none;
display: flex;
align-items: stretch;
flex-wrap: wrap;
}
.mf-category-tabs .tabs-content ul li {
text-align: center;
margin-bottom: 0;
margin-top: 30px;
width: 12.5%;
padding: 0 5px;
}
.mf-category-tabs .tabs-content ul li h2 {
font-size: 14px;
}
.mf-category-tabs .tabs-content ul li h2,
.mf-category-tabs .tabs-content ul li .tab-content__title {
font-weight: 400;
margin: 12px 0 0;
line-height: 1;
transition: 0.5s;
color: #666666;
}
.mf-category-tabs .tabs-content ul li .t-imgage {
display: block;
overflow: hidden;
}
.mf-category-tabs .tabs-content ul li .t-imgage img {
transition: 0.5s;
}
.mf-category-tabs .tabs-content ul li a {
display: block;
}
.mf-category-tabs .tabs-content ul li a:hover h2 {
color: #0066cc;
}
.mf-category-tabs .tabs-content ul li a:hover img {
transform: scale(1.1);
}
.mf-products-of-category-2 {
background-color: #fff;
}
.mf-products-of-category-2 .mf-loading,
.mf-products-of-category-2 .mf-vc-loading {
min-height: 750px;
width: 100%;
}
.mf-products-of-category-2 .cats-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 20px;
border-bottom: 1px solid #e1e1e1;
flex-wrap: wrap;
}
.mf-products-of-category-2 .cats-header h2,
.mf-products-of-category-2 .cats-header .cats-inner__heading {
font-weight: 400;
margin: 0;
line-height: 1;
}
.mf-products-of-category-2 .cats-header h2, .mf-products-of-category-2 .cats-header h3 {
font-size: 20px;
}
.mf-products-of-category-2 .cats-header .cat-title {
color: #000;
display: flex;
align-items: center;
}
.mf-products-of-category-2 .cats-header .cat-title i {
font-size: 22px;
padding-right: 15px;
}
.mf-products-of-category-2 .cats-header .extra-links {
display: flex;
align-items: center;
margin: 0 -15px;
padding: 0;
list-style: none;
}
.mf-products-of-category-2 .cats-header .extra-links li {
padding: 0 15px;
margin-bottom: 0;
}
.mf-products-of-category-2 .cats-header .extra-links li a {
color: #000;
}
.mf-products-of-category-2 .cats-header .extra-links li a:hover {
color: var(--mf-primary-color);
}
.mf-products-of-category-2 .cats-header .extra-links li:first-child {
margin-left: 0;
}
.mf-products-of-category-2 .products-cat {
display: flex;
align-items: stretch;
}
.mf-products-of-category-2 .col-product-content:after {
position: absolute;
top: 0;
right: 15px;
bottom: 0;
content: "";
width: 1px;
background-color: #e0e0e0;
}
.mf-products-of-category-2 .images-slider {
padding: 20px;
}
.mf-products-of-category-2 .images-slider .image-item {
float: left;
display: none;
}
.mf-products-of-category-2 .images-slider .image-item:first-child {
display: block;
}
.mf-products-of-category-2 .images-slider .slick-initialized .image-item {
display: block;
}
.mf-products-of-category-2 .images-slider .slick-arrow {
width: 35px;
height: 35px;
line-height: 35px;
text-align: center;
z-index: 99;
background-color: rgba(0, 0, 0, 0.1);
font-size: 16px;
transition: 0.5s;
}
.mf-products-of-category-2 .images-slider .slick-arrow:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.mf-products-of-category-2 .images-slider .slick-prev-arrow {
left: 0;
}
.mf-products-of-category-2 .images-slider .slick-next-arrow {
right: 0;
}
.mf-products-of-category-2 .mf-products-tabs {
padding: 0 20px;
clear: both;
}
.mf-products-of-category-2 .mf-products-tabs .slick-list {
margin: 0 -1px;
}
.mf-products-of-category-2 .mf-products-tabs .tabs-header {
background-color: transparent;
justify-content: flex-start;
padding-left: 0;
padding-top: 5px;
padding-bottom: 10px;
}
.mf-products-of-category-2 .mf-products-tabs .tabs-header li a {
font-size: 16px;
}
.mf-products-of-category-2 .mf-products-tabs ul.products li.product .ribbons {
display: none;
}
.mf-products-of-category-2 .mf-products-tabs .slick-arrow {
top: -54px;
right: 0;
left: auto;
font-size: 16px;
}
.mf-products-of-category-2 .mf-products-tabs .slick-prev-arrow {
right: 35px;
}
.mf-products-of-category-2 .products-side {
padding: 20px 30px 20px 0;
}
.mf-products-of-category-2 .products-side .side-title {
font-size: 16px;
font-weight: 400;
line-height: 1;
margin: 0 0 30px;
padding-bottom: 15px;
border-bottom: 1px solid #e1e1e1;
}
.mf-products-of-category-2 .products-side ul.products li.product {
display: flex;
align-items: flex-start;
margin-bottom: 25px;
}
.mf-products-of-category-2 .products-side .product-thumbnail {
width: 70px;
}
.mf-products-of-category-2 .products-side .product-thumbnail img {
height: auto;
}
.mf-products-of-category-2 .products-side .product-inners {
width: calc(100% - 70px);
margin-left: 13px;
}
.mf-products-of-category-2 .products-side .product-inners h2 {
font-size: 14px;
font-weight: 400;
margin: 0 0 10px;
line-height: 1.4;
}
.mf-products-of-category-2 .products-side .product-inners .woocommerce-Price-amount {
color: #000;
}
.mf-products-of-category-2 .products-side .product-inners ins {
padding-right: 10px;
text-decoration: none;
}
.mf-products-of-category-2 .products-side .product-inners ins .woocommerce-Price-amount {
color: #ff3300;
}
.mf-products-of-category-2 .products-side .product-inners del .woocommerce-Price-amount {
color: #999;
font-size: 12px;
}
.mf-products-of-category-2 .products-side .link {
display: flex;
align-items: center;
justify-content: flex-end;
color: #000;
position: relative;
}
.mf-products-of-category-2 .products-side .link:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 12px;
padding-left: 5px;
}
.mf-products-of-category-2 .products-side .link:hover {
color: var(--mf-primary-color);
}
.mf-products-of-category-2.hide-product-tabs .mf-products-tabs .tabs-header,
.mf-products-of-category-2.hide-product-tabs .mf-products-tabs .slick-arrow {
display: none !important;
}
.mf-category-box {
background-color: #fff;
padding: 15px 20px;
}
.mf-category-box .cat-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e1e1e1;
margin: 0;
padding-bottom: 13px;
}
.mf-category-box .cat-header h2 {
font-size: 24px;
}
.mf-category-box .cat-header .cat-name {
font-weight: 400;
margin: 0;
}
.mf-category-box .cat-header .cat-name a {
color: #000;
}
.mf-category-box .cat-header .extra-links {
padding: 0;
margin: 0 -15px;
}
.mf-category-box .cat-header .extra-links li {
display: inline-block;
margin-bottom: 0;
padding: 0 15px;
}
.mf-category-box .cat-header .extra-links li a {
color: #666;
}
.mf-category-box .cat-header .extra-links li a:hover {
color: var(--mf-primary-color);
}
.mf-category-box .sub-categories {
padding: 30px 0 15px;
display: flex;
flex-wrap: wrap;
align-items: stretch;
}
.mf-category-box .sub-categories:after {
content: "";
display: block;
clear: both;
}
.mf-category-box .sub-categories .cat-banner {
display: block;
}
.mf-category-box .sub-categories .col-banner {
padding-left: 0;
padding-right: 5px;
margin-bottom: 20px;
}
.mf-category-box .sub-categories .col-cat {
padding-left: 0;
padding-right: 0;
margin-bottom: 20px;
}
.mf-category-box .sub-categories .term-item {
padding: 20px 15px 30px;
display: block;
border: 1px solid transparent;
height: 100%;
}
.mf-category-box .sub-categories .term-item img {
height: auto;
}
.mf-category-box .sub-categories .term-item:hover {
border-color: #c0c0c0;
}
.mf-category-box .sub-categories .term-item:hover .term-name {
color: var(--mf-primary-color);
}
.mf-category-box .sub-categories .term-name {
font-size: 16px;
font-weight: 400;
margin-top: 15px;
margin-bottom: 0;
transition: 0.5s;
line-height: 1;
}
.mf-category-box .sub-categories .term-name .count {
display: block;
font-size: 14px;
color: #999;
margin-top: 5px;
}
.mf-products-carousel .mf-loading,
.mf-products-carousel .mf-vc-loading {
height: 400px;
}
.mf-products-carousel .cat-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e1e1e1;
margin: 0;
padding-bottom: 13px;
margin-bottom: 30px;
}
.mf-products-carousel .cat-header h2 {
font-size: 24px;
}
.mf-products-carousel .cat-header .cat-title {
font-weight: 600;
margin: 0;
}
.mf-products-carousel .cat-header .cat-title a {
color: #000;
}
.mf-products-carousel .cat-header .cat-title a:hover {
color: var(--mf-primary-color);
}
.mf-products-carousel .cat-header .extra-links {
padding: 0;
margin: 0 -15px;
}
.mf-products-carousel .cat-header .extra-links li {
display: inline-block;
margin-bottom: 0;
padding: 0 15px;
}
.mf-products-carousel .cat-header .extra-links li a {
color: #666;
}
.mf-products-carousel .cat-header .extra-links li a:hover {
color: var(--mf-primary-color);
}
.mf-products-carousel.header-2 .cat-header {
justify-content: center;
border-bottom: none;
margin-bottom: 50px;
padding-bottom: 0;
}
.mf-products-carousel.header-2 .cat-header .cat-title {
text-transform: uppercase;
font-weight: 400;
}
.mf-products-carousel.header-3 .cat-header {
justify-content: center;
padding: 16px 10px;
background-color: #f4f4f4;
border-bottom-color: #e3e3e3;
text-align: center;
}
.mf-products-carousel.header-3 .cat-header .cat-title {
font-size: 20px;
font-weight: 600;
margin: 0;
line-height: 1;
}
.mf-products-carousel.header-4 .cat-header {
padding: 16px 20px;
background-color: #f4f4f4;
border-bottom-color: #e3e3e3;
}
.mf-products-carousel.header-4 .cat-header .cat-title {
font-size: 20px;
font-weight: 600;
margin: 0;
line-height: 1;
}
.mf-products-carousel ul.products li.product {
clear: none !important;
}
.mf-products-carousel .slick-arrow {
font-size: 30px;
color: #ccc;
text-align: center;
transition: 0.35s;
z-index: 99;
}
.mf-products-carousel .slick-arrow:hover {
color: #000;
}
.mf-products-carousel .slick-arrow.slick-disabled {
color: #ccc;
cursor: auto;
}
.mf-products-carousel .slick-prev-arrow {
left: -50px;
}
.mf-products-carousel .slick-next-arrow {
right: -50px;
}
.mf-products-carousel .slick-dots {
display: none !important;
}
.mf-product-deals-day ul.products {
margin: 0 -15px;
}
.mf-product-deals-day ul.products li.product {
padding: 0 15px;
margin-bottom: 0;
}
.mf-product-deals-day ul.products li.product .product-inner {
padding: 0;
margin-bottom: 0;
border: none;
}
.mf-product-deals-day ul.products li.product .product-inner:hover .footer-button {
bottom: 0;
}
.mf-product-deals-day ul.products li.product .product-inner .footer-button {
bottom: -15px;
transition: bottom 0.25s;
}
.mf-product-deals-day ul.products li.product .ribbons {
display: none;
}
.mf-product-deals-day ul.products li.product .price {
margin-top: 0;
display: flex;
align-items: center;
flex-wrap: wrap;
line-height: 1.4;
}
.mf-product-deals-day ul.products li.product .price ins {
color: #669900;
font-size: 18px;
font-weight: 600;
}
.mf-product-deals-day ul.products li.product .price del {
padding-left: 10px;
padding-right: 10px;
}
.mf-product-deals-day ul.products li.product .price .sale {
display: inline-block;
font-size: 14px;
color: #f14705;
}
.mf-product-deals-day ul.products li.product h2,
.mf-product-deals-day ul.products li.product .woo-loop-product__title {
margin-top: 10px;
}
.mf-product-deals-day ul.products li.product .sold-by-meta {
display: block;
margin-top: 5px;
color: #000;
}
.mf-product-deals-day ul.products li.product .sold-by-meta a {
color: #000;
}
.mf-product-deals-day ul.products li.product .sold-by-meta a:hover {
color: var(--mf-primary-color);
}
.mf-product-deals-day ul.products li.product .mf-rating {
margin-top: 3px;
}
.mf-product-deals-day ul.products li.product .deal-progress {
margin-top: 15px;
}
.mf-product-deals-day ul.products li.product .deal-progress .progress-bar,
.mf-product-deals-day ul.products li.product .deal-progress .progress-value {
height: 11px;
}
.mf-product-deals-day ul.products li.product .deal-progress .progress-text {
margin-bottom: 0;
color: #000;
margin-top: 5px;
}
.mf-product-deals-day ul.products li.product a.button {
width: 100%;
padding: 0 15px;
}
.mf-product-deals-day ul.products li.product a.button.loading::after {
top: 18px;
}
.mf-product-deals-day ul.products li.product a.button .p-icon {
display: none;
}
.mf-product-deals-day ul.products li.product .mf-product-thumbnail {
margin-bottom: 20px;
}
.mf-product-deals-day .slick-arrow {
top: 40%;
}
.mf-product-deals-day .header-content {
display: flex;
align-items: center;
}
.mf-product-deals-day .header-content .cat-title {
font-weight: 400;
margin-right: 70px;
}
.mf-product-deals-day .header-content h2 {
font-size: 24px;
}
.mf-product-deals-day .header-countdown {
display: flex;
align-items: center;
background-color: #f14705;
padding: 7px 5px 7px 11px;
font-size: 18px;
font-weight: 600;
color: #fff;
border-radius: 3px;
line-height: 1;
}
.mf-product-deals-day .header-countdown .martfury-countdown {
padding-left: 10px;
}
.mf-product-deals-day .header-countdown .martfury-countdown .days,
.mf-product-deals-day .header-countdown .martfury-countdown .divider,
.mf-product-deals-day .header-countdown .martfury-countdown .text {
display: none;
}
.mf-product-deals-day .header-countdown .martfury-countdown .digits {
padding: 0 8px;
position: relative;
display: inline-block;
}
.mf-product-deals-day .header-countdown .martfury-countdown .digits:after {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
right: -3px;
content: ":";
color: #fff;
font-size: 18px;
font-weight: 600;
}
.mf-product-deals-day .header-countdown .martfury-countdown .seconds .digits {
min-width: 40px;
padding-right: 0;
}
.mf-product-deals-day .header-countdown .martfury-countdown .seconds .digits:after {
display: none;
}
.mf-product-deals-day .header-link a {
color: #000;
border-bottom: 1px solid #000;
line-height: 1;
display: inline-block;
}
.mf-product-deals-day .header-link a:hover {
border-bottom-color: var(--mf-border-primary-color);
color: var(--mf-primary-color);
}
.mf-product-deals-day.hide-ends-in-text .header-countdown {
padding-left: 5px;
}
.mf-product-deals-day.hide-ends-in-text .header-countdown .ends-text {
display: none;
}
.mf-product-deals-day.type-grid ul.products li.product {
margin-bottom: 30px;
}
.mf-product-deals-day.type-grid .numeric-navigation {
text-align: center;
margin-top: 40px;
}
.mf-product-deals-day ul.slick-dots {
margin-top: 42px;
}
.mf-product-deals-day ul.slick-dots li button {
background-color: #cccccc;
border: none;
}
.mf-product-deals-day ul.slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
.mf-product-deals-day.style-1 .slick-dots {
display: none !important;
}
.mf-product-deals-day.style-2 {
background-color: #fff;
}
.mf-product-deals-day.style-2 .cat-header {
padding-top: 13px;
padding-left: 20px;
padding-right: 20px;
}
.mf-product-deals-day.style-2 .products-content {
padding: 0 20px 20px;
}
.mf-product-deals-day.style-2 .slick-arrow {
display: none !important;
}
.mf-product-deals-day.product-type-week .header-countdown .martfury-countdown .days, .mf-product-deals-day.product-type-month .header-countdown .martfury-countdown .days {
display: inline-block;
}
.mf-product-loop-hover-3 .mf-product-deals-day ul.products li.product .added_to_cart {
display: none;
}
.mf-product-loop-hover-4 .mf-product-deals-day ul.products li.product .price del {
padding-right: 0;
}
.mf-product-recently-viewed .numeric-navigation {
text-align: center;
margin-top: 40px;
}
.martfury-coming-soon .timer {
display: inline-block;
text-transform: capitalize;
padding: 0 25px;
text-align: center;
min-width: 100px;
}
.martfury-coming-soon .timer .digits {
display: block;
font-size: 48px;
color: #000;
line-height: 1;
}
.martfury-coming-soon .divider {
display: none;
}
.mf-product-deals-carousel {
padding: 13px 30px 30px;
border: 2px solid var(--mf-border-primary-color);
}
.mf-product-deals-carousel .cat-header {
border-bottom: 1px solid #e1e1e1;
margin-bottom: 35px;
padding-bottom: 13px;
display: flex;
align-items: center;
justify-content: space-between;
}
.mf-product-deals-carousel .cat-header .slick-arrows {
margin-top: 5px;
}
.mf-product-deals-carousel .cat-header .slick-arrow {
position: static;
font-size: 18px;
padding-left: 13px;
}
.mf-product-deals-carousel .cat-header .slick-arrow:hover {
color: #000;
}
.mf-product-deals-carousel .cat-header h2 {
font-size: 20px;
}
.mf-product-deals-carousel .cat-title {
margin: 0;
line-height: 1;
font-weight: 600;
}
.mf-product-deals-carousel ul.products li {
margin-bottom: 0;
}
.mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery {
width: 55%;
padding-bottom: 0;
}
.mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-nav li {
max-width: 55px;
}
.mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-nav .slick-arrow {
max-width: 53px;
}
.mf-product-deals-carousel.woocommerce .product .entry-summary {
width: 45%;
}
.mf-product-deals-carousel.woocommerce .product .product-image-ms {
display: none;
}
.mf-product-deals-carousel.woocommerce .product .flex-viewport {
height: auto !important;
}
.mf-product-deals-carousel.woocommerce .product .ribbons .ribbon.sale-text {
height: auto;
line-height: 1;
border-radius: 50%;
padding: 10px;
min-height: 80px;
min-width: 80px;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
font-size: 16px;
font-weight: 400;
}
.mf-product-deals-carousel.woocommerce .product .ribbons .ribbon.sale-text .sep {
display: block;
font-weight: 400;
font-size: 14px;
}
.mf-product-deals-carousel.hide-progress-bar .tawc-deal .deal-sold {
display: none;
}
.mf-product-deals-carousel.hide-navigation .slick-arrows {
display: none;
}
.mf-product-deals-carousel .product {
margin-right: 30px;
display: none;
}
.mf-product-deals-carousel .product:first-child, .mf-product-deals-carousel .product.slick-slide {
display: block;
}
.mf-product-deals-carousel .product:after {
clear: both;
content: "";
display: block;
}
.mf-product-deals-carousel .product .entry-summary .product-cat {
font-size: 12px;
color: #000;
text-transform: uppercase;
margin-bottom: 7px;
display: inline-block;
}
.mf-product-deals-carousel .product .entry-summary .product-cat:hover {
color: #0066cc;
}
.mf-product-deals-carousel .product .entry-summary .product-title {
font-size: 18px;
font-weight: 600;
margin: 0 0 14px;
}
.mf-product-deals-carousel .product .entry-summary .product-title a {
color: #000;
}
.mf-product-deals-carousel .product .entry-summary .product-title a:hover {
color: var(--mf-primary-color);
}
.mf-product-deals-carousel .product .entry-summary .price {
margin-bottom: 10px;
}
.mf-product-deals-carousel .product .entry-summary .price del {
font-size: 18px;
color: #999;
padding-left: 20px;
}
.mf-product-deals-carousel .product .entry-summary .price .woocommerce-Price-amount {
padding-right: 0;
}
.mf-product-deals-carousel .product .entry-summary .price .sale {
display: none;
}
.mf-product-deals-carousel .product .entry-summary .woocommerce-product-rating {
margin-bottom: 5px;
display: flex;
align-items: center;
}
.mf-product-deals-carousel .product .entry-summary .woocommerce-product-rating .star-rating {
margin-top: 0;
margin-bottom: 0;
}
.mf-product-deals-carousel .product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
color: #666;
}
.mf-product-deals-carousel .product .entry-summary .woocommerce-product-rating .woocommerce-review-link .character {
display: none;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal {
margin-bottom: 0;
margin-top: 20px;
padding: 20px 0 0;
background-color: transparent;
border-top: 1px solid #e1e1e1;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date {
display: block;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-text {
width: 100%;
font-size: 14px;
text-transform: none;
font-weight: 400;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
padding-right: 1px;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .timer {
padding: 0 5px;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .days {
padding-left: 0;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .digits:after {
display: none;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .seconds {
padding-right: 0;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .divider {
display: block;
color: #999;
font-size: 24px;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-sold .deal-sold-text {
display: none;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-sold .deal-progress,
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-sold .deal-text {
width: 100%;
padding-left: 0;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-sold .progress-bar,
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-sold .progress-value {
height: 17px;
}
.mf-products-list-carousel .cat-header {
padding-bottom: 15px;
}
.mf-products-list-carousel .cat-header h2, .mf-products-list-carousel .cat-header h3 {
font-size: 20px;
}
.mf-products-list-carousel .products ul,
.mf-products-list-carousel ul.products {
margin-bottom: 0;
}
.mf-products-list-carousel .products ul li.product,
.mf-products-list-carousel ul.products li.product {
margin-bottom: 0;
}
.mf-products-list-carousel .products ul li.product.product:last-child .product-item,
.mf-products-list-carousel ul.products li.product.product:last-child .product-item {
margin-bottom: 15px;
}
.mf-products-list-carousel .product-item {
display: flex;
align-items: flex-start;
margin-bottom: 29px;
}
.mf-products-list-carousel .product-item .product-thumbnail {
width: 70px;
}
.mf-products-list-carousel .product-item .product-thumbnail img {
height: auto;
}
.mf-products-list-carousel .product-item .product-inners {
width: calc(100% - 70px);
margin-left: 13px;
}
.mf-products-list-carousel .product-item .product-inners h2 {
font-size: 14px;
font-weight: 400;
margin: 0 0 10px;
line-height: 1.6;
}
.mf-products-list-carousel .product-item .product-inners .woocommerce-Price-amount {
color: #000;
}
.mf-products-list-carousel .product-item .product-inners ins {
padding-right: 10px;
text-decoration: none;
}
.mf-products-list-carousel .product-item .product-inners ins .woocommerce-Price-amount {
color: #ff3300;
}
.mf-products-list-carousel .product-item .product-inners del .woocommerce-Price-amount {
color: #999;
font-size: 12px;
}
.mf-products-list-carousel ul.slick-dots {
margin-bottom: 0;
display: block !important;
}
.mf-products-list-carousel ul.slick-dots li {
margin-bottom: 0;
}
.mf-products-list-carousel ul.slick-dots li button {
background-color: #dbdbdb;
border-color: #dbdbdb;
width: 8px;
height: 8px;
}
.mf-products-list-carousel ul.slick-dots li.slick-active button {
border-color: var(--mf-border-primary-color);
background-color: var(--mf-background-primary-color);
}
.mf-products-list-carousel.has-border {
border: 1px solid #d9d9d9;
padding: 15px 20px 20px 20px;
}
.mf-product-deals-grid .cat-header {
background-color: var(--mf-background-primary-color);
padding: 20px 10px;
text-align: center;
}
.mf-product-deals-grid .cat-header .cat-title {
font-size: 22px;
font-weight: 600;
line-height: 1;
margin: 0;
color: var(--mf-background-primary-text-color);
}
.mf-product-deals-grid ul.products {
border: 2px solid var(--mf-border-primary-color);
border-top: none;
padding: 30px 20px;
}
.mf-banners-grid {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin-left: -16px;
}
.mf-banners-grid .l-banners {
width: 59%;
border: 1px solid #d9d9d9;
border-top: none;
overflow: hidden;
}
.mf-banners-grid .l-banners .banner-item {
border-top: 1px solid #d9d9d9;
}
.mf-banners-grid .r-banners {
width: 41%;
display: flex;
flex-wrap: wrap;
border-bottom: 1px solid #d9d9d9;
}
.mf-banners-grid .r-banners .item-small {
width: 50%;
border-top: 1px solid #d9d9d9;
border-right: 1px solid #d9d9d9;
}
.mf-banners-grid .r-banners .item-normal {
width: 100%;
border-top: 1px solid #d9d9d9;
border-right: 1px solid #d9d9d9;
}
.mf-banners-grid-2 {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
margin-left: -16px;
}
.mf-banners-grid-2 .l-banners {
width: 100%;
border: 1px solid #d9d9d9;
border-top: none;
overflow: hidden;
}
.mf-banners-grid-2 .l-banners .banner-item {
border-top: 1px solid #d9d9d9;
}
.mf-banners-grid-2 .r-banners {
width: 100%;
display: flex;
border-bottom: 1px solid #d9d9d9;
}
.mf-banners-grid-2 .r-banners .item-small {
border-right: 1px solid #d9d9d9;
}
.mf-banners-grid-2 .r-banners .item-medium {
border-left: 1px solid #d9d9d9;
border-right: 1px solid #d9d9d9;
}
.martfury-tooltip {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background: #111;
color: #fff;
border: none;
padding: 0;
opacity: 1;
position: absolute;
z-index: 10;
}
.martfury-tooltip.qv-tooltip {
z-index: 999999;
}
.martfury-tooltip.ui-tooltip {
border: none;
background: #111;
color: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
padding: 0;
box-shadow: none;
}
.martfury-tooltip .ui-tooltip-content {
font-size: 13px;
position: relative;
padding: 4px 10px;
}
.martfury-tooltip .ui-tooltip-content::after {
content: '';
position: absolute;
bottom: -4px;
left: 50%;
margin-left: -4px;
border-style: solid;
display: block;
width: 0;
border-color: #111 transparent;
border-width: 4px 4px 0;
}
.mf-banner-small {
position: relative;
}
.mf-banner-small .b-image {
text-align: right;
}
.mf-banner-small .banner-content {
display: flex;
flex-direction: column;
justify-content: space-between;
overflow: hidden;
}
.mf-banner-small .banner-content > h2 {
font-size: 24px;
}
.mf-banner-small .banner-content .box-title {
font-weight: 400;
margin: 0 0 10px;
line-height: 1;
}
.mf-banner-small .banner-content .desc {
margin-bottom: 0;
font-size: 12px;
}
.mf-banner-small.has-img .banner-content {
position: absolute;
margin: 25px 30px 25px;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.mf-banner-small .box-price {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
bottom: 0;
right: 0;
border-radius: 50%;
width: 60px;
height: 60px;
overflow: hidden;
background-color: #f14705;
color: #fff;
text-align: center;
line-height: 1;
}
.mf-banner-small .box-price .s-price {
font-size: 18px;
font-weight: 600;
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
text-align: center;
line-height: 1;
display: block;
}
.mf-banner-small .box-price .s-price span {
font-size: 12px;
display: block;
}
.mf-banner-small .link {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 10;
text-indent: -9999px;
}
.mf-banner-small.text-right {
text-align: right;
}
.mf-banner-small.has-border {
border: 1px solid rgba(0, 0, 0, 0.15);
}
.mf-banner-small.position-price-2 .box-price {
top: 15px;
left: 46%;
transform: translateX(-50%);
}
.mf-banner-small.position-price-3 .box-price {
top: 37%;
left: 53%;
}
.mf-banner-small.has-bg-img .banner-content {
position: relative;
margin: 0;
padding: 15px;
}
.mf-banner-small.has-bg-img .featured-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: left top;
}
.mf-banner-small.has-bg-img .link-all {
color: #666666;
font-weight: 600;
}
.mf-banner-large {
position: relative;
}
.mf-banner-large .link-all {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
}
.mf-banner-large .col-banner-content {
padding: 15px 0;
}
.mf-banner-large .banner-row {
display: flex;
align-items: center;
}
.mf-banner-large .banner-row:after, .mf-banner-large .banner-row:before {
display: none;
}
.mf-banner-large .banner-content {
margin-left: -15px;
}
.mf-banner-large .banner-content > h2 {
font-size: 36px;
}
.mf-banner-large .banner-content .box-title {
font-weight: 300;
line-height: 1;
margin: 0 0 18px;
}
.mf-banner-large .banner-content .desc {
color: #999;
margin-bottom: 0;
}
.mf-banner-large .banner-content .r-price {
color: #ff3300;
}
.mf-banner-large .banner-price {
padding: 15px 0 15px 20px;
}
.mf-banner-large .banner-price .sale-price {
color: #999;
font-size: 16px;
text-decoration: line-through;
display: block;
line-height: 1;
}
.mf-banner-large .banner-price .s-price {
font-size: 30px;
display: block;
color: #669900;
}
.mf-banner-large .banner-price .link {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
height: 35px;
line-height: 35px;
padding: 0 17px;
display: inline-block;
border-radius: 4px;
margin-top: 20px;
white-space: normal;
}
.mf-banner-large .banner-price .link.no-content {
display: none;
}
.mf-banner-large .banner-image {
padding-left: 50px;
}
.mf-banner-large.has-border {
border: 1px solid rgba(0, 0, 0, 0.15);
}
.mf-banner-large.layout-2, .mf-banner-large.layout-3 {
position: relative;
padding: 43px 0 37px;
}
.mf-banner-large.layout-2 .featured-image, .mf-banner-large.layout-3 .featured-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
}
.mf-banner-large.layout-2 .banner-content .box-title, .mf-banner-large.layout-3 .banner-content .box-title {
font-size: 30px;
font-weight: 300;
line-height: 1.2;
}
.mf-banner-large.layout-2 .banner-content .box-title strong, .mf-banner-large.layout-3 .banner-content .box-title strong {
font-weight: 600;
}
.mf-banner-large.layout-2 .banner-price, .mf-banner-large.layout-3 .banner-price {
padding-left: 30px;
}
.mf-banner-large.layout-2 .col-banner-image, .mf-banner-large.layout-3 .col-banner-image {
display: none;
}
.mf-banner-large.layout-3 {
padding: 43px 55px;
display: flex;
}
.mf-banner-large.layout-3 .banner-row {
display: block;
margin: 0;
}
.mf-banner-large.layout-3 .banner-content,
.mf-banner-large.layout-3 .banner-price {
margin: 0;
padding: 0;
}
.mf-banner-large.layout-3 .desc {
font-size: 12px;
text-transform: uppercase;
color: #000;
font-weight: 600;
margin-bottom: 5px;
}
.mf-banner-large.layout-3 .banner-price .s-price {
line-height: 1;
}
.mf-banner-large.layout-3 .banner-price .link {
margin-top: 30px;
}
.mf-banner-large.layout-3 .col-banner-price,
.mf-banner-large.layout-3 .col-banner-content {
width: 90%;
margin-left: 0;
padding: 0;
}
.mf-banner-medium {
position: relative;
}
.mf-banner-medium .banner-content {
padding: 25px 20px 22px;
position: relative;
}
.mf-banner-medium .banner-content .s-content > h2 {
font-size: 26px;
}
.mf-banner-medium .banner-content .subtitle {
font-size: 16px;
font-weight: 600;
color: #000;
margin-bottom: 20px;
display: block;
line-height: 1;
}
.mf-banner-medium .banner-content .title {
font-weight: 300;
line-height: 1;
margin: 0 0 10px;
}
.mf-banner-medium .banner-content .title strong {
font-weight: 600;
}
.mf-banner-medium .banner-content .desc {
font-size: 16px;
margin-bottom: 0;
}
.mf-banner-medium .banner-content .desc strong {
font-weight: 600;
}
.mf-banner-medium .banner-content .desc .sale {
font-size: 14px;
color: #666666;
padding-left: 5px;
text-decoration: line-through;
}
.mf-banner-medium .banner-content .r-price {
color: #ff3300;
}
.mf-banner-medium .banner-content .price {
color: #669900;
}
.mf-banner-medium .link-all {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 10;
}
.mf-banner-medium.layout-1 {
text-align: center;
color: #000;
}
.mf-banner-medium .link.no-content {
display: none;
}
.mf-banner-medium.layout-2, .mf-banner-medium.layout-3, .mf-banner-medium.layout-4, .mf-banner-medium.layout-5 {
position: relative;
}
.mf-banner-medium.layout-2 .banner-content, .mf-banner-medium.layout-3 .banner-content, .mf-banner-medium.layout-4 .banner-content, .mf-banner-medium.layout-5 .banner-content {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
padding: 25px 30px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.mf-banner-medium.layout-2 .banner-content .link, .mf-banner-medium.layout-3 .banner-content .link, .mf-banner-medium.layout-4 .banner-content .link, .mf-banner-medium.layout-5 .banner-content .link {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
height: 35px;
line-height: 35px;
padding: 0 17px;
display: inline-block;
border-radius: 4px;
white-space: normal;
margin-top: 10px;
}
.mf-banner-medium.layout-2 .banner-content .link.no-content, .mf-banner-medium.layout-3 .banner-content .link.no-content, .mf-banner-medium.layout-4 .banner-content .link.no-content, .mf-banner-medium.layout-5 .banner-content .link.no-content {
display: none;
}
.mf-banner-medium.layout-2 .banner-content .title, .mf-banner-medium.layout-3 .banner-content .title, .mf-banner-medium.layout-4 .banner-content .title, .mf-banner-medium.layout-5 .banner-content .title {
line-height: 1.2;
margin-bottom: 8px;
font-size: 24px;
}
.mf-banner-medium.layout-3 .banner-content {
padding: 20px;
}
.mf-banner-medium.layout-3 .banner-content .title {
line-height: 1;
font-size: 22px;
}
.mf-banner-medium.layout-3 .banner-content .s-content {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.mf-banner-medium.layout-3 .banner-content .desc {
font-size: 12px;
line-height: 1.1;
}
.mf-banner-medium.layout-3 .banner-content .desc .price {
font-size: 18px;
font-weight: 600;
}
.mf-banner-medium.layout-4 .banner-content {
padding: 20px;
}
.mf-banner-medium.layout-4 .banner-content .desc {
font-size: 22px;
font-weight: 400;
line-height: 1;
color: #000;
}
.mf-banner-medium.layout-4 .banner-content .subtitle {
font-size: 12px;
color: #0066cc;
margin-bottom: 8px;
text-transform: uppercase;
line-height: 1;
font-weight: 400;
}
.mf-banner-medium.layout-4 .banner-content .s-content {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.mf-banner-medium.layout-4 .banner-content .subdesc {
font-size: 12px;
color: #666;
}
.mf-banner-medium.layout-4 .banner-content .subdesc strong {
font-size: 14px;
font-weight: 500;
}
.mf-banner-medium.layout-5 .banner-content {
padding-top: 30px;
}
.mf-banner-medium.layout-5 .banner-content .title {
line-height: 1.1;
margin-bottom: 15px;
font-size: 30px;
}
.mf-banner-medium.layout-5 .banner-content .desc {
line-height: 1.4;
}
.mf-banner-medium.layout-5 .banner-content .desc strong {
color: #000;
}
.mf-banner-medium.layout-5 .banner-content .desc .price {
font-size: 24px;
color: #67981a;
}
.mf-banner-medium.layout-5 .banner-content .desc .r-price {
color: #ff3300;
}
.mf-banner-medium.has-border {
border: 1px solid rgba(0, 0, 0, 0.15);
}
.mf-banner-medium.has-bg-img .banner-content {
position: relative;
margin: 0;
padding: 18px 15px 16px;
z-index: 10;
}
.mf-banner-medium.has-bg-img .featured-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: left top;
}
.mf-products-grid .cat-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e3e3e3;
padding-bottom: 15px;
margin-bottom: 30px;
flex-wrap: wrap;
}
.mf-products-grid .cat-header .cat-title {
line-height: 1;
margin: 0;
font-weight: 600;
}
.mf-products-grid .cat-header .cat-title a {
color: #000;
}
.mf-products-grid .cat-header h2, .mf-products-grid .cat-header h3 {
font-size: 20px;
}
.mf-products-grid .cat-header .tabs-header-nav {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.mf-products-grid .cat-header .tabs-nav {
margin: 0 -15px;
padding: 0;
list-style: none;
display: flex;
align-items: center;
flex-wrap: wrap;
}
.mf-products-grid .cat-header .tabs-nav li {
padding: 0 15px;
margin-bottom: 0;
}
.mf-products-grid .cat-header .tabs-nav li a {
color: #666666;
}
.mf-products-grid .cat-header .tabs-nav li a:hover, .mf-products-grid .cat-header .tabs-nav li a.active {
color: var(--mf-primary-color);
}
.mf-products-grid .cat-header .link {
padding-left: 15px;
color: #666666;
}
.mf-products-grid .cat-header .link:hover {
color: var(--mf-primary-color);
}
.mf-products .cat-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e1e1e1;
margin: 0;
padding-bottom: 13px;
margin-bottom: 30px;
}
.mf-products .cat-header h2 {
font-size: 24px;
}
.mf-products .cat-header .cat-title {
font-weight: 600;
margin: 0;
}
.mf-products .cat-header .cat-title a {
color: #000;
}
.mf-products .cat-header .cat-title a:hover {
color: var(--mf-primary-color);
}
.mf-products .cat-header .extra-links {
padding: 0;
margin: 0 -15px;
}
.mf-products .cat-header .extra-links li {
display: inline-block;
margin-bottom: 0;
padding: 0 15px;
}
.mf-products .cat-header .extra-links li a {
color: #666;
}
.mf-products .cat-header .extra-links li a:hover {
color: var(--mf-primary-color);
}
.mf-products.header-2 .cat-header {
padding: 16px 20px;
background-color: #f4f4f4;
border-bottom-color: #e3e3e3;
}
.mf-products.header-2 .cat-header .cat-title {
font-size: 20px;
font-weight: 600;
margin: 0;
line-height: 1;
}
.mf-products-list .cat-header {
margin-bottom: 55px;
}
.mf-products-list ul.products {
margin: 0 -15px;
}
.mf-products-list ul.products li.product {
padding-left: 15px;
padding-right: 15px;
margin-bottom: 40px;
}
.mf-products-list ul.products li.product .product-inner {
padding: 0;
margin: 0;
display: flex;
border: none;
}
.mf-products-list ul.products li.product .product-inner .mf-product-details-hover,
.mf-products-list ul.products li.product .product-inner .footer-button {
display: none !important;
}
.mf-products-list ul.products li.product .mf-vendor-name {
display: none;
}
.mf-products-list ul.products li.product .ribbons {
display: none;
}
.mf-products-list ul.products li.product .mf-product-thumbnail {
margin-bottom: 0;
width: 100px;
}
.mf-products-list ul.products li.product .mf-product-details {
padding-left: 20px;
width: calc(100% - 100px);
}
.martfury-container {
width: 1650px;
margin: 0 auto;
}
.martfury-container .martfury-container {
width: 100%;
padding-left: 15px;
padding-right: 15px;
}
.mf-recently-products.rv-full-width > .rv-container {
width: 1648px;
margin: 0 auto;
}
.aws-container .aws-search-form {
height: 42px;
}
.aws-container .aws-search-form .aws-main-filter {
background-color: #fff;
border-color: #ccc;
padding-right: 18px;
padding-left: 18px;
color: #000;
white-space: nowrap;
border-radius: 0 5px 5px 0 !important;
max-width: inherit;
font-size: 14px;
}
.aws-container .aws-search-form .aws-main-filter:hover, .aws-container .aws-search-form .aws-main-filter:active {
background-color: #fff;
}
.aws-container .aws-search-form .aws-main-filter .aws-main-filter__current {
padding-right: 20px;
}
.aws-container .aws-search-form .aws-main-filter .aws-main-filter__current:after {
content: '\e93a';
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 10px;
color: #000;
position: absolute;
top: 13px;
right: 0;
background: none;
}
.aws-container .aws-search-form .aws-main-filter:active .aws-main-filter__current {
top: 0;
}
.aws-container .aws-search-form .aws-search-field {
border-color: #ccc;
font-size: 14px;
color: #000;
border-right-width: 0;
border-radius: 5px 0 0 5px !important;
}
.aws-container .aws-search-form .aws-search-btn {
border: none;
background-color: var(--mf-background-primary-color);
width: 85px;
align-items: center;
}
.aws-container .aws-search-form .aws-search-btn .aws-search-btn_icon {
color: var(--mf-background-primary-text-color);
}
.aws-container .aws-search-form .aws-search-btn:hover {
background-color: var(--mf-background-primary-color);
}
.aws-container .aws-search-form .aws-wrapper .aws-loader {
border-width: 1px;
border-color: #666 #666 #666 transparent;
border-radius: 50%;
border-style: solid;
animation: mf-spin-fast 1s linear infinite;
content: " ";
width: 14px;
height: 14px;
font-weight: 400;
margin-top: -5px;
text-indent: 0;
}
.aws-container[data-buttons-order="2"] .aws-search-form .aws-main-filter {
border-radius: 0 !important;
}
.aws-container[data-buttons-order="2"] .aws-search-form .aws-search-btn {
border-radius: 0 5px 5px 0 !important;
}
.aws-container[data-buttons-order="3"] .aws-search-form .aws-main-filter {
border-radius: 5px 0 0 5px !important;
}
.aws-container[data-buttons-order="3"] .aws-search-form .aws-search-field {
border-right-width: 1px;
border-radius: 0 5px 5px 0 !important;
}
.aws-container[data-buttons-order="4"] .aws-search-form .aws-main-filter {
border-radius: 0 !important;
}
.aws-container[data-buttons-order="4"] .aws-search-form .aws-search-field {
border-right-width: 1px;
border-radius: 0 5px 5px 0 !important;
}
.aws-container[data-buttons-order="4"] .aws-search-form .aws-search-btn {
border-radius: 5px 0 0 5px !important;
}
.aws-container[data-buttons-order="5"] .aws-search-form .aws-main-filter {
border-radius: 0 5px 5px 0 !important;
}
.aws-container[data-buttons-order="5"] .aws-search-form .aws-search-field {
border-right-width: 1px;
border-left-width: 0;
border-radius: 0 !important;
}
.aws-container[data-buttons-order="5"] .aws-search-form .aws-search-btn {
border-radius: 5px 0 0 5px !important;
}
.aws-container[data-buttons-order="6"] .aws-search-form .aws-main-filter {
border-radius: 5px 0 0 5px !important;
}
.aws-container[data-buttons-order="6"] .aws-search-form .aws-search-field {
border-radius: 0 !important;
}
.aws-container[data-buttons-order="6"] .aws-search-form .aws-search-btn {
border-radius: 0 5px 5px 0 !important;
}
.aws-main-filter__dropdown {
padding-top: 10px;
padding-bottom: 10px;
}
.aws-main-filter__dropdown .aws-main-filter__choose {
border: none;
padding-top: 10px;
padding-bottom: 10px;
transition: 0.5s;
}
.aws-main-filter__dropdown .aws-main-filter__choose:hover {
background-color: transparent;
color: var(--mf-primary-color);
}
.aws-search-result {
font-size: 13px;
}
.aws-search-result .aws_result_head {
font-size: 14px;
}
.aws-search-result .aws_result_title {
padding-right: 0;
font-size: 14px;
font-weight: 400;
color: #06c;
}
.aws-search-result .aws_result_item:hover {
background-color: transparent;
}
.aws-search-result .aws_result_item.on-sale .aws_result_title {
padding-right: 60px;
}
.aws-search-result .aws_result_price {
position: static;
font-size: 16px;
color: #000;
font-weight: 400;
margin-top: 10px;
}
.aws-search-result .aws_result_price ins {
padding-left: 0;
text-decoration: none;
}
.aws-search-result .aws_result_price del {
color: #999;
}
.aws-search-result .aws_result_excerpt {
font-size: 13px;
padding-top: 10px;
}
.aws-search-result .aws_add_to_cart .aws_cart_button {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
height: 40px;
line-height: 39px;
padding: 0 25px;
}
.aws-search-result .hovered .aws_add_to_cart .aws_cart_button {
background-color: var(--mf-background-primary-color);
}
.aws-search-result .aws_rating .aws_review {
color: #999;
font-size: 12px;
}
.aws-search-result .aws_result_term {
font-size: 12px;
color: #999;
}
.aws-search-result .aws_results .aws_result_item:last-child {
border-bottom: none;
}
.aws-search-result .aws_search_more {
color: #000;
}
.mf-svg-icon svg {
vertical-align: -.125em;
width: 1em;
height: 1em;
display: inline-block;
fill: currentColor;
} .mf-elementor-icons-list .icons-list-wrapper {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.mf-elementor-icons-list .box-item {
position: relative;
}
.mf-elementor-icons-list .box-item:last-child .separator {
display: none;
}
.mf-elementor-icons-list .martfury-icon-box {
font-size: 14px;
display: flex;
align-items: center;
padding: 10px;
justify-content: center;
position: relative;
margin-bottom: 0;
}
.mf-elementor-icons-list .mf-icon-right {
flex-direction: row-reverse;
}
.mf-elementor-icons-list .mf-icon-right .box-wrapper {
text-align: right;
}
.mf-elementor-icons-list .mf-icon-center {
flex-direction: column;
text-align: center;
}
.mf-elementor-icons-list .separator {
position: absolute;
top: 50%;
right: 0;
width: 1px;
height: 60px;
background-color: #dadada;
transform: translateY(-50%);
}
.mf-elementor-icons-list .box-icon {
color: var(--mf-primary-color);
line-height: 1;
font-size: 40px;
}
.mf-elementor-icons-list .box-title {
font-size: 18px;
font-weight: 500;
margin-bottom: 0;
margin-top: 0;
color: #000;
transition: 0.5s;
display: block;
}
.mf-elementor-icons-list__display-flex .icons-list-wrapper {
margin-left: -15px;
margin-right: -15px;
}
.mf-elementor-icons-list__display-flex .icons-list-wrapper .box-item {
padding-left: 15px;
padding-right: 15px;
}
.mf-elementor-icons-list__display-flex.mf-elementor-icons-horizontal-yes .icons-list-wrapper {
width: 100%;
flex-wrap: nowrap;
white-space: nowrap;
overflow-y: hidden;
overflow-x: auto;
}
.mf-elementor-icons-list__display-flex.mf-elementor-icons-horizontal-yes .icons-list-wrapper::-webkit-scrollbar {
display: none;
}
@media (min-width: 1025px) {
.elementor-widget-martfury-icons-list.columns-5 .box-item {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-icons-list.columns-5 .box-item:nth-child(5n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns-4 .box-item {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-icons-list.columns-4 .box-item:nth-child(4n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns-3 .box-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-icons-list.columns-3 .box-item:nth-child(3n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns-2 .box-item {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-icons-list.columns-2 .box-item:nth-child(2n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns-1 .box-item {
flex: 0 0 100%;
max-width: 100%;
}
.elementor-widget-martfury-icons-list.columns-1 .box-item:nth-child(1n) .separator {
display: none;
}
.mf-elementor-icons-list__display-flex .icons-list-wrapper {
justify-content: space-between;
}
}
@media (max-width: 1024px) and (min-width: 768px) {
.elementor-widget-martfury-icons-list.columns--tablet5 .box-item {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-icons-list.columns--tablet5 .box-item:nth-child(5n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--tablet4 .box-item {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-icons-list.columns--tablet4 .box-item:nth-child(4n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--tablet3 .box-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-icons-list.columns--tablet3 .box-item:nth-child(3n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--tablet2 .box-item {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-icons-list.columns--tablet2 .box-item:nth-child(2n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--tablet1 .box-item {
flex: 0 0 100%;
max-width: 100%;
}
.elementor-widget-martfury-icons-list.columns--tablet1 .box-item:nth-child(1n) .separator {
display: none;
}
}
@media (max-width: 767px) {
.elementor-widget-martfury-icons-list.columns--mobile5 .box-item {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-icons-list.columns--mobile5 .box-item:nth-child(5n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--mobile4 .box-item {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-icons-list.columns--mobile4 .box-item:nth-child(4n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--mobile3 .box-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-icons-list.columns--mobile3 .box-item:nth-child(3n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--mobile2 .box-item {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-icons-list.columns--mobile2 .box-item:nth-child(2n) .separator {
display: none;
}
.elementor-widget-martfury-icons-list.columns--mobile1 .box-item {
flex: 0 0 100%;
max-width: 100%;
}
.elementor-widget-martfury-icons-list.columns--mobile1 .box-item:nth-child(1n) .separator {
display: none;
}
}
.mf-images-gallery .image-item .image-item__wrapper {
padding: 10px;
width: 100%;
}
.mf-images-gallery .image-item a {
display: block;
width: 100%;
text-align: center;
}
.mf-images-gallery--grid .images-list {
display: flex;
align-items: stretch;
flex-wrap: wrap;
border-color: rgba(0, 0, 0, 0.15);
border-width: 1px 0 0 0;
border-style: solid;
}
.mf-images-gallery--grid .image-item {
display: flex;
margin-bottom: 0;
justify-content: center;
align-items: center;
text-align: center;
}
.mf-images-gallery--grid .image-item .image-item__wrapper {
border-width: 0 1px 1px 0;
border-color: rgba(0, 0, 0, 0.15);
border-style: solid;
display: flex;
align-items: center;
height: 100%;
}
.mf-images-gallery--slide {
text-align: center;
}
.mf-images-gallery--slide .image-item {
float: left;
}
.mf-images-gallery--slide .image-item img {
margin: auto;
}
.mf-images-gallery--slide .slick-track {
display: flex;
align-items: center;
}
.mf-images-gallery--slide .slick-dots {
margin-bottom: 0;
margin-top: 20px;
}
.mf-images-gallery--slide .slick-dots li button {
background-color: #ccc;
border: none;
}
.mf-images-gallery--slide .slick-dots li:hover button, .mf-images-gallery--slide .slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
@media (min-width: 1025px) {
.elementor-widget-martfury-images-grid.columns-6 .mf-images-gallery--grid .image-item {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.elementor-widget-martfury-images-grid.columns-6 .mf-images-gallery--grid .image-item:nth-child(6n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns-5 .mf-images-gallery--grid .image-item {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-images-grid.columns-5 .mf-images-gallery--grid .image-item:nth-child(5n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns-4 .mf-images-gallery--grid .image-item {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-images-grid.columns-4 .mf-images-gallery--grid .image-item:nth-child(4n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns-3 .mf-images-gallery--grid .image-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-images-grid.columns-3 .mf-images-gallery--grid .image-item:nth-child(3n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns-2 .mf-images-gallery--grid .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-images-grid.columns-2 .mf-images-gallery--grid .image-item:nth-child(2n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns-1 .mf-images-gallery--grid .image-item {
flex: 0 0 100%;
max-width: 100%;
}
.elementor-widget-martfury-images-grid.columns-1 .mf-images-gallery--grid .image-item:nth-child(1n+1) .image-item__wrapper {
border-left-width: 1px;
}
}
@media (max-width: 1024px) and (min-width: 768px) {
.elementor-widget-martfury-images-grid.columns--tablet6 .mf-images-gallery--grid .image-item {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.elementor-widget-martfury-images-grid.columns--tablet6 .mf-images-gallery--grid .image-item:nth-child(6n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--tablet5 .mf-images-gallery--grid .image-item {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-images-grid.columns--tablet5 .mf-images-gallery--grid .image-item:nth-child(5n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--tablet4 .mf-images-gallery--grid .image-item {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-images-grid.columns--tablet4 .mf-images-gallery--grid .image-item:nth-child(4n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--tablet3 .mf-images-gallery--grid .image-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-images-grid.columns--tablet3 .mf-images-gallery--grid .image-item:nth-child(3n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--tablet2 .mf-images-gallery--grid .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-images-grid.columns--tablet2 .mf-images-gallery--grid .image-item:nth-child(2n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--tablet1 .mf-images-gallery--grid .image-item {
flex: 0 0 100%;
max-width: 100%;
}
.elementor-widget-martfury-images-grid.columns--tablet1 .mf-images-gallery--grid .image-item:nth-child(1n+1) .image-item__wrapper {
border-left-width: 1px;
}
}
@media (max-width: 767px) {
.elementor-widget-martfury-images-grid.columns--mobile6 .mf-images-gallery--grid .image-item {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.elementor-widget-martfury-images-grid.columns--mobile6 .mf-images-gallery--grid .image-item:nth-child(6n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--mobile5 .mf-images-gallery--grid .image-item {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-images-grid.columns--mobile5 .mf-images-gallery--grid .image-item:nth-child(5n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--mobile4 .mf-images-gallery--grid .image-item {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-images-grid.columns--mobile4 .mf-images-gallery--grid .image-item:nth-child(4n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--mobile3 .mf-images-gallery--grid .image-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-images-grid.columns--mobile3 .mf-images-gallery--grid .image-item:nth-child(3n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--mobile2 .mf-images-gallery--grid .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-images-grid.columns--mobile2 .mf-images-gallery--grid .image-item:nth-child(2n+1) .image-item__wrapper {
border-left-width: 1px;
}
.elementor-widget-martfury-images-grid.columns--mobile1 .mf-images-gallery--grid .image-item {
flex: 0 0 100%;
max-width: 100%;
}
.elementor-widget-martfury-images-grid.columns--mobile1 .mf-images-gallery--grid .image-item:nth-child(1n+1) .image-item__wrapper {
border-left-width: 1px;
}
}
.mf-elementor-banner-small .banner-content {
padding: 25px 30px 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
position: relative;
z-index: 10;
}
.mf-elementor-banner-small .banner-content > h2 {
font-size: 24px;
}
.mf-elementor-banner-small .banner-title {
font-weight: 400;
margin: 0 0 10px;
line-height: 1;
white-space: pre-line;
}
.mf-elementor-banner-small .banner-desc {
margin-bottom: 0;
font-size: 12px;
}
.mf-elementor-banner-small .banner-desc p {
margin-bottom: 0;
}
.mf-elementor-banner-small .banner-price {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 50%;
width: 60px;
height: 60px;
overflow: hidden;
background-color: #f14705;
color: #fff;
text-align: center;
line-height: 1;
}
.mf-elementor-banner-small .banner-price .s-price {
font-size: 18px;
font-weight: 600;
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
text-align: center;
line-height: 1;
display: block;
}
.mf-elementor-banner-small .banner-price .s-price span {
font-size: 12px;
display: block;
}
.mf-elementor-banner-small .banner-featured-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: left top;
background-color: #f8f8f8;
background-repeat: no-repeat;
}
.mf-elementor-banner-small .link {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 20;
}
.mf-elementor-banner-medium .banner-content {
padding: 25px 30px 25px;
display: flex;
flex-direction: column;
position: relative;
z-index: 10;
}
.mf-elementor-banner-medium .banner-content > h2 {
font-size: 24px;
}
.mf-elementor-banner-medium .banner-title {
font-weight: 300;
margin: 0 0 10px;
line-height: 1.2;
white-space: pre-line;
}
.mf-elementor-banner-medium .banner-title .hl-title {
font-weight: 600;
}
.mf-elementor-banner-medium.highlight-title-above .banner-title .hl-title, .mf-elementor-banner-medium.highlight-title-under .banner-title .hl-title {
display: block;
}
.mf-elementor-banner-medium .banner-desc {
margin-bottom: 30px;
font-size: 16px;
}
.mf-elementor-banner-medium .banner-desc p {
margin-bottom: 0;
}
.mf-elementor-banner-medium .banner-featured-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: left top;
background-color: #f8f8f8;
background-repeat: no-repeat;
}
.mf-elementor-banner-medium .link {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 20;
}
.mf-elementor-banner-medium .btn-button {
transition: all .5s;
font-size: 16px;
font-weight: 600;
text-align: center;
padding: 10px 17px;
display: inline-block;
border-radius: 4px;
white-space: normal;
line-height: 1;
border-style: solid;
border-width: 0;
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.mf-elementor-banner-large .banner-content {
padding: 25px 20px 0;
display: flex;
align-items: center;
position: relative;
z-index: 10;
}
.mf-elementor-banner-large .banner-left-content {
margin-right: 88px;
}
.mf-elementor-banner-large .banner-left-content > h2 {
font-size: 36px;
}
.mf-elementor-banner-large .banner-title {
font-weight: 300;
line-height: 1;
margin: 0 0 18px;
white-space: pre-line;
}
.mf-elementor-banner-large .banner-title .hl-title {
font-weight: 600;
color: #f30;
}
.mf-elementor-banner-large .banner-desc {
color: #999;
}
.mf-elementor-banner-large .banner-desc p {
margin-bottom: 0;
}
.mf-elementor-banner-large .banner-sale-price {
color: #999;
font-size: 16px;
text-decoration: line-through;
display: block;
line-height: 1;
margin-bottom: 8px;
}
.mf-elementor-banner-large .banner-regular-price {
font-size: 30px;
display: block;
color: #690;
line-height: 1;
margin-bottom: 20px;
}
.mf-elementor-banner-large .banner-featured-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-size: cover;
background-position: left top;
background-color: #f8f8f8;
background-repeat: no-repeat;
}
.mf-elementor-banner-large .btn-button {
transition: all .5s;
font-size: 16px;
font-weight: 600;
text-align: center;
padding: 10px 17px;
display: inline-block;
border-radius: 4px;
white-space: normal;
line-height: 1;
border-style: solid;
border-width: 0;
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.mf-elementor-banner-large .link {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 20;
}
.mf-elementor-banner-large-2 {
position: relative;
overflow: hidden;
}
.mf-elementor-banner-large-2 .feature-image {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1;
}
.mf-elementor-banner-large-2 .banner-wrapper > div {
position: absolute;
z-index: 9;
top: 50%;
transform: translateY(-50%);
}
.mf-elementor-banner-large-2 .discount-box {
left: 6.67%;
}
.mf-elementor-banner-large-2 .discount-box .discount {
font-size: 72px;
color: #f9c039;
font-weight: 600;
line-height: 0.8;
margin-bottom: 15px;
}
.mf-elementor-banner-large-2 .discount-box .discount-subtitle {
font-size: 14px;
color: #c7c3ea;
}
.mf-elementor-banner-large-2 .discount-box .discount-title {
font-size: 24px;
color: #fff;
line-height: 1.2;
}
.mf-elementor-banner-large-2 .content-box {
left: 25.45%;
}
.mf-elementor-banner-large-2 .content-box .title {
color: #fff;
margin: 0 0 12px;
font-weight: 600;
font-size: 30px;
}
.mf-elementor-banner-large-2 .content-box .description {
color: #c4c4ed;
}
.mf-elementor-banner-large-2 .price-box {
left: 84.85%;
}
.mf-elementor-banner-large-2 .price-box .regular-price {
font-size: 16px;
color: #fff;
text-decoration: line-through;
}
.mf-elementor-banner-large-2 .price-box .sale-price {
font-size: 36px;
color: #b5e54f;
font-weight: 700;
line-height: 1;
margin-bottom: 18px;
}
.mf-elementor-banner-large-2 .price-box .banner-button {
font-size: 14px;
font-weight: 700;
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
display: inline-block;
border-radius: 3px;
padding: 6px 18px 8px 18px;
}
.mf-elementor-banner-app .banner-wrapper {
display: flex;
padding-top: 57px;
padding-bottom: 57px;
}
.mf-elementor-banner-app .banner-content {
max-width: 44.24%;
flex: 0 0 44.24%;
padding-left: 90px;
display: flex;
align-items: center;
}
.mf-elementor-banner-app .banner-image {
flex-shrink: 0;
}
.mf-elementor-banner-app .banner-main-content {
flex-grow: 1;
padding-left: 90px;
}
.mf-elementor-banner-app .banner-main-content .title {
font-size: 30px;
color: #000;
font-weight: 600;
margin: 0 0 20px;
}
.mf-elementor-banner-app .banner-main-content .desc {
color: #999;
margin-bottom: 35px;
}
.mf-elementor-banner-app .banner-button {
flex-grow: 1;
display: flex;
justify-content: center;
align-items: flex-end;
padding-right: 80px;
}
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields {
display: flex;
border-bottom: 1px solid #ccc;
}
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="text"],
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="email"] {
color: #ccc;
border: 0;
padding: 10px 0;
flex-grow: 1;
background-color: transparent;
}
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="submit"] {
color: var(--mf-primary-color);
text-transform: uppercase;
border: 0;
background: transparent;
font-size: 14px;
font-weight: 600;
padding: 0 10px;
}
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="text"]::placeholder,
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="email"]::placeholder,
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="text"]:-ms-input-placeholder,
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="email"]:-ms-input-placeholder,
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="text"]::-ms-input-placeholder,
.mf-elementor-banner-app .mc4wp-form .mc4wp-form-fields input[type="email"]::-ms-input-placeholder {
color: #ccc;
}
.mf-icon svg {
width: 1em;
height: 1em;
position: relative;
display: block;
}
.elementor-page .mf-product-deals-day .cat-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #e1e1e1;
padding-bottom: 13px;
}
.elementor-page .mf-product-deals-day .cat-header .cat-title {
margin: 0 70px 0 0;
}
.elementor-page .mf-product-deals-day .cat-header .cat-title a {
color: #000;
}
.elementor-page .mf-product-deals-day .cat-header .cat-title a:hover {
color: #fcb800;
}
.elementor-page .mf-product-deals-day .cat-header .header-link a {
border-bottom: none;
}
.elementor-page .mf-product-deals-day .header-countdown .martfury-countdown {
padding-left: 0;
}
.elementor-page .mf-product-deals-day .header-countdown .ends-text {
margin-right: 10px;
}
.elementor-page .mf-product-deals-day .slick-arrow {
font-size: 30px;
color: #ccc;
text-align: center;
transition: 0.35s;
z-index: 99;
}
.elementor-page .mf-product-deals-day .slick-arrow:hover {
color: #000;
}
.elementor-page .mf-product-deals-day .slick-arrow.slick-disabled {
color: #ccc;
cursor: auto;
}
.elementor-page .mf-product-deals-day .slick-prev-arrow {
left: -50px;
}
.elementor-page .mf-product-deals-day .slick-next-arrow {
right: -50px;
}
.elementor-page .mf-product-deals-day .products-content {
padding-top: 30px;
background-color: #fff;
}
.elementor-page .mf-product-deals-day .numeric-navigation {
margin-top: 20px;
clear: both;
}
.elementor-page .mf-product-deals-day.deals-week .header-countdown .martfury-countdown .days, .elementor-page .mf-product-deals-day.deals-month .header-countdown .martfury-countdown .days {
display: inline-block;
}
.elementor-page .mf-elementor-product-deals-grid ul.products li.product {
margin-bottom: 25px;
}
.elementor-page .mf-elementor-product-deals-carousel ul.products li.product {
clear: none !important;
}
.elementor-page .mf-product-deals-carousel .cat-header {
border-style: solid;
border-width: 0 0 1px 0;
}
.elementor-page .mf-product-deals-carousel .product {
margin-right: 0;
}
.elementor-page .mf-products-tabs .slick-dots {
margin-top: 30px;
display: block !important;
}
.elementor-page .mf-products-tabs .slick-dots li button {
background-color: #ccc;
border: none;
}
.elementor-page .mf-products-tabs .slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
.elementor-page .mf-products-tabs .tabs-header {
padding: 0 0 16px;
flex-wrap: wrap;
background-color: transparent;
margin-bottom: 0;
}
.elementor-page .mf-products-tabs .tabs-header .tabs-header-nav {
flex-wrap: wrap;
}
.elementor-page .mf-products-tabs .tabs-header .tabs-nav {
margin: 0;
flex-wrap: wrap;
}
.elementor-page .mf-products-tabs .tabs-header .tabs-nav li {
padding-left: 25px;
padding-right: 0;
}
.elementor-page .mf-products-tabs .tabs-header .tabs-nav li:first-child {
padding-left: 0;
}
.elementor-page .mf-products-tabs .tabs-header .link {
padding-left: 25px;
}
.elementor-page .mf-products-tabs .tabs-header .link.has-icon {
display: inline-flex;
align-items: center;
line-height: 1;
}
.elementor-page .mf-products-tabs .tabs-header .link.has-icon::after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 12px;
margin-left: 9px;
}
.elementor-page .mf-products-tabs .tabs-header.layout-2 .tabs-nav {
width: 100%;
flex-wrap: nowrap;
white-space: nowrap;
overflow-y: hidden;
overflow-x: auto;
padding-bottom: 10px;
}
.elementor-page .mf-products-tabs .tabs-header.layout-2 .tabs-nav::-webkit-scrollbar {
display: none;
}
.elementor-page .mf-products-tabs .tabs-header.layout-2 .tabs-cat__heading {
order: 1;
margin-bottom: 20px;
}
.elementor-page .mf-products-tabs .tabs-header.layout-2 .tabs-header-nav {
order: 3;
width: 100%;
}
.elementor-page .mf-products-tabs .tabs-header.layout-2 > .link {
order: 2;
}
.elementor-page .mf-products-tabs .tabs-content {
padding-top: 30px;
}
.elementor-page .mf-products-tabs .mf-vc-loading {
min-height: 400px;
}
.elementor-page .mf-products-carousel .slick-dots {
display: block !important;
margin-top: 0;
margin-bottom: 0;
}
.elementor-page .mf-products-carousel .slick-dots li button {
background-color: #ccc;
border: none;
}
.elementor-page .mf-products-carousel .slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
.elementor-page .mf-products-carousel ul.products li.product {
margin-bottom: 0;
float: left;
}
.elementor-page .mf-products-carousel ul.products li.product .product-inner {
margin-bottom: 40px;
}
.elementor-page .mf-products-carousel .cat-header {
flex-wrap: wrap;
}
.elementor-page .mf-products-carousel .cat-header .extra-links {
margin: 0;
padding: 0;
}
.elementor-page .mf-products-carousel .cat-header .extra-links li {
padding-left: 25px;
padding-right: 0;
}
.elementor-page .mf-products-carousel .cat-header .extra-links li:first-child {
padding-left: 0;
}
.elementor-page .mf-products-carousel .view-all-link.has-icon a {
display: flex;
align-items: center;
line-height: 1;
}
.elementor-page .mf-products-carousel .view-all-link.has-icon a::after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 12px;
margin-left: 9px;
}
.elementor-page .mf-products-carousel.arrow-has-background .slick-arrow {
width: 28px;
height: 119px;
}
.elementor-page .mf-products-carousel.arrow-has-background .slick-arrow::before {
position: absolute;
top: 50%;
transform: translateY(-50%);
}
.elementor-page .mf-products-carousel.arrow-has-background .slick-arrow .mf-arrow-bg {
display: inline-block;
color: #fff;
}
.elementor-page .mf-products-carousel.arrow-has-background .slick-arrow.slick-prev-arrow::before {
left: -5px;
}
.elementor-page .mf-products-carousel.arrow-has-background .slick-arrow.slick-next-arrow::before {
right: -5px;
}
.elementor-page .mf-category-box .cat-header {
flex-wrap: wrap;
}
.elementor-page .mf-category-box .cat-header .extra-links {
margin: 0;
padding: 0;
}
.elementor-page .mf-category-box .cat-header .extra-links li {
padding-left: 25px;
padding-right: 0;
}
.elementor-page .mf-category-box .cat-header .extra-links li:first-child {
padding-left: 0;
}
.elementor-page .mf-products-grid {
background-color: #fff;
}
.elementor-page .mf-products-grid .cat-header {
flex-wrap: wrap;
}
.elementor-page .mf-products-grid .cat-header .extra-links {
margin: 0;
padding: 0;
}
.elementor-page .mf-products-grid .cat-header .extra-links li {
padding-left: 25px;
padding-right: 0;
list-style: none;
display: inline-block;
margin-bottom: 0;
}
.elementor-page .mf-products-grid .cat-header .extra-links li a {
color: #666;
}
.elementor-page .mf-products-grid .cat-header .extra-links li a:hover {
color: var(--mf-primary-color);
}
.elementor-page .mf-products-grid .cat-header .extra-links li:first-child {
padding-left: 0;
}
.elementor-page .mf-products-grid .mf-vc-loading {
min-height: 400px;
}
.elementor-page .mf-products-list .cat-header {
flex-wrap: wrap;
}
.elementor-page .mf-products-list .cat-header .extra-links {
margin: 0;
padding: 0;
}
.elementor-page .mf-products-list .cat-header .extra-links li {
padding-left: 25px;
padding-right: 0;
}
.elementor-page .mf-products-list .cat-header .extra-links li:first-child {
padding-left: 0;
}
.elementor-page .mf-products-of-category .images-slider .slick-arrow {
opacity: 0;
transition: 0.5s;
}
.elementor-page .mf-products-of-category .images-slider .slick-dots li {
width: auto;
height: auto;
padding: 0 5px;
}
.elementor-page .mf-products-of-category .images-slider:hover .slick-arrow {
opacity: 1;
}
.elementor-page .mf-products-of-category .mf-products-of-category-loading {
width: 100%;
}
.elementor-page .mf-products-of-category-2 .cats-header .extra-links {
margin: 0;
}
.elementor-page .mf-products-of-category-2 .cats-header .extra-links li {
padding-left: 30px;
padding-right: 0;
}
.elementor-page .mf-products-of-category-2 .cats-header .extra-links li:first-child {
padding-left: 0;
}
.elementor-page .mf-products-of-category-2 .cats-header .cat-title .mf-icon {
font-size: 22px;
padding-right: 15px;
}
.elementor-page .mf-products-of-category-2 .cats-header .cat-title .mf-icon i {
font-size: inherit;
padding-right: 0;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs .tabs-header .tabs-nav {
margin: 0;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs .tabs-header .tabs-nav li {
padding-right: 30px;
padding-left: 0;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs .tabs-header .tabs-nav li:last-child {
padding-right: 0;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs .slick-dots {
margin-bottom: 0;
margin-top: 20px;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs .slick-dots li button {
background-color: #ccc;
border: none;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs .slick-dots li:hover button, .elementor-page .mf-products-of-category-2 .mf-products-tabs .slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs .tabs-header {
border-style: solid;
border-width: 0 0 1px 0;
background-color: transparent;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs ul.products li.product {
margin-bottom: 0;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs ul.products li.product.un-4-cols:nth-child(4n) .product-inner {
margin-right: 3px;
}
.elementor-page .mf-products-of-category-2 .side-products {
padding-left: 0;
}
.elementor-page .mf-products-of-category-2 .col-product-content {
padding-right: 0;
}
.elementor-page .mf-products-of-category-2 .col-product-content:after {
display: none;
}
.elementor-page .mf-products-of-category-2 .products-side {
padding-left: 30px;
border-left: 1px solid #e1e1e1;
height: 100%;
}
.elementor-page .mf-products-of-category-2 .products-side .side-title {
border-style: solid;
border-width: 0 0 1px 0;
}
.elementor-page .mf-products-list-carousel {
padding: 15px 20px 20px 20px;
border-style: solid;
border-width: 1px 1px 1px 1px;
border-color: #d9d9d9;
}
.elementor-page .mf-products-list-carousel .slick-arrow {
display: none !important;
}
.elementor-page .mf-products-list-carousel.without-dots .slick-dots {
display: none !important;
}
.elementor-page .mf-products-list-carousel ul.products li.product {
width: 100%;
}
.elementor-page .mf-products-list-carousel .cat-header {
border-width: 0 0 1px 0;
}
.mf-products__break_line-4 ul.products li.product .woo-loop-product__title {
display: -webkit-box;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical;
overflow: hidden;
padding: 0;
margin-bottom: 5px;
}
@media (max-width: 1024px) and (min-width: 768px) {
.mf-products__break_line-tablet-4 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 4 !important;
}
}
@media (max-width: 767px) {
.mf-products__break_line-mobile-4 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 4 !important;
}
}
.mf-products__break_line-3 ul.products li.product .woo-loop-product__title {
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
padding: 0;
margin-bottom: 5px;
}
@media (max-width: 1024px) and (min-width: 768px) {
.mf-products__break_line-tablet-3 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 3 !important;
}
}
@media (max-width: 767px) {
.mf-products__break_line-mobile-3 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 3 !important;
}
}
.mf-products__break_line-2 ul.products li.product .woo-loop-product__title {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
padding: 0;
margin-bottom: 5px;
}
@media (max-width: 1024px) and (min-width: 768px) {
.mf-products__break_line-tablet-2 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 2 !important;
}
}
@media (max-width: 767px) {
.mf-products__break_line-mobile-2 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 2 !important;
}
}
.mf-products__break_line-1 ul.products li.product .woo-loop-product__title {
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
overflow: hidden;
padding: 0;
margin-bottom: 5px;
}
@media (max-width: 1024px) and (min-width: 768px) {
.mf-products__break_line-tablet-1 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 1 !important;
}
}
@media (max-width: 767px) {
.mf-products__break_line-mobile-1 ul.products li.product .woo-loop-product__title {
-webkit-line-clamp: 1 !important;
}
}
.mf-brands-grid .product-brands {
display: flex;
flex-wrap: wrap;
margin-left: -15px;
margin-right: -15px;
margin-bottom: 30px;
}
.mf-brands-grid .brand-item-wrapper {
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
width: 100%;
}
.mf-brands-grid .brand-item-wrapper .brand-item {
border: 1px solid #eee;
border-radius: 3px;
background-color: #fff;
height: 100%;
padding-left: 20px;
padding-right: 20px;
}
.mf-brands-grid .brand-item__header {
border-bottom: 1px solid #eee;
display: flex;
align-items: center;
padding: 27px 0 27px 50px;
}
.mf-brands-grid .brand-item__header .brand-logo {
padding-right: 40px;
display: block;
}
.mf-brands-grid .brand-item__header .brand-info {
display: flex;
flex-direction: column;
}
.mf-brands-grid .brand-item__header .brand-info a {
color: #000;
font-weight: 600;
text-transform: uppercase;
}
.mf-brands-grid .brand-item__header .brand-info a:hover {
color: var(--mf-primary-color);
}
.mf-brands-grid .brand-item__header .brand-info span {
display: block;
line-height: 1.5;
white-space: nowrap;
}
.mf-brands-grid .brand-item__content {
padding-top: 15px;
}
.mf-brands-grid .brand-item__content .slick-arrow {
opacity: 0;
transition: 0.5s;
font-size: 12px;
border: 1px solid #c0c0c0;
padding: 10px;
z-index: 99;
background-color: #fff;
border-radius: 3px;
}
.mf-brands-grid .brand-item__content .slick-prev-arrow {
left: -20px;
}
.mf-brands-grid .brand-item__content .slick-next-arrow {
right: -20px;
}
.mf-brands-grid .brand-item__content:hover {
z-index: 2;
}
.mf-brands-grid .brand-item__content:hover .slick-arrow {
opacity: 1;
}
.mf-brands-grid ul.products li.product {
pointer-events: auto;
clear: none !important;
}
.mf-brands-grid .navigation-number {
padding: 20px 0 50px;
}
.mf-brands-grid .navigation-number a {
display: block;
position: relative;
height: 110px;
}
.mf-brands-grid .navigation-number a .mf-loading:after {
width: 14px;
height: 14px;
border-color: var(--mf-border-primary-color) transparent var(--mf-border-primary-color) transparent;
}
.mf-brands-grid.hide-navigation .slick-arrow {
display: none !important;
}
.mf-brand-images-carousel {
border: 1px solid #eeeeee;
padding-left: 30px;
padding-right: 30px;
padding-top: 25px;
padding-bottom: 40px;
background-color: #fff;
}
.mf-brand-images-carousel .brands-header {
display: flex;
align-items: center;
justify-content: space-between;
padding-bottom: 25px;
border-bottom: 1px solid #eeeeee;
}
.mf-brand-images-carousel .brands-header h2 {
font-size: 24px;
}
.mf-brand-images-carousel .brands-header h2,
.mf-brand-images-carousel .brands-header .brand-title {
font-weight: 400;
margin: 0;
line-height: 1;
}
.mf-brand-images-carousel .brands-header .all-link {
color: #666;
}
.mf-brand-images-carousel .images-list:not(.slick-initialized) {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: nowrap;
overflow: hidden;
}
.mf-brand-images-carousel .images-list:not(.slick-initialized) .image-item {
max-width: 20%;
flex: 0 0 20%;
}
.mf-brand-images-carousel .images-list {
padding: 0 40px;
margin-top: 40px;
position: relative;
margin-left: -7px;
margin-right: -7px;
}
.mf-brand-images-carousel .images-list .image-item {
display: flex;
justify-content: center;
padding: 0 7px;
}
.mf-brand-images-carousel .images-list .slick-track {
display: flex;
align-items: center;
}
.mf-brand-images-carousel .images-list .slick-arrow {
font-size: 20px;
color: #999;
}
.mf-brand-images-carousel .images-list .slick-next-arrow {
right: 0;
}
.mf-brand-images-carousel .images-list .slick-prev-arrow {
left: 0;
}
.mf-elementor-brand-images .images-list {
display: flex;
align-items: center;
flex-wrap: wrap;
margin: 0 -10px;
}
.mf-elementor-brand-images .images-list .image-item {
display: block;
background-color: transparent;
}
.mf-elementor-brand-images .images-list .b-title {
margin-bottom: 0;
}
.mf-elementor-brand-images .images-list .b-title a {
display: block;
font-size: 16px;
color: #000;
margin-top: 20px;
}
.mf-elementor-brand-images .images-list .b-title a:hover {
color: var(--mf-primary-color);
}
@media (max-width: 1920px) and (min-width: 1025px) {
.elementor-widget-martfury-products-brands.brands-columns-7 .brand-item-wrapper,
.mf-brands-grid.brands-columns-7 .brand-item-wrapper {
flex: 0 0 14.28571%;
max-width: 14.28571%;
}
.elementor-widget-martfury-products-brands.brands-columns-6 .brand-item-wrapper,
.mf-brands-grid.brands-columns-6 .brand-item-wrapper {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.elementor-widget-martfury-products-brands.brands-columns-5 .brand-item-wrapper,
.mf-brands-grid.brands-columns-5 .brand-item-wrapper {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-products-brands.brands-columns-4 .brand-item-wrapper,
.mf-brands-grid.brands-columns-4 .brand-item-wrapper {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-products-brands.brands-columns-3 .brand-item-wrapper,
.mf-brands-grid.brands-columns-3 .brand-item-wrapper {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-products-brands.brands-columns-2 .brand-item-wrapper,
.mf-brands-grid.brands-columns-2 .brand-item-wrapper {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-products-brands.brands-columns-1 .brand-item-wrapper,
.mf-brands-grid.brands-columns-1 .brand-item-wrapper {
flex: 0 0 100%;
max-width: 100%;
}
}
@media (max-width: 1024px) and (min-width: 768px) {
.elementor-widget-martfury-products-brands.brands-columns--tablet7 .brand-item-wrapper,
.mf-brands-grid.brands-columns-7 .brand-item-wrapper {
flex: 0 0 14.28571%;
max-width: 14.28571%;
}
.elementor-widget-martfury-products-brands.brands-columns--tablet6 .brand-item-wrapper,
.mf-brands-grid.brands-columns-6 .brand-item-wrapper {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.elementor-widget-martfury-products-brands.brands-columns--tablet5 .brand-item-wrapper,
.mf-brands-grid.brands-columns-5 .brand-item-wrapper {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-products-brands.brands-columns--tablet4 .brand-item-wrapper,
.mf-brands-grid.brands-columns-4 .brand-item-wrapper {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-products-brands.brands-columns--tablet3 .brand-item-wrapper,
.mf-brands-grid.brands-columns-3 .brand-item-wrapper {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-products-brands.brands-columns--tablet2 .brand-item-wrapper,
.mf-brands-grid.brands-columns-2 .brand-item-wrapper {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-products-brands.brands-columns--tablet1 .brand-item-wrapper,
.mf-brands-grid.brands-columns-1 .brand-item-wrapper {
flex: 0 0 100%;
max-width: 100%;
}
}
@media (max-width: 767px) {
.elementor-widget-martfury-products-brands.brands-columns--mobile7 .brand-item-wrapper,
.mf-brands-grid.brands-columns-7 .brand-item-wrapper {
flex: 0 0 14.28571%;
max-width: 14.28571%;
}
.elementor-widget-martfury-products-brands.brands-columns--mobile6 .brand-item-wrapper,
.mf-brands-grid.brands-columns-6 .brand-item-wrapper {
flex: 0 0 16.66667%;
max-width: 16.66667%;
}
.elementor-widget-martfury-products-brands.brands-columns--mobile5 .brand-item-wrapper,
.mf-brands-grid.brands-columns-5 .brand-item-wrapper {
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-martfury-products-brands.brands-columns--mobile4 .brand-item-wrapper,
.mf-brands-grid.brands-columns-4 .brand-item-wrapper {
flex: 0 0 25%;
max-width: 25%;
}
.elementor-widget-martfury-products-brands.brands-columns--mobile3 .brand-item-wrapper,
.mf-brands-grid.brands-columns-3 .brand-item-wrapper {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.elementor-widget-martfury-products-brands.brands-columns--mobile2 .brand-item-wrapper,
.mf-brands-grid.brands-columns-2 .brand-item-wrapper {
flex: 0 0 50%;
max-width: 50%;
}
.elementor-widget-martfury-products-brands.brands-columns--mobile1 .brand-item-wrapper,
.mf-brands-grid.brands-columns-1 .brand-item-wrapper {
flex: 0 0 100%;
max-width: 100%;
}
.mf-brands-grid .brand-item-wrapper {
width: 100%;
}
.mf-brands-grid.mf-vc-brands-grid .brand-item-wrapper {
max-width: 100%;
flex: auto;
}
.mf-brands-grid .brand-item__header {
padding-left: 20px;
}
.brands-columns--mobile2 .mf-brands-grid .brand-item__header {
flex-wrap: wrap;
}
.brands-columns--mobile2 .mf-brands-grid .brand-item__header .brand-info {
margin-top: 10px;
}
.brands-columns--mobile2 .mf-brands-grid .product-brands {
margin-left: -7.5px;
margin-right: -7.5px;
}
.brands-columns--mobile2 .mf-brands-grid .product-brands .brand-item-wrapper {
padding-left: 7.5px;
padding-right: 7.5px;
}
}
.martfury-counter-els {
display: flex;
align-items: center;
}
.martfury-counter-els .mf-icon {
color: var(--mf-primary-color);
display: block;
font-size: 72px;
}
.martfury-counter-els .counter {
font-size: 48px;
color: #000;
line-height: 1;
margin-bottom: 10px;
}
.martfury-counter-els h4 {
font-size: 16px;
color: #666;
margin-top: 0;
margin-bottom: 0;
font-weight: 400;
}
.martfury-counter-els.mf-icon--center {
flex-direction: column;
text-align: center;
}
.martfury-counter-els.mf-icon--right {
flex-direction: row-reverse;
}
.martfury-counter-els.mf-icon--right .counter-content {
text-align: right;
}
.mf-elementor-image-box {
display: flex;
transition: 0.5s;
border-width: 1px;
border-color: #bfbfbf;
}
.mf-elementor-image-box .box-title {
font-weight: 400;
margin: 0 0 15px;
transition: 0.5s;
}
.mf-elementor-image-box .box-title a {
color: #000;
}
.mf-elementor-image-box .box-title a:hover {
color: var(--mf-primary-color);
}
.mf-elementor-image-box .image-content {
padding: 18px 15px 15px;
}
.mf-elementor-image-box .image-content > h2 {
font-size: 16px;
}
.mf-elementor-image-box .image-content ul {
margin: 0;
padding: 0;
}
.mf-elementor-image-box .image-content ul li {
list-style: none;
margin-bottom: 7px;
display: block;
line-height: 1;
}
.mf-elementor-image-box .image-content ul li:last-child {
margin-bottom: 0;
}
.mf-elementor-image-box .image-content ul li a {
color: #666;
border-bottom: 1px solid transparent;
display: inline-block;
}
.mf-elementor-image-box .image-content ul li a:hover {
color: #000;
border-color: #000;
}
.mf-elementor-image-box .image-content ul li .view-more {
padding-top: 10px;
border-bottom: none;
}
.mf-elementor-image-box a.view-more {
display: flex;
align-items: center;
}
.mf-elementor-image-box a.view-more .align-icon-left {
float: left;
}
.mf-elementor-image-box a.view-more .align-icon-right {
float: right;
}
.elementor-position-top .mf-elementor-image-box {
flex-direction: column;
}
.elementor-position-right .mf-elementor-image-box {
flex-direction: row-reverse;
}
.martfury-journey-els ul {
position: relative;
list-style: none;
padding-left: 0;
display: flex;
justify-content: space-between;
width: calc(100% - 130px);
margin: auto;
}
.martfury-journey-els ul:after {
content: '';
width: calc(100% - 40px);
height: 5px;
position: absolute;
bottom: 12px;
left: 50%;
transform: translateX(-50%);
background-color: #ccc;
z-index: 5;
}
.martfury-journey-els ul li {
margin-bottom: 0;
}
.martfury-journey-els ul a {
font-size: 18px;
color: #000;
font-weight: 600;
position: relative;
display: block;
padding-bottom: 45px;
}
.martfury-journey-els ul a span {
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 30px;
height: 30px;
background-color: #ccc;
border: 5px solid #ccc;
border-radius: 50%;
transition: 0.5s;
z-index: 9;
}
.martfury-journey-els ul a.active span, .martfury-journey-els ul a:hover span {
background-color: var(--mf-background-primary-color);
}
.martfury-journey-els .journey-content {
padding-top: 70px;
}
.martfury-journey-els .journey-wrapper {
padding: 30px;
background-color: #fff;
opacity: 0;
max-width: 500px;
position: absolute;
border-radius: 3px;
transition: 0.5s;
}
.martfury-journey-els .journey-wrapper .journey-title {
font-size: 20px;
color: #000;
font-weight: 400;
margin-bottom: 4px;
}
.martfury-journey-els .journey-wrapper .avatar {
float: left;
}
.martfury-journey-els .journey-wrapper .avatar img {
border-radius: 50%;
}
.martfury-journey-els .journey-wrapper .info {
padding-left: 120px;
}
.martfury-journey-els .journey-wrapper.active {
opacity: 1;
}
.martfury-journey-els .journey-wrapper:before {
content: '';
border-width: 0 11px 44px 11px;
border-style: solid;
border-color: transparent transparent #fff transparent;
position: absolute;
bottom: 100%;
left: 75px;
}
.martfury-journey-els .journey-wrapper.reverse:before {
left: auto;
right: 75px;
}
.mf-elementor-bubbles {
display: flex;
}
.mf-elementor-bubbles .wrapper {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
width: 170px;
height: 170px;
border: 3px solid var(--mf-border-primary-color);
border-radius: 50%;
}
.mf-elementor-bubbles .bubble {
color: #000;
font-size: 60px;
font-weight: 400;
}
.mf-elementor-bubbles .value {
line-height: 1;
}
.mf-elementor-bubbles h5 {
font-size: 16px;
margin: 0;
font-weight: 400;
}
.mf-elementor-icon-box {
font-size: 14px;
display: flex;
align-items: center;
}
.mf-elementor-icon-box.align-icon-center {
flex-direction: column;
}
.mf-elementor-icon-box.align-icon-center .box-wrapper {
text-align: center;
}
.mf-elementor-icon-box.align-icon-center .mf-icon-area {
display: flex;
align-items: center;
}
.mf-elementor-icon-box.align-icon-right {
flex-direction: row-reverse;
}
.mf-elementor-icon-box.align-icon-right .box-wrapper {
text-align: right;
}
.mf-elementor-icon-box .box-icon {
color: var(--mf-primary-color);
line-height: 1;
}
.mf-elementor-icon-box .box-icon i {
font-size: 40px;
}
.mf-elementor-icon-box .box-title {
font-size: 18px;
font-weight: 500;
margin-bottom: 0;
margin-top: 0;
color: #000;
}
.mf-elementor-icon-box .box-title a {
color: #000;
}
.mf-elementor-icon-box .box-url {
color: #000;
text-decoration: underline;
display: inline-block;
}
.mf-elementor-icon-box .box-url:hover {
color: var(--mf-primary-color);
}
.mf-elementor-process .process-content {
position: relative;
display: flex;
align-items: center;
padding-bottom: 95px;
}
.mf-elementor-process .process-content:last-child .process-step:before {
display: none;
}
.mf-elementor-process .process-content:nth-child(odd) {
flex-direction: row-reverse;
}
.mf-elementor-process h3 {
font-size: 22px;
font-weight: 600;
margin-top: 0;
margin-bottom: 30px;
}
.mf-elementor-process .process-image {
text-align: center;
}
.mf-elementor-process .process-step {
text-align: center;
position: static;
}
.mf-elementor-process .process-step .step {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
color: #000;
font-size: 48px;
width: 100px;
height: 100px;
background-color: #fff;
border-radius: 50%;
border: 2px solid var(--mf-border-primary-color);
z-index: 9;
display: flex;
align-items: center;
justify-content: center;
}
.mf-elementor-process .process-step:before {
content: '';
width: 2px;
height: 100%;
background-color: var(--mf-background-primary-color);
position: absolute;
top: 5px;
left: 50%;
transform: translateX(-50%);
z-index: 4;
}
.mf-elementor-testimonial-slides {
color: #999;
}
.mf-elementor-testimonial-slides .testimonial-heading {
margin-bottom: 30px;
}
.mf-elementor-testimonial-slides .testimonial-heading > h2,
.mf-elementor-testimonial-slides .testimonial-heading > h3 {
font-size: 20px;
}
.mf-elementor-testimonial-slides .tes-title {
font-weight: 600;
margin: 0;
line-height: 1;
}
.mf-elementor-testimonial-slides .slick-list {
padding-top: 50px;
margin-left: -15px;
margin-right: -15px;
}
.mf-elementor-testimonial-slides .name {
color: #000;
font-size: 18px;
font-weight: 600;
}
.mf-elementor-testimonial-slides .job {
padding-left: 5px;
}
.mf-elementor-testimonial-slides a {
color: #000;
font-size: 14px;
font-weight: 600;
display: inline-block;
margin-top: 25px;
}
.mf-elementor-testimonial-slides a .align-icon-left {
float: left;
}
.mf-elementor-testimonial-slides a .align-icon-right {
float: right;
}
.mf-elementor-testimonial-slides a span {
display: inline-block;
}
.mf-elementor-testimonial-slides .testimonial-info {
position: relative;
background-color: #fff;
padding: 0 40px 40px 40px;
margin: 0 15px;
border-width: 1px;
border-style: solid;
border-color: #ccc;
float: left;
}
.mf-elementor-testimonial-slides .testimonial-info img {
border-radius: 50%;
}
.mf-elementor-testimonial-slides .testimonial-info > i {
font-size: 60px;
color: var(--mf-primary-color);
position: absolute;
right: 20px;
top: 20px;
}
.mf-elementor-testimonial-slides .testi-header {
margin-bottom: 20px;
}
.mf-elementor-testimonial-slides .testi-header span {
display: inline-block;
}
.mf-elementor-testimonial-slides .testi-thumb {
display: inline-block;
transform: translateY(-47px);
}
.mf-elementor-testimonial-slides .slick-arrow {
font-size: 36px;
color: #999999;
transition: 0.5s;
}
.mf-elementor-testimonial-slides .slick-arrow:hover {
color: #000000;
}
.mf-elementor-testimonial-slides .mf-left-arrow {
left: -76px;
}
.mf-elementor-testimonial-slides .mf-right-arrow {
right: -76px;
}
.mf-elementor-testimonial-slides .slick-dots {
margin-bottom: 0;
margin-top: 20px;
}
.mf-elementor-testimonial-slides .slick-dots li button {
background-color: #ccc;
border: none;
}
.mf-elementor-testimonial-slides .slick-dots li:hover button, .mf-elementor-testimonial-slides .slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
.mf-elementor-testimonial-slides--top .testimonial-heading {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.mf-elementor-testimonial-slides--top .arrow-wrapper {
position: relative;
display: flex;
align-items: center;
padding-left: 50px;
}
.mf-elementor-testimonial-slides--top .arrow-wrapper .slick-arrow {
font-size: 16px;
color: #cccccc;
position: static;
transform: unset;
}
.mf-elementor-testimonial-slides--top .arrow-wrapper .mf-left-arrow {
padding-right: 9px;
}
.mf-elementor-testimonial-slides--top .arrow-wrapper .mf-right-arrow {
padding-left: 9px;
}
.mf-elementor-testimonial-slides-2 .testimonial-heading {
display: flex;
align-items: center;
justify-content: space-between;
padding: 35px 40px;
}
.mf-elementor-testimonial-slides-2 .testimonial-heading > h2 {
font-size: 24px;
}
.mf-elementor-testimonial-slides-2 .testimonial-heading h2,
.mf-elementor-testimonial-slides-2 .testimonial-heading .tes-title {
font-weight: 400;
margin: 0;
}
.mf-elementor-testimonial-slides-2 .testimonial-list {
padding: 44px 50px 20px;
}
.mf-elementor-testimonial-slides-2 .testimonial-info {
padding-left: 10px;
padding-right: 10px;
}
.mf-elementor-testimonial-slides-2 .testimonial-info__content {
font-size: 30px;
color: #000;
font-weight: 600;
line-height: 1.5;
}
.mf-elementor-testimonial-slides-2 .testimonial-info__footer {
display: flex;
align-items: center;
margin-top: 45px;
}
.mf-elementor-testimonial-slides-2 .testimonial-info__footer .testimonial-thumb {
margin-right: 25px;
}
.mf-elementor-testimonial-slides-2 .testimonial-info__footer .name {
color: #000;
font-size: 18px;
font-weight: 600;
}
.mf-elementor-testimonial-slides-2 .testimonial-info__footer .job {
color: #999999;
font-size: 14px;
}
.mf-elementor-testimonial-slides-2 .no-thumbnail .testimonial-thumb {
margin-right: 0;
}
.mf-elementor-testimonial-slides-2 .arrow-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.mf-elementor-testimonial-slides-2 .arrow-wrapper .slick-arrow {
position: static;
transform: unset;
font-size: 18px;
}
.mf-elementor-testimonial-slides-2 .arrow-wrapper .mf-right-arrow {
margin-left: 10px;
}
.mf-elementor-testimonial-slides-2 .slick-dots {
text-align: left;
margin-left: -9px;
margin-right: -9px;
padding: 0 10px;
}
.mf-elementor-testimonial-slides-2 .slick-dots li {
padding: 0 9px;
}
.mf-elementor-testimonial-slides-2 .slick-dots li button {
border-color: #ccc;
background-color: #ccc;
}
.mf-elementor-testimonial-slides-2 .slick-dots li.slick-active button {
border-color: var(--mf-border-primary-color);
background-color: var(--mf-background-primary-color);
}
@keyframes ken-burns-in {
0% {
transform: scale(1);
}
100% {
transform: scale(1.3);
}
}
@keyframes ken-burns-out {
0% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}
.mf-slides .slick-slide-bg {
background-size: cover;
background-position: center;
background-repeat: no-repeat;
min-width: 100%;
min-height: 100%;
transition-property: transform;
transition-duration: 10s;
}
.mf-slides .slick-slide-bg.mf-ken-out {
transform: scale(1.3);
}
.mf-slides .slick-slide {
display: flex;
justify-content: center;
align-items: center;
position: relative;
overflow: hidden;
height: 400px;
}
.mf-slides .slick-slide:first-child {
width: 100%;
}
.mf-slides .elementor-repeater-item-clone {
height: 400px;
}
.mf-slides-wrapper.loading .arrows-wrapper {
opacity: 0;
transition: 0.5s;
}
.mf-slides .slick-slide > div {
flex-basis: 100%;
width: 100%;
}
.mf-slides .slick-slide:focus {
outline: 0;
}
.mf-slides .slick-slide.slick-active .slick-slide-bg {
animation-timing-function: linear;
animation-duration: 20s;
}
.mf-slides .slick-slide.slick-active .slick-slide-bg.mf-ken-in {
transform: scale(1.3);
animation-name: ken-burns-in;
}
.mf-slides .slick-slide.slick-active .slick-slide-bg.mf-ken-out {
transform: scale(1);
animation-name: ken-burns-out;
}
.mf-slides .slick-slide-inner {
background-repeat: no-repeat;
background-position: center;
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.mf-slides .slick-slide-inner {
display: flex;
}
.mf-slides .slick-slide-inner .mf-background-overlay {
position: absolute;
z-index: 0;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mf-slides .slick-slide-inner .mf-slide-content {
position: relative;
z-index: 1;
width: 100%;
}
.mf-slides .slick-slide-inner .mf-slide-subtitle {
color: #ff0000;
}
.mf-slides .slick-slide-inner .mf-slide-heading {
color: #000;
font-size: 30px;
font-weight: 500;
line-height: 1;
}
.mf-slides .slick-slide-inner .mf-slide-description {
font-size: 14px;
}
.mf-slides .slick-slide-inner .mf-slide-button {
font-size: 16px;
font-weight: 700;
line-height: 1;
padding: 13px 33px;
text-align: center;
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
border-radius: 3px;
display: inline-flex;
align-items: center;
}
.mf-slides .slick-slide-inner .mf-slide-button:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.mf-slides .slick-slide-inner .mf-slide-price-box {
position: absolute;
top: 20%;
left: 50%;
z-index: 9;
}
.mf-slides .slick-slide-inner .mf-slide-price-box--text {
color: #fff;
font-size: 30px;
font-weight: 600;
border-radius: 50%;
width: 97px;
height: 97px;
line-height: 1;
text-align: center;
background-color: #ff0000;
display: flex;
align-items: center;
justify-content: center;
}
.mf-slides .slick-slide-inner .mf-slide-subtitle:not(:last-child) {
margin-bottom: 25px;
}
.mf-slides .slick-slide-inner .mf-slide-heading:not(:last-child),
.mf-slides .slick-slide-inner .mf-slide-description:not(:last-child) {
margin-bottom: 30px;
}
.mf-slides .slick-arrow {
font-size: 18px;
z-index: 9;
text-align: center;
transition: 0.5s;
}
.mf-slides .slick-prev-arrow {
left: 20px;
}
.mf-slides .slick-next-arrow {
right: 20px;
left: auto;
}
.mf-slides .slick-dots {
margin: 0;
position: absolute;
bottom: 0;
left: 0;
right: 0;
}
.mf-slides .slick-dots li {
margin-bottom: 0;
}
.mf-slides .mf-slide-content {
position: relative;
z-index: 1;
width: 100%;
}
.mf-slides .mf-slide-content.animated {
-webkit-animation-duration: 0.8s;
animation-duration: 0.8s;
}
.mf-slides .mf-slide-subtitle {
color: #ff0000;
margin-bottom: 20px;
}
.mf-slides .mf-slide-heading {
color: #000;
font-size: 36px;
font-weight: 400;
line-height: 1;
margin-bottom: 20px;
}
.mf-slides .mf-slide-description {
font-size: 14px;
animation-delay: 2s;
animation-name: fadeIn;
margin-bottom: 25px;
}
.mf-slides .mf-slide-description p {
margin-bottom: 0;
}
.mf-slides .mf-slide-button {
font-size: 14px;
font-weight: 700;
line-height: 1;
padding: 10px 15px;
text-align: center;
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
border-radius: 3px;
display: inline-flex;
align-items: center;
}
.mf-slides .mf-slide-button:hover {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
}
.mf-slides .mf-slide-price-box {
position: absolute;
top: 20%;
left: 50%;
z-index: 9;
}
.mf-slides .mf-slide-price-box--text {
color: #fff;
font-size: 30px;
font-weight: 600;
border-radius: 50%;
width: 97px;
height: 97px;
line-height: 1;
text-align: center;
background-color: #ff0000;
display: flex;
align-items: center;
justify-content: center;
}
.mf-slides-wrapper .slick-arrow {
font-size: 18px;
z-index: 9;
text-align: center;
transition: 0.5s;
width: 48px;
height: 48px;
line-height: 50px;
background-color: rgba(204, 204, 204, 0.3);
}
.mf-slides-wrapper .slick-arrow:hover {
background-color: #ccc;
}
.mf-slides-wrapper .slick-prev-arrow {
left: 0;
}
.mf-slides-wrapper .slick-next-arrow {
right: 0;
left: auto;
}
.mf-slides-wrapper .slick-dots {
margin: 0;
position: absolute;
bottom: 20px;
left: 0;
right: 0;
}
.mf-slides-wrapper .slick-dots li {
margin-bottom: 0;
padding-right: 12px;
padding-left: 0;
}
.mf-slides-wrapper .slick-dots li:last-child {
padding-right: 0;
}
.mf-slides-wrapper .slick-dots li button {
width: 10px;
height: 10px;
background-color: #cccccc;
border: none;
}
.mf-slides-wrapper .slick-dots li.slick-active button, .mf-slides-wrapper .slick-dots li:hover button {
background-color: #04192c;
}
.mf-slides-wrapper .arrows-container {
height: 100%;
position: relative;
max-width: 1170px;
margin: 0 auto;
}
.mf-slides-wrapper .arrows-wrapper {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.mf--v-position-top .slick-slide-inner {
align-items: flex-start;
}
.mf--v-position-bottom .slick-slide-inner {
align-items: flex-end;
}
.mf--v-position-middle .slick-slide-inner {
align-items: center;
}
.mf--h-position-left .slick-slide-inner {
justify-content: flex-start;
}
.mf--h-position-right .slick-slide-inner {
justify-content: flex-end;
}
.mf--h-position-center .slick-slide-inner {
justify-content: center;
}
.mf-slides-wrapper div:not(.slick-slide) > .slick-slide-inner {
display: none;
}
.mf-slides-wrapper.align-icon-left .mf-slide-button {
flex-direction: row-reverse;
}
.elementor-page .martfury-newletter {
background-color: #f8f8f8;
border-style: solid;
border-width: 1px;
border-color: #ccc;
}
.elementor-page .martfury-newletter .form-image {
text-align: center;
}
.elementor-page .martfury-newletter .btn-area {
justify-content: flex-start;
}
.elementor-page .martfury-newletter.has-icon .mc4wp-form-fields {
position: relative;
}
.elementor-page .martfury-newletter.has-icon .mc4wp-form-fields input[type="email"] {
padding-left: 75px;
}
.elementor-page .martfury-newletter.has-icon .mc4wp-form-fields input[type="email"],
.elementor-page .martfury-newletter.has-icon .mc4wp-form-fields input[type="submit"] {
line-height: 42px;
height: 42px;
}
.elementor-page .martfury-newletter.has-icon .mc4wp-form-fields::before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
left: 30px;
top: 0;
bottom: 0;
font-size: 24px;
color: var(--mf-dark-color);
line-height: 38px;
}
.elementor-page .martfury-latest-post .extra-links {
padding: 0;
margin: 0;
}
.elementor-page .martfury-latest-post .extra-links li {
padding-left: 25px;
padding-right: 0;
}
.elementor-page .martfury-latest-post .extra-links li:first-child {
padding-left: 0;
}
.elementor-page .martfury-latest-post .post-header {
margin-bottom: 35px;
}
.elementor-page .martfury-latest-post .post-list {
padding-top: 0;
}
.mf-product-loop-hover-2 .mf-products-carousel ul.products li.product,
.mf-product-loop-hover-2 .mf-products-tabs-carousel ul.products li.product,
.mf-product-loop-hover-2 .mf-products-top-carousel ul.products li.product,
.mf-product-loop-hover-2 section.up-sells ul.products li,
.mf-product-loop-hover-2 section.related ul.products li {
margin-bottom: 0;
}
@media (min-width: 992px) {
.mf-product-loop-hover-2 .mf-products-of-category .products-box ul.products {
border-left: 1px solid #e1e1e1;
border-right: 1px solid #e1e1e1;
margin-right: 1px;
}
.mf-product-loop-hover-2 .mf-products-of-category .products-box ul.products li.product .mf-product-details-hover {
display: block;
}
.mf-product-loop-hover-2 .mf-products-of-category .products-box ul.products li.product .product-inner:hover .mf-product-details-hover {
border-color: #e1e1e1;
}
.mf-product-loop-hover-2 .mf-products-carousel ul.products li.product .product-inner,
.mf-product-loop-hover-2 .mf-products-tabs-carousel ul.products li.product .product-inner,
.mf-product-loop-hover-2 .mf-products-tabs .tabs-panel ul.products li.product .product-inner,
.mf-product-loop-hover-2 .mf-products-top-carousel ul.products li.product .product-inner,
.mf-product-loop-hover-2 section.up-sells ul.products li.product .product-inner,
.mf-product-loop-hover-2 section.related ul.products li.product .product-inner,
.mf-product-loop-hover-2 .mf-brands-grid ul.products li.product .product-inner {
margin-bottom: 75px;
}
.mf-product-loop-hover-2 .mf-products-carousel ul.products ul.slick-dots,
.mf-product-loop-hover-2 .mf-products-tabs-carousel ul.products ul.slick-dots,
.mf-product-loop-hover-2 .mf-products-tabs .tabs-panel ul.products ul.slick-dots,
.mf-product-loop-hover-2 .mf-products-top-carousel ul.products ul.slick-dots,
.mf-product-loop-hover-2 section.up-sells ul.products ul.slick-dots,
.mf-product-loop-hover-2 section.related ul.products ul.slick-dots,
.mf-product-loop-hover-2 .mf-brands-grid ul.products ul.slick-dots {
margin: 0;
}
.mf-product-loop-hover-2.mf-product-vendor-hover .mf-products-carousel ul.products li.product .product-inner,
.mf-product-loop-hover-2.mf-product-vendor-hover .mf-products-tabs-carousel ul.products li.product .product-inner,
.mf-product-loop-hover-2.mf-product-vendor-hover .mf-products-tabs .tabs-panel ul.products li.product .product-inner,
.mf-product-loop-hover-2.mf-product-vendor-hover .mf-products-top-carousel ul.products li.product .product-inner,
.mf-product-loop-hover-2.mf-product-vendor-hover section.up-sells ul.products li.product .product-inner,
.mf-product-loop-hover-2.mf-product-vendor-hover section.related ul.products li.product .product-inner,
.mf-product-loop-hover-2.mf-product-vendor-hover .mf-brands-grid ul.products li.product .product-inner {
margin-bottom: 95px;
}
.mf-product-loop-hover-2 .mf-product-deals-day ul.products {
margin: 0;
width: 100%;
}
.mf-product-loop-hover-2 .mf-product-deals-day ul.products li.product {
padding-left: 0;
padding-right: 0;
}
.mf-product-loop-hover-2 .mf-product-deals-day ul.products li.product .product-inner {
position: relative;
padding: 20px 20px 75px;
border: 1px solid transparent;
border-bottom: none;
margin-bottom: 0;
}
.mf-product-loop-hover-2 .mf-product-deals-day ul.products li.product .product-inner:hover {
border-color: #c0c0c0;
}
.mf-product-loop-hover-2 .mf-product-deals-day ul.products li.product .mf-product-details-hover {
bottom: 0;
top: auto;
min-height: auto;
left: -1px;
right: -1px;
}
.mf-product-loop-hover-2 .mf-product-deals-day ul.products ul.slick-dots {
margin: 0;
}
}
.martfury-image-box-carousel__heading {
display: flex;
align-items: center;
margin-bottom: 41px;
}
.martfury-image-box-carousel__heading .slick-arrows {
position: relative;
margin-left: auto;
}
.martfury-image-box-carousel__heading .slick-arrows .slick-arrow {
display: inline-flex;
justify-content: center;
align-items: center;
position: static;
top: 0;
transform: none;
background-color: #e4e5ed;
border-radius: 6px;
width: 28px;
height: 28px;
font-size: 10px;
transition: .25s;
}
.martfury-image-box-carousel__heading .slick-arrows .slick-arrow.icon-chevron-left {
margin-right: 2px;
}
.martfury-image-box-carousel__heading .slick-arrows .slick-arrow:hover {
background-color: var(--mf-primary-color);
color: #ffffff;
}
.martfury-image-box-carousel__heading-title {
font-size: 30px;
line-height: 26px;
letter-spacing: -0.75px;
color: var(--mf-dark-color);
font-weight: 500;
}
.martfury-image-box-carousel__heading-button {
margin-left: 58px;
}
.martfury-image-box-carousel__heading-button a,
.martfury-image-box-carousel__heading-button span {
display: flex;
align-items: center;
font-size: 14px;
color: var(--mf-dark-color);
text-transform: uppercase;
line-height: 1;
}
.martfury-image-box-carousel__heading-button a::after,
.martfury-image-box-carousel__heading-button span::after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: inherit;
margin-left: 9px;
}
.martfury-image-box-carousel__wrapper {
margin: 0 -15px;
}
.martfury-image-box-carousel__wrapper:not(.slick-initialized) {
display: flex;
flex-wrap: nowrap;
}
.martfury-image-box-carousel__content {
padding: 0 15px;
}
.martfury-image-box-carousel__image a {
display: block;
position: relative;
}
.martfury-image-box-carousel__image-title {
display: inline-flex;
justify-content: center;
text-align: center;
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
padding: 0 15px;
font-size: 26px;
line-height: 26px;
color: #ffffff;
text-transform: uppercase;
font-weight: 500;
}
.martfury-image-box-carousel__content-title {
margin-top: 15px;
}
.martfury-image-box-carousel__content-link {
display: inline;
font-size: 18px;
line-height: 26px;
font-weight: 500;
color: var(--mf-dark-color);
}
.martfury-image-box-carousel__content-link:hover {
color: var(--mf-dark-color);
}
.elementor .martfury-image-box-carousel__content-link {
--mf-color-box-shadow: transparent;
box-shadow: inset 0 0 white, inset 0 -0.07em var(--mf-color-box-shadow);
}
.elementor .martfury-image-box-carousel__content-link:hover {
--mf-color-box-shadow: #000;
}
.martfury-image-box-carousel__content-description {
margin-top: 10px;
}
.mf-product-recently-viewed-carousel__heading {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 41px;
}
.mf-product-recently-viewed-carousel__heading-title {
font-size: 30px;
line-height: 26px;
letter-spacing: -0.75px;
color: var(--mf-dark-color);
font-weight: 500;
}
.mf-product-recently-viewed-carousel__heading-button {
margin-left: 58px;
}
.mf-product-recently-viewed-carousel__heading-button a,
.mf-product-recently-viewed-carousel__heading-button span {
display: flex;
align-items: center;
font-size: 14px;
color: var(--mf-dark-color);
text-transform: uppercase;
line-height: 1;
}
.mf-product-recently-viewed-carousel__heading-button a::after,
.mf-product-recently-viewed-carousel__heading-button span::after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: inherit;
margin-left: 9px;
}
.mf-product-recently-viewed-carousel ul.products:not(.slick-initialized) {
display: flex;
flex-wrap: nowrap;
overflow: hidden;
}
.mf-product-recently-viewed-carousel ul.products:not(.slick-initialized) li.product {
flex-shrink: 0;
}
.mf-product-recently-viewed-carousel ul.products .slick-list {
margin-left: -1px;
margin-right: -1px;
}
.mf-product-recently-viewed-carousel ul.products .slick-dots {
margin-bottom: 0;
margin-top: 15px;
}
.mf-product-recently-viewed-carousel ul.products .slick-dots li button {
background-color: #ccc;
border: none;
}
.mf-product-recently-viewed-carousel ul.products .slick-dots li:hover button, .mf-product-recently-viewed-carousel ul.products .slick-dots li.slick-active button {
background-color: var(--mf-background-primary-color);
}
.mf-product-recently-viewed-carousel ul.products .slick-arrow {
font-size: 30px;
color: #ccc;
text-align: center;
transition: 0.35s;
z-index: 99;
}
.mf-product-recently-viewed-carousel ul.products .slick-arrow:hover {
color: #000;
}
.mf-product-recently-viewed-carousel ul.products .slick-arrow.slick-disabled {
color: #ccc;
cursor: auto;
}
.mf-product-recently-viewed-carousel ul.products .slick-prev-arrow {
left: -50px;
}
.mf-product-recently-viewed-carousel ul.products .slick-next-arrow {
right: -50px;
}
.mf-product-recently-viewed-carousel ul.products li.product .product-inner {
display: flex;
padding: 19px;
margin-bottom: 0;
}
.mf-product-recently-viewed-carousel ul.products li.product .product-inner .mf-product-thumbnail {
max-width: 110px;
margin-right: 20px;
margin-bottom: 0;
}
.mf-product-recently-viewed-carousel ul.products li.product .product-inner .mf-product-content .woo-loop-product__title {
padding-bottom: 17px;
}
.mf-product-recently-viewed-carousel ul.products li.product .product-inner .mf-product-content .woo-loop-product__title a:hover {
text-decoration: none;
}
.martfury-instagram-grid {
position: relative;
}
.martfury-instagram-grid .instagram-wrapper {
list-style: none;
padding: 0;
margin: 0 -5px;
display: grid;
grid-gap: 0;
grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
grid-auto-flow: dense;
}
.martfury-instagram-grid .instagram-wrapper li {
margin: 0;
padding: 0 5px 5px 0;
}
.martfury-instagram-grid .instagram-wrapper img {
display: block;
}
.martfury-instagram-grid .instagram-wrapper a {
position: relative;
}
.martfury-instagram-grid .instagram-wrapper a:hover:before,
.martfury-instagram-grid .instagram-wrapper a:hover .social {
opacity: 1;
visibility: visible;
}
.martfury-instagram-grid .instagram-wrapper a:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
opacity: 0;
visibility: hidden;
transition: .3s;
}
.martfury-instagram-grid .instagram-wrapper .social {
font-size: 24px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: #fff;
opacity: 0;
visibility: hidden;
z-index: 1;
transition: .3s;
}
@media (min-width: 1025px) {
.columns-1 .martfury-element-columns .elementor-column-item {
width: 100%;
}
.columns-1 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/1 * 100%), 1fr));
}
.columns-2 .martfury-element-columns .elementor-column-item {
width: 50%;
}
.columns-2 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/2 * 100%), 1fr));
}
.columns-3 .martfury-element-columns .elementor-column-item {
width: 33.33%;
}
.columns-3 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/3 * 100%), 1fr));
}
.columns-4 .martfury-element-columns .elementor-column-item {
width: 25%;
}
.columns-4 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/4 * 100%), 1fr));
}
.columns-5 .martfury-element-columns .elementor-column-item {
width: 20%;
}
.columns-5 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/5 * 100%), 1fr));
}
.columns-6 .martfury-element-columns .elementor-column-item {
width: 16.66%;
}
.columns-6 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/6 * 100%), 1fr));
}
.columns-7 .martfury-element-columns .elementor-column-item {
width: 14.28%;
}
.columns-7 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/7 * 100%), 1fr));
}
.columns-8 .martfury-element-columns .elementor-column-item {
width: 12.5%;
}
.columns-8 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/8 * 100%), 1fr));
}
.columns-9 .martfury-element-columns .elementor-column-item {
width: 11.11%;
}
.columns-9 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/9 * 100%), 1fr));
}
.columns-10 .martfury-element-columns .elementor-column-item {
width: 10%;
}
.columns-10 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/10 * 100%), 1fr));
}
}
@media (max-width: 1024px) and (min-width: 768px) {
.columns--tablet1 .martfury-element-columns .elementor-column-item {
width: 100%;
}
.columns--tablet1 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/1 * 100%), 1fr));
}
.columns--tablet2 .martfury-element-columns .elementor-column-item {
width: 50%;
}
.columns--tablet2 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/2 * 100%), 1fr));
}
.columns--tablet3 .martfury-element-columns .elementor-column-item {
width: 33.33%;
}
.columns--tablet3 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/3 * 100%), 1fr));
}
.columns--tablet4 .martfury-element-columns .elementor-column-item {
width: 25%;
}
.columns--tablet4 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/4 * 100%), 1fr));
}
.columns--tablet5 .martfury-element-columns .elementor-column-item {
width: 20%;
}
.columns--tablet5 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/5 * 100%), 1fr));
}
.columns--tablet6 .martfury-element-columns .elementor-column-item {
width: 16.66%;
}
.columns--tablet6 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/6 * 100%), 1fr));
}
.columns--tablet7 .martfury-element-columns .elementor-column-item {
width: 14.28%;
}
.columns--tablet7 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/7 * 100%), 1fr));
}
.columns--tablet8 .martfury-element-columns .elementor-column-item {
width: 12.5%;
}
.columns--tablet8 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/8 * 100%), 1fr));
}
.columns--tablet9 .martfury-element-columns .elementor-column-item {
width: 11.11%;
}
.columns--tablet9 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/9 * 100%), 1fr));
}
.columns--tablet10 .martfury-element-columns .elementor-column-item {
width: 10%;
}
.columns--tablet10 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/10 * 100%), 1fr));
}
.martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/3 * 100%), 1fr));
}
}
@media (max-width: 767px) {
.columns--mobile1 .martfury-element-columns .elementor-column-item {
width: 100%;
}
.columns--mobile1 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/1 * 100%), 1fr));
}
.columns--mobile2 .martfury-element-columns .elementor-column-item {
width: 50%;
}
.columns--mobile2 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/2 * 100%), 1fr));
}
.columns--mobile3 .martfury-element-columns .elementor-column-item {
width: 33.33%;
}
.columns--mobile3 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/3 * 100%), 1fr));
}
.columns--mobile4 .martfury-element-columns .elementor-column-item {
width: 25%;
}
.columns--mobile4 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/4 * 100%), 1fr));
}
.columns--mobile5 .martfury-element-columns .elementor-column-item {
width: 20%;
}
.columns--mobile5 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/5 * 100%), 1fr));
}
.columns--mobile6 .martfury-element-columns .elementor-column-item {
width: 16.66%;
}
.columns--mobile6 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/6 * 100%), 1fr));
}
.columns--mobile7 .martfury-element-columns .elementor-column-item {
width: 14.28%;
}
.columns--mobile7 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/7 * 100%), 1fr));
}
.columns--mobile8 .martfury-element-columns .elementor-column-item {
width: 12.5%;
}
.columns--mobile8 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/8 * 100%), 1fr));
}
.columns--mobile9 .martfury-element-columns .elementor-column-item {
width: 11.11%;
}
.columns--mobile9 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/9 * 100%), 1fr));
}
.columns--mobile10 .martfury-element-columns .elementor-column-item {
width: 10%;
}
.columns--mobile10 .martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/10 * 100%), 1fr));
}
.martfury-element-columns .instagram-wrapper {
grid-template-columns: repeat(auto-fill, minmax(calc(1/2 * 100%), 1fr));
}
}
@media (max-width: 1400px) and (min-width: 1200px) {
.mf-elementor-icons-list .separator {
display: none;
}
}
@media (max-width: 1600px) and (min-width: 1320px) {
.page-template-template-home-full-width .mf-elementor-image-box .box-title {
font-size: 14px;
}
.page-template-template-home-full-width .mf-elementor-image-box .image-content {
padding-left: 10px;
padding-right: 10px;
}
}
@media (max-width: 1319px) and (min-width: 1200px) {
.page-template-template-home-full-width .mf-elementor-image-box .box-title {
font-size: 12px;
}
.page-template-template-home-full-width .mf-elementor-image-box .image-content {
padding-left: 5px;
padding-right: 5px;
}
}
@media (min-width: 992px) {
.elementor-page .mf-products-of-category-2 .col-product-content {
width: 100%;
}
.elementor-page .mf-products-of-category-2 .has-side-product {
width: 73.5%;
}
.elementor-page .mf-products-of-category-2 .side-products {
width: 27.5%;
}
.mf-product-deals-day ul.products.columns-7,
.mf-product-deals-day ul.products.columns-6,
.mf-products-tabs-carousel ul.products.columns-7,
.mf-products-tabs-carousel ul.products.columns-6,
.mf-products-carousel ul.products.columns-7,
.mf-products-carousel ul.products.columns-6 {
margin-left: -1px;
margin-right: -1px;
}
.mf-product-deals-day ul.products.columns-7 li.product,
.mf-product-deals-day ul.products.columns-6 li.product,
.mf-products-tabs-carousel ul.products.columns-7 li.product,
.mf-products-tabs-carousel ul.products.columns-6 li.product,
.mf-products-carousel ul.products.columns-7 li.product,
.mf-products-carousel ul.products.columns-6 li.product {
padding-right: 3px;
}
}
@media (min-width: 1025px) {
.mf-elementor-navigation.navigation-dots .slick-arrow, .mf-elementor-navigation.navigation-none .slick-arrow,
.mf-elementor-products-navigation.navigation-dots .slick-arrow,
.mf-elementor-products-navigation.navigation-none .slick-arrow,
.mf-elementor-testimonial-slides.navigation-dots .slick-arrow,
.mf-elementor-testimonial-slides.navigation-none .slick-arrow,
.mf-slides-wrapper.navigation-dots .slick-arrow,
.mf-slides-wrapper.navigation-none .slick-arrow {
display: none !important;
}
.mf-elementor-navigation.navigation-arrows .slick-dots, .mf-elementor-navigation.navigation-none .slick-dots,
.mf-elementor-products-navigation.navigation-arrows .slick-dots,
.mf-elementor-products-navigation.navigation-none .slick-dots,
.mf-elementor-testimonial-slides.navigation-arrows .slick-dots,
.mf-elementor-testimonial-slides.navigation-none .slick-dots,
.mf-slides-wrapper.navigation-arrows .slick-dots,
.mf-slides-wrapper.navigation-none .slick-dots {
display: none !important;
}
}
@media (max-width: 1366px) {
.mf-elementor-testimonial-slides--center.navigation-arrows .slick-arrow {
display: none !important;
}
.mf-elementor-testimonial-slides--center.navigation-arrows .slick-dots {
display: block !important;
}
}
@media (max-width: 1199px) {
.elementor-page .mf-products-carousel:not(.mf-product-deals-day) .cat-header {
display: flex;
}
.elementor-page .mf-products-carousel:not(.mf-product-deals-day) .cat-header .extra-links {
margin-top: 0;
}
.elementor-page .mf-products-list .cat-header,
.elementor-page .mf-products-grid .cat-header {
display: flex;
flex-wrap: wrap;
}
.elementor-page .mf-products-list .cat-header .extra-links,
.elementor-page .mf-products-grid .cat-header .extra-links {
margin-top: 0;
}
}
@media (max-width: 1024px) {
.mf-elementor-process .process-step:before {
transform: unset;
left: 65px;
}
.mf-elementor-process .process-step .step {
left: 15px;
transform: none;
}
.mf-elementor-process .process-content {
flex-direction: column !important;
padding-left: 120px;
}
.mf-elementor-process .process-content > div[class*="col"] {
width: 100%;
}
.mf-elementor-process .process-image {
text-align: left;
margin-bottom: 30px;
}
.elementor-page .martfury-newletter .newsletter-row {
display: block;
}
.elementor-page .martfury-newletter .form-image,
.elementor-page .martfury-newletter .form-area {
width: 100%;
float: none;
}
.elementor-page .martfury-newletter .form-area {
padding-right: 60px;
padding-top: 50px;
padding-bottom: 50px;
text-align: center;
}
.elementor-page .martfury-newletter .btn-area {
justify-content: center;
}
}
@media (max-width: 1024px) and (min-width: 768px) {
.mf-elementor-navigation.navigation-tablet-dots .slick-arrow, .mf-elementor-navigation.navigation-tablet-none .slick-arrow,
.mf-elementor-products-navigation.navigation-tablet-dots .slick-arrow,
.mf-elementor-products-navigation.navigation-tablet-none .slick-arrow,
.mf-elementor-testimonial-slides.navigation-tablet-dots .slick-arrow,
.mf-elementor-testimonial-slides.navigation-tablet-none .slick-arrow,
.mf-slides-wrapper.navigation-tablet-dots .slick-arrow,
.mf-slides-wrapper.navigation-tablet-none .slick-arrow {
display: none !important;
}
.mf-elementor-navigation.navigation-tablet-arrows .slick-dots, .mf-elementor-navigation.navigation-tablet-none .slick-dots,
.mf-elementor-products-navigation.navigation-tablet-arrows .slick-dots,
.mf-elementor-products-navigation.navigation-tablet-none .slick-dots,
.mf-elementor-testimonial-slides.navigation-tablet-arrows .slick-dots,
.mf-elementor-testimonial-slides.navigation-tablet-none .slick-dots,
.mf-slides-wrapper.navigation-tablet-arrows .slick-dots,
.mf-slides-wrapper.navigation-tablet-none .slick-dots {
display: none !important;
}
.elementor-position--tablettop .mf-elementor-image-box {
flex-direction: column;
}
.elementor-position--tabletright .mf-elementor-image-box {
flex-direction: row-reverse;
}
}
@media (max-width: 991px) {
.elementor-page .mf-products-of-category-2 .side-products {
padding-left: 15px;
}
.elementor-page .mf-products-of-category-2 .col-product-content {
padding-right: 15px;
}
.elementor-page .mf-products-of-category-2 .mf-products-tabs {
margin-top: 0;
}
}
@media (max-width: 767px) {
.mf-elementor-navigation.navigation-mobile-dots .slick-arrow, .mf-elementor-navigation.navigation-mobile-none .slick-arrow,
.mf-elementor-products-navigation.navigation-mobile-dots .slick-arrow,
.mf-elementor-products-navigation.navigation-mobile-none .slick-arrow,
.mf-elementor-testimonial-slides.navigation-mobile-dots .slick-arrow,
.mf-elementor-testimonial-slides.navigation-mobile-none .slick-arrow,
.mf-slides-wrapper.navigation-mobile-dots .slick-arrow,
.mf-slides-wrapper.navigation-mobile-none .slick-arrow {
display: none !important;
}
.mf-elementor-navigation.navigation-mobile-arrows .slick-dots, .mf-elementor-navigation.navigation-mobile-none .slick-dots,
.mf-elementor-products-navigation.navigation-mobile-arrows .slick-dots,
.mf-elementor-products-navigation.navigation-mobile-none .slick-dots,
.mf-elementor-testimonial-slides.navigation-mobile-arrows .slick-dots,
.mf-elementor-testimonial-slides.navigation-mobile-none .slick-dots,
.mf-slides-wrapper.navigation-mobile-arrows .slick-dots,
.mf-slides-wrapper.navigation-mobile-none .slick-dots {
display: none !important;
}
.elementor-page .mf-products-tabs .tabs-header {
display: flex;
}
.elementor-page .mf-products-tabs .tabs-header .tabs-header-nav {
display: flex;
margin-top: 0;
}
.elementor-page .mf-products-tabs .tabs-header .tabs-header-nav .tabs-nav {
margin-bottom: 0;
}
.elementor-page .mobile-version .mf-products-carousel:not(.mf-product-deals-day) .cat-header .cat-title {
font-size: 24px;
}
.elementor-page .martfury-latest-post .post-header {
display: flex;
flex-wrap: wrap;
}
.elementor-page .martfury-latest-post .post-header .extra-links {
margin-top: 0;
padding-left: 0;
margin-left: 0;
margin-right: 0;
}
.elementor-page .martfury-latest-post .post-header .extra-links li {
padding-left: 25px;
padding-right: 0;
}
.elementor-page .martfury-latest-post .post-header .extra-links li:first-child {
padding-left: 0;
}
.mf-elementor-process .process-step .step {
width: 60px;
height: 60px;
line-height: 60px;
font-size: 30px;
}
.mf-elementor-process .process-step:before {
left: 44px;
}
.mf-elementor-process .process-content {
padding-left: 85px;
}
.elementor-page .martfury-newletter .form-area {
padding-left: 15px;
padding-right: 15px;
}
.elementor-position--tablettop .mf-elementor-image-box {
flex-direction: column;
}
.elementor-position--tabletright .mf-elementor-image-box {
flex-direction: row-reverse;
}
.elementor-page .mf-category-tabs .tabs-content ul li {
margin-top: 0;
margin-bottom: 10px;
}
.martfury-image-box-carousel__wrapper {
margin: 0 -7.5px;
}
.martfury-image-box-carousel__content {
padding: 0 7.5px;
}
.mf-product-recently-viewed-carousel__heading,
.martfury-image-box-carousel__heading {
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 30px;
}
.martfury-image-box-carousel__heading-title {
font-size: 24px;
}
.mf-product-recently-viewed-carousel__heading-button,
.martfury-image-box-carousel__heading-button {
margin-left: 0;
margin-top: 15px;
}
.martfury-image-box-carousel__image-title {
font-size: 18px;
}
.martfury-image-box-carousel:not(.navigation-mobile-arrow) .slick-arrows {
display: none;
}
}
body .elementor-widget:not(:last-child) {
margin-bottom: 0;
}
.elementor-page .elementor-widget-heading .elementor-heading-title {
font-family: inherit;
line-height: 1.2;
}
.elementor-page .elementor-widget-text-editor {
font-family: inherit;
}
.elementor-page .martfury-member .socials .link svg {
display: inline-block;
}
.elementor-page .mf-category-tabs .tabs-title {
margin-bottom: 0;
padding-bottom: 20px;
}
.elementor-page .mf-category-tabs .tabs-header {
border-width: 0 0 1px 0;
}
.elementor-page .mf-category-tabs .tabs-header ul li .mf-icon {
font-size: 36px;
}
.elementor-page .mf-category-tabs .tabs-header ul li .mf-icon i {
font-size: inherit;
}
.elementor-page .mf-category-tabs .tabs-header ul li svg {
margin: 0 auto;
}
.elementor-page .mf-category-tabs .tabs-header ul li a.active svg {
fill: #fcb800;
}
.elementor-page .mf-category-tabs .tabs-content {
padding-top: 50px;
}
.elementor-page .mf-category-tabs .tabs-content ul li {
margin-top: 0;
}
.elementor-page .mf-category-tabs .tabs-content ul li {
margin-top: 0;
margin-bottom: 30px;
}
.elementor-page .mf-product-deals-carousel,
.elementor-page .martfury-tabs .tabs-content {
background-color: #fff;
}
.elementor-page .site-content footer {
clear: both;
}
.elementor_library-template-default .post-author-box,
.elementor_library-template-default .post-navigation {
display: none;
}
.elementor-editor-active .mf-product-deals-carousel div.product div.images .woocommerce-product-gallery {
opacity: 1 !important;
}
.elementor-editor-active .mf-product-deals-carousel div.product div.images .woocommerce-product-gallery .woocommerce-product-gallery__image {
display: none;
}
.elementor-editor-active .mf-product-deals-carousel div.product div.images .woocommerce-product-gallery .woocommerce-product-gallery__image:first-child {
display: block;
}
.elementor-columns-no-space .elementor-section > .elementor-column-gap-default > .elementor-row > .elementor-column > .elementor-element-populated,
.elementor-columns-no-space .elementor-section > .elementor-column-gap-narrow > .elementor-row > .elementor-column > .elementor-element-populated,
.elementor-columns-no-space .elementor-section > .elementor-column-gap-extended > .elementor-row > .elementor-column > .elementor-element-populated,
.elementor-columns-no-space .elementor-section > .elementor-column-gap-wide > .elementor-row > .elementor-column > .elementor-element-populated,
.elementor-columns-no-space .elementor-section > .elementor-column-gap-wider > .elementor-row > .elementor-column > .elementor-element-populated {
padding-top: 0;
padding-bottom: 0;
}
.elementor .elementor-section > .elementor-column-gap-extended > .elementor-row {
margin-left: -15px;
margin-right: -15px;
width: calc(100% + 30px);
}
.elementor .elementor-section > .elementor-column-gap-default > .elementor-row {
margin-left: -10px;
margin-right: -10px;
width: calc(100% + 20px);
}
.elementor .elementor-section > .elementor-column-gap-narrow > .elementor-row {
margin-left: -5px;
margin-right: -5px;
width: calc(100% + 10px);
}
.elementor .elementor-section > .elementor-column-gap-wide > .elementor-row {
margin-left: -15px;
margin-right: -15px;
width: calc(100% + 30px);
}
.elementor .elementor-section > .elementor-column-gap-wide > .elementor-row > .elementor-column > .elementor-element-populated {
padding-left: 15px;
padding-right: 15px;
}
.elementor .elementor-section > .elementor-column-gap-wider > .elementor-row {
margin-left: -15px;
margin-right: -15px;
width: calc(100% + 30px);
}
.elementor .elementor-section > .elementor-column-gap-wider > .elementor-row > .elementor-column > .elementor-element-populated {
padding-left: 15px;
padding-right: 15px;
}
.page-template-template-homepage .elementor-section-full_width > .elementor-container > .elementor-row,
.page-template-template-home-full-width .elementor-section-full_width > .elementor-container > .elementor-row,
.page-template-template-full-width .elementor-section-full_width > .elementor-container > .elementor-row {
margin-left: 0;
margin-right: 0;
width: 100%;
}
.tz-flex-column-horizontal > .elementor-column-wrap .elementor-widget-wrap > .elementor-element {
width: auto;
}
@media (max-width: 767px) {
.elementor .elementor-hidden-phone {
display: none;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
.elementor .elementor-hidden-tablet {
display: none;
}
}
@media (min-width: 1025px) {
.elementor .elementor-hidden-desktop {
display: none;
}
}
@media (max-width: 767px) {
.page-template-template-homepage:not(.elementor-no-row) .elementor-top-section:not(.elementor-section-full_width) > .elementor-container,
.page-template-template-full-width:not(.elementor-no-row) .elementor-top-section:not(.elementor-section-full_width) > .elementor-container,
.page-template-template-home-full-width:not(.elementor-no-row) .elementor-top-section:not(.elementor-section-full_width) > .elementor-container {
padding-left: 15px;
padding-right: 15px;
}
.page-template-template-homepage:not(.elementor-no-row) .elementor-top-section:not(.elementor-section-full_width) > .elementor-column-gap-no,
.page-template-template-full-width:not(.elementor-no-row) .elementor-top-section:not(.elementor-section-full_width) > .elementor-column-gap-no,
.page-template-template-home-full-width:not(.elementor-no-row) .elementor-top-section:not(.elementor-section-full_width) > .elementor-column-gap-no {
padding-left: 0;
padding-right: 0;
}
}
@media (min-width: 768px) {
.elementor .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 730px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-default {
max-width: 750px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-extended {
max-width: 760px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-narrow {
max-width: 740px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-wider {
max-width: 760px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-wide {
max-width: 760px;
}
}
@media (min-width: 992px) {
.elementor .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 970px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-default {
max-width: 990px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-extended {
max-width: 990px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-narrow {
max-width: 980px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-wider {
max-width: 990px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-wide {
max-width: 990px;
}
}
@media (min-width: 1200px) {
.elementor .elementor-section.elementor-section-boxed > .elementor-container {
max-width: 1170px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-default {
max-width: 1190px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-extended {
max-width: 1200px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-narrow {
max-width: 1180px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-wider {
max-width: 1200px;
}
.elementor-no-row .elementor-section.elementor-section-boxed > .elementor-column-gap-wide {
max-width: 1200px;
}
}
@media (min-width: 1230px) {
.elementor .elementor-section > .elementor-column-gap-wide > .elementor-row {
margin-left: -20px;
margin-right: -20px;
width: calc(100% + 40px);
}
.elementor .elementor-section > .elementor-column-gap-wide > .elementor-row > .elementor-column > .elementor-element-populated {
padding-left: 20px;
padding-right: 20px;
}
.elementor .elementor-section > .elementor-column-gap-wider > .elementor-row {
margin-left: -30px;
margin-right: -30px;
width: calc(100% + 60px);
}
.elementor .elementor-section > .elementor-column-gap-wider > .elementor-row > .elementor-column > .elementor-element-populated {
padding-left: 30px;
padding-right: 30px;
}
}
.has-small-font-size {
font-size: 13px;
}
ol {
padding-left: 20px;
}
hr.wp-block-separator {
background-color: #bbb;
border: 0;
height: 1px;
margin-bottom: 1.5em;
clear: both;
}
.wp-block-table {
margin: 0 0 2em;
}
ul.wp-block-categories,
.wp-block-archives {
list-style: none;
margin: 0 0 1em;
padding: 0;
}
ul.wp-block-categories ul,
.wp-block-archives ul {
list-style: none;
}
ul.wp-block-categories li a,
.wp-block-archives li a {
color: #000;
}
ul.wp-block-categories li a:hover,
.wp-block-archives li a:hover {
color: var(--mf-primary-color);
}
.wp-block-quote.is-large cite,
.wp-block-quote.is-style-large cite {
float: right;
}
.wp-block-quote.is-large:after,
.wp-block-quote.is-style-large:after {
clear: both;
content: "";
display: block;
}
.wp-block-quote cite,
.wp-block-quote footer,
.wp-block-quote__citation {
color: #000;
font-size: 14px;
margin-top: 30px;
}
.wp-block-quote:not(.is-large):not(.is-style-large) {
border-left: 4px solid var(--mf-border-primary-color);
padding: 0 40px 0 60px;
}
.wp-block-quote.is-large, .wp-block-quote.is-style-large {
padding: 0 40px 0 60px;
margin-bottom: 10px;
}
.wp-block-pullquote cite,
.wp-block-pullquote footer,
.wp-block-pullquote__citation {
display: inline-block;
font-size: 18px;
color: #000;
}
.wp-block-categories select {
padding: 10px;
border: 1px solid #d9d9d9;
}
ul.wp-block-latest-posts {
list-style: none;
margin: 0 0 1em;
padding: 0;
}
ul.wp-block-latest-posts li a {
color: #000;
}
ul.wp-block-latest-posts li a:hover {
color: var(--mf-primary-color);
}
.wp-block-pullquote {
padding: 45px 0;
}
.wp-block-pullquote blockquote {
padding: 0;
border-left: none;
border-right: none;
}
.wp-block-pullquote blockquote cite {
margin-top: 30px;
}
.wp-block-pullquote p {
margin-bottom: 0;
}
.wp-block-pullquote.alignleft cite,
.wp-block-pullquote.alignright cite {
font-size: 14px;
}
figure.is-resized {
margin: 0;
}
.aligncenter {
text-align: center;
}
img.alignright {
clear: both;
}
.wp-block-cover-image.has-background-dim::before, .wp-block-cover.has-background-dim::before {
background-color: rgba(0, 0, 0, 0.5);
opacity: 1;
}
.wp-block-image .alignleft {
margin-right: 20px;
}
.wp-block-image .alignright {
margin-left: 20px;
}
code {
color: #23282d;
border: 1px solid #eee;
background-color: #eee;
font-size: 15px;
border-radius: 4px;
padding: 2px 4px;
}
.wp-block-code code {
border: none;
}
@media only screen and (min-width: 960px) {
body {
overflow-x: hidden;
}
body.full-content .site-content .entry-content > *.alignfull {
width: auto;
max-width: 1000%;
margin-right: calc(50% - 50vw);
margin-left: calc(50% - 50vw);
}
body.full-content .site-content .entry-content > *.alignwide {
width: auto;
max-width: 1000%;
margin-right: calc(25% - 25vw);
margin-left: calc(25% - 25vw);
}
} .bypostauthor {
display: block;
}
.comments-area {
clear: both;
}
.comments-title {
font-size: 24px;
font-weight: 600;
color: #000;
padding: 0;
margin: 0;
text-align: center;
}
.comments-title.has-comments {
padding-bottom: 30px;
}
.comment-list {
list-style: none;
margin: 0;
padding: 0;
}
.comment-list.has-comments {
margin: 0 0 50px 0;
}
.comment-list li {
float: left;
clear: both;
width: 100%;
font-size: 13px;
}
.comment-list li .comment-respond {
margin-top: 0;
margin-bottom: 30px;
}
.comment-list li.comment .comment-meta {
float: left;
margin-right: 30px;
max-width: 70px;
}
.comment-list li .reply {
margin-top: 20px;
}
.comment-list li .comment-edit-link,
.comment-list li .comment-reply-link {
color: #0099cc;
font-style: italic;
font-weight: 400;
font-size: 14px;
display: inline-block;
padding-right: 15px;
}
.comment-list li .comment-edit-link:hover,
.comment-list li .comment-reply-link:hover {
color: #000;
}
.comment-list li .comment-metadata {
overflow: hidden;
margin-bottom: 15px;
}
.comment-list li .comment-edit-link {
margin-right: 20px;
}
.comment-list li.comment .comment-content {
margin-left: 100px;
}
.comment-list li .comment-content {
border-top: 1px solid #e1e1e1;
padding: 15px 0 30px 20px;
position: relative;
font-size: 14px;
}
.comment-list li .comment-content .comment-desc {
padding: 10px 0 5px;
}
.comment-list li .comment-content .date {
font-size: 12px;
text-transform: uppercase;
padding-left: 10px;
}
.comment-list li .comment-content a {
word-wrap: break-word;
}
.comment-list li .comment-content .fn a {
color: #333;
font-style: normal;
padding-right: 10px;
font-size: 14px;
font-weight: 600;
}
.comment-list .comment-respond {
margin-bottom: 50px;
}
.comment-list:after {
clear: both;
content: "";
display: block;
}
.comment-list .children {
list-style: none;
padding: 0 0 0 80px;
}
.comment-list .children article {
border-top-width: 0;
}
.comment-list .children:last-child {
margin-bottom: 0;
}
.comment-list .depth-5 .children {
padding-left: 0;
}
.comment-list > .comment:first-child article {
border: none;
}
.comments-area .comment-desc {
padding: 15px 0 5px;
color: #666;
}
.comments-area .date {
color: #666;
}
.comments-area .comments-links {
margin-bottom: 60px;
text-align: center;
}
.comments-area .comments-links .page-numbers {
font-size: 18px;
padding: 0 8px;
color: #999;
}
.comments-area .comments-links .page-numbers.current {
color: #000;
}
.comment-respond {
clear: both;
}
.comment-respond .logged-in-as {
margin-bottom: 10px;
}
.comment-respond .logged-in-as a {
color: #000;
}
.comment-respond .logged-in-as a:hover {
color: var(--mf-primary-color);
}
.comment-respond .comment-reply-title {
font-size: 24px;
font-weight: 600;
color: #000;
text-align: center;
padding-bottom: 35px;
margin: 0;
}
.comment-respond .comment-reply-title a {
color: #0099cc;
padding-left: 15px;
}
.comment-respond .comment-notes {
display: none;
}
.comment-respond input[type=text],
.comment-respond input[type=email],
.comment-respond textarea {
border: 1px solid #cfcfcf;
transition: 0.5s !important;
outline: none;
padding: 15px;
width: 100%;
color: #000;
font-size: 14px;
}
.comment-respond textarea {
height: 155px;
font-size: 14px !important;
}
.comment-respond p {
margin-bottom: 0;
margin-top: 0;
}
.comment-respond .comment-form-email {
padding-right: 0;
margin-bottom: 30px;
}
.comment-respond .comment-form-comment {
margin-bottom: 30px;
}
.comment-respond .comment-form-author {
padding-left: 0;
margin-bottom: 30px;
}
.comment-respond .comment-form-url {
padding-right: 0;
padding-left: 0;
margin-bottom: 30px;
}
.comment-respond .comment-message {
margin-top: 20px;
color: red;
min-height: 30px;
}
.comment-respond .form-submit {
clear: both;
position: relative;
text-align: center;
}
.comment-respond .form-submit .submit {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
border-radius: 4px;
}
.comment-awaiting-moderation {
display: block;
} .widget {
margin-bottom: 65px;
}
.widget .widget-title {
font-size: 20px;
font-weight: 600;
margin-bottom: 40px;
margin-top: 0;
color: #000;
}
.widget ul {
margin: 0;
padding: 0;
}
.widget ul li {
list-style: none;
margin-bottom: 0;
padding: 5px 0;
}
.widget ul li a {
color: #000;
}
.widget ul li a:hover {
color: var(--mf-primary-color);
}
.widget table,
.widget select {
width: 100%;
}
.widget select {
border: 1px solid #ccc;
height: 30px;
background-color: transparent;
}
.widget select option {
color: #999;
}
.widget .select2-container--default .select2-selection--single {
border-color: #d1d1d1;
height: 34px;
line-height: 1;
padding: 2px 10px;
border-radius: 0;
}
.widget .select2-container--default .select2-selection--single .select2-selection__arrow {
height: 32px;
}
.widget .select2-container--default .select2-selection--single .select2-selection__arrow b {
display: none;
}
.widget .select2-container--default .select2-selection--single .select2-selection__arrow:after {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 10px;
content: '\e93a';
display: inline-block;
font: normal normal normal 14px/1 linearicons;
color: #000;
}
.widget .select2-container--default .select2-selection--single:focus {
outline: none;
}
.widget table {
text-align: left;
width: 100%;
}
.widget table caption {
border: 1px solid #ccc;
border-bottom-width: 0;
text-align: center;
}
.widget table tr {
border: 1px solid #ccc;
border-bottom-width: 0;
padding: 3px 0;
}
.widget table tr td,
.widget table tr th {
padding: 0 5px;
border-bottom: 1px solid #ccc;
border-left: 1px solid #ccc;
}
.select2-container--open .select2-dropdown--below {
border-color: #d1d1d1;
}
.select2-container--open .select2-dropdown--below .select2-results__option {
margin-bottom: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
border-color: #d1d1d1;
padding: 6px;
}
.widget_calendar {
line-height: 26px;
}
.widget_calendar table {
border: none;
}
.widget_calendar table caption {
background-color: #e1e1e1;
font-size: 16px;
font-weight: 600;
padding: 10px 0;
color: #000;
}
.widget_calendar table tr th,
.widget_calendar table tr td {
background-color: #f7f7f7;
padding: 5px 10px;
text-align: center;
font-weight: 600;
}
.widget_calendar table tr th a,
.widget_calendar table tr td a {
color: #cc0000;
}
.widget_calendar table tr th {
border: none;
font-size: 16px;
}
.widget_calendar table tr td {
border-color: #dadada;
}
.widget_calendar table tfoot td a {
color: #000;
}
.search-form:not(.media-toolbar-primary) {
position: relative;
padding: 10px 20px;
border: 1px solid #d9d9d9;
color: #000;
}
.search-form:not(.media-toolbar-primary):after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 50%;
right: 17px;
transform: translateY(-50%);
font-size: 18px;
color: #000;
}
.search-form:not(.media-toolbar-primary) label {
margin-bottom: 0;
}
.search-form:not(.media-toolbar-primary) .screen-reader-text {
display: none;
}
.search-form:not(.media-toolbar-primary) label {
width: 100%;
}
.search-form:not(.media-toolbar-primary) .search-field {
border: none;
color: #000;
width: 100%;
background-color: transparent;
font-weight: 400;
}
.search-form:not(.media-toolbar-primary) .search-field:focus {
border: none;
outline: none;
}
.search-form:not(.media-toolbar-primary) ::-webkit-input-placeholder {
color: #999;
}
.search-form:not(.media-toolbar-primary) :-moz-placeholder {
color: #999;
}
.search-form:not(.media-toolbar-primary) ::-moz-placeholder {
color: #999;
}
.search-form:not(.media-toolbar-primary) :-ms-input-placeholder {
color: #999;
}
.search-form:not(.media-toolbar-primary) .search-submit {
width: 40px;
height: 40px;
background: transparent;
position: absolute;
top: 50%;
right: 5px;
transform: translateY(-50%);
border: none;
text-indent: -9999px;
z-index: 10;
}
.widget_categories li,
.widget_recent_comments li,
.widget_rss li,
.widget_pages li,
.widget_archive li,
.widget_nav_menu li,
.widget_recent_entries li,
.widget_meta li,
.widget-recent-comments li {
padding: 8px 0;
}
.widget_categories li:first-child,
.widget_recent_comments li:first-child,
.widget_rss li:first-child,
.widget_pages li:first-child,
.widget_archive li:first-child,
.widget_nav_menu li:first-child,
.widget_recent_entries li:first-child,
.widget_meta li:first-child,
.widget-recent-comments li:first-child {
padding-top: 0;
}
.widget_categories li:last-child,
.widget_recent_comments li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_archive li:last-child,
.widget_nav_menu li:last-child,
.widget_recent_entries li:last-child,
.widget_meta li:last-child,
.widget-recent-comments li:last-child {
padding-bottom: 0;
}
.widget_categories .children,
.widget_categories .sub-menu,
.widget_recent_comments .children,
.widget_recent_comments .sub-menu,
.widget_rss .children,
.widget_rss .sub-menu,
.widget_pages .children,
.widget_pages .sub-menu,
.widget_archive .children,
.widget_archive .sub-menu,
.widget_nav_menu .children,
.widget_nav_menu .sub-menu,
.widget_recent_entries .children,
.widget_recent_entries .sub-menu,
.widget_meta .children,
.widget_meta .sub-menu,
.widget-recent-comments .children,
.widget-recent-comments .sub-menu {
margin-top: 10px;
margin-left: 15px;
}
.widget_categories .children li a,
.widget_categories .sub-menu li a,
.widget_recent_comments .children li a,
.widget_recent_comments .sub-menu li a,
.widget_rss .children li a,
.widget_rss .sub-menu li a,
.widget_pages .children li a,
.widget_pages .sub-menu li a,
.widget_archive .children li a,
.widget_archive .sub-menu li a,
.widget_nav_menu .children li a,
.widget_nav_menu .sub-menu li a,
.widget_recent_entries .children li a,
.widget_recent_entries .sub-menu li a,
.widget_meta .children li a,
.widget_meta .sub-menu li a,
.widget-recent-comments .children li a,
.widget-recent-comments .sub-menu li a {
padding-left: 10px;
}
.widget_categories .children li:last-child,
.widget_categories .sub-menu li:last-child,
.widget_recent_comments .children li:last-child,
.widget_recent_comments .sub-menu li:last-child,
.widget_rss .children li:last-child,
.widget_rss .sub-menu li:last-child,
.widget_pages .children li:last-child,
.widget_pages .sub-menu li:last-child,
.widget_archive .children li:last-child,
.widget_archive .sub-menu li:last-child,
.widget_nav_menu .children li:last-child,
.widget_nav_menu .sub-menu li:last-child,
.widget_recent_entries .children li:last-child,
.widget_recent_entries .sub-menu li:last-child,
.widget_meta .children li:last-child,
.widget_meta .sub-menu li:last-child,
.widget-recent-comments .children li:last-child,
.widget-recent-comments .sub-menu li:last-child {
padding-bottom: 0;
border-bottom: none;
}
.widget_recent_comments ul li,
.widget_rss ul li {
line-height: 1.4;
}
.widget_recent_comments ul li a,
.widget_rss ul li a {
color: #000;
}
.widget_tag_cloud .tagcloud:after,
.widget_product_tag_cloud .tagcloud:after {
clear: both;
display: block;
content: "";
}
.widget_tag_cloud a,
.widget_product_tag_cloud a {
color: #999;
font-size: 14px;
text-transform: capitalize;
position: relative;
margin-right: 3px;
margin-bottom: 5px;
float: left;
}
.widget_tag_cloud a:hover,
.widget_product_tag_cloud a:hover {
color: #0099cc;
}
.widget_tag_cloud a.selected,
.widget_product_tag_cloud a.selected {
color: #0099cc;
}
.widget_tag_cloud a:last-child > span,
.widget_product_tag_cloud a:last-child > span {
display: none;
}
.widget_tag_cloud a {
font-size: 14px !important;
}
.widget_tag_cloud a:after {
content: ",";
display: inline-block;
}
.widget_tag_cloud a:last-child:after {
display: none;
}
.widget_product_tag_cloud a:hover {
color: var(--mf-primary-color);
}
.widget-recent-comments li {
padding: 20px 0;
color: #ccc;
}
.widget-recent-comments li a,
.widget-recent-comments li p {
color: #999;
}
.widget_recent_entries ul li a {
font-size: 16px;
font-weight: 600;
line-height: 1.1;
}
.social-links-widget .social-links-list,
.social-links-widget .socials {
margin: 0 -10px;
}
.social-links-widget .share-social {
color: #ccc;
padding: 0 10px;
margin-bottom: 10px;
display: inline-block;
}
.social-links-widget .share-social svg {
vertical-align: -0.125em;
width: 1em;
height: 1em;
fill: currentColor;
display: inline-block;
}
.social-links-widget .share-facebook {
color: #336699;
}
.social-links-widget .share-twitter {
color: #0f1419;
}
.social-links-widget .share-googleplus {
color: #cc0000;
}
.social-links-widget .share-youtube {
color: #cc3333;
}
.social-links-widget .share-tumblr {
color: #34526f;
}
.social-links-widget .share-linkedin {
color: #0077B5;
}
.social-links-widget .share-pinterest {
color: #c92228;
}
.social-links-widget .share-flickr {
color: #0063dc;
}
.social-links-widget .share-instagram {
color: #996633;
font-size: 16px;
}
.social-links-widget .share-dribbble {
color: #ea4c89;
}
.social-links-widget .share-skype {
color: #12a5f4;
}
.social-links-widget .share-rss {
color: #ee802f;
}
.social-links-widget .share-telegram {
color: #0088cc;
font-size: 18px;
}
.social-links-widget .share-whatsapp {
color: #25d366;
font-size: 18px;
}
.social-links-widget .share-viber {
color: #665CAC;
font-size: 18px;
}
.social-links-widget .share-vk {
color: #4C75A3;
font-size: 18px;
}
.social-links-widget .share-ok {
color: #ed812b;
font-size: 16px;
}
.social-links-widget .share-tiktok {
color: #000;
font-size: 16px;
}
.widget-language ul li {
display: inline-block;
margin-right: 25px;
}
.widget-language ul li a {
font-weight: 700;
color: #000;
text-transform: uppercase;
}
.widget-language ul li a:hover {
color: var(--mf-primary-color);
}
.widget-language ul li.active a {
color: var(--mf-primary-color);
}
.woocommerce-product-search {
position: relative;
border: 1px solid #f5f5f5;
color: #000;
background-color: #f5f5f5;
padding: 12px 20px;
}
.woocommerce-product-search:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
top: 50%;
right: 17px;
transform: translateY(-50%);
font-size: 18px;
color: #000;
}
.woocommerce-product-search label {
margin-bottom: 0;
}
.woocommerce-product-search .search-field {
border: none;
color: #000;
width: 100%;
background-color: transparent;
font-weight: 400;
}
.woocommerce-product-search .search-field:focus {
border: none;
outline: none;
}
.woocommerce-product-search ::-webkit-input-placeholder {
color: #999;
}
.woocommerce-product-search :-moz-placeholder {
color: #999;
}
.woocommerce-product-search ::-moz-placeholder {
color: #999;
}
.woocommerce-product-search :-ms-input-placeholder {
color: #999;
}
.woocommerce-product-search input[type="submit"] {
width: 40px;
height: 40px;
background: transparent;
position: absolute;
top: 50%;
right: 5px;
transform: translateY(-50%);
border: none;
text-indent: -9999px;
z-index: 10;
}
.widgets-area ul.product_list_widget li,
.dokan-store-sidebar ul.product_list_widget li {
margin-bottom: 15px;
}
.widgets-area ul.product_list_widget li:last-child,
.dokan-store-sidebar ul.product_list_widget li:last-child {
margin-bottom: 0;
}
.widgets-area ul.product_list_widget li:after,
.dokan-store-sidebar ul.product_list_widget li:after {
clear: both;
display: block;
content: "";
}
.widgets-area ul.product_list_widget li img,
.dokan-store-sidebar ul.product_list_widget li img {
float: left;
margin-right: 15px;
width: 80px;
margin-left: 0;
}
.widgets-area ul.product_list_widget li a,
.dokan-store-sidebar ul.product_list_widget li a {
font-size: 14px;
font-weight: 400;
color: #0066cc;
display: inherit;
margin-bottom: 5px;
}
.widgets-area ul.product_list_widget .product-title,
.dokan-store-sidebar ul.product_list_widget .product-title {
font-size: 14px;
font-weight: 400;
color: #0066cc;
display: inherit;
margin-bottom: 8px;
line-height: 1.2;
}
.widgets-area ul.product_list_widget .woocommerce-Price-amount,
.dokan-store-sidebar ul.product_list_widget .woocommerce-Price-amount {
font-size: 16px;
color: #000;
font-weight: 400;
padding-top: 5px;
display: inline-block;
}
.widgets-area ul.product_list_widget li del,
.dokan-store-sidebar ul.product_list_widget li del {
padding-left: 5px;
}
.widgets-area ul.product_list_widget li del .woocommerce-Price-amount,
.dokan-store-sidebar ul.product_list_widget li del .woocommerce-Price-amount {
font-size: 14px;
text-decoration: line-through;
color: #999;
}
.widgets-area ul li,
.dokan-store-sidebar ul li {
display: block;
padding: 5px 0;
}
.widgets-area ul li a,
.dokan-store-sidebar ul li a {
color: #000;
}
.widgets-area ul li.current-cat > a,
.widgets-area ul li.current-cat > .count, .widgets-area ul li.chosen > a,
.widgets-area ul li.chosen > .count,
.dokan-store-sidebar ul li.current-cat > a,
.dokan-store-sidebar ul li.current-cat > .count,
.dokan-store-sidebar ul li.chosen > a,
.dokan-store-sidebar ul li.chosen > .count {
color: var(--mf-primary-color);
}
.widgets-area ul li.current-cat > a, .widgets-area ul li.chosen > a,
.dokan-store-sidebar ul li.current-cat > a,
.dokan-store-sidebar ul li.chosen > a {
font-weight: 600;
}
.widgets-area ul li .children,
.dokan-store-sidebar ul li .children {
padding-left: 15px;
margin-top: 7px;
}
.widgets-area ul li .children li:last-child,
.dokan-store-sidebar ul li .children li:last-child {
padding-bottom: 0;
}
.widgets-area ul li .children li a,
.dokan-store-sidebar ul li .children li a {
color: #666666;
}
.widgets-area ul li .children li a:hover,
.dokan-store-sidebar ul li .children li a:hover {
color: #000;
}
.widgets-area ul li .children li.current-cat > a,
.dokan-store-sidebar ul li .children li.current-cat > a {
color: var(--mf-primary-color);
}
.widgets-area > ul > li:last-child,
.dokan-store-sidebar > ul > li:last-child {
padding-bottom: 0;
}
.widgets-area > ul > li:first-child,
.dokan-store-sidebar > ul > li:first-child {
padding-top: 0;
}
.widgets-area .widget_shopping_cart .buttons .button,
.dokan-store-sidebar .widget_shopping_cart .buttons .button {
width: 100%;
}
.mf_widget_product_categories ul li,
.wcv.widget_product_categories ul li {
position: relative;
padding-right: 16px;
}
.mf_widget_product_categories ul li .cat-menu-close,
.wcv.widget_product_categories ul li .cat-menu-close {
position: absolute;
top: 8px;
right: 0;
font-size: 12px;
color: #000;
cursor: pointer;
}
.mf_widget_product_categories ul li.mf-current-cat-parent > a, .mf_widget_product_categories ul li.mf-back-shop > a,
.wcv.widget_product_categories ul li.mf-current-cat-parent > a,
.wcv.widget_product_categories ul li.mf-back-shop > a {
font-weight: 600;
}
.mf_widget_product_categories ul li.mf-current-cat-parent > a:before, .mf_widget_product_categories ul li.mf-back-shop > a:before,
.wcv.widget_product_categories ul li.mf-current-cat-parent > a:before,
.wcv.widget_product_categories ul li.mf-back-shop > a:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 12px;
margin-right: 5px;
}
.mf_widget_product_categories ul li.mf-back-shop > a,
.wcv.widget_product_categories ul li.mf-back-shop > a {
text-transform: uppercase;
}
.mf_widget_product_categories ul li.current-cat-parent > a,
.wcv.widget_product_categories ul li.current-cat-parent > a {
color: #000;
}
.mf_widget_product_categories ul li.mf-current-cat-parent > .cat-menu-close,
.wcv.widget_product_categories ul li.mf-current-cat-parent > .cat-menu-close {
display: none;
}
.mf_widget_product_categories ul li .children,
.wcv.widget_product_categories ul li .children {
display: none;
padding-left: 15px;
margin-top: 7px;
}
.mf_widget_product_categories ul li .children li:last-child,
.wcv.widget_product_categories ul li .children li:last-child {
padding-bottom: 0;
}
.mf_widget_product_categories ul li .children li a,
.wcv.widget_product_categories ul li .children li a {
color: #666666;
}
.mf_widget_product_categories ul li .children li a:hover,
.wcv.widget_product_categories ul li .children li a:hover {
color: #000;
}
.mf_widget_product_categories ul li .children li.current-cat > a,
.wcv.widget_product_categories ul li .children li.current-cat > a {
color: #000;
}
.mf_widget_product_categories ul li.opened > .cat-menu-close i:before,
.wcv.widget_product_categories ul li.opened > .cat-menu-close i:before {
content: "\e939";
}
.mf_widget_product_categories ul.product-categories.has-view-more > li:not(.mf-back-shop) {
display: none;
}
.mf_widget_product_categories ul.product-categories.show-children-only > li {
padding-right: 0;
}
.mf_widget_product_categories ul.product-categories.show-children-only > li.mf-current-tax > a {
color: var(--mf-primary-color);
text-transform: none;
}
.mf_widget_product_categories ul.product-categories.show-children-only > li.mf-current-tax > a:before {
display: none;
}
.mf_widget_product_categories ul.product-categories.show-children-only > li.cat-item {
padding-left: 15px;
}
.mf_widget_product_categories .mf-widget-product-cats-btn {
margin-top: 10px;
}
.mf_widget_product_categories .mf-widget-product-cats-btn.show-children-only {
padding-left: 15px;
}
.mf_widget_product_categories .show-less,
.mf_widget_product_categories .show-more {
cursor: pointer;
color: #000;
text-transform: uppercase;
display: none;
}
.mf_widget_product_categories .show-less i,
.mf_widget_product_categories .show-more i {
padding-right: 5px;
}
.widget .mc4wp-form {
width: 100%;
}
.widget .mc4wp-form .mc4wp-form-fields {
display: flex;
align-items: center;
}
.widget .mc4wp-form input[type=email] {
border: 1px solid #ccc;
padding: 15px;
width: 100%;
border-radius: 3px 0 0 3px;
border-right: none;
background-color: #fff;
}
.widget .mc4wp-form input[type="submit"] {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
height: 48px;
line-height: 48px;
border-radius: 0 3px 3px 0;
}
#lang_sel,
.lang_sel {
height: 16px;
}
#lang_sel a.lang_sel_sel,
.lang_sel a.lang_sel_sel {
background: none;
line-height: 1;
color: var(--mf-gray-color);
border: none;
font-size: 14px;
padding-left: 0;
}
#lang_sel > ul,
.lang_sel > ul {
height: 16px;
padding: 0;
}
#lang_sel > ul > li,
.lang_sel > ul > li {
padding: 0 !important;
height: auto;
position: relative;
list-style: none;
border: none;
width: auto;
}
#lang_sel > ul > li:hover ul,
.lang_sel > ul > li:hover ul {
transform: scaleX(1);
top: 100%;
}
#lang_sel > ul > li > a,
.lang_sel > ul > li > a {
padding-right: 20px;
position: relative;
}
#lang_sel > ul > li > a:after,
.lang_sel > ul > li > a:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
padding-left: 5px;
color: var(--mf-dark-color);
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
}
#lang_sel > ul > li > a:hover,
.lang_sel > ul > li > a:hover {
color: var(--mf-dark-color);
}
#lang_sel > ul > li > a:hover:after,
.lang_sel > ul > li > a:hover:after {
color: var(--mf-dark-color);
}
#lang_sel ul ul,
.lang_sel ul ul {
top: 150%;
z-index: 99999;
left: 0;
width: auto;
height: auto;
background-color: transparent;
transform: scaleX(0);
position: absolute;
margin: 0;
padding: 0;
border: none;
transition: top 0.35s;
}
#lang_sel ul ul li,
.lang_sel ul ul li {
border-top: none;
list-style: none;
width: auto;
display: block;
float: none;
}
#lang_sel ul ul li a,
.lang_sel ul ul li a {
padding: 5px 0;
border: none;
display: block;
color: #666;
line-height: 1;
font-size: 14px;
background-color: transparent;
}
#lang_sel ul ul li a:hover,
.lang_sel ul ul li a:hover {
color: #000;
background-color: transparent;
}
#lang_sel img.iclflag,
.lang_sel img.iclflag {
top: 0;
padding-right: 5px;
width: auto;
height: auto;
}
.mf-currency-widget .current {
padding-right: 20px;
position: relative;
cursor: pointer;
}
.mf-currency-widget .current:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
padding-left: 5px;
color: var(--mf-dark-color);
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
}
.mf-currency-widget .current:hover {
color: var(--mf-dark-color);
}
.mf-currency-widget .current:hover:after {
color: var(--mf-dark-color);
}
.mf-currency-widget ul {
top: 150%;
z-index: 99999;
height: auto;
background-color: transparent;
transform: scaleX(0);
position: absolute;
margin: 0;
padding: 0;
border: none;
transition: top 0.35s;
border-top: 18px solid transparent;
border-bottom: 1px solid #e7e7e7;
min-width: 120px;
left: -15px;
}
.mf-currency-widget ul li {
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
margin-bottom: 0;
background-color: #fff;
padding: 0;
}
.mf-currency-widget ul li a {
font-size: 14px;
}
.mf-currency-widget ul li:first-child {
border-top: 1px solid #e7e7e7;
padding-top: 10px;
}
.mf-currency-widget ul li:last-child {
padding-bottom: 10px;
}
.mf-currency-widget ul li a {
width: auto;
height: auto;
margin: 0;
white-space: nowrap;
padding: 7px 15px;
color: #666 !important;
display: inline-block;
}
.mf-currency-widget ul li a:hover {
color: #000;
}
.mf-currency-widget .widget-currency {
position: relative;
}
.mf-currency-widget:hover ul {
transform: scaleX(1);
top: 100%;
}
.widget .mf-currency-widget ul li a:hover {
color: #000;
}
.mr-account-widget > ul {
display: flex;
align-items: center;
margin: 0 -3px;
}
.mr-account-widget > ul li {
padding: 0 3px;
}
.mr-account-widget > ul li .wd-login-icon {
display: block;
margin-top: 2px;
margin-right: 7px;
}
.mr-account-widget > ul li .wd-logged-in {
margin-top: 0;
}
.mr-account-widget > ul li a {
color: #666;
}
.mr-account-widget > ul li a:hover {
color: #000;
}
.mr-account-widget > ul > li > a {
display: flex;
align-items: center;
}
.mr-account-widget > ul > li:hover > ul {
transform: scaleX(1);
top: 100%;
}
.mr-account-widget > ul > li > ul {
top: 150%;
z-index: 99999;
height: auto;
background-color: transparent;
transform: scaleX(0);
position: absolute;
margin: 0;
padding: 0;
border: 0;
-webkit-transition: top .35s;
transition: top .35s;
border-top: 18px solid transparent;
border-bottom: 1px solid #e7e7e7;
min-width: 120px;
right: 0;
}
.mr-account-widget > ul > li > ul > li {
border-left: 1px solid #e7e7e7;
border-right: 1px solid #e7e7e7;
margin-bottom: 0;
background-color: #fff;
padding: 0;
}
.mr-account-widget > ul > li > ul > li:first-child {
padding-top: 10px;
border-top: 1px solid #e7e7e7;
}
.mr-account-widget > ul > li > ul > li.logout {
border-top: 1px solid #e7e7e7;
padding-top: 10px;
}
.mr-account-widget > ul > li > ul > li:last-child {
padding-bottom: 10px;
}
.mr-account-widget > ul > li > ul > li a {
width: auto;
height: auto;
margin: 0;
white-space: nowrap;
padding: 7px 15px;
color: #666 !important;
display: inline-block;
}
.mr-account-widget > ul > li > ul > li li:last-child {
padding-bottom: 10px;
}  .site-footer {
border-top: 1px solid #e1e1e1;
}
.site-footer .footer-layout {
background-color: #fff;
}
.site-footer .footer-gray {
background-color: #f8f8f8;
}
.site-footer .footer-newsletter {
padding-top: 65px;
padding-bottom: 65px;
border-bottom: 1px solid #e1e1e1;
}
.site-footer .footer-newsletter .newsletter-content h3,
.site-footer .footer-newsletter .newsletter-content h2,
.site-footer .footer-newsletter .newsletter-content h4,
.site-footer .footer-newsletter .newsletter-content h5,
.site-footer .footer-newsletter .newsletter-content h6 {
font-weight: 600;
margin: 0 0 5px;
}
.site-footer .footer-newsletter .newsletter-form .mc4wp-form-fields {
display: flex;
align-items: flex-end;
}
.site-footer .footer-newsletter .newsletter-form .mc4wp-form-fields input[type="email"] {
border: 1px solid #ccc;
height: 50px;
line-height: 50px;
padding: 0 25px;
border-radius: 4px 0 0 4px;
width: 100%;
background-color: #fff;
}
.site-footer .footer-newsletter .newsletter-form .mc4wp-form-fields input[type="submit"] {
background-color: var(--mf-background-primary-color);
color: var(--mf-background-primary-text-color);
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
min-width: 170px;
border-radius: 0 4px 4px 0;
}
.site-footer .footer-info {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
margin: 0 -15px;
border-bottom: 1px solid #e1e1e1;
padding-bottom: 55px;
padding-top: 25px;
}
.site-footer .footer-info .info-item-sep {
position: relative;
}
.site-footer .footer-info .info-item-sep:last-child {
display: none;
}
.site-footer .footer-info .info-item-sep:after {
position: absolute;
top: -15px;
right: 0;
width: 1px;
height: 60px;
background-color: #dadada;
content: "";
}
.site-footer .footer-info .info-item {
max-width: 25%;
padding: 0 15px;
display: flex;
align-items: center;
margin-top: 30px;
}
.site-footer .footer-info .info-item .info-thumb {
margin-right: 20px;
}
.site-footer .footer-info .info-item i {
font-size: 40px;
color: var(--mf-primary-color);
line-height: 1;
display: block;
}
.site-footer .footer-info .info-item h3 {
font-size: 18px;
font-weight: 500;
margin: 0 0 0;
}
.site-footer .footer-info .info-item p {
margin-bottom: 0;
}
.site-footer .footer-widgets {
padding-top: 70px;
padding-bottom: 70px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin: 0 -15px;
position: relative;
}
.site-footer .footer-widgets:after {
position: absolute;
left: 15px;
right: 15px;
bottom: 0;
border-bottom: 1px solid #e1e1e1;
display: block;
content: "";
}
.site-footer .footer-widgets .footer-sidebar {
max-width: 33.33%;
padding: 0 15px;
}
.site-footer .footer-widgets.columns-5 .footer-sidebar {
max-width: 25%;
}
.site-footer .footer-widgets.columns-5 .widget .mc4wp-form input[type=email] {
min-width: auto;
}
.site-footer .footer-widgets.columns-6 .footer-sidebar {
max-width: 16.6%;
}
.site-footer .footer-widgets.columns-4 .footer-sidebar {
max-width: 30%;
}
.site-footer .footer-widgets .widget {
margin-bottom: 40px;
}
.site-footer .footer-widgets .widget:last-child {
margin-bottom: 0;
}
.site-footer .footer-widgets .widget .widget-title {
font-size: 16px;
margin-bottom: 30px;
}
.site-footer .footer-widgets .widget .mc4wp-form input[type=email] {
min-width: 200px;
}
.site-footer .footer-widgets .widget ul li {
padding: 3px 0;
}
.site-footer .footer-widgets .widget ul li a {
color: #666;
position: relative;
}
.site-footer .footer-widgets .widget ul li a:before {
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 1px;
background-color: #000;
content: "";
transition: 0.35s;
}
.site-footer .footer-widgets .widget ul li a:hover {
color: #000;
}
.site-footer .footer-widgets .widget ul li a:hover:before {
width: 100%;
left: 0;
right: auto;
}
.site-footer .footer-links {
padding-top: 60px;
padding-bottom: 60px;
border-bottom: 1px solid #e1e1e1;
}
.site-footer .footer-links .widget {
margin-bottom: 10px;
}
.site-footer .footer-links .widget:last-child {
margin-bottom: 0;
}
.site-footer .footer-links .widget_nav_menu .widget-title {
font-size: 14px;
font-weight: 600;
display: inline-block;
margin-bottom: 0;
padding-right: 5px;
}
.site-footer .footer-links .widget_nav_menu .widget-title + * {
display: inline-block;
}
.site-footer .footer-links .widget_nav_menu ul {
display: flex;
flex-wrap: wrap;
}
.site-footer .footer-links .widget_nav_menu ul li {
display: inline-block;
position: relative;
padding: 0 10px;
}
.site-footer .footer-links .widget_nav_menu ul li:after {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
height: 12px;
width: 1px;
content: "";
background-color: #666;
}
.site-footer .footer-links .widget_nav_menu ul li a {
color: #666;
position: relative;
}
.site-footer .footer-links .widget_nav_menu ul li a:before {
position: absolute;
bottom: 0;
right: 0;
width: 0;
height: 1px;
background-color: #000;
content: "";
transition: 0.35s;
}
.site-footer .footer-links .widget_nav_menu ul li a:hover {
color: #000;
}
.site-footer .footer-links .widget_nav_menu ul li a:hover:before {
width: 100%;
left: 0;
right: auto;
}
.site-footer .footer-links .widget_nav_menu ul li:last-child:after {
display: none;
}
.site-footer .footer-copyright {
color: #000;
}
.site-footer .footer-payments {
display: flex;
align-items: center;
justify-content: flex-end;
}
.site-footer .footer-payments .text {
color: #000;
}
.site-footer .footer-payments ul {
margin: 0;
padding: 0;
display: flex;
align-items: center;
padding-left: 27px;
}
.site-footer .footer-payments ul li {
list-style: none;
padding-left: 13px;
}
.footer-layout-1 .footer-top {
border-bottom: 1px solid #e1e1e1;
border-top: 1px solid #e1e1e1;
}
.footer-layout-1 .footer-bottom {
padding-top: 35px;
padding-bottom: 35px;
}
.footer-layout-1 .footer-row {
display: flex;
align-items: center;
}
.footer-layout-1 .footer-row:before, .footer-layout-1 .footer-row:after {
display: none;
}
.mf-recently-products.footer-recently-viewed {
background-color: #f4f5f5;
padding-top: 70px;
padding-bottom: 80px;
}
.mf-recently-products.no-background {
background-color: transparent;
padding-bottom: 120px;
}
.mf-recently-products.layout-1.hide-empty.no-products {
display: none;
}
.mf-recently-products .mf-loading {
height: 50px;
}
.mf-recently-products .recently-header {
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 30px;
}
.mf-recently-products .recently-header .title {
font-size: 24px;
font-weight: 400;
margin: 0 0 10px;
}
.mf-recently-products .recently-header .link {
color: #000;
border-bottom: 1px solid #000;
line-height: 1;
display: inline-block;
margin-bottom: 8px;
}
.mf-recently-products .recently-header .link:hover {
color: var(--mf-primary-color);
border-color: var(--mf-border-primary-color);
}
.mf-recently-products .product-list {
margin: 0;
padding: 25px 55px;
background-color: #fff;
overflow: hidden;
opacity: 0;
}
.mf-recently-products .product-list.slick-initialized, .mf-recently-products .product-list.no-products {
opacity: 1;
}
.mf-recently-products .product-list.slick-initialized li, .mf-recently-products .product-list.no-products li {
display: block;
}
.mf-recently-products .product-list li {
padding: 0 15px;
margin-bottom: 0;
list-style: none;
float: left;
display: none;
position: relative;
}
.mf-recently-products .product-list li:first-child {
display: block;
}
.mf-recently-products .product-list li.text-center {
float: none;
}
.mf-recently-products .product-list li a {
border: 2px solid transparent;
display: inline-block;
}
.mf-recently-products .product-list li a:hover {
border-color: var(--mf-border-primary-color);
}
.mf-recently-products .product-list li .btn-secondary {
border: none;
display: inline-block;
margin-top: 15px;
height: 50px;
line-height: 50px;
padding: 0 25px;
transition: all 0.5s;
font-size: 16px;
font-weight: 600;
text-align: center;
border: none;
background-color: #88aa00;
color: #fff;
height: 40px;
line-height: 39px;
padding: 0 25px;
}
.mf-recently-products .product-list li .btn-secondary:hover, .mf-recently-products .product-list li .btn-secondary:focus, .mf-recently-products .product-list li .btn-secondary:active {
background-color: #88aa00;
color: #fff;
}
.mf-recently-products .product-list li .product-info {
display: none;
width: auto;
width: 150px;
position: absolute;
top: 100px;
left: 250px;
z-index: 10002;
box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.3);
padding: 10px 15px;
background-color: rgba(255, 255, 255, 0.9);
text-align: center;
}
.mf-recently-products .product-list li .product-info .product-title {
margin: 0;
font-weight: 500;
}
.mf-recently-products .product-list li .product-price {
font-size: 14px;
color: #000;
line-height: 1;
margin-top: 5px;
}
.mf-recently-products .product-list li .product-price ins {
text-decoration: none;
display: inline-block;
color: #ff3300;
font-weight: 400;
}
.mf-recently-products .product-list li .product-price del {
display: inline-block;
padding-left: 5px;
color: #999;
font-size: 12px;
}
.mf-recently-products .slick-arrow {
position: absolute;
top: 50%;
left: 25px;
transform: translateY(-50%);
font-size: 36px;
color: #ccc;
transition: 0.5s;
cursor: pointer;
}
.mf-recently-products .slick-arrow:hover {
color: #000;
}
.mf-recently-products .slick-next-arrow {
left: auto;
right: 25px;
}
.mf-recently-products .slick-dots {
display: none !important;
}
.page-template-template-homepage .mf-recently-products.no-padding-top {
padding-top: 0;
}
.footer-history-products {
position: fixed;
bottom: 0;
right: 0;
left: 0;
z-index: 9999;
}
.footer-history-products .recently-title {
float: right;
font-size: 16px;
font-weight: 600;
line-height: 1;
padding: 14px 45px 14px 17px;
border: 1px solid #cccccc;
border-bottom: none;
margin: 0 75px 0 0;
position: relative;
background-color: #f4f5f5;
margin-bottom: -1px;
cursor: pointer;
}
.footer-history-products .recently-title:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
right: 17px;
top: 50%;
transform: translateY(-50%);
font-size: 12px;
font-weight: 700;
transition: 0.2s;
}
.footer-history-products .recently-title.active {
background-color: #fff;
}
.footer-history-products .recently-title.active:after {
transform: rotate(180deg) translateY(50%);
}
.footer-history-products .mf-recently-products {
display: none;
clear: both;
padding-top: 5px;
padding-bottom: 40px;
background-color: #fff;
position: relative;
}
.footer-history-products .mf-recently-products.no-products {
padding-bottom: 0;
}
.footer-history-products .mf-recently-products.no-products .recently-header {
display: none;
}
.footer-history-products .mf-recently-products .recently-header {
position: absolute;
bottom: -15px;
left: 0;
right: 0;
justify-content: center;
margin-bottom: 20px;
}
.footer-history-products .mf-recently-products .recently-header .title {
display: none;
}
.backtotop {
position: fixed;
bottom: 10px;
right: 10px;
z-index: 10000;
font-size: 36px;
text-shadow: none;
color: #000;
text-align: center;
opacity: 0;
transition: 0.5s;
}
.backtotop.show-scroll {
opacity: 1;
} .mf-light-skin {
--mf-background-primary-text-color: #fff;
}
.mf-light-skin.header-layout-3 .site-header, .mf-light-skin.header-layout-4 .site-header {
--mf-gray-color: #fff;
--mf-dark-color: #fff;
}
.mf-light-skin.header-layout-3 .site-header .main-menu, .mf-light-skin.header-layout-4 .site-header .main-menu {
border-color: rgba(255, 255, 255, 0.15);
}
.mf-light-skin.header-layout-3 .site-header .products-cats-menu:before, .mf-light-skin.header-layout-4 .site-header .products-cats-menu:before {
background-color: #fff;
}
.mf-light-skin.header-layout-3 .topbar.topbar-dark, .mf-light-skin.header-layout-4 .topbar.topbar-dark {
--mf-gray-color: #fff;
--mf-dark-color: #fff;
}
.mf-light-skin.header-layout-3 .topbar .widget:after, .mf-light-skin.header-layout-4 .topbar .widget:after {
background-color: rgba(255, 255, 255, 0.45);
}
.mf-light-skin.header-layout-3 .topbar ul.menu > li.menu-item-has-children > a:after, .mf-light-skin.header-layout-4 .topbar ul.menu > li.menu-item-has-children > a:after {
color: #fff;
}
.mf-light-skin.header-layout-3 .products-cats-menu .menu > li.menu-item-has-children:hover > a:after, .mf-light-skin.header-layout-4 .products-cats-menu .menu > li.menu-item-has-children:hover > a:after {
color: #fff;
}
.mf-light-skin.woocommerce #respond input#submit.loading:after,
.mf-light-skin.woocommerce a.button.loading:after,
.mf-light-skin.woocommerce button.button.loading:after,
.mf-light-skin.woocommerce input.button.loading:after {
border-color: #fff #fff #fff transparent;
}
.mf-light-skin .wcfm-membership-wrapper #wcfm_membership_container input.wcfm_submit_button,
.mf-light-skin .wcfm-membership-wrapper #wcfm_membership_container input.wcfm_submit_button:hover,
.mf-light-skin.wcfmmp-store-page #wcfmmp-store .add_review button, .mf-light-skin.wcfmmp-store-page #wcfmmp-store .user_rated, .mf-light-skin.wcfmmp-store-page #wcfmmp-stores-wrap a.wcfmmp-visit-store,
.mf-light-skin.wcfmmp-store-page #wcfmmp-store .add_review button:hover, .mf-light-skin.wcfmmp-store-page #wcfmmp-store .user_rated:hover, .mf-light-skin.wcfmmp-store-page #wcfmmp-stores-wrap a.wcfmmp-visit-store:hover {
color: #fff !important;
} .mf-navigation-mobile {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 999999;
background-color: #fff;
border-top: 1px solid #ccc;
}
.mf-navigation-mobile .navigation-list {
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 10px 15px;
}
.mf-navigation-mobile .navigation-icon {
display: flex;
flex-direction: column;
align-items: center;
color: #000;
}
.mf-navigation-mobile .navigation-icon i {
font-size: 24px;
}
.mf-navigation-mobile .navigation-icon.active {
color: var(--mf-primary-color);
}
.mf-navigation-mobile .navigation-mobile_search i,
.mf-navigation-mobile .navigation-mobile_account i,
.mf-navigation-mobile .navigation-mobile_cart i {
font-size: 22px;
}
.mf-navigation-mobile .navigation-mobile_cart {
position: relative;
}
.mf-navigation-mobile .navigation-mobile_cart .mini-item-counter {
position: absolute;
top: 0;
left: -7px;
font-size: 12px;
font-weight: 700;
border-radius: 50%;
min-width: 18px;
padding: 0 5px;
height: 18px;
text-align: center;
line-height: 18px;
}
body.navigation-mobile-active {
overflow: hidden;
}
body.navigation-mobile-active .martfury-off-canvas-layer {
display: block;
z-index: 9999;
}
.mf-els-modal-mobile {
width: 100%;
background-color: #fff;
position: fixed;
left: -100%;
top: 0;
overflow: auto;
height: 100%;
color: #aaa;
z-index: -999999;
transition: transform 0.35s ease;
display: none;
padding-bottom: 65px;
}
.mf-els-modal-mobile.has-header-cat {
width: 85%;
left: -85%;
}
.mf-els-modal-mobile.open {
transform: translate3d(100%, 0, 0);
}
.mf-els-modal-mobile .widget-footer-cart {
display: none;
}
.mf-els-modal-mobile .search-wrapper {
padding: 15px;
background-color: var(--mf-background-primary-color);
display: flex;
align-items: center;
width: 100%;
position: relative;
}
.mf-els-modal-mobile .search-field {
border: none;
float: left;
height: 42px;
line-height: 42px;
padding-right: 15px;
padding-left: 15px;
position: relative;
width: 100%;
}
.mf-els-modal-mobile .search-submit {
height: 42px;
line-height: 42px;
width: 50px;
min-width: 42px;
text-align: center;
background-color: #000;
border: none;
font-weight: 700;
color: #fff;
font-size: 20px;
}
.mf-els-modal-mobile .search-trending {
margin-top: 55px;
text-align: center;
}
.mf-els-modal-mobile .search-trending h3 {
font-size: 18px;
font-weight: 600;
margin: 0 0 20px;
line-height: 1;
}
.mf-els-modal-mobile .search-trending ul {
margin: 0;
padding: 0;
list-style: none;
}
.mf-els-modal-mobile .search-trending ul li {
padding: 8px 0;
margin-bottom: 0;
}
.mf-els-modal-mobile .search-trending ul li a {
color: #000;
}
.mf-els-modal-mobile .products-search .search-results {
position: absolute;
top: 72px;
left: 0;
right: 0;
display: none;
max-height: 70%;
overflow-y: auto;
overflow-x: hidden;
}
.mf-els-modal-mobile .products-search .search-results ul {
margin: 15px 0 0;
padding: 0 15px;
list-style: none;
}
.mf-els-modal-mobile .products-search .search-results ul li {
display: flex;
align-items: flex-start;
margin-bottom: 15px;
}
.mf-els-modal-mobile .products-search .search-results ul li img {
max-width: 60px;
margin-right: 10px;
}
.mf-els-modal-mobile .products-search .search-results ul li .title-item {
font-size: 14px;
font-weight: 400;
line-height: 1;
}
.mf-els-modal-mobile .products-search .search-results ul li .star-rating {
float: none;
}
.mf-els-modal-mobile .products-search .search-results ul li .price-item {
font-size: 16px;
color: #000;
line-height: 1;
margin-top: 5px;
}
.mf-els-modal-mobile .products-search .search-results ul li del {
font-size: 14px;
color: #999;
padding-left: 10px;
}
.mf-els-modal-mobile .products-search .search-results ul li ins {
text-decoration: none;
color: #ff3300;
}
.mf-els-modal-mobile .products-search .search-results ul .search-item {
display: flex;
align-items: center;
}
.mf-els-modal-mobile .products-search.searching .search-wrapper:before {
border-width: 1px;
border-color: #fff #fff #fff transparent;
border-radius: 50%;
border-style: solid;
-webkit-animation: mf-spin-fast 1s linear infinite;
animation: mf-spin-fast 1s linear infinite;
content: "";
width: 16px;
height: 16px;
font-weight: 400;
position: absolute;
top: 27px;
right: 28px;
z-index: 999;
}
.mf-els-modal-mobile .products-search.searching .search-submit i {
opacity: 0;
}
.mf-els-modal-mobile .products-search.actived .search-trending {
display: none;
}
.mf-els-modal-mobile .products-search.actived + .search-trending {
display: none;
}
.mf-els-modal-mobile .products-search.actived .search-results {
display: block;
}
.mf-els-modal-mobile .primary-mobile-nav {
display: none;
}
.mf-els-modal-mobile .primary-mobile-nav.current {
display: block;
}
.mf-els-modal-mobile .mf-search-mobile-modal {
display: none;
}
.mf-els-modal-mobile .mf-search-mobile-modal.current {
display: block;
}
.mf-els-modal-mobile .mf-cart-mobile {
display: none;
height: calc(100% - 67px);
overflow: hidden;
}
.mf-els-modal-mobile .mf-cart-mobile .mobile-cart-header {
background-color: var(--mf-background-primary-color);
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px;
}
.mf-els-modal-mobile .mf-cart-mobile .mobile-cart-header h2 {
font-size: 18px;
font-weight: 600;
margin: 0;
line-height: 1;
color: var(--mf-background-primary-text-color);
}
.mf-els-modal-mobile .mf-cart-mobile .mobile-cart-header h2 a {
color: var(--mf-background-primary-text-color);
}
.mf-els-modal-mobile .mf-cart-mobile .mobile-cart-header .close-cart-mobile {
font-size: 18px;
color: var(--mf-background-primary-text-color);
line-height: 1;
}
.mf-els-modal-mobile .mf-cart-mobile.current {
display: block;
}
.mf-els-modal-mobile .mf-cart-mobile .woocommerce-mini-cart__empty-message {
padding: 20px;
}
.mf-els-modal-mobile .mf-cart-mobile .woocommerce-mini-cart {
height: 100vh;
overflow-y: auto;
padding-bottom: 270px;
}
.mf-els-modal-mobile .mf-cart-mobile .mf-cart-panel-footer {
position: absolute;
bottom: 67px;
left: 0;
right: 0;
border-top: 1px solid #e5e5e5;
z-index: 10;
background-color: #fff;
}
.mf-els-modal-mobile .mf-cart-mobile .widget_shopping_cart_content {
padding: 10px 0 0;
border: none;
}
.mf-els-modal-mobile .mf-cart-mobile .widget_shopping_cart_content ul.product_list_widget li {
padding-left: 15px;
padding-right: 25px;
}
.mf-els-modal-mobile .mf-cart-mobile .widget_shopping_cart_content ul.product_list_widget li .remove_from_cart_button {
right: 15px;
}
.mf-els-modal-mobile .mf-cart-mobile .woocommerce-mini-cart__total,
.mf-els-modal-mobile .mf-cart-mobile .woocommerce-mini-cart__buttons {
padding-left: 15px;
padding-right: 15px;
}
.mf-catalog-sorting-mobile {
width: 100%;
background-color: rgba(0, 0, 0, 0.75);
position: fixed;
left: 0;
top: 0;
right: 0;
bottom: 0;
overflow: auto;
display: none;
padding-bottom: 65px;
z-index: 999999;
}
.mf-catalog-sorting-mobile.mf-active {
display: block;
}
.mf-catalog-sorting-mobile .woocommerce-ordering {
position: absolute;
top: 50%;
left: 15px;
right: 15px;
transform: translateY(-50%);
background-color: #fff;
margin: 0;
padding: 0;
list-style: none;
}
.mf-catalog-sorting-mobile .woocommerce-ordering li {
margin-bottom: 0;
}
.mf-catalog-sorting-mobile .woocommerce-ordering .current > span {
display: none;
}
.mf-catalog-sorting-mobile .woocommerce-ordering .cancel-ordering {
display: block;
text-align: center;
}
.mf-catalog-sorting-mobile .woocommerce-ordering .cancel-ordering a {
font-size: 16px;
font-weight: 600;
color: #000;
padding: 10px 0;
display: block;
}
.mf-catalog-sorting-mobile .woocommerce-ordering ul {
margin: 0;
padding: 0;
text-align: center;
}
.mf-catalog-sorting-mobile .woocommerce-ordering ul li {
margin-bottom: 0;
border-bottom: 1px solid #dedede;
}
.mf-catalog-sorting-mobile .woocommerce-ordering ul li a {
font-size: 16px;
color: #000;
padding: 10px 0;
display: block;
}
.mf-catalog-sorting-mobile .woocommerce-ordering ul li a.active {
color: var(--mf-primary-color);
}
.mobile-version.mobile-nav-enable {
padding-bottom: 65px;
}
.mobile-version.mobile-nav-enable .backtotop {
bottom: 70px;
}
.mobile-version.page-template-template-coming-soon-page {
padding-bottom: 0;
}
.mobile-version .primary-mobile-nav {
position: static;
transform: none;
width: 100%;
}
.mobile-version .primary-mobile-nav .mobile-nav-header .close-mobile-nav {
display: block;
}
.mobile-version .mf-els-modal-mobile {
z-index: 999999;
display: block;
}
.mobile-version .mf-els-modal-mobile .aws-container {
width: 100%;
}
.mobile-version .mf-els-modal-mobile .aws-container .aws-search-form .aws-main-filter {
display: none;
}
.mobile-version .mf-els-modal-mobile .aws-container .aws-search-form .aws-search-field {
border: none;
}
.mobile-version .mf-els-modal-mobile .aws-container .aws-search-form .aws-form-btn {
border-radius: 0 !important;
background-color: #000;
}
.mobile-version .mf-els-modal-mobile .aws-container .aws-search-form .aws-form-btn .aws-search-btn_icon {
color: #fff;
}
.mobile-version.display-mobile-menu .primary-mobile-nav {
transform: none;
}
.mobile-version .site-header .header-logo {
width: 70%;
display: block;
}
.mobile-version .site-header .header-main {
padding-bottom: 15px;
padding-top: 25px;
justify-content: space-between;
align-items: center;
}
.mobile-version .site-header .header-main .header-extras {
justify-content: flex-end;
}
.mobile-version .site-header .header-main .header-title {
padding-right: 5px;
width: 60%;
}
.mobile-version .site-header .header-main .header-title h1 {
font-size: 18px;
font-weight: 600;
margin: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
display: block;
padding-left: 13px;
}
.mobile-version .site-header .header-main .header-title .header-go-back {
font-size: 24px;
line-height: 1;
color: var(--mf-dark-color);
display: flex;
align-items: center;
}
.mobile-version .site-header .extras-menu .menu-item-account.logined > a {
width: auto;
}
.mobile-version .site-header .header-extras .extras-menu > li {
padding-left: 8px;
padding-right: 8px;
}
.mobile-version .site-header .header-extras .extras-menu > li:last-child {
padding-right: 0;
}
.mobile-version .site-header .header-extras .extras-menu > li.menu-item-cart {
padding-right: 10px;
}
.mobile-version .site-header .mobile-menu {
padding-bottom: 15px;
display: flex;
align-items: center;
}
.mobile-version .site-header .mobile-menu .site-header-category--mobile {
font-size: 30px;
padding-right: 20px;
line-height: 1;
display: block;
color: var(--mf-dark-color);
}
.mobile-version .site-header .product-extra-search .search-field {
border-left: 1px solid #ccc;
}
.mobile-version .site-header .product-extra-search .product-cat {
display: none;
}
.mobile-version.sticky-header .site-header.minimized .header-main {
padding-bottom: 10px;
padding-top: 25px;
}
.mobile-version.sticky-header .site-header.minimized .header-mobile-v2 .header-main {
padding-top: 25px;
}
.mobile-version.header-layout-1 .site-header .header-mobile-v2, .mobile-version.header-layout-2 .site-header .header-mobile-v2, .mobile-version.header-layout-6 .site-header .header-mobile-v2 {
border-bottom: 1px solid #e1e1e1;
}
.mobile-version .site-footer .footer-layout > .container,
.mobile-version .site-footer .footer-layout > .martfury-container {
padding-right: 0;
padding-left: 0;
}
.mobile-version .site-footer .footer-widgets {
padding-left: 15px;
padding-right: 15px;
padding-bottom: 30px;
}
.mobile-version .site-footer .footer-widgets .widget.widget_nav_menu .widget-title {
position: relative;
padding-right: 20px;
margin-bottom: 20px;
}
.mobile-version .site-footer .footer-widgets .widget.widget_nav_menu .widget-title:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 16px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
}
.mobile-version .site-footer .footer-widgets .widget.widget_nav_menu .widget-title.active:after {
content: "\e939";
}
.mobile-version .site-footer .footer-widgets .widget-title {
font-size: 18px;
}
.mobile-version .site-footer .footer-widgets .footer-sidebar {
border-bottom: 1px solid #e1e1e1;
margin-bottom: 20px;
width: 100%;
max-width: 100%;
}
.mobile-version .site-footer .footer-widgets .footer-sidebar:last-child {
border-bottom: none;
margin-bottom: 0;
}
.mobile-version .site-footer .footer-widgets .footer-sidebar .widget {
margin-bottom: 20px;
}
.mobile-version .site-footer .footer-links {
padding-left: 15px;
padding-right: 15px;
padding-top: 50px;
padding-bottom: 40px;
}
.mobile-version .site-footer .footer-links .widget {
border-bottom: 1px solid #e1e1e1;
}
.mobile-version .site-footer .footer-links .widget .clicked {
padding-bottom: 20px;
}
.mobile-version .site-footer .footer-links .widget:last-child {
border-bottom: none;
}
.mobile-version .site-footer .footer-links .widget:last-child .clicked {
padding-bottom: 0;
}
.mobile-version .site-footer .footer-links .widget.widget_nav_menu .widget-title {
position: relative;
padding-right: 20px;
font-size: 18px;
margin-bottom: 20px;
}
.mobile-version .site-footer .footer-links .widget.widget_nav_menu .widget-title:after {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 16px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
}
.mobile-version .site-footer .footer-links .widget.widget_nav_menu .widget-title.active:after {
content: "\e939";
}
.mobile-version .site-footer .footer-links .widget.widget_nav_menu .clicked {
display: none;
}
.mobile-version .site-footer .footer-links .widget.widget_nav_menu ul li {
width: 100%;
padding-top: 3px;
padding-bottom: 3px;
}
.mobile-version .site-footer .footer-links .widget.widget_nav_menu ul li:after {
display: none;
}
.mobile-version .site-footer .footer-bottom {
padding-left: 15px;
padding-right: 15px;
padding-bottom: 30px;
padding-top: 30px;
}
.mobile-version .site-footer .footer-bottom .footer-row {
display: flex;
flex-direction: column;
text-align: left;
}
.mobile-version .site-footer .footer-bottom .footer-row .col-footer-payments {
order: 1;
}
.mobile-version .site-footer .footer-bottom .footer-row .col-footer-copyright {
order: 2;
}
.mobile-version .site-footer .footer-bottom .footer-payments {
text-align: left;
margin-top: 0;
padding-bottom: 40px;
display: block;
}
.mobile-version .site-footer .footer-bottom .footer-payments ul {
justify-content: flex-start;
padding-left: 0;
margin-top: 15px;
}
.mobile-version .site-footer .footer-bottom .footer-payments ul li {
padding-right: 10px;
padding-left: 0;
}
.mobile-version .site-footer .footer-newsletter {
padding-top: 40px;
padding-bottom: 40px;
}
.mobile-version .site-footer .footer-info {
padding-top: 10px;
padding-bottom: 40px;
margin: 0;
}
.mobile-version .site-footer .footer-info .info-item {
margin-top: 30px;
display: flex;
justify-content: flex-start;
}
.mobile-version .site-footer .footer-info .info-thumb {
margin-bottom: 10px;
}
.mobile-version .mf-image-box .box-title {
font-size: 14px;
}
.mobile-version .mf-image-box.style-2 .box-title {
padding-left: 7px;
padding-right: 7px;
}
.mobile-version .mf-banner-large .banner-content {
padding-top: 0;
}
.mobile-version .mf-banner-large .banner-content .box-title {
font-size: 24px;
font-weight: 400;
}
.mobile-version .mf-banner-large .banner-price {
padding-top: 0;
padding-bottom: 0;
}
.mobile-version .mf-banner-large.layout-2,
.mobile-version .mf-banner-large.layout-3 {
padding-top: 30px;
padding-bottom: 25px;
}
.mobile-version .mf-banner-large.layout-2 .featured-image,
.mobile-version .mf-banner-large.layout-3 .featured-image {
background-position: center;
}
.mobile-version .mf-banner-medium .banner-content .title {
font-size: 18px;
margin-bottom: 13px;
}
.mobile-version .mf-banner-medium .banner-content .desc {
font-size: 12px;
line-height: 1.4;
}
.mobile-version .mf-banner-medium .banner-content .desc .price {
font-size: 14px;
}
.mobile-version .mf-products-grid .cat-header {
display: flex;
flex-wrap: wrap;
}
.mobile-version .mf-products-grid .cat-header .tabs-header-nav {
margin-top: 0;
}
.mobile-version .mf-products-grid .cat-header .tabs-nav {
display: none;
}
.mobile-version .mf-products-carousel:not(.mf-product-deals-day) .cat-header {
display: flex;
flex-wrap: wrap;
}
.mobile-version .mf-products-carousel:not(.mf-product-deals-day) .cat-header .cat-title {
font-size: 20px;
}
.mobile-version .mf-products-carousel:not(.mf-product-deals-day) .cat-header .extra-links {
margin-top: 0;
}
.mobile-version .mf-banners-grid {
max-width: 370px;
margin: 0 auto;
}
.mobile-version .mf-banners-grid .l-banners .item-large:last-child {
display: block;
}
.mobile-version .mf-banners-grid .l-banners {
border-style: solid;
border-color: #d9d9d9;
border-width: 0 1px 0 1px;
}
.mobile-version .mf-banners-grid .r-banners {
display: flex;
width: 100%;
border-style: solid;
border-color: #d9d9d9;
border-width: 0 0 1px 1px;
}
.mobile-version .mf-category-tabs.single-tab .tabs-header {
display: none;
}
.mobile-version .mf-category-tabs .tabs-content ul li {
width: 25%;
margin-top: 15px;
}
.mobile-version .mf-category-tabs .tabs-content {
padding: 5px 0 30px;
}
.mobile-version .mf-products-of-category-2 .cats-header {
display: flex;
flex-wrap: wrap;
padding-left: 15px;
padding-right: 15px;
}
.mobile-version .mf-products-of-category-2 .cats-header .extra-links {
margin-top: 0;
}
.mobile-version .mf-products-of-category-2 .col-product-content:after {
display: none;
}
.mobile-version .mf-products-of-category-2 .images-slider {
display: block;
padding: 15px;
}
.mobile-version .mf-products-of-category-2 .mf-products-tabs {
padding-left: 15px;
padding-right: 15px;
}
.mobile-version .mf-product-deals-carousel {
padding-left: 10px;
padding-right: 10px;
}
.mobile-version .mf-product-deals-carousel .cat-header {
display: flex;
flex-wrap: wrap;
}
.mobile-version .mf-product-deals-carousel .cat-header .slick-arrow {
padding-left: 5px;
padding-right: 0;
}
.mobile-version .mf-product-deals-carousel ul.products {
margin-left: 0;
margin-right: 0;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product {
margin-right: 0;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .entry-summary {
margin-top: 20px;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown {
justify-content: space-between;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .timer {
width: auto;
margin-bottom: 0;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .digits {
min-width: 55px;
padding-top: 14px;
padding-bottom: 14px;
font-size: 24px;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .divider {
display: block;
padding-top: 10px;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .text {
font-size: 13px;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-thumbs {
position: static;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 20px;
opacity: 1;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-thumbs .slick-track {
display: flex;
align-items: center;
justify-content: center;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-thumbs li {
padding: 0;
margin: 0 5px;
width: 8px !important;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-thumbs li .i-video {
display: none;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-thumbs li img {
width: 8px;
border: 4px solid #dbdbdb;
border-radius: 100%;
}
.mobile-version .mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
border-color: var(--mf-border-primary-color);
}
.mobile-version .mf-products-list-carousel {
border: 1px solid #e1e1e1;
padding-top: 15px;
padding-bottom: 40px;
padding-left: 15px;
padding-right: 15px;
}
.mobile-version .mf-category-box {
padding-left: 15px;
padding-right: 15px;
}
.mobile-version .mf-category-box .cat-header {
display: flex;
flex-wrap: wrap;
}
.mobile-version .mf-category-box .cat-header .cat-name {
font-size: 20px;
font-weight: 600;
}
.mobile-version .mf-category-box .cat-header .extra-links {
margin-top: 0;
}
.mobile-version .mf-category-box .sub-categories {
padding-top: 15px;
}
.mobile-version .mf-category-box .sub-categories .term-item {
padding: 0;
border: none;
}
.mobile-version .mf-banner-medium.layout-4 .banner-content .subdesc {
margin-top: 10px;
line-height: 1.2;
}
.mobile-version .mf-banner-medium.layout-4 .banner-content .subtitle {
margin-bottom: 5px;
}
.mobile-version .martfury-latest-post .post-header {
display: flex;
flex-wrap: wrap;
}
.mobile-version .martfury-latest-post .post-header .extra-links {
margin-top: 0;
}
.mobile-version .mf-banner-large.layout-3 .banner-price {
padding-left: 0;
}
.mobile-version .martfury-testimonial-slides .testimonial-info {
padding: 0 20px 20px;
}
.mobile-version .martfury-testimonial-slides .slick-dots {
margin-top: 10px;
}
.mobile-version .mf-products-tabs .tabs-header {
display: flex;
flex-wrap: wrap;
}
.mobile-version .mf-products-tabs .tabs-header .tabs-header-nav {
margin-top: 0;
}
.mobile-version.woocommerce.mf-catalog-page .site-content {
padding-top: 0;
}
.mobile-version .dokan-single-store {
width: 100% !important;
margin: 0;
}
.mobile-version .dokan-store-tabs {
margin-left: -15px;
margin-right: -15px;
}
.mobile-version .dokan-single-store .dokan-store-tabs ul {
margin-bottom: 10px;
}
.mobile-version #mf-catalog-toolbar {
flex-wrap: nowrap;
justify-content: space-between;
margin-left: -15px;
margin-right: -15px;
display: flex;
align-items: center;
width: auto;
}
.mobile-version #mf-catalog-toolbar:after, .mobile-version #mf-catalog-toolbar:before {
display: none;
}
.mobile-version #mf-catalog-toolbar .mf-filter-mobile {
order: 1;
font-size: 14px;
font-weight: 400;
color: #000;
display: flex;
align-items: center;
justify-content: center;
position: relative;
padding-right: 40px;
margin-right: 30px;
width: 40%;
}
.mobile-version #mf-catalog-toolbar .mf-filter-mobile i {
font-size: 20px;
padding-right: 10px;
color: #999;
}
.mobile-version #mf-catalog-toolbar .mf-filter-mobile span {
display: inline-block;
}
.mobile-version #mf-catalog-toolbar .mf-filter-mobile:before {
position: absolute;
top: 5px;
right: 30px;
content: '\e93a';
display: inline-block;
font: normal normal normal 12px/1 linearicons;
color: #000;
}
.mobile-version #mf-catalog-toolbar .mf-filter-mobile:after {
content: "";
position: absolute;
top: -5px;
right: 0;
height: 32px;
width: 1px;
background-color: #ccc;
}
.mobile-version #mf-catalog-toolbar .woocommerce-ordering {
width: 55%;
position: relative;
justify-content: center;
order: 2;
}
.mobile-version #mf-catalog-toolbar .woocommerce-ordering:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 20px;
color: #999;
padding-right: 10px;
}
.mobile-version #mf-catalog-toolbar .woocommerce-ordering li > ul {
display: none;
}
.mobile-version #mf-catalog-toolbar .woocommerce-ordering .current {
min-width: 130px;
border: none;
background-color: transparent;
padding: 0 15px 0 0;
}
.mobile-version #mf-catalog-toolbar .woocommerce-ordering .current span {
text-overflow: ellipsis;
min-width: 98%;
}
.mobile-version #mf-catalog-toolbar .woocommerce-ordering .current:after {
font-size: 12px;
right: 0;
}
.mobile-version.mf-catalog-page.full-content #mf-catalog-toolbar .mf-filter-mobile {
display: none;
}
.mobile-version #wcfmmp-store #mf-catalog-toolbar {
margin-left: 0;
margin-right: 0;
}
.mobile-version.wcfm-store-page .widget-area.sidebar {
position: fixed;
top: 49px;
left: -100%;
opacity: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.75);
overflow: auto;
height: 100%;
color: #aaa;
z-index: 9999999;
-webkit-transition: -webkit-transform 0.35s ease;
transition: transform 0.35s ease;
padding-left: 0;
padding-right: 0;
padding-bottom: 50px;
margin-top: -1px !important;
border: none !important;
}
.mobile-version.wcfm-store-page.mf-filter-active .widget-area.sidebar {
transform: translate3d(100%, 0, 0);
opacity: 1;
}
.mobile-version.wcfm-store-page.mf-filter-active .martfury-off-canvas-layer {
z-index: 9999;
display: block;
}
.mobile-version.wcfm-store-page.mf-filter-active .mf-catalog-close-sidebar {
transform: translate3d(100%, 0, 0);
opacity: 1;
}
.mobile-version .mf-catalog-close-sidebar {
position: fixed;
top: 0;
left: -100%;
opacity: 0;
width: 100%;
z-index: 9999999;
background-color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
padding: 15px 15px 13px;
border-bottom: 1px solid #dedede;
transition: transform 0.35s ease;
}
.mobile-version .mf-catalog-close-sidebar h2 {
font-size: 16px;
font-weight: 600;
margin: 0;
}
.mobile-version .mf-catalog-close-sidebar .close-sidebar {
font-size: 18px;
color: #000;
line-height: 1;
}
.mobile-version.mf-catalog-page .catalog-sidebar,
.mobile-version.mf-catalog-page .vendor_sidebar {
position: fixed;
top: 0;
left: -100%;
opacity: 0;
width: 100%;
background-color: rgba(0, 0, 0, 0.75);
overflow: auto;
height: 100%;
color: #aaa;
z-index: 99999;
transition: transform 0.35s ease;
margin-top: 0;
padding-left: 0;
padding-right: 0;
padding-bottom: 50px;
padding-top: 50px;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget,
.mobile-version.mf-catalog-page .vendor_sidebar .widget {
margin-bottom: 0;
padding-top: 30px;
padding-bottom: 30px;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget:after,
.mobile-version.mf-catalog-page .vendor_sidebar .widget:after {
display: block;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget:last-child:after,
.mobile-version.mf-catalog-page .vendor_sidebar .widget:last-child:after {
display: none;
}
.mobile-version.mf-catalog-page .catalog-sidebar {
background-color: #f5f5f5;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget .widget-title {
position: relative;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget .widget-title:after {
content: "\e93a";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
font-size: 16px;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget .widget-title.non-active {
margin-bottom: 0;
transition: 0.5s;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget .widget-title.active {
margin-bottom: 25px;
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget .widget-title.active:after {
content: "\e939";
}
.mobile-version.mf-catalog-page .catalog-sidebar .widget .closed {
display: none;
}
.mobile-version.mf-catalog-page .vendor_sidebar .widget {
background-color: #f5f5f5;
padding-left: 20px;
padding-right: 20px;
position: relative;
}
.mobile-version.mf-catalog-page .vendor_sidebar .widget:after {
position: absolute;
bottom: 0;
left: 20px;
right: 20px;
content: "";
height: 1px;
background-color: #d8d8d8;
}
.mobile-version.mf-catalog-page.mf-filter-active .catalog-sidebar,
.mobile-version.mf-catalog-page.mf-filter-active .vendor_sidebar {
transform: translate3d(100%, 0, 0);
opacity: 1;
}
.mobile-version.mf-catalog-page.mf-filter-active .martfury-off-canvas-layer {
z-index: 9999;
display: block;
}
.mobile-version.mf-catalog-page.mf-filter-active .mf-catalog-close-sidebar {
transform: translate3d(100%, 0, 0);
opacity: 1;
}
.mobile-version.mf-catalog-page .mf-toolbar-empty-space {
height: 5px;
}
.mobile-version.mf-catalog-page .site-content {
padding-bottom: 60px;
}
.mobile-version.mf-catalog-page ul.products {
margin-left: -12.5px;
margin-right: -12.5px;
display: flex;
flex-wrap: wrap;
}
.mobile-version.mf-catalog-page ul.products:after, .mobile-version.mf-catalog-page ul.products:before {
display: none;
}
.mobile-version.mf-catalog-page ul.products li.product {
padding-left: 2.5px;
padding-right: 2.5px;
margin-bottom: 5px;
}
.mobile-version.mf-catalog-page ul.products li.product .product-inner {
padding: 10px 10px 15px;
border: 1px solid #dfdfdf;
margin-bottom: 0;
height: 100%;
}
.mobile-version.mf-catalog-page ul.products li.product-category {
padding-top: 0;
padding-bottom: 0;
}
.mobile-version.mf-catalog-page ul.products li.product-category > a {
display: block;
padding: 10px 10px 15px;
border: 1px solid #dfdfdf;
margin-bottom: 0;
height: 100%;
}
.mobile-version.dokan-store .site-content {
padding-top: 0;
}
.mobile-version.dokan-store .dokan-store-sidebar {
position: fixed;
top: 49px;
left: -100%;
opacity: 0;
width: 100% !important;
background-color: rgba(0, 0, 0, 0.75);
overflow: auto;
height: 100%;
color: #aaa;
z-index: 9999999;
transition: transform 0.35s ease;
margin-top: 0;
padding-left: 0;
padding-right: 0;
padding-bottom: 50px;
margin: 0;
}
.mobile-version.dokan-store .dokan-store-sidebar .widget {
background-color: #f5f5f5;
padding-left: 20px;
padding-right: 20px;
position: relative;
}
.mobile-version.dokan-store .dokan-store-sidebar .widget:after {
position: absolute;
bottom: 0;
left: 20px;
right: 20px;
content: "";
height: 1px;
background-color: #d8d8d8;
}
.mobile-version.dokan-store .dokan-store-sidebar .widget:last-child:after {
display: none;
}
.mobile-version.dokan-store.mf-filter-active .dokan-store-sidebar {
transform: translate3d(100%, 0, 0);
opacity: 1;
margin-top: 0;
}
.mobile-version.dokan-store.mf-filter-active .martfury-off-canvas-layer {
z-index: 999999;
background-color: rgba(0, 0, 0, 0.75);
}
.mobile-version.dokan-store.mf-filter-active .mf-catalog-close-sidebar {
transform: translate3d(100%, 0, 0);
opacity: 1;
}
.mobile-version.wcfmmp-store-page #wcfmmp-store .mf-shop-content ul.products {
margin-left: -2.5px;
margin-right: -2.5px;
}
.mobile-version.wcfmmp-store-page #wcfmmp-store .mf-shop-content ul.products li {
padding-left: 2.5px;
padding-right: 2.5px;
}
.mobile-version.show-featured-icons ul.products li.product .product-inner .mf-product-thumbnail .footer-button {
position: static;
opacity: 1;
}
.mobile-version .mf-recently-products .recently-header {
margin-bottom: 20px;
}
.mobile-version .mf-recently-products .product-list {
padding: 15px 5px 35px;
}
.mobile-version .mf-recently-products .product-list li {
padding-left: 2.5px;
padding-right: 2.5px;
}
.mobile-version .mf-recently-products .slick-dots {
display: flex !important;
align-items: center;
justify-content: center;
margin-top: 25px;
}
.mobile-version .mf-recently-products .slick-dots li {
padding-right: 5px;
padding-left: 5px;
}
.mobile-version .mf-recently-products .slick-dots li button {
border: none;
}
.mobile-version .mf-recently-products .slick-dots li:not(.slick-active) button {
background-color: #cccccc;
}
.mobile-version .mf-recently-products .slick-arrow {
display: none !important;
}
.mobile-version.mf-add-to-cart-fixed {
padding-bottom: 50px;
}
.mobile-version.mf-add-to-cart-fixed .mf-navigation-mobile {
display: none;
}
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal) .cart .single_add_to_cart_button,
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal) .cart .buy_now_button {
position: fixed;
bottom: 0;
left: 0;
z-index: 500;
width: 100%;
opacity: 1;
border-radius: 0;
height: 50px;
line-height: 50px;
min-width: auto;
padding: 0 10px;
overflow: hidden;
}
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal) .cart .buy_now_button {
left: auto;
right: 0;
}
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal) .cart .mf-compare-button,
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal) .cart .yith-wcwl-add-to-wishlist,
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal) .cart .wcboost-wishlist-button {
padding-top: 0 !important;
}
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal) .cart div.quantity {
margin-bottom: 5px;
}
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal).mf-has-buy-now .cart .single_add_to_cart_button,
.mobile-version.mf-add-to-cart-fixed div.product:not(.qv-modal).mf-has-buy-now .cart .actions-button .buy_now_button {
width: 50%;
min-width: auto;
}
.mobile-version.mf-add-to-cart-fixed.single-product .backtotop {
bottom: 50px;
}
.mobile-version.woocommerce div.product div.images {
padding-left: 0;
padding-bottom: 0;
}
.mobile-version.woocommerce div.product div.images .product-image-ms {
display: none;
}
.mobile-version.woocommerce div.product div.images .flex-control-nav {
position: static;
opacity: 1;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
margin-top: 10px;
}
.mobile-version.woocommerce div.product div.images .flex-control-nav li {
padding: 0;
margin: 0 5px;
width: 8px !important;
}
.mobile-version.woocommerce div.product div.images .flex-control-nav li .i-video {
display: none;
}
.mobile-version.woocommerce div.product div.images .flex-control-nav li img {
width: 8px;
border: 4px solid #dbdbdb;
border-radius: 100%;
}
.mobile-version.woocommerce div.product div.images .flex-control-nav li img.flex-active {
border-color: var(--mf-border-primary-color);
}
.mobile-version.woocommerce div.product .product_title {
font-size: 20px;
}
.mobile-version.woocommerce div.product .quantity .qty {
width: 100%;
min-width: 60px;
}
.mobile-version.woocommerce div.product form.cart {
margin-bottom: 20px;
}
.mobile-version.woocommerce div.product .summary-sep {
height: 45px;
}
.mobile-version.woocommerce div.product .tawc-deal {
padding: 0;
background-color: transparent;
padding-bottom: 20px;
border-bottom: 1px solid #e1e1e1;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-text {
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .timer {
width: auto;
margin-bottom: 0;
padding: 0 5px;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .days {
padding-left: 0;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .seconds {
padding-right: 0;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .digits {
min-width: 55px;
padding-top: 14px;
padding-bottom: 14px;
font-size: 24px;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .digits:after {
display: none;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .divider {
display: block;
padding-top: 10px;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .text {
font-size: 13px;
}
.mobile-version.woocommerce div.product .tawc-deal .deal-sold-text {
display: none;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper {
margin-bottom: 0;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper .panel {
margin-bottom: 30px;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper .panel:last-child {
margin-bottom: 20px;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper .panel .tab-title {
font-size: 20px;
font-weight: 600;
border-bottom: 1px solid #e1e1e1;
margin: 0 0 20px;
padding-bottom: 15px;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper .panel .container {
padding-left: 0;
padding-right: 0;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper .panel table th,
.mobile-version.woocommerce div.product .wc-tabs-wrapper .panel table td {
padding-left: 10px;
padding-right: 10px;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper.product-collapse-tab-enable .tab-title {
position: relative;
padding-right: 30px;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper.product-collapse-tab-enable .tab-title .tab-toggle {
position: absolute;
right: 0;
top: 3px;
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper.product-collapse-tab-enable .tab-title.active .tab-toggle i:before {
content: '\e939';
}
.mobile-version.woocommerce div.product .wc-tabs-wrapper.product-collapse-tab-enable .tab-content-wrapper.closed {
display: none;
}
.mobile-version.woocommerce #reviews .average-rating {
display: flex;
align-items: center;
}
.mobile-version.woocommerce #reviews .average-rating .average-label,
.mobile-version.woocommerce #reviews .average-rating .bar-rating {
display: none;
}
.mobile-version.woocommerce #reviews .average-rating .average-value {
font-size: 48px;
margin-right: 20px;
}
.mobile-version.woocommerce #reviews .woocommerce-product-rating .star-rating {
margin-top: 0;
}
.mobile-version.woocommerce #reviews #review_form #respond .form-submit .submit {
width: 100%;
}
.mobile-version.woocommerce #reviews #comments .woocommerce-Reviews-title {
display: none;
}
.mobile-version.woocommerce #reviews #comments ol.commentlist li {
padding-bottom: 20px;
margin-bottom: 30px;
}
.mobile-version.woocommerce #reviews #comments ol.commentlist li img.avatar {
display: none;
}
.mobile-version.woocommerce #reviews #comments ol.commentlist li .comment-text {
margin-left: 0;
}
.mobile-version.woocommerce #reviews #comments ol.commentlist li:last-child {
margin-bottom: 0;
padding-bottom: 0;
}
.mobile-version.woocommerce div.product.product-type-variable form.cart .variations td.value {
width: 100%;
}
.mobile-version .mf-product-fbt {
padding: 15px;
margin-bottom: 35px;
}
.mobile-version .mf-product-fbt ul.products {
padding-left: 0;
width: auto;
}
.mobile-version .mf-product-fbt ul.products li.product {
margin-bottom: 15px;
}
.mobile-version .mf-product-fbt ul.products li.product-buttons {
width: 100%;
clear: both;
margin-top: 20px;
}
.mobile-version .mf-product-fbt ul.products .product-content {
padding-right: 0;
}
.mobile-version .mf-product-fbt ul.products .product-content .thumbnail:after {
display: none;
}
.mobile-version .mf-product-fbt .product-buttons .mf-wishlist-button,
.mobile-version .mf-product-fbt .product-buttons .mf_add_to_cart_button {
min-width: 140px;
padding-left: 8px;
padding-right: 8px;
}
.mobile-version .mf-product-fbt .fbt-cart,
.mobile-version .mf-product-fbt .product-buttons .mf-wishlist-button {
float: left;
width: 50%;
}
.mobile-version .mf-product-instagram {
margin-bottom: 30px;
}
.mobile-version .mf-product-instagram h2 {
margin-bottom: 30px;
}
.mobile-version section.up-sells,
.mobile-version section.related {
margin-bottom: 50px;
}
.mobile-version section.up-sells .related-title,
.mobile-version section.related .related-title {
margin-bottom: 30px;
}
.mobile-version section.up-sells ul.products .slick-dots,
.mobile-version section.related ul.products .slick-dots {
margin-top: 0;
}
.mobile-version .pswp .mf-video-wrapper {
position: relative;
padding-bottom: 56.25%; padding-top: 25px;
height: 0;
top: 50%;
transform: translateY(-50%);
}
.mobile-version .pswp .mf-video-wrapper iframe,
.mobile-version .pswp .mf-video-wrapper .wp-video {
width: 90%;
height: 90%;
}
.mobile-version .topbar .widget:after {
display: none;
}
.mobile-version.woocommerce-cart .site-content {
padding-top: 30px;
}
.mobile-version.woocommerce-cart .woocommerce table.shop_table td.product-name .product-content-detail {
padding-left: 115px;
}
.mobile-version.woocommerce-cart .woocommerce .coupon {
margin-bottom: 30px;
}
.mobile-version.woocommerce-cart .woocommerce .coupon label {
font-size: 20px;
font-weight: 600;
margin-bottom: 30px;
}
.mobile-version.woocommerce-cart .woocommerce .coupon label:after {
display: none;
}
.mobile-version.woocommerce-cart .woocommerce .coupon .input-text {
margin-bottom: 15px;
}
.mobile-version.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator {
margin-bottom: 50px;
}
.mobile-version.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-button {
font-size: 20px;
font-weight: 600;
margin-bottom: 30px;
}
.mobile-version.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .shipping-calculator-button:after {
display: none;
}
.mobile-version.woocommerce-cart .woocommerce .cart-collaterals .woocommerce-shipping-calculator .button {
margin-top: 0;
}
.mobile-version.woocommerce-cart .woocommerce-cart-form .cart-title {
font-size: 18px;
font-weight: 600;
margin: 0 0 20px;
}
.mobile-version.woocommerce-checkout .site-content {
padding-top: 20px;
}
.mobile-version.woocommerce-checkout .woocommerce-info .showcoupon {
display: block;
}
.mobile-version.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .validate-required {
margin-bottom: 0;
}
.mobile-version.woocommerce-checkout form.checkout .woocommerce-form__label > span:before {
top: 0;
}
.mobile-version.dokan-dashboard .site-content {
padding-top: 20px;
}
.mobile-version.single-post .site-content {
padding-top: 30px;
}
.mobile-version.single-post .entry-header .entry-title {
font-size: 24px;
}
.mobile-version.single-post.single-post-layout-3 .single-post-wrapper .entry-header {
margin-bottom: 50px;
}
.mobile-version.single-post .comments-area {
padding-top: 30px;
margin-top: 30px;
}
.mobile-version .single-post-header.layout-3 {
padding-top: 20px;
}
.mobile-version .mf-vendor-header-tabs {
margin-left: -15px;
margin-right: -15px;
margin-bottom: 0;
}
.mobile-version.search-no-results .mf-catalog-title,
.mobile-version.search-results .mf-catalog-title {
display: none;
}
.mobile-version.search-no-results .woocommerce-info {
margin-top: 15px;
}
.mobile-version .martfury-newletter.no-image {
padding-top: 0;
padding-bottom: 0;
}
.mobile-version .martfury-newletter.no-image .form-area {
padding-right: 30px;
}
.mobile-version .woocommerce-error, .mobile-version .woocommerce-info, .mobile-version .woocommerce-message {
display: flex;
flex-direction: column;
padding-right: 10px;
padding-left: 40px;
padding-bottom: 20px;
}
.mobile-version .woocommerce-error a.button:not(.add_to_wishlist), .mobile-version .woocommerce-info a.button:not(.add_to_wishlist), .mobile-version .woocommerce-message a.button:not(.add_to_wishlist) {
order: 2;
text-align: left;
background-color: transparent;
padding: 0;
color: #000;
text-decoration: underline;
height: auto;
line-height: 1;
margin-top: 5px;
font-size: 14px;
}
.mobile-version .woocommerce-error:before, .mobile-version .woocommerce-info:before, .mobile-version .woocommerce-message:before {
left: 10px;
}
.mobile-version .mf-newsletter-popup .newletter-content .n-desc p {
white-space: normal;
}
.mobile-version .mf-newsletter-popup.hide-on-mobile {
display: none;
}
.mobile-version .sticky-product-info-wapper {
display: block;
}
.mobile-version .sticky-product-info-wapper.viewport {
top: 0;
}
.mobile-version .sticky-product-info-wapper .sc-product-info {
margin-right: 0;
width: 100%;
overflow: auto;
}
.mobile-version .sticky-product-info-wapper .sc-product-info .sc-tabs {
margin-left: -7px;
margin-right: -7px;
flex-wrap: nowrap;
}
.mobile-version .sticky-product-info-wapper .sc-product-info .sc-tabs li {
padding: 0 7px;
}
.mobile-version .sticky-product-info-wapper .sc-product-info .sc-tabs li a {
white-space: nowrap;
}
.mobile-version .sticky-product-info-wapper .product-thumb,
.mobile-version .sticky-product-info-wapper .product-name > h2,
.mobile-version .sticky-product-info-wapper .sc-product-cart {
display: none;
}
.mobile-version.sticky-header .sticky-product-info-wapper.viewport {
top: 65px;
}
.mobile-version.mf-add-to-cart-fixed .mf-els-modal-mobile {
padding-bottom: 0;
overflow: hidden;
}
.mobile-version.mf-add-to-cart-fixed .widget-footer-cart {
position: fixed;
left: 0;
bottom: 0;
right: 0;
height: 67px;
display: flex;
align-items: center;
justify-content: center;
}
.mobile-version.mf-add-to-cart-fixed .widget-footer-cart a {
color: #000;
font-size: 16px;
font-weight: 500;
}
.woocommerce div.product form.cart div.quantity .decrease, .woocommerce div.product form.cart div.quantity .increase {
width: 30px;
font-size: 24px;
}
.woocommerce div.product form.cart div.quantity .increase {
text-align: right;
}
.mobile-version .right_side_full #mf-catalog-toolbar .mf-filter-mobile {
display: none;
}
.mobile-version .right_side_full #mf-catalog-toolbar .shop-view {
width: 100%;
}
.mobile-version.wcfmmp-store-page.vendor-store-not-filter .shop-toolbar .shop-view {
width: 100%;
}
.mobile-version.mobile-nav-enable .mf-quick-view-modal .modal-content,
.mobile-version.mobile-nav-enable .mf-quick-view-modal .modal-content div.product .cart .actions-button {
padding-bottom: 65px;
}
.mobile-version .woocommerce-products-header__title {
font-weight: 600;
margin: 30px 0;
}
@media (max-width: 820px) and (min-width: 768px) {
.mobile-version.woocommerce div.product form.cart {
display: flex;
}
.mobile-version.woocommerce div.product form.cart div.quantity {
margin-right: 15px;
}
.mobile-version.woocommerce div.product form.cart div.actions-button {
margin-top: 0;
}
.mobile-version.woocommerce div.product form.cart div.actions-button .mf-compare-button,
.mobile-version.woocommerce div.product form.cart div.actions-button .yith-wcwl-add-to-wishlist,
.mobile-version.woocommerce div.product form.cart div.actions-button .wcboost-wishlist-button {
margin-top: 0;
padding-top: 0;
}
.mobile-version.woocommerce div.product.mf-has-buy-now form.cart .single_add_to_cart_button {
margin-right: 15px;
}
}
@media (max-width: 1760px) {
.page-template-template-home-full-width .mf-product-deals-day .slick-arrow,
.page-template-template-home-full-width .mf-products-tabs:not(.products-of-category-2) .slick-arrow,
.page-template-template-home-full-width .mf-products-carousel .slick-arrow,
.single-product-layout-6 section.up-sells ul.products .slick-arrow,
.single-product-layout-6 section.related ul.products .slick-arrow,
.single-product-layout-6 .mf-product-instagram .slick-slider .slick-arrow {
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
border-radius: 50%;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 20px;
color: #333;
z-index: 99;
}
.page-template-template-home-full-width .mf-product-deals-day .slick-prev-arrow,
.page-template-template-home-full-width .mf-products-tabs:not(.products-of-category-2) .slick-prev-arrow,
.page-template-template-home-full-width .mf-products-carousel .slick-prev-arrow,
.single-product-layout-6 section.up-sells ul.products .slick-prev-arrow,
.single-product-layout-6 section.related ul.products .slick-prev-arrow,
.single-product-layout-6 .mf-product-instagram .slick-slider .slick-prev-arrow {
left: 0;
}
.page-template-template-home-full-width .mf-product-deals-day .slick-next-arrow,
.page-template-template-home-full-width .mf-products-tabs:not(.products-of-category-2) .slick-next-arrow,
.page-template-template-home-full-width .mf-products-carousel .slick-next-arrow,
.single-product-layout-6 section.up-sells ul.products .slick-next-arrow,
.single-product-layout-6 section.related ul.products .slick-next-arrow,
.single-product-layout-6 .mf-product-instagram .slick-slider .slick-next-arrow {
right: 0;
}
}
@media (max-width: 1680px) {
.martfury-container {
width: 100%;
padding-left: 30px;
padding-right: 30px;
}
.mf-recently-products.rv-full-width > .rv-container {
width: 100%;
padding-left: 30px;
padding-right: 30px;
}
}
@media (max-width: 1600px) and (min-width: 1300px) {
.page-template-template-home-full-width .mf-banner-medium.layout-5 .banner-content .title {
font-size: 24px;
}
.page-template-template-home-full-width .mf-banner-medium.layout-5 .banner-content .desc .price {
font-size: 16px;
}
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button {
margin-left: 0;
}
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-wishlist-button {
clear: both;
}
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-wishlist-button,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button {
float: left;
padding-top: 10px;
}
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button.added,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .compare {
width: auto;
height: auto;
overflow: visible;
display: flex;
align-items: center;
}
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a:before,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a:before,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a:before,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button:before,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button.added:before,
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .compare:before {
padding-right: 10px;
}
.single-product-layout-6.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .wcboost-products-compare-button {
margin-top: 0;
}
.header-layout-8 .site-header .primary-nav > ul > li {
padding-left: 13px;
padding-right: 13px;
}
.header-layout-8 .site-header .primary-nav > ul > li:last-child {
padding-right: 0;
}
.header-layout-8 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-8 .site-header .primary-nav > ul > li > a {
font-size: 14px;
}
}
@media (max-width: 1299px) and (min-width: 1200px) {
.page-template-template-home-full-width .mf-banner-medium.layout-5 .banner-content .link-box {
display: none;
}
.header-layout-8 .site-header .primary-nav > ul > li {
padding-left: 8px;
padding-right: 8px;
}
.header-layout-8 .site-header .primary-nav > ul > li:last-child {
padding-right: 0;
}
.header-layout-8 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-8 .site-header .primary-nav > ul > li > a {
font-size: 14px;
}
}
@media (max-width: 1500px) and (min-width: 1301px) {
.page-template-template-home-full-width .mf-image-box .box-title {
font-size: 14px;
}
.header-layout-9 .site-header .primary-nav > ul > li {
padding-left: 14px;
padding-right: 14px;
}
.header-layout-9 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-9 .site-header .primary-nav > ul > li:hover:before {
width: calc( 100% - 28px);
left: 14px;
}
.header-layout-9 .site-header .primary-nav > ul > li:hover:first-child:before {
width: calc( 100% - 14px);
left: 0;
}
.header-layout-9 .site-header .primary-nav > ul > li > a {
font-size: 14px;
}
.header-layout-9 .site-header .recently-viewed .recently-title,
.header-layout-9 .site-header .header-wishlist .header-wishlist-text {
font-size: 14px;
}
}
@media (max-width: 1319px) and (min-width: 1200px) {
.page-template-template-home-full-width .mf-image-box.style-2 .box-title {
padding-left: 5px;
padding-right: 5px;
font-size: 12px;
}
}
@media (max-width: 1460px) and (min-width: 1200px) {
.page-template-template-home-full-width .mf-banner-small .banner-content .desc {
display: none;
}
.page-template-template-home-full-width .mf-banner-small .box-price .s-price {
font-size: 14px;
}
.page-template-template-home-full-width .mf-banner-small .box-price {
width: 50px;
height: 50px;
}
.page-template-template-home-full-width .mf-banner-large .col-banner-content {
width: 35%;
}
.page-template-template-home-full-width .mf-banner-large.layout-2 .banner-content .box-title, .page-template-template-home-full-width .mf-banner-large.layout-3 .banner-content .box-title {
font-size: 24px;
}
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-text {
width: 30%;
font-size: 14px;
}
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-sold .deal-sold-text {
width: 30%;
font-size: 14px;
}
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-sold .deal-progress,
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-sold .deal-text {
width: 70%;
}
}
@media (max-width: 1366px) and (min-width: 1300px) {
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-expire-countdown .digits {
font-size: 26px;
min-width: 50px;
}
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-expire-countdown .text {
font-size: 13px;
}
}
@media (max-width: 1299px) and (min-width: 1200px) {
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-expire-date {
display: block;
}
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-text {
width: 100%;
}
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .days {
padding-left: 0;
}
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-sold .deal-sold-text,
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-sold .deal-progress,
.single-product-layout-6.woocommerce div.product .tawc-deal .deal-sold .deal-text {
width: 100%;
padding-left: 0;
}
}
@media (max-width: 1400px) and (min-width: 1200px) {
.header-layout-3 .site-header .primary-nav > ul > li {
padding-left: 15px;
padding-right: 15px;
}
.header-layout-3 .header-bar .widget {
padding-left: 15px;
padding-right: 15px;
}
.martfury-icons-list.style-3,
.martfury-icons-list.style-2 {
padding-left: 20px;
padding-right: 20px;
}
.martfury-icon-box.icon_position-left .box-wrapper {
padding-left: 15px;
}
.martfury-icon-box.icon_position-left .box-icon i {
font-size: 35px;
}
.martfury-icons-list ul .icon-box-step {
display: none;
}
}
@media (max-width: 1300px) and (min-width: 1200px) {
.header-layout-3 .site-header .primary-nav > ul > li {
padding-left: 8px;
padding-right: 8px;
}
.header-layout-3 .header-bar .widget {
padding-left: 10px;
padding-right: 10px;
}
.header-layout-9 .site-header .primary-nav > ul > li {
padding-left: 12px;
padding-right: 12px;
}
.header-layout-9 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-9 .site-header .primary-nav > ul > li:hover:before {
width: calc( 100% - 24px);
left: 12px;
}
.header-layout-9 .site-header .primary-nav > ul > li:hover:first-child:before {
width: calc( 100% - 12px);
left: 0;
}
.header-layout-9 .site-header .primary-nav > ul > li > a {
font-size: 13px;
}
.header-layout-9 .site-header .recently-viewed .recently-title,
.header-layout-9 .site-header .header-wishlist .header-wishlist-text {
font-size: 13px;
}
}
@media (max-width: 1300px) {
.single-product-layout-6.woocommerce div.product form.cart .actions-button {
float: left;
display: flex;
align-items: center;
margin-top: 20px;
}
.single-product-layout-6.woocommerce div.product form.cart .buy_now_button {
float: none;
margin-left: 0;
}
}
@media (min-width: 1200px) {
.col-mf-5 {
width: 20%;
}
.catalog-full-width .col-cat:nth-child(3n+1) {
clear: none;
}
.catalog-full-width .col-cat:nth-child(4n+1) {
clear: both;
}
.catalog-full-width .mf-catalog-brands .brand-item {
width: calc(100% / 8);
}
.catalog-full-width.sidebar-content .content-area, .catalog-full-width.content-sidebar .content-area {
width: 81%;
}
.catalog-full-width.sidebar-content .catalog-sidebar,
.catalog-full-width.sidebar-content .primary-sidebar, .catalog-full-width.content-sidebar .catalog-sidebar,
.catalog-full-width.content-sidebar .primary-sidebar {
width: 19%;
}
.single-product-layout-6.sidebar-content .content-area, .single-product-layout-6.content-sidebar .content-area {
width: 81%;
}
.single-product-layout-6.sidebar-content .product-sidebar, .single-product-layout-6.content-sidebar .product-sidebar {
width: 19%;
}
.single-product-layout-6.sidebar-content .content-area {
padding-left: 50px;
}
.single-product-layout-6.content-sidebar .content-area {
padding-right: 50px;
}
}
@media (max-width: 1366px) {
body:not(.page-template-template-home-full-width) .mf-product-deals-day .slick-arrow,
body:not(.page-template-template-home-full-width) .mf-products-tabs:not(.products-of-category-2) .slick-arrow,
body:not(.page-template-template-home-full-width) .mf-products-carousel:not(.arrow-has-background) .slick-arrow,
body:not(.single-product-layout-6) section.up-sells ul.products .slick-arrow,
body:not(.single-product-layout-6) section.related ul.products .slick-arrow,
body:not(.single-product-layout-6) .mf-product-instagram .slick-slider .slick-arrow {
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
border-radius: 50%;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 20px;
color: #333;
z-index: 99;
}
body:not(.page-template-template-home-full-width) .mf-product-deals-day .slick-prev-arrow,
body:not(.page-template-template-home-full-width) .mf-products-tabs:not(.products-of-category-2) .slick-prev-arrow,
body:not(.page-template-template-home-full-width) .mf-products-carousel:not(.arrow-has-background) .slick-prev-arrow,
body:not(.single-product-layout-6) section.up-sells ul.products .slick-prev-arrow,
body:not(.single-product-layout-6) section.related ul.products .slick-prev-arrow,
body:not(.single-product-layout-6) .mf-product-instagram .slick-slider .slick-prev-arrow {
left: 0;
}
body:not(.page-template-template-home-full-width) .mf-product-deals-day .slick-next-arrow,
body:not(.page-template-template-home-full-width) .mf-products-tabs:not(.products-of-category-2) .slick-next-arrow,
body:not(.page-template-template-home-full-width) .mf-products-carousel:not(.arrow-has-background) .slick-next-arrow,
body:not(.single-product-layout-6) section.up-sells ul.products .slick-next-arrow,
body:not(.single-product-layout-6) section.related ul.products .slick-next-arrow,
body:not(.single-product-layout-6) .mf-product-instagram .slick-slider .slick-next-arrow {
right: 0;
}
.page-template-template-home-full-width .mf-banner-medium.layout-5 .banner-content .title {
font-size: 18px;
}
.page-template-template-home-full-width .mf-banner-medium.layout-5 .banner-content .desc .price {
font-size: 14px;
}
}
@media (max-width: 1199px) and (min-width: 992px) {
.single-product-layout-6.woocommerce div.product form.cart .actions-button {
display: block;
margin-top: 20px;
width: 100%;
}
.single-product-layout-6.woocommerce div.product form.cart .wcboost-wishlist-button {
margin-left: 0;
}
.single-product-layout-6.woocommerce div.product form.cart .buy_now_button {
width: 100%;
}
.header-layout-2 .site-header .primary-nav > ul > li {
padding-left: 10px;
padding-right: 10px;
}
.header-layout-2 .site-header .primary-nav > ul > li > a {
font-size: 14px;
}
.header-layout-2 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-2 .site-header .primary-nav > ul > li:last-child {
padding-right: 0;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu .cats-menu-title > i {
display: none;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu .cats-menu-title .text {
padding-right: 20px;
transition: none;
margin-top: 5px;
line-height: 1;
}
.sticky-header .site-header.minimized .header-main .products-cats-menu .cats-menu-title .text:after {
content: '\e93a';
display: inline-block;
font: normal normal normal 14px/1 linearicons;
position: absolute;
right: 0;
top: 8px;
font-size: 12px;
font-weight: 700;
transition: .2s;
}
.site-header .product-extra-search .hot-words-wrapper {
display: none;
}
.header-layout-1 .site-header .header-bar {
display: none;
}
.header-layout-1 .site-header .products-cats-menu .toggle-product-cats {
min-width: 270px;
}
.header-layout-1 .site-header .products-cats-menu.open:before {
width: 0;
left: 50%;
right: auto;
}
.header-layout-1 .site-header .products-cats-menu.open .cats-menu-title:after {
transform: translateY(-50%);
}
.header-layout-1 .site-header .products-cats-menu.open .toggle-product-cats {
opacity: 0;
top: 120%;
z-index: -991;
}
.header-layout-1 .site-header .products-cats-menu.open:hover:before {
width: 100%;
left: 0;
right: 0;
}
.header-layout-1 .site-header .products-cats-menu.open:hover .cats-menu-title:after {
transform: rotate(180deg) translateY(50%);
}
.header-layout-1 .site-header .products-cats-menu.open:hover .toggle-product-cats {
opacity: 1;
top: 100%;
z-index: 991;
}
.header-layout-2 .site-header:not(.minimized) .d-department.mf-close .toggle-product-cats,
.header-layout-4 .site-header:not(.minimized) .d-department.mf-close .toggle-product-cats,
.header-layout-5 .site-header:not(.minimized) .d-department.mf-close .toggle-product-cats,
.header-layout-6 .site-header:not(.minimized) .d-department.mf-close .toggle-product-cats {
display: block;
}
.header-layout-2 .site-header:not(.minimized) .d-department.mf-close .products-cats-menu .cats-menu-title:after,
.header-layout-4 .site-header:not(.minimized) .d-department.mf-close .products-cats-menu .cats-menu-title:after,
.header-layout-5 .site-header:not(.minimized) .d-department.mf-close .products-cats-menu .cats-menu-title:after,
.header-layout-6 .site-header:not(.minimized) .d-department.mf-close .products-cats-menu .cats-menu-title:after {
display: block;
}
.header-layout-5 .site-header .primary-nav > ul > li {
padding-left: 10px;
padding-right: 10px;
}
.header-layout-5 .site-header .primary-nav > ul > li > a {
font-size: 14px;
}
.header-layout-5 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-5 .site-header .primary-nav > ul > li:last-child {
padding-right: 0;
}
.header-layout-3 .site-header .recently-viewed .recently-title {
display: inline-block;
}
.header-layout-3 .site-header .products-cats-menu .toggle-product-cats {
min-width: 270px;
}
.header-layout-3 .site-header .products-cats-menu.open:before {
width: 0;
left: 50%;
right: auto;
}
.header-layout-3 .site-header .products-cats-menu.open .toggle-product-cats {
opacity: 0;
top: 120%;
z-index: -991;
}
.header-layout-3 .site-header .products-cats-menu.open:hover:before {
width: 100%;
left: 0;
right: 0;
}
.header-layout-3 .site-header .products-cats-menu.open:hover .toggle-product-cats {
opacity: 1;
top: 100%;
z-index: 991;
}
.header-layout-9 .topbar .topbar-left {
flex: 1;
}
.header-layout-9 .site-header .primary-nav > ul > li > a {
font-size: 14px;
}
}
@media (max-width: 1199px) and (min-width: 1025px) {
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .digits {
font-size: 24px;
min-width: 50px;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .text {
font-size: 13px;
}
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown .divider {
width: 10px;
}
.mf-products-carousel.arrow-has-background .slick-next-arrow {
right: -30px;
}
.mf-products-carousel.arrow-has-background .slick-prev-arrow {
left: -30px;
}
}
@media (max-width: 1199px) {
.site-header .extras-menu {
margin-left: 20px;
}
.site-header .extras-menu > li {
padding: 0 10px;
}
.site-header .extras-menu > li:last-child {
padding-right: 0;
}
.header-layout-3 .site-header .header-bar {
display: none;
}
.header-layout-3 .site-header .col-nav-menu {
display: block;
}
.header-layout-8 .site-header .primary-nav > ul > li {
padding-left: 8px;
padding-right: 8px;
}
.header-layout-8 .site-header .primary-nav > ul > li:last-child {
padding-right: 0;
}
.header-layout-8 .site-header .primary-nav > ul > li:first-child {
padding-left: 0;
}
.header-layout-8 .site-header .primary-nav > ul > li > a {
font-size: 14px;
}
.header-layout-9 .site-header .extras-menu .menu-item-hotline {
padding-right: 20px;
}
.mf-other-categories .categories-list .col-cat {
width: 20%;
}
.mf-product-layout-4 .woocommerce-Reviews .col-average-rating,
.mf-product-layout-4 .woocommerce-Reviews .col-review_form {
width: 100%;
}
.mf-product-layout-4 .woocommerce-Reviews .col-review_form {
margin-top: 30px;
}
.woocommerce div.product .tawc-deal .deal-expire-date {
display: block;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-text {
width: 100%;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .days {
padding-left: 0;
}
.woocommerce div.product .tawc-deal .deal-sold {
margin-top: 20px;
}
.woocommerce div.product .tawc-deal .deal-sold .deal-sold-text,
.woocommerce div.product .tawc-deal .deal-sold .deal-progress,
.woocommerce div.product .tawc-deal .deal-sold .deal-text {
width: 100%;
padding-left: 0;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button {
margin-left: 0;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-wishlist-button {
clear: both;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button {
float: left;
padding-top: 10px;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .compare {
width: auto;
height: auto;
overflow: visible;
display: flex;
align-items: center;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .compare:before {
padding-right: 10px;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__icon {
margin-right: 10px;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .wcboost-products-compare-button .wcboost-products-compare-button__text {
display: inline;
color: #999;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button .wcboost-products-compare-button:hover .wcboost-products-compare-button__text {
color: #000;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button.added {
width: auto;
height: auto;
overflow: visible;
display: flex;
align-items: center;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a > span,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a > span,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a > span,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button > span,
.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button.added > span {
display: block;
padding-left: 10px;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .mf-compare-button {
margin-top: 6px;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .wcboost-wishlist-button .wcboost-wishlist-button__text {
display: inline;
font-size: 14px;
margin-left: 10px;
padding-left: 0;
}
.woocommerce div.product.mf-product-layout-3 .cart .actions-button .yith-wcwl-add-to-wishlist,
.woocommerce div.product.mf-product-layout-3 .cart .actions-button .wcboost-wishlist-button,
.woocommerce div.product.mf-product-layout-3 .cart .actions-button .mf-compare-button {
padding-top: 0;
margin-top: 0;
margin-bottom: 0;
}
.woocommerce div.product.mf-product-layout-3 .cart .actions-button .mf-wishlist-button,
.woocommerce div.product.mf-product-layout-6 .cart .actions-button .mf-wishlist-button {
float: left;
}
.single-post-header.layout-2 .featured-image,
.vc_row.parallax {
background-attachment: scroll;
background-position: center !important;
background-size: cover;
}
.footer-layout .newsletter-content {
margin-bottom: 15px;
}
.footer-layout .footer-info .info-item {
width: 50%;
max-width: 50%;
justify-content: center;
}
.footer-layout .footer-info .info-item-sep {
display: none;
}
.footer-layout .footer-row {
display: block;
text-align: center;
}
.footer-layout .footer-row:after {
display: block;
content: "";
clear: both;
}
.footer-layout .footer-payments {
justify-content: center;
margin-top: 15px;
}
body .martfury-empty-space .mf_empty_space_md {
display: block;
}
body .martfury-empty-space .mf_empty_space_lg,
body .martfury-empty-space .mf_empty_space_xs {
display: none;
}
.martfury-icons-list ul li {
width: 49%;
margin: 10px 0;
justify-content: left;
padding: 0;
}
.martfury-icons-list ul li:nth-child(2n):after {
display: none;
}
.mf-products-of-category .images-slider {
display: none;
}
.mf-products-of-category .cats-info {
width: 25%;
}
.mf-products-of-category .products-box {
width: 75%;
border-left: 1px solid #e1e1e1;
}
.woocommerce ul.products li.product .mf-product-thumbnail .footer-button .mf-compare-button {
display: none;
}
.mf-category-tabs .tabs-content ul li {
width: 16.66%;
}
.mf-products-of-category-2 .products-side ul.products li.product:last-child {
display: none;
}
.mf-products-of-category-2 .slick-dots {
margin-bottom: 20px !important;
}
.mf-products-carousel:not(.mf-product-deals-day) .cat-header {
display: block;
}
.mf-products-carousel:not(.mf-product-deals-day) .cat-header .extra-links {
margin-top: 15px;
}
.mf-products-list .cat-header {
display: block;
}
.mf-products-list .cat-header .extra-links {
margin-top: 15px;
}
.mf-products-grid .cat-header {
display: block;
}
.mf-products-grid .cat-header .tabs-header-nav {
margin-top: 15px;
}
.mf-banner-large .banner-content .desc br {
display: none;
}
.martfury-faq_group .faq-item {
margin-bottom: 40px;
}
}
@media (max-width: 1199px) and (min-width: 992px) {
.mf-products-list ul.products li.product.un-4-cols {
width: 33.33%;
}
}
@media (max-width: 991px) and (min-width: 768px) {
.mf-products-list.woocommerce ul.products li.product.un-4-cols, .mf-products-list.woocommerce ul.products li.product.un-3-cols {
width: 50%;
}
.mf-products-list.woocommerce ul.products li.product.un-4-cols:nth-child(3n+1), .mf-products-list.woocommerce ul.products li.product.un-3-cols:nth-child(3n+1) {
clear: none;
}
.mf-products-list.woocommerce ul.products li.product.un-4-cols:nth-child(2n+1), .mf-products-list.woocommerce ul.products li.product.un-3-cols:nth-child(2n+1) {
clear: both;
}
}
@media (max-width: 1024px) and (min-width: 768px) {
.mf-product-deals-carousel .product .entry-summary .tawc-deal .deal-expire-date .deal-expire-countdown {
justify-content: flex-start;
}
}
@media (max-width: 991px) {
.site-header .header-extras {
width: auto;
}
.site-header .header-extras .product-extra-search {
display: none;
}
.site-header .header-extras .extras-menu > li .extra-icon {
font-size: 24px;
}
.site-header .header-extras .menu-item-account.logined {
text-align: right;
}
.site-header .header-extras .menu-item-account.logined > a {
width: auto;
}
.site-header .header-extras .menu-item-account.logined.avatar > a {
width: 30px;
}
.site-header .header-extras .menu-item-account ul {
display: none;
}
.site-header .header-extras .menu-item-cart .mini-cart-content {
display: none;
}
.site-header .header-extras .menu-item-cart > a:after {
display: none;
}
.site-header .header-extras .menu-item-account > a:after {
display: none;
}
.site-header .header-logo {
width: 50%;
}
.site-header .header-row {
justify-content: space-between;
}
.site-header.has-hot-words .header-logo,
.site-header.has-hot-words .extras-menu {
margin-top: 0;
}
.site-header.has-hot-words .mobile-menu-row {
align-items: flex-start;
}
.site-header.has-hot-words .mobile-menu-row .mf-toggle-menu {
margin-top: 6px;
}
.site-header .mobile-menu {
padding: 0 0 15px;
}
.site-header .mobile-menu .search-submit {
width: 60px;
overflow: hidden;
border-radius: 0;
padding: 0;
min-width: auto;
}
.site-header .mobile-menu .search-submit:before {
content: "";
display: inline-block;
font: normal normal normal 14px/1 linearicons;
display: block;
height: 42px;
line-height: 42px;
font-size: 20px;
}
.site-header .mobile-menu-row {
display: flex;
align-items: center;
}
.site-header .mobile-menu-row .mf-toggle-menu {
font-size: 30px;
color: var(--mf-dark-color);
display: block;
line-height: 1;
padding-left: 30px;
padding-right: 20px;
}
#site-header .header-logo .d-logo {
max-width: 100%;
margin-right: 0;
}
.site-header .product-extra-search .product-cat {
display: none;
}
.site-header .product-extra-search .search-field {
border-left: 1px solid #ccc;
}
.primary-mobile-nav {
z-index: 999999;
display: block;
}
.site-header .martfury-container .header-extras,
.site-header .martfury-container .mr-header-menu {
width: auto;
}
.site-header .martfury-container .header-logo {
width: 50%;
}
.header-layout-5 .site-header .mobile-menu-row .mf-toggle-menu {
color: #fff;
}
.sticky-header .site-header.minimized .header-main {
position: static;
}
.sticky-header .site-header.minimized .mobile-menu {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 9999;
padding-top: 10px;
padding-bottom: 10px;
background-color: #fff;
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-webkit-animation-duration: .25s;
animation-duration: .25s;
border-bottom: 1px solid #e1e1e1;
}
.sticky-header .site-header.minimized .header-mobile-v1 .header-main {
position: fixed;
top: 0;
padding-left: 15px;
padding-right: 15px;
border-bottom: none;
}
.sticky-header .site-header.minimized .header-mobile-v1 .mobile-menu {
position: static;
}
.sticky-header.sticky-header-bottom .site-header.minimized .header-mobile-v1 .header-main {
position: static;
}
.sticky-header.sticky-header-bottom .site-header.minimized .header-mobile-v1 .mobile-menu {
position: fixed;
padding-left: 15px;
padding-right: 15px;
}
.header-layout-3 .site-header .mobile-menu,
.header-layout-4 .site-header .mobile-menu,
.header-layout-5 .site-header .mobile-menu {
border-color: rgba(255, 255, 255, 0.15);
}
.header-layout-9 .site-header .mobile-menu-row .mf-toggle-menu {
padding-left: 0;
}
.header-layout-9 .site-header .product-extra-search .search-submit {
min-width: auto;
}
.header-layout-9 .site-header .product-extra-search .search-field {
border-radius: 5px;
}
.container {
padding-left: 15px;
padding-right: 15px;
}
.container .container {
padding-left: 0;
padding-right: 0;
}
input[type="text"] {
-webkit-appearance: none;
appearance: none;
border-radius: 0;
}
.topbar {
background-color: #f4f5f5;
}
.mf-catalog-brands .brand-item {
width: 33.33%;
margin: 10px 0;
}
.woocommerce ul.products {
margin-left: -10px;
margin-right: -10px;
}
.woocommerce ul.products li.product {
padding-right: 10px;
padding-left: 10px;
}
.woocommerce ul.products li.product .product-inner {
padding: 0;
border: none;
}
.woocommerce ul.products li.product .mf-product-details-hover {
padding: 0;
border: none;
left: 0;
right: 0;
}
.woocommerce ul.products li.product .product-inner .mf-product-content,
.woocommerce ul.products li.product .product-inner .mf-product-price-box {
display: none;
}
.woocommerce ul.products li.product .product-inner .mf-product-details-hover {
position: static;
opacity: 1;
min-height: auto;
display: block;
}
.woocommerce ul.products li.product .product-inner .mf-product-details-hover .mf-rating {
display: flex;
}
.product_loop-no-hover ul.products li.product .product-inner .mf-product-content,
.product_loop-no-hover ul.products li.product .product-inner .mf-product-price-box {
display: block;
}
.mf-product-deals-grid ul.products {
margin-right: 0;
margin-left: 0;
}
.shop-view-list ul.products:not(.slick-slider) li.product .product-inner .mf-product-content,
.shop-view-list ul.products:not(.slick-slider) li.product .product-inner .mf-product-price-box,
.shop-view-list .wcfmmp-store-page-wrap ul.products:not(.slick-slider) li.product .product-inner .mf-product-content,
.shop-view-list .wcfmmp-store-page-wrap ul.products:not(.slick-slider) li.product .product-inner .mf-product-price-box {
display: block;
}
.shop-view-list ul.products:not(.slick-slider) li.product .product-inner .mf-product-details-hover,
.shop-view-list .wcfmmp-store-page-wrap ul.products:not(.slick-slider) li.product .product-inner .mf-product-details-hover {
position: absolute;
background-color: transparent !important;
display: none;
}
.shop-view-list ul.products:not(.slick-slider) li.product .product-inner .mf-product-details-hover .mf-rating,
.shop-view-list .wcfmmp-store-page-wrap ul.products:not(.slick-slider) li.product .product-inner .mf-product-details-hover .mf-rating {
display: none;
}
.shop-view-list ul.products:not(.slick-slider) li.product .product-inner .mf-product-details-hover .mf-attr-swatches,
.shop-view-list .wcfmmp-store-page-wrap ul.products:not(.slick-slider) li.product .product-inner .mf-product-details-hover .mf-attr-swatches {
opacity: 0;
}
.mf-products-of-category .products-box ul.products li .mf-product-details-hover,
.mf-products-list ul.products li.product .product-inner .mf-product-content,
.mf-products-list ul.products li.product .product-inner .mf-product-price-box {
display: block;
}
.mf-catalog-top-categories .col-top-categories {
margin-top: 20px;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li {
position: relative;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li .cat-menu-close {
display: block;
}
.mf-catalog-top-categories .top-categories-list .categories-list > li.opened .cat-menu-close i:before {
content: "\e939";
}
.mf-catalog-top-categories .top-categories-list .categories-list .sub-categories {
display: none;
position: static;
transform: scaleX(1);
opacity: 1;
border: none;
}
.mf-catalog-top-categories .top-categories-grid .col-cat:last-child, .mf-catalog-top-categories .top-categories-grid .col-cat:nth-child(3n) {
border-right: 1px solid rgba(141, 141, 141, 0.15);
}
.mf-catalog-top-categories .top-categories-grid .col-cat:nth-last-child(1), .mf-catalog-top-categories .top-categories-grid .col-cat:nth-last-child(2), .mf-catalog-top-categories .top-categories-grid .col-cat:nth-last-child(3) {
border-bottom: 1px solid rgba(141, 141, 141, 0.15);
}
.mf-other-categories .categories-list .col-cat {
width: 33.33%;
}
.mf-other-categories .categories-list .col-cat:nth-child(3n+1) {
clear: both;
}
.site-content .widgets-area {
margin-top: 50px;
}
.mf-product-layout-4 .widgets-area {
margin-top: 0;
}
.mf-recently-products .product-list li .product-info {
display: none !important;
}
.martfury-newletter .form-area {
padding: 30px;
}
.martfury-newletter.no-image .form-area {
padding-right: 30px;
}
.woocommerce-cart table.shop_table tr td.product-thumbnail {
padding-left: 0 !important;
}
.woocommerce-cart table.shop_table tr td {
width: auto !important;
}
.single-product-layout-6.woocommerce div.product form.cart .actions-button {
margin-top: 0;
margin-left: 20px;
}
.single-product-layout-6.woocommerce div.product form.cart .buy_now_button {
float: left;
margin-right: 30px;
}
.site-footer .footer-links .widget_nav_menu {
margin-bottom: 25px;
}
.site-footer .footer-links .widget_nav_menu .widget-title {
display: block;
margin-bottom: 5px;
}
.site-footer .footer-links .widget_nav_menu ul {
display: block;
margin-left: -10px;
margin-right: -10px;
}
.site-footer .footer-widgets {
padding-bottom: 50px;
}
.site-footer .footer-widgets .footer-sidebar {
width: 50%;
max-width: 50% !important;
margin-bottom: 30px;
}
.mf-category-tabs .tabs-content ul li {
width: 25%;
}
.mf-banners-grid {
margin-left: 0;
}
.mf-banners-grid .l-banners {
width: 100%;
}
.mf-banners-grid .l-banners .item-large:last-child {
display: none;
}
.mf-banners-grid .r-banners {
display: none;
}
.mf-banners-grid-2 {
margin-left: 0;
}
.mf-banners-grid-2 .r-banners {
display: none;
}
.mf-products-of-category-2 .cats-header {
display: block;
}
.mf-products-of-category-2 .cats-header .extra-links {
margin-top: 10px;
flex-wrap: wrap;
}
.mf-products-of-category-2 .mf-products-tabs {
margin-top: 20px;
padding-left: 15px;
padding-right: 15px;
}
.mf-products-of-category-2 .images-slider {
padding: 15px;
}
.mf-products-of-category-2 .products-cat {
display: block;
}
.mf-products-of-category-2 .products-side {
padding: 0 20px;
margin-top: 40px;
}
.mf-products-of-category-2 .products-side ul.products li.product:last-child {
display: flex;
}
.mf-products-of-category-2 .products-side .link {
margin-bottom: 20px;
justify-content: flex-start;
}
.mf-entry-product-header .entry-left,
.mf-entry-product-header .social-links {
max-width: 100%;
float: none;
}
.mf-entry-product-header .social-links {
margin: 10px 0;
}
.woocommerce div.product .woocommerce-product-gallery,
.woocommerce div.product .entry-summary {
width: 100%;
float: none;
padding-left: 0;
}
.woocommerce div.product .entry-summary {
margin-top: 40px;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images,
.woocommerce .mf-single-product.mf-product-sidebar .entry-summary {
width: 100%;
float: none;
padding-left: 0;
}
.woocommerce .mf-single-product.mf-product-sidebar div.images .flex-control-nav,
.woocommerce .mf-single-product.mf-product-sidebar .entry-summary .flex-control-nav {
max-width: 400px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .woocommerce-product-gallery,
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary {
width: 100%;
float: none;
}
.woocommerce .mf-single-product.mf-product-layout-3 div.images img {
width: auto;
}
.woocommerce-cart .woocommerce .coupon {
margin-bottom: 20px;
}
.woocommerce-checkout .col-form-coupon,
.woocommerce-checkout .col-form-login {
margin-bottom: 0;
}
.martfury-journey .journey-wrapper,
.martfury-journey-els .journey-wrapper {
width: 100%;
max-width: 100%;
left: 0 !important;
padding: 20px;
}
.martfury-journey .journey-wrapper:before,
.martfury-journey-els .journey-wrapper:before {
display: none;
}
.martfury-journey .journey-content,
.martfury-journey-els .journey-content {
position: relative;
}
.martfury-journey ul,
.martfury-journey-els ul {
width: 100%;
flex-wrap: wrap;
}
.martfury-process .process-step:before {
left: 67px;
}
.martfury-process .process-step .step {
left: 15px;
transform: none;
}
.martfury-process .process-content {
padding-left: 120px;
flex-direction: column !important;
}
.martfury-process .process-image {
text-align: left;
}
.mf-taxs-list ul li {
padding-left: 10px;
padding-right: 10px;
}
.mf-taxs-list ul li a {
font-size: 16px;
}
.blog-wapper:nth-child(3n+1) {
clear: none;
}
.blog-wapper:nth-child(2n+1) {
clear: both;
}
.blog-wapper.post-item-list.format-video, .blog-wapper.post-item-list.format-gallery, .blog-wapper.post-item-list.format-audio, .blog-wapper.post-item-list.format-standard, .blog-wapper.post-item-list.format-image {
flex-wrap: wrap;
}
.blog-wapper.post-item-list.format-video .entry-header,
.blog-wapper.post-item-list.format-video .entry-content, .blog-wapper.post-item-list.format-gallery .entry-header,
.blog-wapper.post-item-list.format-gallery .entry-content, .blog-wapper.post-item-list.format-audio .entry-header,
.blog-wapper.post-item-list.format-audio .entry-content, .blog-wapper.post-item-list.format-standard .entry-header,
.blog-wapper.post-item-list.format-standard .entry-content, .blog-wapper.post-item-list.format-image .entry-header,
.blog-wapper.post-item-list.format-image .entry-content {
width: 100%;
}
.single-post.content-sidebar .content-area,
.blog-layout-small-thumb .content-area,
.blog-layout-content-sidebar .content-area {
padding-right: 15px;
}
.single-post.sidebar-content .content-area,
.blog-layout-sidebar-content .content-area {
padding-left: 15px;
}
.blog-layout-sidebar-content .blog-wapper:nth-child(2n+1),
.blog-layout-content-sidebar .blog-wapper:nth-child(2n+1) {
clear: none;
}
.comment-list .children {
padding-left: 0;
}
.comment-respond .comment-form-email,
.comment-respond .comment-form-author {
padding-left: 0;
padding-right: 0;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
width: 100%;
float: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
margin-bottom: 30px;
}
.woocommerce-account .site-content {
padding-bottom: 50px;
}
.mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery,
.mf-product-deals-carousel.woocommerce .product .entry-summary {
width: 100%;
}
.mf-products-of-category .cats-info h2,
.mf-products-of-category .cats-info .cats-inner__heading {
font-size: 20px;
}
.mf-catalog-categories .col-cat:nth-child(3n+1) {
clear: none;
}
.mf-catalog-categories .col-cat:nth-child(2n+1) {
clear: both;
}
.martfury-counter .counter,
.martfury-counter-els .counter {
font-size: 36px;
}
.woocommerce table.wishlist_table .product-stock-status {
display: none;
}
.woocommerce table.wishlist_table .product-add-to-cart {
min-width: 200px;
}
.mf-quick-view-modal div.product .entry-summary {
position: static;
margin-top: 0;
padding: 20px;
}
.mf-quick-view-modal.open {
z-index: 99999;
}
.mf-quick-view-modal .modal-content {
max-height: 100%;
overflow: auto;
width: 85%;
max-width: 600px;
right: 0;
left: auto;
transform: none;
top: 0;
}
.mf-quick-view-modal div.product form.cart div.quantity {
width: 100%;
margin-right: 0;
margin-bottom: 20px;
}
.mf-quick-view-modal.woocommerce .ribbons .ribbon {
left: 0;
right: auto;
border-radius: 0;
}
.mf-quick-view-modal div.product .woocommerce-product-gallery {
min-height: auto;
}
.mf-banner-large .banner-row {
display: block;
margin: 0;
}
.mf-banner-large .banner-row:after {
clear: both;
content: "";
display: block;
}
.mf-banner-large .col-banner-content {
padding: 0;
}
.mf-banner-large .banner-content,
.mf-banner-large .banner-price {
margin-left: 0;
padding: 20px 20px 10px;
}
.mf-banner-large .banner-image,
.mf-banner-large .col-banner-price {
padding-left: 0;
margin-top: 10px;
}
.mf-banner-large.layout-2 .banner-price,
.mf-banner-large.layout-3 .banner-price {
padding-left: 20px;
}
.woocommerce:not(.full-content) .shop-toolbar {
display: flex;
align-items: center;
flex-wrap: wrap;
width: 100%;
}
.woocommerce:not(.full-content) .shop-toolbar:after, .woocommerce:not(.full-content) .shop-toolbar:before {
display: none;
}
.woocommerce:not(.full-content) .shop-toolbar .woocommerce-ordering .current {
min-width: 100%;
}
.woocommerce:not(.full-content) .shop-toolbar .woocommerce-ordering {
order: 2;
}
.woocommerce:not(.full-content) .shop-toolbar .shop-view {
order: 3;
justify-content: flex-end;
}
.woocommerce:not(.full-content) .shop-toolbar .products-found,
.woocommerce:not(.full-content) .shop-toolbar .shop-view,
.woocommerce:not(.full-content) .shop-toolbar .woocommerce-ordering {
width: 33.33%;
}
.woocommerce:not(.full-content) .shop-toolbar .mf-filter-mobile {
width: 10%;
order: 4;
text-align: right;
font-size: 20px;
color: #000;
font-weight: 700;
}
.woocommerce:not(.full-content) .shop-toolbar.multiple .woocommerce-ordering {
margin-right: 0;
}
.mf-product-deals-carousel ul.products {
margin-left: 0;
margin-right: 0;
}
.mf-products-of-category .products-box ul.products li {
padding-left: 0;
padding-right: 0;
}
.mf-products-of-category .products-box ul.products li.product .product-inner {
padding: 20px 20px 0;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(3n+1) {
clear: both;
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(3n+2) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(3n+3) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-4 li:nth-child(4n) {
border-right: 1px solid #e1e1e1;
}
.mf-products-tabs ul.products li.product .product-inner {
margin-bottom: 0;
}
.woocommerce-checkout form.checkout .col-woo-checkout-details {
margin-bottom: 40px;
}
.account-page-promotion .customer-login .martfury-login-promotion {
max-width: 100%;
}
.account-page-promotion .customer-login .col-login-promotion {
padding-left: 15px;
margin-top: 50px;
}
.martfury-icon-box-2 .box-item {
width: 33.33% !important;
}
.martfury-images-grid.mf-brand-images .columns-10 .image-item {
flex: 0 0 20%;
max-width: 20%;
}
.martfury-images-grid.mf-brand-images .columns-9 .image-item {
flex: 0 0 22.22222%;
max-width: 22.22222%;
}
.martfury-images-grid.mf-brand-images .columns-8 .image-item {
flex: 0 0 25%;
max-width: 25%;
}
.martfury-images-grid.mf-brand-images .columns-7 .image-item {
flex: 0 0 28.57143%;
max-width: 28.57143%;
}
.martfury-images-grid.mf-brand-images .columns-6 .image-item {
flex: 0 0 33.33333%;
max-width: 33.33333%;
}
.martfury-images-grid.mf-brand-images .columns-5 .image-item {
flex: 0 0 40%;
max-width: 40%;
}
.martfury-images-grid.mf-brand-images .columns-4 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-3 .image-item {
flex: 0 0 66.66667%;
max-width: 66.66667%;
}
.martfury-images-grid.mf-brand-images .columns-2 .image-item {
flex: 0 0 100%;
max-width: 100%;
}
.martfury-images-grid.mf-brand-images .columns-1 .image-item {
flex: 0 0 200%;
max-width: 200%;
}
.martfury-images-grid.mf-brand-images .image-item {
border-width: 1px;
}
.martfury-images-grid.mf-brand-images .columns-5 .image-item {
flex: 0 0 33.33%;
max-width: 33.33%;
}
.woocommerce.dc-vendor-store .shop-toolbar .shop-view,
.woocommerce.dc-vendor-store .shop-toolbar .products-found {
width: 50%;
}
.search-results .site-content .blog-wapper .entry-header {
width: 55%;
}
.search-results .site-content .blog-wapper .entry-content {
width: 45%;
}
.mf-elementor-banner-app .banner-content {
padding-left: 0;
max-width: 50%;
flex: 0 0 50%;
}
.mf-elementor-banner-app .banner-content .banner-image {
display: none;
}
.mf-elementor-banner-app .banner-content .banner-main-content {
padding-left: 30px;
}
.mf-elementor-banner-app .banner-button {
padding-right: 30px;
}
.wp-block-woocommerce-cart .wc-block-components-sidebar,
.wp-block-woocommerce-cart .wc-block-components-main {
width: 100%;
padding: 0;
}
.wp-block-woocommerce-cart .is-large .wc-block-checkout__sidebar.is-sticky,
.wp-block-woocommerce-cart .wc-block-components-sidebar {
position: static;
}
.wp-block-woocommerce-cart div.wc-block-components-sidebar-layout .wc-block-components-main {
width: 100%;
padding: 0;
margin-top: 40px;
}
.wp-block-woocommerce-checkout .wc-block-components-sidebar,
.wp-block-woocommerce-checkout .wc-block-components-main {
width: 100%;
padding: 0;
}
.wp-block-woocommerce-checkout .is-large .wc-block-checkout__sidebar.is-sticky,
.wp-block-woocommerce-checkout .wc-block-components-sidebar {
position: static;
}
.wp-block-woocommerce-checkout div.wc-block-components-sidebar-layout .wc-block-components-main {
width: 100%;
padding: 0;
margin-top: 40px;
}
}
@media (max-width: 820px) {
.single-product-layout-6.woocommerce div.product form.cart .actions-button {
width: 100%;
float: left;
margin-top: 20px;
margin-left: 0;
}
}
@media (max-width: 767px) {
body .martfury-empty-space .mf_empty_space_md,
body .martfury-empty-space .mf_empty_space_lg {
display: none;
}
body .martfury-empty-space .mf_empty_space_xs {
display: block;
}
.site-header .header-extras .menu-item-account > a {
height: 30px;
padding-top: 4px;
overflow: hidden;
padding-left: 0;
width: 24px;
}
.site-header .header-extras .menu-item-account > a .extra-icon {
position: static;
display: block;
}
.site-header .header-extras .menu-item-account > a img {
margin-top: -4px;
}
.site-header .header-extras .menu-item-account > a .login-text {
display: none;
}
.site-header .header-extras .menu-item-account > a.item-register {
display: none;
}
.martfury-container {
padding-left: 15px;
padding-right: 15px;
}
.mf-recently-products.rv-full-width > .rv-container {
padding-left: 15px;
padding-right: 15px;
}
.site-header .product-extra-search .hot-words-wrapper {
display: none;
}
.site-header .extras-menu .menu-item-hotline {
display: none;
}
h2.font-small-mobile {
font-size: 30px !important;
}
.top-promotion .promo-inner {
flex-direction: column;
}
.top-promotion .promotion-content {
padding: 10px 0;
display: block;
}
.top-promotion .promotion-content .promo-left {
justify-content: center;
margin-right: 0;
}
.top-promotion .promotion-content .promo-left .percent {
font-size: 14px;
font-weight: 400;
margin-right: 5px;
}
.top-promotion .promotion-content .promo-left h3 {
display: inline-block;
font-size: 14px;
color: #666;
padding-left: 5px;
}
.top-promotion .promotion-content .promo-right h4 {
display: inline-block;
font-size: 14px;
padding-left: 5px;
}
.top-promotion .promotion-content .link {
position: absolute;
top: 0;
left: -15px;
right: -15px;
bottom: 0;
font-size: 0;
text-indent: -9999px;
height: 100%;
background: none !important;
border: none !important;
}
.top-promotion .promotion-content .close {
position: absolute;
top: 0;
right: -8px;
font-size: 14px;
}
.top-promotion.style-2 .promo-left .percent {
-webkit-text-stroke: 0;
letter-spacing: 0;
text-shadow: none;
font-weight: 700;
}
.mf-catalog-brands .brand-item {
width: 50%;
}
.mf-catalog-banners .slick-arrow {
display: none !important;
}
.martfury-icons-list ul li {
width: 100%;
}
.martfury-icons-list ul li:after {
display: none;
}
.mf-products-top-carousel .carousel-header {
display: block;
}
.mf-products-top-carousel .carousel-header .cats-list {
margin-top: 10px;
}
.mf-products-top-carousel .slick-arrow {
display: none !important;
}
.mf-products-top-carousel .slick-dots {
display: block !important;
}
.mf-products-carousel.header-3 .cat-header .cat-title,
.mf-product-deals-grid .cat-header .cat-title {
font-size: 16px;
}
.mf-other-categories .categories-list .col-cat {
width: 50%;
}
.mf-other-categories .categories-list .col-cat:nth-child(2n+1) {
clear: both;
}
.mf-other-categories .categories-list .col-cat:nth-child(3n+1) {
clear: none;
}
.mf-products-grid .cat-header .link {
padding-left: 0;
}
.mf-product-deals-day .cat-header {
display: block;
padding-bottom: 3px;
}
.mf-product-deals-day .header-content {
justify-content: space-between;
flex-wrap: wrap;
}
.mf-product-deals-day .header-content .cat-title {
margin-right: 0;
font-size: 20px;
margin-bottom: 10px;
}
.mf-product-deals-day .header-countdown {
display: inline-block;
font-size: 15px;
margin-bottom: 8px;
}
.mf-product-deals-day .header-countdown .martfury-countdown {
display: inline-block;
padding-left: 0;
}
.mf-product-deals-day .header-countdown .martfury-countdown .digits {
padding: 0 6px;
}
.mf-product-deals-day .header-countdown .martfury-countdown .digits:after {
font-size: 16px;
}
.mf-product-deals-day .header-countdown .martfury-countdown .seconds .digits {
min-width: 30px;
}
.mf-product-deals-day ul.slick-dots {
margin-top: 30px;
margin-bottom: 0;
}
.elementor-page .mf-product-deals-day .header-countdown {
margin-bottom: 0;
}
.elementor-page .mf-product-deals-day .cat-header .cat-title {
margin-right: 10px;
}
.mf-image-box .box-title {
font-size: 14px;
}
.mf-products-of-category {
display: block;
}
.mf-products-of-category .cats-info,
.mf-products-of-category .products-box {
width: 100%;
}
.mf-products-of-category .cats-info {
padding: 18px;
border-bottom: 1px solid #e1e1e1;
flex-direction: row;
flex-wrap: wrap;
}
.mf-products-of-category .cats-info h2,
.mf-products-of-category .cats-info .cats-inner__heading {
margin-bottom: 20px;
}
.mf-products-of-category .cats-info .extra-links {
display: flex;
align-items: center;
flex-wrap: wrap;
margin: 0 -10px;
}
.mf-products-of-category .cats-info .extra-links li {
margin: 0;
padding: 5px 10px;
line-height: 1;
position: relative;
}
.mf-products-of-category .cats-info .footer-link {
margin-top: 15px;
}
.mf-products-of-category .products-box ul.products li:nth-child(3n), .mf-products-of-category .products-box ul.products li:nth-child(3n+1), .mf-products-of-category .products-box ul.products li:nth-child(3n+2), .mf-products-of-category .products-box ul.products li:nth-child(3n+3) {
border: none;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(2n+1), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(2n+1) {
clear: both;
border-top: 1px solid #e1e1e1;
border-right: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(2n+2), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(2n+2) {
border-top: 1px solid #e1e1e1;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(2n), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(2n) {
border-right: none;
}
.mf-products-of-category .products-box ul.products.columns-3 li:nth-child(1), .mf-products-of-category .products-box ul.products.columns-3 li:nth-child(2), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(1), .mf-products-of-category .products-box ul.products.columns-4 li:nth-child(2) {
border-top: none;
}
.mf-products-of-category.no-links-group .cats-info {
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: space-between;
flex-direction: row;
padding-bottom: 8px;
}
.mf-products-of-category.no-links-group .cats-info h2 {
margin-bottom: 10px;
}
.mf-products-of-category.no-links-group .extra-links {
display: none;
}
.mf-products-of-category.no-links-group .footer-link {
margin-top: 0;
margin-bottom: 8px;
}
.mf-products-of-category.no-banners-carousel .products-box {
width: 100%;
border-left: none;
}
.elementor-page .mf-products-of-category .cats-info {
margin-top: 0;
}
.elementor-page .mf-products-of-category .cats-info .extra-links {
margin: 0;
}
.elementor-page .mf-products-of-category .cats-info .extra-links li {
padding-left: 0;
padding-right: 15px;
}
.elementor-page .mf-products-of-category .cats-info .footer-link {
margin-top: 0;
}
.mf-products-of-category .cats-info
.mf-recently-products.footer-recently-viewed {
padding-top: 50px;
padding-bottom: 60px;
}
.mf-products-tabs .tabs-header {
display: block;
}
.mf-products-tabs .tabs-header .tabs-header-nav {
display: block;
margin-top: 10px;
}
.mf-products-tabs .tabs-header .tabs-nav {
display: block;
margin: 0 -10px 5px;
}
.mf-products-tabs .tabs-header .tabs-nav li {
padding: 0 10px;
}
.mf-products-tabs .tabs-header .link {
padding-left: 0;
}
.mf-recently-products .recently-header .title {
font-size: 20px;
}
.mf-category-tabs .tabs-header ul {
padding-left: 40px;
padding-right: 40px;
}
.mf-category-tabs .tabs-header .slick-arrow {
font-size: 18px;
}
.mf-category-tabs .tabs-header .slick-prev-arrow {
left: 15px;
}
.mf-category-tabs .tabs-header .slick-next-arrow {
right: 15px;
}
.mf-category-tabs .tabs-content {
padding: 5px 5px 20px;
}
.mf-product-deals-carousel .cat-header .slick-arrow {
padding-left: 0;
padding-right: 15px;
}
.mf-product-deals-carousel .cat-header .slick-arrow:last-child {
padding-right: 0;
}
.mf-category-box .cat-header {
display: block;
}
.mf-category-box .cat-header .extra-links {
margin: 5px -10px 0;
}
.mf-category-box .cat-header .extra-links li {
padding: 0 10px;
}
.martfury-images-grid .images-list li {
width: 50%;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-content,
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-sidebar {
width: 100%;
padding: 15px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary {
display: block;
}
.woocommerce .mf-single-product.mf-product-layout-3 .entry-summary-sidebar {
margin-top: 30px;
}
.woocommerce .mf-single-product.mf-product-layout-3 .cart .actions-button {
justify-content: center;
}
.woocommerce #review_form #respond .comment-form-author,
.woocommerce #review_form #respond .comment-form-email {
width: 100%;
padding-left: 0;
padding-right: 0;
}
.woocommerce #reviews .bar-rating .star-item .sbar {
min-width: 150px;
}
.woocommerce.shop-view-list ul.products li.product:not(.slick-slider) .product-inner {
display: block;
}
.woocommerce.shop-view-list ul.products li.product:not(.slick-slider) .mf-product-thumbnail,
.woocommerce.shop-view-list ul.products li.product:not(.slick-slider) .mf-product-details {
width: 100%;
}
.woocommerce.shop-view-list ul.products li.product:not(.slick-slider) .mf-product-details {
display: block;
padding-left: 0;
}
.woocommerce.shop-view-list ul.products li.product:not(.slick-slider) .mf-product-details .mf-product-content {
width: 100%;
padding-right: 0;
margin-bottom: 20px;
}
.woocommerce.shop-view-list ul.products li.product:not(.slick-slider) .mf-product-details .mf-product-price-box {
max-width: 100%;
float: none;
clear: both;
}
.single-product-layout-6.woocommerce div.product form.cart .actions-button {
display: block;
}
.single-product-layout-6.woocommerce div.product form.cart .buy_now_button {
float: none;
margin-right: 0;
width: 100%;
}
.martfury-newletter .form-title {
font-size: 20px;
}
.martfury-newletter .form-desc {
font-size: 14px;
}
.footer-history-products {
display: none;
}
.site-footer .footer-widgets {
margin: 0;
}
.site-footer .footer-widgets .footer-sidebar {
width: 100%;
max-width: 100% !important;
padding: 0;
}
.site-footer .footer-widgets .footer-sidebar .widget_nav_menu .clicked {
display: none;
}
.site-footer .footer-widgets .footer-sidebar .widget_nav_menu .active + .clicked {
display: block !important;
opacity: 1 !important;
overflow: auto !important;
}
.widget .mc4wp-form .mc4wp-form-fields {
flex-wrap: wrap;
}
.site-footer .footer-widgets .widget .mc4wp-form input[type=email] {
width: 100%;
border: 1px solid #ccc;
border-radius: 0;
}
.widget .mc4wp-form input[type="submit"] {
width: 100%;
margin-top: 15px;
}
.footer-layout .footer-payments {
display: block;
text-align: center;
}
.footer-layout .footer-payments .payments {
margin-top: 15px;
}
.footer-layout .footer-info .info-item {
width: 100%;
max-width: 100%;
justify-content: flex-start;
}
.woocommerce-cart .woocommerce table.cart thead {
display: none;
}
.woocommerce-cart .woocommerce table.cart tr,
.woocommerce-cart .woocommerce table.cart td {
display: block;
}
.woocommerce-cart .woocommerce table.cart tr {
border-bottom: 1px solid #d6d6d6;
padding-bottom: 15px;
padding-top: 15px;
}
.woocommerce-cart .woocommerce table.cart tr:last-child {
border-bottom: none;
}
.woocommerce-cart .woocommerce table.cart tr.cart_item {
position: relative;
padding-left: 95px;
}
.woocommerce-cart .woocommerce table.cart td {
border: none;
padding-top: 0 !important;
padding-bottom: 10px !important;
padding-left: 0;
padding-right: 0;
font-size: 14px;
}
.woocommerce-cart .woocommerce table.cart td.product-thumbnail {
padding-top: 0;
padding-bottom: 0;
}
.woocommerce-cart .woocommerce table.cart td.product-thumbnail > a {
position: absolute;
top: 15px;
left: 0;
width: 80px;
}
.woocommerce-cart .woocommerce table.cart td.product-name a {
font-size: 14px;
}
.woocommerce-cart .woocommerce table.cart td.product-price,
.woocommerce-cart .woocommerce table.cart td.product-subtotal {
font-size: 14px;
}
.woocommerce-cart .woocommerce table.cart td.product-price:before,
.woocommerce-cart .woocommerce table.cart td.product-subtotal:before {
content: attr(data-title) ":";
color: #999;
}
.woocommerce-cart .woocommerce table.cart td.product-quantity {
display: flex;
width: 100%;
}
.woocommerce-cart .woocommerce table.cart td.product-quantity .decrease,
.woocommerce-cart .woocommerce table.cart td.product-quantity .increase {
display: block;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
}
.woocommerce-cart .woocommerce table.cart td.product-quantity .quantity {
width: 100%;
}
.woocommerce-cart .woocommerce table.cart td.product-quantity .quantity .qty {
margin: 0;
width: 100%;
font-size: 14px;
}
.woocommerce-cart .woocommerce table.cart td.product-quantity .product-remove {
display: block;
padding-left: 12px;
}
.woocommerce-cart .woocommerce table.cart td.product-quantity .product-remove .mf-remove {
color: #000;
font-size: 16px;
height: 39px;
line-height: 42px;
width: 39px;
background-color: #f0f0f0;
display: block;
text-align: center;
}
.woocommerce-cart .woocommerce table.cart td.product-remove {
display: none;
}
.martfury-journey ul a,
.martfury-journey-els ul a {
font-size: 14px;
}
.martfury-journey ul a span,
.martfury-journey-els ul a span {
width: 20px;
height: 20px;
bottom: 4px;
}
.woocommerce table.wishlist_table .product-name .product-price,
.woocommerce table.wishlist_table .product-name .product-add-to-cart {
display: block;
}
.woocommerce table.wishlist_table .product-name .product-add-to-cart .ajax_add_to_cart.loading:after {
top: 16px;
}
.woocommerce table.wishlist_table .product-price,
.woocommerce table.wishlist_table .product-add-to-cart {
display: none;
}
.woocommerce table.wishlist_table .product-price {
padding: 10px 0;
}
.woocommerce table.wishlist_table .product-price del,
.woocommerce table.wishlist_table .product-price ins {
display: inline-block;
}
.martfury-map-shortcode .mf-map {
max-height: 320px;
}
.martfury-faq_group .g-title {
margin-bottom: 20px;
}
.martfury-faq_group .title {
margin-left: 0;
margin-bottom: 5px;
}
.martfury-faq_group .faq-item {
margin-bottom: 30px;
}
.martfury-coming-soon .timer {
min-width: auto;
padding-left: 15px;
padding-right: 15px;
}
.martfury-coming-soon .timer .digits {
font-size: 24px;
}
.error-404 .page-content .page-title {
font-size: 24px;
}
.error-404 .page-content p {
font-size: 14px;
}
.martfury-process .process-step {
padding: 0;
}
.martfury-process .process-step:before {
left: 44px;
}
.martfury-process .process-step .step {
width: 60px;
height: 60px;
line-height: 60px;
font-size: 30px;
}
.martfury-process .process-image {
display: none;
}
.martfury-process .process-content {
padding-left: 80px;
padding-bottom: 60px;
}
.blog-wapper.post-item-list.format-video .entry-content, .blog-wapper.post-item-list.format-gallery .entry-content, .blog-wapper.post-item-list.format-audio .entry-content, .blog-wapper.post-item-list.format-standard .entry-content, .blog-wapper.post-item-list.format-image .entry-content {
padding: 30px;
}
.blog-wapper.post-item-list.format-link .entry-header {
padding: 30px;
}
.single-post .entry-format.format-link {
padding: 30px;
}
blockquote {
font-size: 16px;
padding-left: 20px;
}
.blog-wapper {
flex-wrap: wrap;
}
.blog-wapper.post-item-small-thumb .entry-header {
margin-bottom: 15px;
}
.blog-wapper.post-item-small-thumb .entry-header .entry-image img {
height: auto;
}
.blog-wapper.post-item-small-thumb .entry-header,
.blog-wapper.post-item-small-thumb .entry-content {
width: 100%;
}
.blog-wapper.post-item-small-thumb.format-link .entry-header {
padding: 30px;
}
.single-post-header .entry-title {
font-size: 24px;
}
.single-post-header.layout-2 {
padding-top: 80px;
padding-bottom: 80px;
}
.single-post .post-author-box {
padding: 30px;
}
.single-post .post-author-box .post-author-avatar {
width: 100%;
margin-bottom: 15px;
}
.single-post .post-author-box .post-author-desc {
padding-left: 0;
}
.single-post.single-post-layout-3 .post-author-box,
.single-post.single-post-layout-4 .post-author-box {
padding: 30px;
}
.single-post .post-navigation .nav-previous,
.single-post .post-navigation .nav-next {
width: 100%;
float: none;
margin-bottom: 15px;
text-align: left;
}
.search-results .site-content .blog-wapper .entry-header,
.search-results .site-content .blog-wapper .entry-content {
width: 100%;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders .woocommerce-orders-table__header-order-total,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-total,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders .woocommerce-orders-table__header-order-date,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-orders .woocommerce-orders-table__cell-order-date {
display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders .order-date,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .my_account_orders .order-total {
display: none;
}
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .addresses .col-1,
.woocommerce-account .woocommerce .woocommerce-MyAccount-content .addresses .col-2 {
width: 100%;
margin-bottom: 30px;
}
.martfury-latest-post .post-header {
display: block;
}
.martfury-latest-post .post-header .extra-links {
margin-top: 15px;
padding-left: 0;
margin-left: -15px;
margin-right: -15px;
}
.martfury-latest-post .post-header .extra-links li {
padding-left: 15px;
padding-right: 15px;
}
.mf-product-gallery-degree {
width: 100% !important;
}
.woocommerce div.product .tawc-deal {
padding: 0;
background-color: transparent;
}
.mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery {
padding-left: 0;
}
.mf-product-deals-carousel.woocommerce .product .woocommerce-product-gallery .flex-control-thumbs {
display: none;
}
.mf-product-deals-day .cat-header,
.elementor-page .mf-product-deals-day .cat-header {
display: block;
}
.mf-product-deals-day .cat-header .extra-links,
.elementor-page .mf-product-deals-day .cat-header .extra-links {
margin-top: 15px;
}
.page-header-sliders ul li .title {
font-size: 24px;
}
.page-header-sliders .slick-arrow-content .slick-arrow {
display: none;
}
.page-header-sliders ul li .page-header-content {
padding-bottom: 80px;
padding-top: 80px;
}
.page-header-sliders .page-header-inner,
.page-header-sliders {
max-height: 350px;
}
.page-header-sliders ul li .featured-img {
background-size: cover;
}
.page-header-sliders ul li .title {
margin-top: 30px;
}
.mf-newsletter-popup .newletter-content .nl-inner {
width: 100%;
}
.page-header-page .entry-title {
font-size: 24px;
}
.mf-vendor-header-tabs ul li {
display: block;
margin: 5px 0;
padding: 0;
}
.mf-vendor-header-tabs {
display: block;
}
.woocommerce div.product .cart .actions-button {
width: 100%;
clear: both;
padding-top: 20px;
justify-content: center;
align-items: center;
display: flex;
}
.woocommerce div.product .cart .actions-button:after {
clear: both;
content: "";
display: block;
}
.woocommerce div.product .cart .actions-button .yith-wcwl-add-to-wishlist,
.woocommerce div.product .cart .actions-button .wcboost-wishlist-button {
margin-left: 0;
}
.woocommerce div.product .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a,
.woocommerce div.product .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a,
.woocommerce div.product .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a,
.woocommerce div.product .cart .actions-button .wcboost-wishlist-button,
.woocommerce div.product .cart .actions-button .wcboost-wishlist-button.added,
.woocommerce div.product .cart .actions-button .mf-compare-button .compare {
width: auto;
height: auto;
overflow: visible;
display: flex;
align-items: center;
}
.woocommerce div.product .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-add-button > a:before,
.woocommerce div.product .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse > a:before,
.woocommerce div.product .cart .actions-button .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse > a:before,
.woocommerce div.product .cart .actions-button .wcboost-wishlist-button:before,
.woocommerce div.product .cart .actions-button .wcboost-wishlist-button.added:before,
.woocommerce div.product .cart .actions-button .mf-compare-button .compare:before {
padding-right: 10px;
}
.woocommerce div.product .cart .actions-button .mf-compare-button {
margin-top: 6px;
}
.woocommerce div.product .cart .actions-button .wcboost-wishlist-button .wcboost-wishlist-button__text {
display: inline;
font-size: 14px;
margin-left: 10px;
padding-left: 0;
}
.woocommerce div.product .cart .actions-button .wcboost-products-compare-button .wcboost-products-compare-button__icon {
margin-right: 6px;
}
.woocommerce div.product .cart .actions-button .wcboost-products-compare-button .wcboost-products-compare-button__text {
display: inline;
color: #666;
}
.woocommerce div.product .cart .actions-button .wcboost-products-compare-button:hover .wcboost-products-compare-button__text {
color: #000;
}
.single-product-layout-6.woocommerce div.product form.cart .actions-button {
margin-top: 0;
display: flex;
justify-content: center;
}
.single-product-layout-6.woocommerce div.product.mf-has-buy-now form.cart .actions-button {
display: block;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button {
width: 100%;
clear: none;
padding-top: 0;
flex-wrap: wrap;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .buy_now_button {
margin-left: 0;
margin-top: 15px;
}
.woocommerce div.product.mf-has-buy-now .cart .mf-wishlist-button {
order: 1;
}
.woocommerce div.product.mf-has-buy-now .cart .mf-compare-button {
order: 2;
}
.sticky-product-info-wapper {
display: none;
}
.mf-banner-medium.has-img.layout-2, .mf-banner-medium.has-img.layout-3, .mf-banner-medium.has-img.layout-4 {
border: 1px solid rgba(0, 0, 0, 0.15);
}
.mf-banner-medium.has-img.layout-2 .banner-content, .mf-banner-medium.has-img.layout-3 .banner-content, .mf-banner-medium.has-img.layout-4 .banner-content {
position: static;
}
.mf-banner-medium.has-img.layout-2 .banner-content .link, .mf-banner-medium.has-img.layout-3 .banner-content .link, .mf-banner-medium.has-img.layout-4 .banner-content .link {
margin-top: 20px;
}
.mf-products-list ul.products li.product {
width: 100%;
}
.woocommerce:not(.full-content) .shop-toolbar .products-found,
.woocommerce:not(.full-content) .shop-toolbar .shop-view {
width: 50%;
}
.woocommerce:not(.full-content) .shop-toolbar .mf-filter-mobile {
display: flex;
align-items: center;
justify-content: flex-end;
}
.woocommerce:not(.full-content) .shop-toolbar .mf-filter-mobile span {
padding-left: 8px;
font-size: 14px;
font-weight: 400;
}
.woocommerce:not(.full-content) .shop-toolbar .woocommerce-ordering {
width: 70%;
}
.woocommerce:not(.full-content) .shop-toolbar .woocommerce-ordering .current span {
white-space: nowrap;
overflow: hidden;
display: block;
max-width: 90%;
}
.woocommerce:not(.full-content) .shop-toolbar .mf-filter-mobile {
width: 30%;
}
.woocommerce:not(.full-content) .shop-toolbar .woocommerce-ordering {
order: 3;
}
.woocommerce:not(.full-content) .shop-toolbar .shop-view {
order: 2;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-content {
display: block;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-content:after {
display: none;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-content .tabs-panel {
width: 100%;
margin-bottom: 40px;
padding-bottom: 40px;
border-bottom: 1px solid #e8e8e8;
}
.account-page-columns .customer-login .martfury-login-columns .tabs-content .tabs-panel:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}
.mf-banner-small.has-bg-img .banner-content .box-title {
font-size: 18px;
}
.mf-banner-small.has-bg-img .banner-content .link-all {
font-size: 12px;
}
.mf-banner-small.has-bg-img .box-price {
width: 43px;
height: 43px;
}
.mf-banner-small.has-bg-img .box-price .s-price {
font-size: 12px;
}
.site-footer .footer-newsletter .newsletter-form .mc4wp-form-fields input[type="submit"] {
min-width: auto;
}
.woocommerce div.product form.cart div.quantity {
width: 100%;
}
.woocommerce div.product form.cart div.quantity .qty-box {
text-align: center;
margin-bottom: 15px;
float: none;
margin-right: 0;
}
.woocommerce div.product form.cart .button {
width: 100%;
}
.catalog-filter-mobile .catalog-sidebar {
width: 85%;
background-color: #fff;
position: fixed;
right: 100%;
top: 0;
bottom: 0;
overflow: hidden;
color: #aaa;
z-index: 100000;
transition: transform .25s ease;
margin: 0;
padding: 0;
opacity: 1;
display: block;
animation: unset;
height: 100%;
overflow-y: auto;
}
.catalog-filter-mobile .catalog-sidebar .mf_widget_product_categories,
.catalog-filter-mobile .catalog-sidebar .widget_product_categories {
margin-bottom: 0;
}
.catalog-filter-mobile.mf-filter-active {
overflow-x: hidden;
}
.catalog-filter-mobile.mf-filter-active .catalog-sidebar {
transform: translate3d(100%, 0, 0);
}
.catalog-filter-mobile.mf-filter-active .martfury-off-canvas-layer {
z-index: 9999;
display: block;
}
.mf-product-deals-grid ul.products {
padding: 20px 5px;
}
.martfury-newletter .form-area {
padding: 20px;
}
.mobile-version .martfury-newletter.no-image .form-area {
padding-right: 30px;
}
.mf-elementor-banner-large .banner-content {
flex-direction: column;
align-items: flex-start;
}
.mf-elementor-banner-large .banner-content .banner-left-content {
margin-right: 0;
}
.mf-elementor-banner-large .banner-content .banner-desc {
margin-bottom: 30px;
}
.site-content {
padding-top: 40px;
padding-bottom: 40px;
}
.martfury-icon-box-2 .box-item {
width: 50% !important;
justify-content: center !important;
padding-left: 0 !important;
}
.dc-vendor-store .content-area .shop-toolbar .mf-filter-mobile {
display: none;
}
.mf-product-deals-carousel {
padding-left: 20px;
padding-right: 20px;
}
.single-product #cboxLoadedContent {
padding: 0;
border: none;
margin: 15px;
}
.mf-recently-products.no-background {
padding-bottom: 60px;
}
.mf-quick-view-modal .modal-content div.product .cart {
margin-bottom: 0 !important;
}
.mf-quick-view-modal .modal-content div.product .cart .actions-button {
clear: none;
padding-top: 0;
margin-top: 0 !important;
}
.mf-quick-view-modal .modal-content .entry-meta li.meta-review {
display: none;
}
.mf-quick-view-modal .modal-content div.product .mf-has-buy-now form.cart .single_add_to_cart_button,
.mf-quick-view-modal .modal-content div.product .mf-has-buy-now form.cart .buy_now_button {
width: 48%;
}
.mf-quick-view-modal .modal-content div.product .mf-has-buy-now form.cart .buy_now_button {
margin-left: 10px;
float: right;
}
.mf-elementor-banner-app .banner-content {
padding-left: 0;
max-width: 100%;
flex: 0 0 100%;
}
.mf-elementor-banner-app .banner-content .banner-image {
display: none;
}
.mf-elementor-banner-app .banner-content .banner-main-content {
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
.mf-elementor-banner-app .banner-button {
padding-left: 15px;
padding-right: 15px;
}
.wpb-js-composer .mf-product-deals-day .slick-arrow {
display: none !important;
}
.wpb-js-composer .mf-product-deals-day.style-1 .slick-dots {
display: block !important;
}
.wpb-js-composer .mf-products-tabs:not(.products-of-category-2) .slick-arrow,
.wpb-js-composer .mf-products-carousel .slick-arrow,
.wpb-js-composer section.up-sells ul.products .slick-arrow,
.wpb-js-composer section.related ul.products .slick-arrow,
.wpb-js-composer .mf-product-instagram .slick-slider .slick-arrow {
display: none !important;
}
.wpb-js-composer .mf-products-tabs:not(.products-of-category-2) .slick-dots,
.wpb-js-composer .mf-products-carousel .slick-dots,
.wpb-js-composer section.up-sells ul.products .slick-dots,
.wpb-js-composer section.related ul.products .slick-dots,
.wpb-js-composer .mf-product-instagram .slick-slider .slick-dots {
display: block !important;
margin-bottom: 0 !important;
margin-top: 20px;
}
.catalog-ajax-filter #page {
opacity: 1;
}
.mf-quick-view-modal div.product form.cart div.quantity {
margin-bottom: 0;
}
.woocommerce div.product .wc-tabs-wrapper ul.tabs {
display: flex;
flex-wrap: nowrap;
overflow-x: auto;
white-space: nowrap;
}
.martfury-tooltip {
display: none !important;
}
.woocommerce div.product.product-type-grouped .cart .group_table .product {
display: block;
border-bottom: 1px solid #e1e1e1;
margin-bottom: 20px;
padding-bottom: 20px;
}
.woocommerce div.product.product-type-grouped .cart .group_table .product:after {
clear: both;
display: block;
content: "";
}
.woocommerce div.product.product-type-grouped .cart .group_table tr:last-child {
border-bottom: 1px solid #e1e1e1;
padding-bottom: 0;
margin-bottom: 0;
}
.woocommerce div.product.product-type-grouped .cart .group_table td {
display: block;
width: 100% !important;
float: left;
padding-left: 0 !important;
padding-right: 0 !important;
padding-top: 0 !important;
}
.woocommerce div.product.product-type-grouped .cart .group_table {
margin-bottom: 0;
}
.wcboost-products-compare__table table.compare_table th {
display: table-cell;
}
}
@media (max-width: 600px) {
.mf-other-categories .categories-list .col-cat {
width: 100%;
}
.mf-other-categories .categories-list .col-cat:nth-child(2n+1) {
clear: none;
}
.mf-product-deals-carousel {
padding-left: 10px;
padding-right: 10px;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .seconds {
padding-right: 0;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .digits {
min-width: 55px;
padding-top: 14px;
padding-bottom: 14px;
font-size: 24px;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .text {
font-size: 13px;
}
.woocommerce-cart .woocommerce table.cart .btn-update,
.woocommerce-cart .woocommerce table.checkout .btn-update,
.woocommerce-cart .woocommerce table.cart .empty-cart-button {
float: none;
width: 100%;
margin-top: 15px;
}
.woocommerce-cart .woocommerce table.cart .btn-update .button,
.woocommerce-cart .woocommerce table.checkout .btn-update .button,
.woocommerce-cart .woocommerce table.cart .empty-cart-button .button {
width: 100%;
}
.woocommerce-cart .woocommerce table.cart .btn-update {
margin-left: 0;
}
.woocommerce-cart .woocommerce table.cart .btn-shop,
.woocommerce-cart .woocommerce table.checkout .btn-shop {
width: 100%;
}
.blog-layout-grid .blog-wapper,
.blog-layout-sidebar-content .blog-wapper,
.blog-layout-content-sidebar .blog-wapper,
.blog-layout-masonry .blog-wapper {
width: 100%;
}
.primary-mobile-nav {
width: 320px;
left: -320px;
}
.primary-user-nav {
width: 320px;
right: -320px;
}
.display-user-mobile .primary-user-nav {
transform: translate3d(-320px, 0, 0);
}
.display-mobile-menu .primary-mobile-nav {
transform: translate3d(320px, 0, 0);
}
.account-page-promotion .login-promotion .promotion-ads-content {
display: block;
}
.account-page-promotion .login-promotion .promotion-ads-content .promotion-ads-title {
margin: 0 0 30px;
}
.martfury-images-grid.mf-brand-images .columns-10 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-9 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-8 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-7 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-6 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-5 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-4 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-3 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-2 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.martfury-images-grid.mf-brand-images .columns-1 .image-item {
flex: 0 0 50%;
max-width: 50%;
}
.mf-quick-view-modal .modal-content div.product .mf-has-buy-now form.cart .single_add_to_cart_button,
.mf-quick-view-modal .modal-content div.product .mf-has-buy-now form.cart .buy_now_button {
width: 100%;
margin-bottom: 15px;
}
}
@media (max-width: 479px) {
.woocommerce div.product.mf-has-buy-now .cart .single_add_to_cart_button {
width: 100%;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button {
width: 100%;
}
.woocommerce div.product.mf-has-buy-now .cart .actions-button .buy_now_button {
margin-left: 0;
width: 100%;
}
.primary-mobile-nav {
width: 280px;
left: -280px;
}
.display-mobile-menu .primary-mobile-nav {
transform: translate3d(280px, 0, 0);
}
.primary-user-nav {
width: 280px;
right: -280px;
}
.display-user-mobile .primary-user-nav {
transform: translate3d(-280px, 0, 0);
}
.mf-banner-large.layout-3 {
padding: 30px;
}
.mf-banner-small .box-price,
.mf-banner-small .banner-content .desc {
display: none;
}
.mf-banner-small .banner-content {
margin: 20px;
}
.mf-banner-small.has-bg-img .box-price {
display: block;
top: 60%;
left: 60%;
}
.mf-banner-small.has-bg-img.position-price-2 .box-price {
top: 10px;
left: 65%;
}
.mf-banner-medium.layout-5 .banner-content .link {
display: none;
}
.site-header .mobile-menu-row {
position: relative;
}
.site-header .product-extra-search .search-wrapper {
position: static;
}
.site-header .product-extra-search .psearch-content {
position: relative;
}
}
@media (max-width: 370px) {
.woocommerce .shop-toolbar .woocommerce-ordering .current {
min-width: 200px;
}
.widget_shopping_cart_content .woocommerce-mini-cart__buttons .button {
min-width: inherit;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .text {
display: none;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .digits {
min-width: 50px;
}
.woocommerce div.product .tawc-deal .deal-expire-date .deal-expire-countdown .divider {
width: 10px;
}
}
@media (max-height: 820px) {
.site-header .extras-menu .menu-item-cart .mini-cart-content .product_list_widget {
max-height: 350px;
}
}