@charset "UTF-8";

 @-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
@keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
28% {
-webkit-transform: scale(1);
transform: scale(1);
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes heartBeat {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
14% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
28% {
-webkit-transform: scale(1);
transform: scale(1);
}
42% {
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
70% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
.heartBeat {
-webkit-animation-name: heartBeat;
animation-name: heartBeat;
-webkit-animation-duration: 1.3s;
animation-duration: 1.3s;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
rotate3d(0, 1, 0, 0deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
rotate3d(0, 1, 0, 0deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
rotate3d(0, 1, 0, 0deg);
transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
-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-duration: 0.75s;
animation-duration: 0.75s;
-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-animation-duration: 0.75s;
animation-duration: 0.75s;
-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);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@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);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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-duration: 2s;
animation-duration: 2s;
-webkit-animation-name: hinge;
animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
animation-name: jackInTheBox;
} @-webkit-keyframes rollIn {
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
.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.delay-1s {
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.animated.delay-2s {
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.animated.delay-3s {
-webkit-animation-delay: 3s;
animation-delay: 3s;
}
.animated.delay-4s {
-webkit-animation-delay: 4s;
animation-delay: 4s;
}
.animated.delay-5s {
-webkit-animation-delay: 5s;
animation-delay: 5s;
}
.animated.fast {
-webkit-animation-duration: 800ms;
animation-duration: 800ms;
}
.animated.faster {
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
}
.animated.slow {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.slower {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
@media (print), (prefers-reduced-motion: reduce) {
.animated {
-webkit-animation-duration: 1ms !important;
animation-duration: 1ms !important;
-webkit-transition-duration: 1ms !important;
transition-duration: 1ms !important;
-webkit-animation-iteration-count: 1 !important;
animation-iteration-count: 1 !important;
}
}.select2-container {
box-sizing: border-box;
display: inline-block;
margin: 0;
position: relative;
vertical-align: middle; }
.select2-container .select2-selection--single {
box-sizing: border-box;
cursor: pointer;
display: block;
height: 28px;
user-select: none;
-webkit-user-select: none; }
.select2-container .select2-selection--single .select2-selection__rendered {
display: block;
padding-left: 8px;
padding-right: 20px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.select2-container .select2-selection--single .select2-selection__clear {
position: relative; }
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
padding-right: 8px;
padding-left: 20px; }
.select2-container .select2-selection--multiple {
box-sizing: border-box;
cursor: pointer;
display: block;
min-height: 32px;
user-select: none;
-webkit-user-select: none; }
.select2-container .select2-selection--multiple .select2-selection__rendered {
display: inline-block;
overflow: hidden;
padding-left: 8px;
text-overflow: ellipsis;
white-space: nowrap; }
.select2-container .select2-search--inline {
float: left; }
.select2-container .select2-search--inline .select2-search__field {
box-sizing: border-box;
border: none;
font-size: 100%;
margin-top: 5px;
padding: 0; }
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance: none; }
.select2-dropdown {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
box-sizing: border-box;
display: block;
position: absolute;
left: -100000px;
width: 100%;
z-index: 1051; }
.select2-results {
display: block; }
.select2-results__options {
list-style: none;
margin: 0;
padding: 0; }
.select2-results__option {
padding: 6px;
user-select: none;
-webkit-user-select: none; }
.select2-results__option[aria-selected] {
cursor: pointer; }
.select2-container--open .select2-dropdown {
left: 0; }
.select2-container--open .select2-dropdown--above {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; }
.select2-container--open .select2-dropdown--below {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0; }
.select2-search--dropdown {
display: block;
padding: 4px; }
.select2-search--dropdown .select2-search__field {
padding: 4px;
width: 100%;
box-sizing: border-box; }
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
-webkit-appearance: none; }
.select2-search--dropdown.select2-search--hide {
display: none; }
.select2-close-mask {
border: 0;
margin: 0;
padding: 0;
display: block;
position: fixed;
left: 0;
top: 0;
min-height: 100%;
min-width: 100%;
height: auto;
width: auto;
opacity: 0;
z-index: 99;
background-color: #fff;
filter: alpha(opacity=0); }
.select2-hidden-accessible {
border: 0 !important;
clip: rect(0 0 0 0) !important;
-webkit-clip-path: inset(50%) !important;
clip-path: inset(50%) !important;
height: 1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
width: 1px !important;
white-space: nowrap !important; }
.select2-container--default .select2-selection--single {
background-color: #fff;
border: 1px solid #aaa;
border-radius: 4px; }
.select2-container--default .select2-selection--single .select2-selection__rendered {
color: #444;
line-height: 28px; }
.select2-container--default .select2-selection--single .select2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold; }
.select2-container--default .select2-selection--single .select2-selection__placeholder {
color: #999; }
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 26px;
position: absolute;
top: 1px;
right: 1px;
width: 20px; }
.select2-container--default .select2-selection--single .select2-selection__arrow b {
border-color: #888 transparent transparent transparent;
border-style: solid;
border-width: 5px 4px 0 4px;
height: 0;
left: 50%;
margin-left: -4px;
margin-top: -2px;
position: absolute;
top: 50%;
width: 0; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
float: left; }
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
left: 1px;
right: auto; }
.select2-container--default.select2-container--disabled .select2-selection--single {
background-color: #eee;
cursor: default; }
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
display: none; }
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-color: transparent transparent #888 transparent;
border-width: 0 4px 5px 4px; }
.select2-container--default .select2-selection--multiple {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
cursor: text; }
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
box-sizing: border-box;
list-style: none;
margin: 0;
padding: 0 5px;
width: 100%; }
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
list-style: none; }
.select2-container--default .select2-selection--multiple .select2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
margin-top: 5px;
margin-right: 10px;
padding: 1px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice {
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
color: #999;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 2px; }
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #333; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
float: right; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
margin-left: 5px;
margin-right: auto; }
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
margin-left: 2px;
margin-right: auto; }
.select2-container--default.select2-container--focus .select2-selection--multiple {
border: solid black 1px;
outline: 0; }
.select2-container--default.select2-container--disabled .select2-selection--multiple {
background-color: #eee;
cursor: default; }
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
display: none; }
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
border-top-left-radius: 0;
border-top-right-radius: 0; }
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; }
.select2-container--default .select2-search--dropdown .select2-search__field {
border: 1px solid #aaa; }
.select2-container--default .select2-search--inline .select2-search__field {
background: transparent;
border: none;
outline: 0;
box-shadow: none;
-webkit-appearance: textfield; }
.select2-container--default .select2-results > .select2-results__options {
max-height: 200px;
overflow-y: auto; }
.select2-container--default .select2-results__option[role=group] {
padding: 0; }
.select2-container--default .select2-results__option[aria-disabled=true] {
color: #999; }
.select2-container--default .select2-results__option[aria-selected=true] {
background-color: #ddd; }
.select2-container--default .select2-results__option .select2-results__option {
padding-left: 1em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
padding-left: 0; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
margin-left: -1em;
padding-left: 2em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -2em;
padding-left: 3em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -3em;
padding-left: 4em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -4em;
padding-left: 5em; }
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
margin-left: -5em;
padding-left: 6em; }
.select2-container--default .select2-results__option--highlighted[aria-selected] {
background-color: #5897fb;
color: white; }
.select2-container--default .select2-results__group {
cursor: default;
display: block;
padding: 6px; }
.select2-container--classic .select2-selection--single {
background-color: #f7f7f7;
border: 1px solid #aaa;
border-radius: 4px;
outline: 0;
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
.select2-container--classic .select2-selection--single:focus {
border: 1px solid #5897fb; }
.select2-container--classic .select2-selection--single .select2-selection__rendered {
color: #444;
line-height: 28px; }
.select2-container--classic .select2-selection--single .select2-selection__clear {
cursor: pointer;
float: right;
font-weight: bold;
margin-right: 10px; }
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
color: #999; }
.select2-container--classic .select2-selection--single .select2-selection__arrow {
background-color: #ddd;
border: none;
border-left: 1px solid #aaa;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
height: 26px;
position: absolute;
top: 1px;
right: 1px;
width: 20px;
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
border-color: #888 transparent transparent transparent;
border-style: solid;
border-width: 5px 4px 0 4px;
height: 0;
left: 50%;
margin-left: -4px;
margin-top: -2px;
position: absolute;
top: 50%;
width: 0; }
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
float: left; }
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
border: none;
border-right: 1px solid #aaa;
border-radius: 0;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
left: 1px;
right: auto; }
.select2-container--classic.select2-container--open .select2-selection--single {
border: 1px solid #5897fb; }
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
background: transparent;
border: none; }
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
border-color: transparent transparent #888 transparent;
border-width: 0 4px 5px 4px; }
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0;
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
background-repeat: repeat-x;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
.select2-container--classic .select2-selection--multiple {
background-color: white;
border: 1px solid #aaa;
border-radius: 4px;
cursor: text;
outline: 0; }
.select2-container--classic .select2-selection--multiple:focus {
border: 1px solid #5897fb; }
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
list-style: none;
margin: 0;
padding: 0 5px; }
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
display: none; }
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
background-color: #e4e4e4;
border: 1px solid #aaa;
border-radius: 4px;
cursor: default;
float: left;
margin-right: 5px;
margin-top: 5px;
padding: 0 5px; }
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
color: #888;
cursor: pointer;
display: inline-block;
font-weight: bold;
margin-right: 2px; }
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
color: #555; }
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
float: right;
margin-left: 5px;
margin-right: auto; }
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
margin-left: 2px;
margin-right: auto; }
.select2-container--classic.select2-container--open .select2-selection--multiple {
border: 1px solid #5897fb; }
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
border-top: none;
border-top-left-radius: 0;
border-top-right-radius: 0; }
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
border-bottom: none;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0; }
.select2-container--classic .select2-search--dropdown .select2-search__field {
border: 1px solid #aaa;
outline: 0; }
.select2-container--classic .select2-search--inline .select2-search__field {
outline: 0;
box-shadow: none; }
.select2-container--classic .select2-dropdown {
background-color: white;
border: 1px solid transparent; }
.select2-container--classic .select2-dropdown--above {
border-bottom: none; }
.select2-container--classic .select2-dropdown--below {
border-top: none; }
.select2-container--classic .select2-results > .select2-results__options {
max-height: 200px;
overflow-y: auto; }
.select2-container--classic .select2-results__option[role=group] {
padding: 0; }
.select2-container--classic .select2-results__option[aria-disabled=true] {
color: grey; }
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
background-color: #3875d7;
color: white; }
.select2-container--classic .select2-results__group {
cursor: default;
display: block;
padding: 6px; }
.select2-container--classic.select2-container--open .select2-dropdown {
border-color: #5897fb; }body { }
body .alignnone {
margin: 5px 20px 20px 0;
}
body .aligncenter, body div.aligncenter {
display: block;
margin: 5px auto 5px auto;
}
body .alignright {
float: right;
margin: 5px 0 20px 20px;
clear: right;
}
body .alignleft {
float: left;
margin: 5px 20px 20px 0;
clear: left;
}
body .wp-caption {
background: #fff;
max-width: 100%; text-align: center;
}
body .wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
body .wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
body .wp-caption.alignright {
margin: 5px 0 20px 20px;
}
body .wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 100%;
padding: 0;
width: auto;
}
body .wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
}
body .gallery-caption {
display: block;
}
body .bypostauthor {
display: inline-block;
}
body .screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important; }
body .screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000; }
body.customize-partial-edit-shortcuts-shown .theme.css button.customize-partial-edit-shortcut-button {
padding: 0;
border-radius: 100% !important;
background: rgba(0, 0, 0, 0.3) !important;
border: 2px solid #0073aa;
box-shadow: none;
color: #0073aa;
}
body.customize-partial-edit-shortcuts-shown .theme.css button.customize-partial-edit-shortcut-button:hover {
background-color: #0073aa !important;
} html {
font-size: 1rem; }
body {
position: relative;
background: #FFF; margin-left: auto;
margin-right: auto;
overflow-x: hidden;
color: #777;
font-size: 14px;
line-height: 1.5;
}
body.box-shadow {
box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
body.has-offcanvas--overlay {
overflow: hidden;
}
body.has-offcanvas--overlay .c-offcanvas--overlay {
z-index: 99999;
}
a {
color: #242424;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignnone {
margin: 5px 20px 20px 0;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img .aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
.familab_theme a.wp-block-button__link {
color: #ffffff;
}
a > svg {
fill: #242424;
}
a:hover {
color: #e36c02;
text-decoration: none;
}
a:hover > svg {
fill: #e36c02;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
color: #242424;
}
svg {
max-width: 100%;
display: inline-block;
}
svg.fm-icon {
width: 15px;
height: 15px;
fill: #242424;
stroke: #242424;
}
svg.fm-icon.fill:not(.stroke) {
stroke: none !important;
}
svg.fm-icon.stroke:not(.fill) {
fill: none !important;
}
.button > svg.fm-icon {
fill: #FFF;
stroke: #FFF;
}
.hidden {
display: none;
}
.img-responsive {
max-width: 100%;
}
.site-branding .site-logo {
display: inline-block;
}
.site-branding .site-logo.has-sticky-logo .sticky-logo {
display: none;
}
.site-branding .logo.text {
text-decoration: none;
}
*:focus {
outline: none !important;
}
.familab_theme em {
font-size: 0.8125rem;
}
td, th {
border-color: #dcdcdc;
border-style: solid;
border-width: 1px;
padding: 10px;
} .woocommerce #respond input#submit, .familab_theme #respond input#submit, .woocommerce a.button, .familab_theme a.button, .woocommerce button.button, .familab_theme button.button, .woocommerce button.button.alt, .familab_theme button.button.alt, .woocommerce input.button, .familab_theme input.button {
color: #FFF;
background-color: #242424;
border-color: transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
font-weight: normal;
line-height: 1.5;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
padding: 10px 20px;
font-size: 14px;
line-height: 22px;
}
.woocommerce #respond input#submit:hover, .woocommerce #respond input#submit:focus, .familab_theme #respond input#submit:hover, .familab_theme #respond input#submit:focus, .woocommerce a.button:hover, .woocommerce a.button:focus, .familab_theme a.button:hover, .familab_theme a.button:focus, .woocommerce button.button:hover, .woocommerce button.button:focus, .familab_theme button.button:hover, .familab_theme button.button:focus, .woocommerce button.button.alt:hover, .woocommerce button.button.alt:focus, .familab_theme button.button.alt:hover, .familab_theme button.button.alt:focus, .woocommerce input.button:hover, .woocommerce input.button:focus, .familab_theme input.button:hover, .familab_theme input.button:focus {
transition: all 0.25s;
outline: none;
box-shadow: none;
color: #FFFFFF;
border-color: transparent;
background-color: #e36c02;
}
.woocommerce #respond input#submit.btn-flat, .familab_theme #respond input#submit.btn-flat, .woocommerce a.button.btn-flat, .familab_theme a.button.btn-flat, .woocommerce button.button.btn-flat, .familab_theme button.button.btn-flat, .woocommerce button.button.alt.btn-flat, .familab_theme button.button.alt.btn-flat, .woocommerce input.button.btn-flat, .familab_theme input.button.btn-flat {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.woocommerce #respond input#submit.btn-advance, .familab_theme #respond input#submit.btn-advance, .woocommerce a.button.btn-advance, .familab_theme a.button.btn-advance, .woocommerce button.button.btn-advance, .familab_theme button.button.btn-advance, .woocommerce button.button.alt.btn-advance, .familab_theme button.button.alt.btn-advance, .woocommerce input.button.btn-advance, .familab_theme input.button.btn-advance {
background: #e36c02;
}
.woocommerce #respond input#submit.btn-advance:hover, .woocommerce #respond input#submit.btn-advance:focus, .familab_theme #respond input#submit.btn-advance:hover, .familab_theme #respond input#submit.btn-advance:focus, .woocommerce a.button.btn-advance:hover, .woocommerce a.button.btn-advance:focus, .familab_theme a.button.btn-advance:hover, .familab_theme a.button.btn-advance:focus, .woocommerce button.button.btn-advance:hover, .woocommerce button.button.btn-advance:focus, .familab_theme button.button.btn-advance:hover, .familab_theme button.button.btn-advance:focus, .woocommerce button.button.alt.btn-advance:hover, .woocommerce button.button.alt.btn-advance:focus, .familab_theme button.button.alt.btn-advance:hover, .familab_theme button.button.alt.btn-advance:focus, .woocommerce input.button.btn-advance:hover, .woocommerce input.button.btn-advance:focus, .familab_theme input.button.btn-advance:hover, .familab_theme input.button.btn-advance:focus {
background-color: #e36c02;
} .familab_theme #respond input#submit.disabled, .familab_theme #respond input#submit:disabled[disabled], .familab_theme a.button:disabled, .familab_theme a.button:disabled[disabled], .familab_theme button.button:disabled, .familab_theme button.button:disabled[disabled], .familab_theme input.button:disabled, .familab_theme input.button:disabled[disabled], .familab_theme #respond input#submit.alt, .familab_theme a.button.alt, .familab_theme button.button.alt, .familab_theme input.button.alt {
padding: 10px 20px;
font-size: 16px;
line-height: 22px;
} input[type=email], input[type=search], input[type=number], input[type=url], input[type=tel], input[type=text], input[type=password] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100%;
max-width: 100%;
border: 1px solid #dcdcdc;
background-color: transparent;
font-size: 14px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
transition: border-color 0.5s;
-webkit-transition: border-color 0.5s;
vertical-align: middle;
padding: 0 15px;
height: 42px;
}
input[type=email]:focus, input[type=search]:focus, input[type=number]:focus, input[type=url]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=password]:focus {
outline: none;
border-color: #242424;
color: #242424;
transition: border-color 0.4s;
-webkit-transition: border-color 0.4s;
}
input[type=radio], input[type=checkbox] {
-webkit-box-sizing: border-box;
box-sizing: border-box;
padding: 0;
margin-top: 0;
margin-right: 5px;
vertical-align: middle;
}
input[type=search] {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
-webkit-box-sizing: content-box;
box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input[type=number] {
padding: 0;
text-align: center;
}
input[type=number]::-webkit-search-cancel-button, input[type=number]::-webkit-search-decoration {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}
input:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset;
border-color: #dcdcdc;
-webkit-text-fill-color: #aaaaaa;
}
input:focus:-webkit-autofill {
border-color: #dcdcdc;
}
input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
}
textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100%;
max-width: 100%;
border: 1px solid #dcdcdc;
background-color: transparent;
font-size: 14px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
transition: border-color 0.5s;
-webkit-transition: border-color 0.5s;
vertical-align: middle;
padding: 0 15px;
height: 42px;
padding: 10px 15px;
min-height: 190px;
overflow: auto;
}
textarea:focus {
outline: none;
border-color: #242424;
color: #242424;
transition: border-color 0.4s;
-webkit-transition: border-color 0.4s;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100%;
max-width: 100%;
border: 1px solid #dcdcdc;
background-color: transparent;
font-size: 14px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
transition: border-color 0.5s;
-webkit-transition: border-color 0.5s;
vertical-align: middle;
padding: 0 15px;
height: 42px;
padding-right: 30px;
background-position: right 10px top 50%;
background-size: auto 16px;
background-repeat: no-repeat;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon.svg);
}
select:focus {
outline: none;
border-color: #242424;
color: #242424;
transition: border-color 0.4s;
-webkit-transition: border-color 0.4s;
}
select::-ms-expand {
display: none;
}
.familab_theme .select2-container--default .select2-selection {
border-radius: 0;
border: 1px solid #dcdcdc;
transition: border-color 0.4s;
-webkit-transition: border-color 0.4s;
background-color: transparent;
min-width: 60px;
}
.familab_theme .select2-container--default .select2-selection:focus {
outline: none;
border-color: #242424;
color: #242424;
transition: border-color 0.4s;
-webkit-transition: border-color 0.4s;
}
.familab_theme .select2-container--default .select2-selection--single {
text-align: left;
font-size: 14px;
padding: 0 15px;
height: 42px;
line-height: 40px;
}
.familab_theme .select2-container--default .select2-selection--single > .select2-selection__arrow {
height: 100%;
}
.familab_theme .select2-container--default .select2-selection--single > .select2-selection__rendered {
display: inline;
padding-left: 0 !important;
color: inherit;
line-height: inherit;
}
.form_style_circle input[type=text], .form_style_circle input[type=email], .form_style_circle input[type=password], .form_style_circle input[type=search], .form_style_circle input[type=number], .form_style_circle input[type=url], .form_style_circle input[type=tel], .form_style_circle input[type=date], .form_style_circle select, .form_style_circle textarea {
border-radius: 35px;
}
.form_style_round input[type=text], .form_style_round input[type=email], .form_style_round input[type=password], .form_style_round input[type=search], .form_style_round input[type=number], .form_style_round input[type=url], .form_style_round input[type=tel], .form_style_round input[type=date], .form_style_round select, .form_style_round textarea {
border-radius: 2px;
}
.select2-container--default .select2-selection .form_style_circle.familab_theme {
border-radius: 35px;
}
.select2-container--default .select2-selection .form_style_round.familab_theme {
border-radius: 2px;
} #content {
padding: 30px 0;
}
.home:not(.blog) #content, #content.content-only {
padding: 0;
}
#content .sidebar-right, #content .sidebar-left {
flex-direction: column;
} .site-header {
position: relative;
z-index: 100;
}
.site-header.cenos_transparent_header {
position: absolute;
width: 100vw;
max-width: 100%;
z-index: 10;
}
.site-header.cenos_transparent_header.header-wrapper {
position: static;
}
.header-container,
.footer-container {
max-width: 100%;
margin: 0 auto;
padding-left: 15px;
padding-right: 15px;
}
.header-main .header-container {
display: flex;
align-items: center;
height: inherit;
}
.header-layout1 .header-main .header-container {
justify-content: flex-start;
}
.header-layout1 .header-main .header-container .header-right-control {
margin-left: auto;
}
.header-layout2 .header-main .header-container {
display: flex;
justify-content: space-between;
}
.header-layout2 .header-main .header-container .site-branding {
margin-right: auto;
display: flex;
}
.header-layout4 .header-main .header-container {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
}
.header-layout3 .header-main .header-container, .header-layout5 .header-main .header-container {
display: grid;
grid-template-columns: 1fr 250px 1fr;
}
.header-layout3 .header-main .header-container .site-branding, .header-layout5 .header-main .header-container .site-branding {
width: 100%;
text-align: center;
}
.header-layout6 .header-main .header-container {
display: grid;
grid-template-columns: 1fr 250px 1fr;
}
.header-layout6 .header-main .header-container .site-branding {
width: 100%;
text-align: center;
}
.header-layout7 .header-main .header-container {
justify-content: space-between;
}
.header-layout8 .header-main .header-container {
justify-content: space-between;
}
.header-layout9 .header-main .header-container {
justify-content: space-between;
}
.header-layout10 .header-main .header-container {
justify-content: space-between;
}
.header-layout10 .header-bottom, .header-layout8 .header-bottom, .header-layout3 .header-bottom {
height: 56px;
}
.header-layout10 .header-bottom .header-container, .header-layout8 .header-bottom .header-container, .header-layout3 .header-bottom .header-container {
height: inherit;
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}
.header-layout10 .header-bottom .header-container:before {
display: inline-block;
width: calc(100% - 30px);
border-top: 1px solid rgba(122, 122, 122, 0.4);
content: "";
position: absolute;
top: 0;
}
.main-navigation {
text-align: left;
}
.main-navigation.nav-center {
text-align: center;
margin-left: auto;
margin-right: auto;
}
.main-navigation.nav-right {
text-align: right;
margin-left: auto;
}
.header-layout1 .main-navigation.nav-right + .header-right-control {
margin-left: 50px;
}
.header-layout4 .main-navigation.logo-center-menu > ul.nav-menu > li > a {
padding-left: 0;
padding-right: 0;
}
.main-navigation.logo-center-menu {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
}
.main-navigation.logo-center-menu > .site-branding {
text-align: center;
}
.header-bottom .main-navigation {
text-align: center;
justify-content: center;
}
.header-control-wrap {
display: flex;
align-items: center;
}
.header-control-wrap.header-left-control {
justify-content: flex-start;
}
.header-control-wrap.header-right-control {
justify-content: flex-end;
}
.vertical-header .site-header {
position: fixed;
width: 350px;
}
.vertical-header .site-header .header-wrapper {
position: relative;
border-right: 1px solid #eeeeee;
background: #FFF;
width: 100%;
}
.vertical-header .site-header .header-wrapper .header-main {
display: flex;
flex-direction: column;
height: 100vh;
}
.vertical-header .site-header .header-wrapper .header-main .header-top {
display: flex;
justify-content: space-between;
margin: 45px 0;
padding: 0 30px;
}
.vertical-header .site-header .header-wrapper .header-main .header-top-control {
display: flex;
justify-content: flex-end;
align-items: center;
}
.vertical-header .site-header .header-wrapper .header-main .header-bottom-control {
padding: 0 30px;
margin-top: auto;
display: flex;
flex-direction: column;
align-items: flex-start;
border-top: 1px solid #eeeeee;
}
.vertical-header .site-header .header-wrapper .header-main .header-bottom-control .header-element {
margin-top: 25px;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper {
margin-bottom: 20px;
width: 100%;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper .fm-search-form {
max-width: 100%;
height: 50px;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper .fm-search-form .twitter-typeahead {
width: 100%;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper .fm-search-form .search_text_input {
min-width: auto;
background: #f8f8f8;
border: none;
text-transform: lowercase;
color: #aaa;
width: 100%;
font-size: 12px;
font-weight: 400;
padding-left: 30px;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper .fm-search-form .search_text_input:focus {
color: #242424;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper .fm-search-form .search_text_input::placeholder {
color: inherit;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper .fm-search-form button[type=submit] {
background: #f8f8f8;
width: 50px;
height: 50px;
padding: 0;
display: inline-block;
position: absolute;
right: 10px;
top: 0;
}
.vertical-header .site-header .header-wrapper .header-main .search_form_wrapper .fm-search-form button[type=submit] svg {
fill: #242424;
}
.vertical-header .site-header .header-wrapper .header-main .site-branding {
max-width: 125px;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.contact-info-box {
display: flex;
flex-wrap: wrap;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.contact-info-box .ct-info {
flex: 0 0 calc(100% - 25px);
font-size: 11px;
font-weight: bold;
color: #242424;
line-height: 15px;
margin: 0 0 16px 0;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.contact-info-box svg {
width: 15px;
height: 15px;
flex: 0 0 15px;
margin: 0 8px 16px 0;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.social-icon-box a.fm-social-icon-link {
margin-right: 10px;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.my-account-box .account-btn span.c-button__text > span, .vertical-header .site-header .header-wrapper .header-main .header-element.wishlist-box a.wishlist-btn > span:not(.wishlist_counter), .vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a .cart-title {
display: none;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.wishlist-box a.wishlist-btn {
position: relative;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.wishlist-box a.wishlist-btn > span.wishlist_counter {
background-color: #555555;
position: absolute;
top: -10px;
right: -10px;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a {
line-height: 15px;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a .cart-counter {
position: absolute;
top: -10px;
right: -10px;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a .cart-counter > span {
background-color: #555555;
color: #ffffff !important;
}
.vertical-header .site-header .menu-switch-link {
display: none;
}
.vertical-header .main-content-wrap {
margin-left: 350px;
background: #f4f4f4;
}
.vertical-header .main-content-wrap #content > .container {
max-width: 100%;
padding: 0 10px;
}
.vertical-header .hover_dropdown_wrapper .dropdown_content {
top: 0;
right: auto;
left: 100%;
margin-left: 32px;
transform: translateX(15px) translateZ(0);
}
.vertical-header .hover_dropdown_wrapper .dropdown_content:before {
content: "";
position: absolute;
right: 100%;
width: 32px;
display: block;
height: 100%;
top: 0;
}
.vertical-header .main-navigation {
display: block;
}
.vertical-header .main-navigation ul.nav-menu {
height: auto;
padding: 0 30px;
}
.vertical-header .main-navigation ul.nav-menu > li {
display: block;
margin: 0 0 15px 0 !important;
}
.vertical-header .main-navigation ul.nav-menu > li > a {
font-size: 14px;
font-weight: 400;
padding: 8px 0;
line-height: 24px;
}
.vertical-header .main-navigation ul.nav-menu > li > a::after {
display: none;
}
.vertical-header .main-navigation ul.nav-menu > li.menu-item-has-children > a, .vertical-header .main-navigation ul.nav-menu > li.menu-item-mega > a {
position: relative;
padding-left: 0;
padding-right: 0;
}
.vertical-header .main-navigation ul.nav-menu > li.menu-item-has-children > a::before, .vertical-header .main-navigation ul.nav-menu > li.menu-item-mega > a::before {
content: "";
position: absolute;
right: 0;
width: 8px;
height: 8px;
border: 1px solid #aaaaaa;
border-width: 1px 1px 0 0;
transform: rotateZ(45deg);
}
.vertical-header .main-navigation ul.nav-menu > li.menu-item-has-children:hover > a::before, .vertical-header .main-navigation ul.nav-menu > li.menu-item-mega:hover > a::before {
border-color: #e36c02;
}
.vertical-header .main-navigation ul.nav-menu li.menu-item .sub-menu {
top: 0;
right: auto;
left: 100%;
-webkit-transform: translateX(30px);
-moz-transform: translateX(30px);
-ms-transform: translateX(30px);
-o-transform: translateX(30px);
transform: translateX(30px);
}
.vertical-header .main-navigation ul.nav-menu li.menu-item.menu-item-mega > .sub-menu {
left: calc(100% + 30px);
}
.vertical-header .main-navigation ul.nav-menu li.menu-item.menu-item-mega:hover > .sub-menu {
top: 0;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
.vertical-header.no-scroll {
overflow-y: hidden;
}
.vertical-header .woocommerce ul.products.products-grid-style {
margin-bottom: 0;
}
.vertical-header .woocommerce ul.products.products-grid-style li.product {
margin-bottom: 10px;
margin-right: 10px;
}
.vertical-header .woocommerce ul.products.products-grid-style li.product .variations_form {
display: none;
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-2 li.product {
width: calc((100% - 1 * 10px) / 2);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-2 li.product:nth-child(2n+0) {
width: calc(((100% - 1 * 10px) / 2) - 1px);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-3 li.product {
width: calc((100% - 2 * 10px) / 3);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-3 li.product:nth-child(3n+0) {
width: calc(((100% - 2 * 10px) / 3) - 1px);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-4 li.product {
width: calc((100% - 3 * 10px) / 4);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-4 li.product:nth-child(4n+0) {
width: calc(((100% - 3 * 10px) / 4) - 1px);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-5 li.product {
width: calc((100% - 4 * 10px) / 5);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-5 li.product:nth-child(5n+0) {
width: calc(((100% - 4 * 10px) / 5) - 1px);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-6 li.product {
width: calc((100% - 5 * 10px) / 6);
}
.vertical-header .woocommerce ul.products.products-grid-style.columns-6 li.product:nth-child(6n+0) {
width: calc(((100% - 5 * 10px) / 6) - 1px);
}
.vertical-header .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper {
background: #f4f4f4;
}
.vertical-header.single-product .main-content-wrap {
background: #ffffff;
}
.vertical-header.single-product .main-content-wrap #content {
padding-top: 50px;
}
.vertical-header.single-product .main-content-wrap #content > .container {
max-width: 1380px;
}
@media (min-width: 992px) {
#content .sidebar-right {
flex-direction: row-reverse;
}
#content .sidebar-left {
flex-direction: row;
}
}
@media (min-width: 1200px) {
.vertical-header .main-navigation ul.nav-menu > li + li {
margin-top: 20px;
}
}
@media (min-width: 1500px) {
.vertical-header .site-header .header-wrapper .header-main .header-element.wishlist-box a.wishlist-btn span.wishlist_counter {
display: none;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a .cart-counter {
position: static;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a .cart-counter > span {
background-color: #242424;
color: #ffffff !important;
width: 20px;
height: 20px;
line-height: 20px;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a .cart-title {
display: inline-block;
}
.vertical-header .site-header .header-wrapper .header-main .header-element.cart_box > a .c-button__text > svg {
display: none;
}
}
@media (max-width: 1499px) {
.vertical-header .site-header {
position: fixed;
transition: width 0.2s linear 0s;
}
.vertical-header .site-header .header-vertical-switch {
display: block;
position: absolute;
top: 50%;
right: -1px;
transform: translate(100%, -50%);
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
z-index: 0;
}
.vertical-header .site-header .header-vertical-switch .header-vertical-switch-btn {
width: 22px;
height: 40px;
background: #f8f8f8;
border-radius: 0 3px 3px 0;
display: flex;
align-items: center;
justify-content: center;
transition: background 0.25s ease-in-out;
}
.vertical-header .site-header .header-vertical-switch .header-vertical-switch-btn svg {
fill: #222222;
}
.vertical-header .site-header .header-vertical-switch .header-vertical-switch-btn:hover {
background: #242424;
}
.vertical-header .site-header .header-vertical-switch .header-vertical-switch-btn:hover svg {
fill: #FFF;
}
.vertical-header .site-header .menu-switch-link {
height: 100%;
visibility: visible;
opacity: 1;
display: flex;
align-items: center;
justify-content: center;
}
.vertical-header .site-header .menu-switch-link svg {
width: 27px;
height: 27px;
margin-right: 8px;
fill: #242424;
}
.vertical-header .site-header .menu-switch-link .menu-switch-title {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
}
.vertical-header .site-header:not(.header-open) {
width: 120px;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top {
margin: 0;
border-bottom: 1px solid #eee;
padding: 35px 20px 25px 20px;
flex-direction: column;
align-items: flex-start;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top .site-branding {
max-width: 100%;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top .header-top-control .header-element {
margin-left: 0;
margin-right: 20px;
margin-top: 20px;
}
.vertical-header .site-header:not(.header-open) .header-main .search_form_wrapper {
opacity: 0;
visibility: hidden;
height: 0;
margin: 0;
}
.vertical-header .site-header:not(.header-open) .header-main nav#site-navigation {
height: 0;
opacity: 0;
visibility: hidden;
transform: translateX(-120px);
}
.vertical-header .site-header:not(.header-open) .header-main .header-bottom-control {
padding: 0 20px;
margin-bottom: 25px;
}
.vertical-header .site-header:not(.header-open) .header-main .header-bottom-control .header-element.contact-info-box {
justify-content: space-between;
width: 100%;
}
.vertical-header .site-header:not(.header-open) .header-main .header-bottom-control .header-element.contact-info-box .ct-info {
display: none;
}
.vertical-header .site-header:not(.header-open) .header-main .header-bottom-control .header-element.contact-info-box svg {
margin: 0;
}
.vertical-header .site-header:not(.header-open) .header-main .main-navigation ul.nav-menu {
padding: 0 20px;
}
.vertical-header .site-header.header-open .header-vertical-switch {
opacity: 1;
visibility: visible;
z-index: 10;
}
.vertical-header .site-header.header-open .menu-switch-link {
height: 0;
visibility: hidden;
opacity: 0;
}
.vertical-header .site-header.header-open + .main-content-wrap::before {
content: "";
width: 100vw;
height: 100vh;
display: inline-block;
background: rgba(0, 0, 0, 0.6);
z-index: 2;
position: fixed;
}
.vertical-header .main-content-wrap {
margin-left: 120px;
}
}
@media (max-width: 1199px) {
.header-layout4 .main-navigation.logo-center-menu > ul.nav-menu > li > a {
padding-left: 0;
padding-right: 0;
}
}
@media (max-width: 575px) {
.vertical-header .site-header:not(.header-open) {
width: 50px;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top {
padding: 20px 3px;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top .header-top-control {
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top .header-top-control .header-element {
margin-left: 0;
margin-right: 0;
margin-top: 20px;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top .header-top-control .header-element.wishlist-box a.wishlist-btn, .vertical-header .site-header:not(.header-open) .header-main .header-top .header-top-control .header-element.cart_box .c-button__text {
display: flex;
flex-direction: column;
align-items: center;
}
.vertical-header .site-header:not(.header-open) .header-main .header-top .header-top-control .header-element.wishlist-box a.wishlist-btn > span.wishlist_counter, .vertical-header .site-header:not(.header-open) .header-main .header-top .header-top-control .header-element.cart_box > a .cart-counter {
position: static;
}
.vertical-header .site-header:not(.header-open) .header-main .menu-switch-link svg {
margin: 0;
}
.vertical-header .site-header:not(.header-open) .header-main .menu-switch-link .menu-switch-title {
display: none;
}
.vertical-header .site-header:not(.header-open) .header-main .header-bottom-control {
padding: 0 15px;
}
.vertical-header .site-header:not(.header-open) .header-main .header-bottom-control .header-element.contact-info-box {
flex-direction: column;
align-items: center;
}
.vertical-header .site-header:not(.header-open) .header-main .header-bottom-control .header-element.contact-info-box svg {
margin: 0 0 15px 0;
}
.vertical-header .site-header.header-open {
width: 290px;
}
.vertical-header .main-content-wrap {
margin-left: 50px;
}
}
.hover_dropdown_wrapper {
position: relative;
}
.hover_dropdown_wrapper .dropdown_content {
position: absolute;
top: 100%;
right: 0;
z-index: 340;
background-color: #FFF;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
margin: -10px 0 0;
padding: 15px;
-webkit-transform: translateY(15px) translateZ(0);
transform: translateY(15px) translateZ(0);
visibility: hidden;
opacity: 0;
transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
pointer-events: none;
}
.header-left-control .hover_dropdown_wrapper .dropdown_content {
left: 0;
right: auto;
}
.hover_dropdown_wrapper:hover .dropdown_content {
visibility: visible;
opacity: 1;
-webkit-transform: none;
transform: none;
pointer-events: unset;
} .cenos-announcement-box {
position: relative;
display: flex;
align-items: center;
flex-wrap: wrap;
padding: 0.5rem 0;
-webkit-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
-moz-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
-ms-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
-o-transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
transition: height ease 0.25s, opacity ease 0.25s, padding ease 0.25s;
}
.cenos-announcement-box.layout1 {
justify-content: center;
}
.cenos-announcement-box.closed {
height: 0;
opacity: 0;
padding: 0;
visibility: hidden;
}
.cenos-announcement-box > * {
margin: 0 0.5rem;
}
.cenos-announcement-box .announcement_btn > a.btn-default {
height: 40px;
padding: 10px 25px;
line-height: 20px;
}
.cenos-announcement-box .announcement-msg-after-time p,
.cenos-announcement-box .announcement-msg p {
margin-bottom: 0;
}
.cenos-announcement-box button.close {
position: absolute;
right: 0;
top: 50%;
margin-top: -20px;
width: 40px;
height: 40px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
background: none !important;
border: none !important;
}
.cenos-announcement-box button.close svg.fm-icon {
width: 20px;
height: 20px;
stroke: rgba(125, 125, 125, 0.6);
}
.cenos-announcement-box button.close svg.fm-icon:hover {
stroke: #e36c02;
}
.cenos-announcement-box .announcement_btn > a.btn-default {
background-color: #e36c02;
color: #ffffff;
}
.site-footer ~ .cenos-announcement-box {
position: fixed;
bottom: 0;
top: auto;
width: 100%;
}
.fm-countdown-time {
display: flex;
}
.fm-countdown-time .box-count {
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
align-items: center;
align-content: center;
background: #e36c02;
color: #FFF;
margin: 0 4px;
padding: 3px 8px;
border-radius: 4px;
}
.fm-countdown-time .box-count .num {
font-weight: 500;
font-size: 18px;
line-height: 18px;
}
.fm-countdown-time .box-count .text {
line-height: 12px;
font-size: 11px;
} .header-element {       }
.header-element.search_box.button {
position: relative;
}
.header-element.search_box.button .search-btn.search-btn-dropdown {
position: relative;
}
.header-element.search_box.button .search-btn.search-btn-dropdown:after {
display: inline-block;
content: "";
width: 100%;
height: 25px;
position: absolute;
bottom: -100%;
left: 0;
}
.header-element.search_box.button .search_form_wrapper.dropdown {
position: absolute;
top: calc( 100% + 15px );
right: 0;
z-index: 340;
background-color: #FFF;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
margin: -10px 0 0;
padding: 15px;
-webkit-transform: translateY(15px) translateZ(0);
transform: translateY(15px) translateZ(0);
visibility: hidden;
opacity: 0;
transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
pointer-events: none;
}
.header-element.search_box.button .search_form_wrapper.dropdown::before {
width: 50px;
height: 50px;
display: block;
position: absolute;
top: -25px;
z-index: 5;
content: "";
right: 20px;
}
.header-left-control .header-element.search_box.button .search_form_wrapper.dropdown {
left: 0;
right: auto;
}
.header-right-control .header-element.search_box.button .search_form_wrapper.dropdown {
left: auto;
right: 0;
}
.header-element.search_box.button .search_form_wrapper .wc_search_form {
display: flex;
}
.header-element.search_box.button .search_form_wrapper .wc_search_form.style2 .search_categories {
order: -1;
}
.header-element.search_box.button:hover .search_form_wrapper.dropdown {
visibility: visible;
opacity: 1;
-webkit-transform: none;
transform: none;
pointer-events: unset;
}
.header-element.cart_box > a {
position: relative;
}
.header-element.cart_box > a .cart-counter {
font-size: 0;
position: absolute;
top: -12px;
right: -12px;
}
.header-element.cart_box > a .cart-counter > span {
font-size: 0.874rem;
background: #e36c02;
width: 24px;
height: 24px;
color: #FFF !important;
display: inline-block;
text-align: center;
line-height: 24px;
border-radius: 12px;
}
.header-element.cart_box .cart_box_content {
width: 20rem;
}
.header-element.cart_box .cart_box_content .woocommerce-mini-cart {
position: relative;
}
.header-element.cart_box .cart_box_content li.woocommerce-mini-cart-item > a {
display: inline-block;
}
.header-element.cart_box .cart_box_content li.woocommerce-mini-cart-item img.attachment-woocommerce_thumbnail {
max-width: 100%;
height: auto;
}
.fm-header-sticky .header-element.cart_box .cart_box_content.dropdown_content {
max-height: 600px;
overflow-y: auto;
}
.header-element.html_right_1 *, .header-element.html_left_1 *, .header-element.html_topbar_center *, .header-element.html_topbar_left *, .header-element.html_topbar_right * {
margin-bottom: 0;
}
.header-left-control .header-element:not(.cart_box):not(.wishlist-box):not(.search_box):not(.my-account-box) {
margin-right: 0.5rem;
}
.header-right-control .header-element:not(.cart_box):not(.wishlist-box):not(.search_box):not(.my-account-box) {
margin-left: 0.5rem;
}
.header-center-control .header-element:not(.cart_box):not(.wishlist-box):not(.search_box):not(.my-account-box) {
margin-left: 0.25rem;
margin-right: 0.25rem;
} .top-bar {
color: inherit;
width: 100%;
position: relative;
z-index: 3;
}
.top-bar > .header-container {
display: flex;
align-items: center;
height: 100%;
}
.top-bar ul.ul_topbar {
list-style: none;
padding: 0;
display: flex;
flex-wrap: wrap;
}
.top-bar ul.ul_topbar li {
line-height: 12px;
}
.top-bar ul.ul_topbar li > a, .top-bar ul.ul_topbar li > * {
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
line-height: 12px;
}
.top-bar ul.ul_topbar li + li {
padding-left: 12px;
margin-left: 12px;
border-left-width: 1px;
border-left-style: solid;
}
.top-bar.top-bar-layout1 > .header-container {
justify-content: space-between;
}
.top-bar.top-bar-layout1 .top-bar-left-control {
display: flex;
}
.top-bar.top-bar-layout1 .top-bar-left-control .header-element {
margin: 0 1rem 0 0;
}
.top-bar.top-bar-layout1 .top-bar-left-control .header-element.html_topbar_left * {
margin-bottom: 0;
}
.top-bar.top-bar-layout1 .top-bar-right-control {
display: flex;
}
.top-bar.top-bar-layout1 .top-bar-right-control .header-element {
margin: 0 0 0 1rem;
}
.top-bar.top-bar-layout1 .top-bar-right-control .header-element.html_topbar_right * {
margin-bottom: 0;
}
.top-bar.top-bar-layout2 > .header-container {
align-items: center;
justify-content: space-between;
}
.top-bar.top-bar-layout2 .top-bar-control {
flex: 1;
display: flex;
align-items: center;
}
.top-bar.top-bar-layout2 .top-bar-control .header-element.html_topbar_left *, .top-bar.top-bar-layout2 .top-bar-control .header-element.html_topbar_center *, .top-bar.top-bar-layout2 .top-bar-control .header-element.html_topbar_right * {
margin-bottom: 0;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-left-control {
text-align: left;
justify-content: flex-start;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-left-control .header-element {
margin: 0 1rem 0 0;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-center-control {
text-align: center;
justify-content: center;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-center-control .header-element {
margin: 0 0.5rem;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-right-control {
text-align: right;
justify-content: flex-end;
}
.top-bar.top-bar-layout2 .top-bar-control.top-bar-right-control .header-element {
margin: 0 0 0 1rem;
}
.top-bar.dark *, .top-bar.dark a, .top-bar.dark p {
color: #242424;
border-color: #24242485 !important;
}
.top-bar.dark *:hover, .top-bar.dark a:hover, .top-bar.dark p:hover {
color: #e36c02;
}
.top-bar.dark svg.fm-icon {
fill: #242424;
}
.top-bar.dark svg.fm-icon:hover {
fill: #e36c02;
}
.top-bar.light *, .top-bar.light a, .top-bar.light p {
color: #FFFFFF99;
border-color: #FFFFFF68 !important;
}
.top-bar.light *:hover, .top-bar.light a:hover, .top-bar.light p:hover {
color: #ffffff;
}
.top-bar.light svg.fm-icon {
fill: #FFFFFF99;
}
.top-bar.light svg.fm-icon:hover {
fill: #ffffff;
} #hamburger-canvas .hamburger-screen-inner {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
align-items: center;
overflow-y: auto;
overflow-x: hidden;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head {
position: relative;
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
padding: 20px 15px;
border-bottom: 1px solid #dcdcdc;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head .hm-logo {
display: flex;
justify-content: space-between;
width: 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head .hm-logo .site-logo {
max-width: 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head .hm-logo .site-logo .sticky-logo {
display: none;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content {
padding: 15px;
width: 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom {
margin-top: auto;
margin-bottom: 1px;
padding: 15px;
display: flex;
flex-direction: column;
width: 100%;
border-top: 1px solid #dcdcdc;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom .social-links {
display: flex;
align-items: center;
justify-content: space-between;
height: 40px;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom .social-links a.fm-social-icon-link:hover {
color: #e36c02;
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu {
height: auto;
padding: 0;
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li {
display: block;
margin: 0 0 15px 0;
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li > a {
font-size: 14px;
font-weight: 500;
padding: 8px 0;
line-height: 24px;
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li > a::after {
display: none;
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li.menu-item-has-children > a .toggle-icon::before, #hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li.menu-item-mega > a .toggle-icon::before {
content: "";
width: 8px;
height: 8px;
border-style: solid;
border-color: #aaaaaa;
border-width: 1px 1px 0 0;
transform: rotateZ(45deg);
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li.menu-item-has-children:hover > a .toggle-icon::before, #hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li.menu-item-mega:hover > a .toggle-icon::before {
border-color: #e36c02;
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu li.menu-item .sub-menu {
top: 0;
right: auto;
left: 100%;
padding-left: 0;
-webkit-transform: translateX(25px);
-moz-transform: translateX(25px);
-ms-transform: translateX(25px);
-o-transform: translateX(25px);
transform: translateX(25px);
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu li.menu-item.menu-item-mega > .sub-menu {
left: calc(100% + 25px);
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu li.menu-item.menu-item-mega:hover > .sub-menu {
top: 0;
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
transform: translateX(0);
}
.currency.list-dropdown, .language.list-dropdown {
display: flex;
}
.currency.list-dropdown > span.label, .language.list-dropdown > span.label {
margin-right: 6px;
display: none;
}
.currency.list-dropdown .dropdown, .language.list-dropdown .dropdown {
position: relative;
}
.currency.list-dropdown .dropdown .current svg.fm-icon, .language.list-dropdown .dropdown .current svg.fm-icon {
width: 0.875rem;
height: 0.875rem;
}
.currency.list-dropdown .dropdown ul, .language.list-dropdown .dropdown ul {
display: flex;
flex-direction: column;
position: absolute;
right: 0;
top: 100%;
margin: 0;
padding: 0;
opacity: 0;
visibility: hidden;
background-color: #f8f8f8;
list-style: none;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-moz-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-ms-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-o-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
}
.currency.list-dropdown .dropdown ul li, .language.list-dropdown .dropdown ul li {
min-width: 68px;
padding: 5px 0;
background: #ffffff;
text-align: center;
}
.currency.list-dropdown .dropdown ul li:hover, .language.list-dropdown .dropdown ul li:hover {
background: #f4f4f4;
}
.currency.list-dropdown .dropdown ul li a, .language.list-dropdown .dropdown ul li a {
display: inline-block;
height: 24px;
line-height: 24px;
width: 100%;
color: #242424;
}
.currency.list-dropdown .dropdown:hover ul, .language.list-dropdown .dropdown:hover ul {
visibility: visible;
opacity: 1;
}
.top-bar-left-control .currency.list-dropdown > .dropdown > ul, .top-bar-left-control .language.list-dropdown > .dropdown > ul {
left: 0;
right: auto;
z-index: 9;
} .fm-header-sticky {
position: fixed;
width: 100%;
z-index: 2;
}
#topbar + .fm-header-sticky {
position: absolute;
}
.cenos-announcement-box ~ .site-content .fm-header-sticky {
position: absolute;
}
.fm-header-sticky.headroom {
will-change: transform;
-webkit-transition: -webkit-transform 250ms linear;
transition: transform 250ms linear, background-color 250ms linear;
}
.fm-header-sticky.headroom--pinned {
-webkit-transform: translateY(0%);
transform: translateY(0%);
}
.fm-header-sticky.headroom--pinned.headroom--not-top {
position: fixed;
top: 0;
border-bottom: none;
-webkit-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.07);
-moz-box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.07);
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.07);
}
.fm-header-sticky.headroom--pinned.headroom--not-top.fromTop {
visibility: hidden;
}
#topbar + .fm-header-sticky.headroom--pinned.headroom--not-top {
position: fixed;
}
.admin-bar .fm-header-sticky.headroom--pinned.headroom--not-top {
top: 32px;
}
.fm-header-sticky.headroom--not-top .has-sticky-logo img, .fm-header-sticky.headroom--not-top .has-sticky-logo .logo-text {
display: none;
}
.fm-header-sticky.headroom--not-top .has-sticky-logo .sticky-logo {
display: block;
}
.fm-header-sticky.headroom--unpinned {
top: 0;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
.headroom--pinned.header-layout .header-main {
-webkit-transition: height 250ms linear;
transition: height 250ms linear;
}
@media (min-width: 768px) {
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-head {
padding: 35px 25px;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-screen-content {
padding: 25px;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom {
padding: 25px;
flex-direction: row;
flex-wrap: wrap;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom .social-links {
flex: 0 0 100%;
}
#hamburger-canvas .hamburger-screen-inner .hamburger-bottom .language, #hamburger-canvas .hamburger-screen-inner .hamburger-bottom .currency {
flex: 0 0 50%;
}
}
@media (min-width: 1200px) { .header-element.cart_box .cart_box_content {
width: 368px;
}
}  .familab_theme .swiper-button-next, .familab_theme .swiper-button-prev {
background-image: none;
}
.familab_theme .swiper-button-next:after, .familab_theme .swiper-button-prev:after {
display: none;
}
.familab_theme .swiper-button-next svg.fm-icon, .familab_theme .swiper-button-prev svg.fm-icon {
width: 1.5rem;
height: 1.5rem;
}
.familab_theme .swiper-button-next.swiper-button-disabled, .familab_theme .swiper-button-prev.swiper-button-disabled {
opacity: 0.1;
} #fm-search-modal {
background: #ffffff;
}
#fm-search-modal .search-modal.modal-dialog {
max-width: 100%;
}
#fm-search-modal .modal-content {
transition: none;
width: 100vw;
height: 100vh;
padding-top: 0;
top: 0;
position: fixed;
border: none;
border-radius: 0;
background: rgba(255, 255, 255, 0.9);
}
#fm-search-modal .modal-header {
justify-content: center;
border: none;
flex-direction: column-reverse;
align-items: center;
}
#fm-search-modal .modal-header button.close {
margin: auto;
position: static;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
width: 2rem;
height: 2rem;
}
#fm-search-modal .product-cats {
transition: all 0.5s ease 0.5s;
transform: translateY(30px);
text-align: center;
margin-bottom: 100px;
opacity: 0;
}
#fm-search-modal .search_form_content {
transition: transform 0.5s ease 0.6s, opacity 0.5s ease 0.6s, border 0.5s;
transform: translateY(60px);
position: relative;
padding: 10px 60px;
opacity: 0;
}
#fm-search-modal .search_form_content .fm-search-form {
margin: auto;
}
#fm-search-modal .search_form_content .fm-search-form .twitter-typeahead {
width: 100%;
}
#fm-search-modal .search_result {
margin-top: 60px;
}
#fm-search-modal.show .product-cats,
#fm-search-modal.show .search_form_content {
transform: translateY(0);
opacity: 1;
}
#search-canvas .js-offcanvas-close, .js-offcanvas-close {
background: none !important;
position: absolute;
right: 0;
}
#search-canvas .js-offcanvas-close svg.fm-icon, .js-offcanvas-close svg.fm-icon {
width: 1rem;
height: 1rem;
}
.fm-search-form {
display: flex;
position: relative;
height: 44px;
}
.fm-search-form .twitter-typeahead {
width: 100%;
}
.fm-search-form .search_text_input {
height: 100%;
border: 1px solid #dcdcdc;
border-right: none;
box-sizing: border-box;
}
.site-header .fm-search-form .search_text_input {
min-width: 180px;
border-radius: 2px 0 0 2px;
}
.btn-woo-circle .fm-search-form .search_text_input {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.fm-search-form .btn_clear_text {
display: none;
align-items: center;
height: 100%;
}
.fm-search-form .btn_clear_text svg {
fill: #777;
}
.fm-search-form .btn_clear_text:hover {
fill: #242424;
}
.fm-search-form .btn_clear_text.show {
display: flex;
position: absolute;
z-index: 5;
}
.fm-search-form .search_categories {
border: none;
height: 100%;
line-height: 100%;
width: 100px;
padding: 0 15px 0 0;
}
.fm-search-form button[type=submit] {
margin-top: 0;
font-size: 0;
height: 100%;
padding: 0 10px;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
border: none;
background: #222;
}
.fm-search-form button[type=submit] svg {
fill: #fff;
}
.fm-search-form.style2 .search_categories {
order: -1;
}
.widget_search .fm-search-form {
max-width: 100%;
}
.error404 .widget_product_search .fm-search-form {
margin: 0 auto;
} .comment-navigation,
.posts-navigation,
.post-navigation {
overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
float: left;
width: 50%;
}
.comment-navigation .nav-previous svg,
.posts-navigation .nav-previous svg,
.post-navigation .nav-previous svg {
margin-right: 20px;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
float: right;
width: 50%;
text-align: right;
}
.comment-navigation .nav-next svg,
.posts-navigation .nav-next svg,
.post-navigation .nav-next svg {
margin-left: 20px;
}
.comment-navigation a,
.posts-navigation a,
.post-navigation a {
font-size: 12px;
font-size: 1.2rem;
font-weight: 600;
text-transform: uppercase;
}
.comment-navigation a:hover,
.posts-navigation a:hover,
.post-navigation a:hover {
color: #e36c02;
}
.post-navigation {
clear: both;
text-align: center;
padding: 40px 0;
border-top: 1px solid #dcdcdc;
border-bottom: 1px solid #dcdcdc;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
padding: 5px 0;
}
.post-navigation .nav-next {
float: right;
width: 50%;
text-align: center;
border-left: 2px solid #dcdcdc;
}
.single-portfolio .post-navigation {
padding-top: 60px;
padding-bottom: 60px;
border-bottom: 0;
}
.single-portfolio .post-navigation .nav-previous {
text-align: right;
padding-right: 70px;
}
.single-portfolio .post-navigation .nav-next {
text-align: left;
padding-left: 70px;
}
.posts-navigation {
clear: both;
}
.ajax-navigation {
text-align: center;
padding-top: 50px;
}
.ajax-navigation .button-text {
transition: 0.5s;
color: #fff;
opacity: 1;
}
.ajax-navigation .loading-icon {
transition: 0.5s;
position: absolute;
top: 0;
left: 0;
width: 100%;
opacity: 0;
}
.ajax-navigation a {
transition: 0.5s;
color: #fff;
font-weight: 500;
text-align: center;
line-height: 60px;
min-width: 200px;
display: inline-block;
padding: 0;
border-radius: 0;
border: 0;
background-color: #e36c02;
cursor: pointer;
position: relative;
font-size: 14px;
font-size: 1.4rem;
text-transform: capitalize;
}
.ajax-navigation a:hover, .ajax-navigation a:focus {
color: #fff;
box-shadow: none;
background-color: #b65805;
}
.ajax-navigation.loading a {
cursor: wait;
}
.ajax-navigation.loading a .button-text {
opacity: 0;
}
.ajax-navigation.loading a .loading-icon {
opacity: 1;
}
.comments-pagination {
text-align: center;
padding: 0 0 30px;
}
.comments-pagination a,
.comments-pagination span {
font-weight: 500;
margin: 0 15px;
} .pagination {
display: block;
clear: both;
margin: 0;
border-radius: 0;
}
.pagination .nav-links {
display: inline-block;
width: 100%;
}
.pagination .nav-links ul.page-numbers {
display: flex;
list-style: none;
padding-left: 0;
}
.pagination-align-left .pagination .nav-links ul.page-numbers {
justify-content: flex-start;
}
.pagination-align-center .pagination .nav-links ul.page-numbers {
justify-content: center;
}
.pagination-align-right .pagination .nav-links ul.page-numbers {
justify-content: flex-end;
}
.pagination .nav-links ul.page-numbers li .page-numbers {
margin: 5px;
color: #222222;
font-size: 1rem;
display: inline-block;
font-weight: 500;
width: 45px;
height: 45px;
line-height: 45px;
padding: 0;
box-sizing: border-box;
position: relative;
text-align: center;
transition: all 0.5s;
}
.pagination .nav-links ul.page-numbers li .page-numbers:first-child {
margin-left: 0;
}
.pagination .nav-links ul.page-numbers li .page-numbers:last-child {
margin-right: 0;
}
.pagination .nav-links ul.page-numbers li .page-numbers svg.fm-icon {
width: 15px;
height: 15px;
fill: #222222;
stroke: #222222;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers {
border: 1px solid #dcdcdc;
background-color: #FFF;
border-radius: 50%;
margin: 2px;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.next, .pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.prev {
font-size: 0;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.current, .pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers:hover {
color: #FFF;
background-color: #222;
border-color: #222;
}
.pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers.current svg.fm-icon, .pagination-style1 .pagination .nav-links ul.page-numbers li .page-numbers:hover svg.fm-icon {
fill: #FFF;
stroke: #FFF;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers {
border: 1px solid #dcdcdc;
border-radius: 2px;
margin: 5px;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.next {
width: auto;
padding: 0 17px 0 20px;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.prev {
padding: 0 20px 0 17px;
width: auto;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.current, .pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers:hover {
color: #FFF;
background-color: #222;
border-color: #222;
}
.pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers.current svg.fm-icon, .pagination-style2 .pagination .nav-links ul.page-numbers li .page-numbers:hover svg.fm-icon {
fill: #FFF;
stroke: #FFF;
}
.woocommerce nav.woocommerce-pagination ul {
border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
border: none;
box-sizing: border-box;
margin: 0 0.25rem;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
width: 40px;
height: 40px;
line-height: 40px;
padding: 0;
margin: 0;
text-align: center;
border: 1px solid #dcdcdc;
-webkit-transition: background-color 0.15s ease-in-out;
-moz-transition: background-color 0.15s ease-in-out;
-ms-transition: background-color 0.15s ease-in-out;
-o-transition: background-color 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out;
}
.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li a.current, .woocommerce nav.woocommerce-pagination ul li span:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
background-color: #e36c02;
border-color: #e36c02;
color: #FFF;
}
.woocommerce nav.woocommerce-pagination ul li a:hover svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li a.current svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li span:hover svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li span.current svg.fm-icon {
fill: #FFF;
}
.woocommerce nav.woocommerce-pagination ul li a:hover svg.fm-icon :hover, .woocommerce nav.woocommerce-pagination ul li a.current svg.fm-icon :hover, .woocommerce nav.woocommerce-pagination ul li span:hover svg.fm-icon :hover, .woocommerce nav.woocommerce-pagination ul li span.current svg.fm-icon :hover {
fill: #FFF;
}
.woocommerce nav.woocommerce-pagination ul li a.prev, .woocommerce nav.woocommerce-pagination ul li span.prev {
width: auto;
padding: 0 15px 0 12px;
}
.woocommerce nav.woocommerce-pagination ul li a.next, .woocommerce nav.woocommerce-pagination ul li span.next {
width: auto;
padding: 0 12px 0 15px;
}
.pagination-align-left.woocommerce nav.woocommerce-pagination {
text-align: left;
}
.pagination-align-center.woocommerce nav.woocommerce-pagination {
text-align: center;
}
.pagination-align-right.woocommerce nav.woocommerce-pagination {
text-align: right;
}
.cenos_woof_pagination_trigger {
position: relative;
}
.cenos_woof_pagination_trigger .page-numbers {
position: absolute;
visibility: hidden;
opacity: 0;
}
.cenos_woof_pagination_trigger.scroll .cenos_woof_pagination_trigger_action {
display: none;
}
.cenos_woof_pagination_trigger.load {
text-align: center;
} .nav-menu, .nav-menu ul {
list-style: none;
margin: 0;
padding: 0;
}
.nav-menu li {
display: inline-block;
position: relative;
}
.nav-menu li > ul {
box-shadow: 0 4px 10px 0 rgba(3, 3, 3, 0.1);
transform: translateY(39px);
position: absolute;
top: 100%;
left: -40px;
padding: 30px 0;
min-width: 166px;
display: none;
z-index: 99;
background-color: #fff;
white-space: nowrap;
}
.nav-menu li > ul:before {
position: absolute;
top: -8px;
left: 0;
content: "";
width: 100%;
height: 39px;
background-color: transparent;
}
.nav-menu li > ul ul {
left: 100%;
top: 10px;
transform: translate(3px, -40px);
}
.nav-menu li > ul ul:before {
top: 0;
left: -3px;
width: 3px;
height: 100%;
}
.nav-menu li > ul.mega-menu-container ul {
transform: translate(0);
}
.nav-menu li li {
display: block;
margin: 0;
padding: 5px 25px;
}
.nav-menu li li a {
font-weight: 400;
text-transform: none;
line-height: 1.4;
font-size: 1rem;
}
.nav-menu li li.mega-content-post {
width: 100%;
padding: 0;
}
.nav-menu li.menu-item-mega:not(.menu-item-custom-width) {
position: static;
}
.nav-menu li.menu-item-mega:not(.menu-item-custom-width) .container-fluid {
border-top: 1px solid #e4e4e4;
}
.nav-menu li.menu-item-mega:not(.menu-item-custom-width) .container-fluid .elementor-widget-fmtpl-menu .fmtpl-menu.default .nav_menu_content ul.menu li {
padding: 0;
}
.nav-menu > li {
margin: 0 15px;
}
.nav-menu > li:last-child {
margin-right: 0;
}
.nav-menu a {
position: relative;
display: block;
}
.nav-menu .sub-menu {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
background-color: #fff;
text-align: left;
padding: 20px 5px;
z-index: 9999;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
-webkit-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
-moz-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
display: block;
}
.nav-menu .sub-menu .sub-menu {
top: 0;
left: 100%;
}
.nav-menu .sub-menu.mega-menu-container {
display: flex;
flex-wrap: wrap;
}
.nav-menu .sub-menu.mega-menu-container .sub-menu {
visibility: visible;
opacity: 1;
top: 0 !important;
}
.nav-menu .sub-menu.mega-menu-wrap {
position: absolute;
padding: 0;
left: 0;
right: 0;
background: #FFF;
-webkit-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
-moz-box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
box-shadow: 7px 6px 40px 0px rgba(204, 204, 223, 0.16);
}
.nav-menu .sub-menu.mega-menu-wrap .mega-menu-container {
margin: 0 auto;
background: #fff;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
.nav-menu .sub-menu.mega-menu-wrap .mega-menu-container .mega-menu-content {
position: static;
display: flex;
box-shadow: none;
background: transparent;
transform: translateY(0);
}
.nav-menu .menu-item:hover > .sub-menu {
visibility: visible;
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.nav-menu .menu-item:hover .sub-menu .sub-menu {
top: 0;
}
.nav-menu .menu-item:not(:hover) > .sub-menu {
visibility: hidden;
opacity: 0;
-webkit-transform: translateY(30px);
-moz-transform: translateY(30px);
-ms-transform: translateY(30px);
-o-transform: translateY(30px);
transform: translateY(30px);
}
.nav-menu .menu-item.menu-item-mega:hover > .sub-menu, .nav-menu .menu-item.menu-item-mega:hover .sub-menu {
visibility: visible;
opacity: 1;
top: 100%;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
transform: translateY(0);
}
.nav-menu > .menu-item:nth-last-child(1) .sub-menu .sub-menu, .nav-menu > .menu-item:nth-last-child(2) .sub-menu .sub-menu, .nav-menu > .menu-item:nth-last-child(3) .sub-menu .sub-menu, .nav-menu > .menu-item:nth-last-child(4) .sub-menu .sub-menu {
right: 100%;
left: auto;
}
.site-navigation a:after {
content: "";
position: absolute;
right: 0;
bottom: -3px;
transition: all 0.5s;
width: 0;
height: 2px;
background-color: #e36c02;
}
.site-navigation a i {
margin-right: 5px;
}
.site-navigation li.current-menu-item > a:after,
.site-navigation li:hover > a:after {
width: 100%;
left: 0;
}
.site-navigation li li a:after {
display: none;
}
.site-navigation .mega-menu-container {
padding: 20px 0;
}
.site-header .site-navigation .mega-menu-container .menu-item-has-children > a, .site-header .site-navigation .mega-menu-container .menu-item-has-children > span {
font-size: 11.25px;
font-size: 1.125rem;
font-weight: 600;
line-height: 1.4;
display: block;
}
.site-navigation .mega-sub-menu {
margin: 15px 0;
position: static;
}
.site-navigation .mega-sub-menu:first-child {
padding-left: 20px;
}
.site-navigation .mega-sub-menu:last-child {
padding-right: 20px;
}
.site-navigation .mega-sub-menu.menu-item-title-hidden > a,
.site-navigation .mega-sub-menu.menu-item-title-hidden > span {
text-indent: -9999px;
}
.site-navigation .mega-sub-menu .sub-menu {
transform: translate(0);
box-shadow: none;
display: block !important;
opacity: 1 !important;
position: static;
min-width: 0;
padding: 0;
margin: 16px 0 0 0;
background-color: transparent;
}
.site-navigation .mega-sub-menu > .sub-menu > li:last-child {
margin-bottom: 0;
}
.site-navigation .mega-sub-menu li {
padding: 0;
margin-bottom: 12px;
}
.site-navigation .mega-sub-menu li + .menu-item-has-children {
padding-top: 10px;
}
.default-nav-menu ul.menu {
list-style: none;
padding: 0.5rem 0;
}
.default-nav-menu ul.menu li.menu-item {
position: relative;
line-height: 1.5rem;
padding: 0.5rem 0;
}
.default-nav-menu ul.menu li.menu-item ul.sub-menu {
list-style: none;
padding-left: 0.75rem;
visibility: hidden;
opacity: 0;
height: 0;
transition: height 0.35s;
-webkit-transition: height 0.35s;
}
.default-nav-menu ul.menu li.menu-item ul.sub-menu li:last-child {
padding-bottom: 0;
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu {
position: absolute;
right: 0;
top: 0;
display: inline-block;
height: 40px;
width: 40px;
line-height: 100%;
font-size: 1.5rem;
text-align: center;
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu .toggle-icon {
display: flex;
align-items: center;
height: 100%;
width: 100%;
justify-content: flex-end;
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu .toggle-icon::before {
content: "";
display: inherit;
width: 8px;
height: 8px;
border: 1px solid #aaa;
border-width: 1px 1px 0 0;
transform: rotate(45deg);
}
.default-nav-menu ul.menu li.menu-item a.toggle-submenu .toggle-icon::after {
content: "";
width: 7px;
height: 7px;
border: 1px solid #b2b2b2;
border-width: 1px 1px 0 0;
transform: rotate(-45deg);
display: none;
}
.default-nav-menu ul.menu li.menu-item.open > a.toggle-submenu .toggle-icon::before {
display: none;
}
.default-nav-menu ul.menu li.menu-item.open > a.toggle-submenu .toggle-icon::after {
display: inline-block;
}
.default-nav-menu ul.menu li.menu-item.open > ul.sub-menu {
visibility: visible;
opacity: 1;
height: auto;
} .modal-dialog .cenos-close-btn {
font-size: 0 !important;
background: none !important;
border: none !important;
}
.modal-dialog .cenos-close-btn:hover {
background: none !important;
}
.modal-dialog.account-modal .account_form_content .nav {
justify-content: center;
} .js-offcanvas .cenos-close-btn {
background: none !important;
border: none !important;
padding: 0;
font-size: 0 !important;
line-height: 40px;
height: 40px;
width: 40px;
text-align: center;
}
.js-offcanvas .account_form_content .tab-content h2 {
display: none;
}
.js-offcanvas .account_form_content .tab-content .woocommerce-form {
padding: 15px 20px;
}
.js-offcanvas .account_form_content .tab-content .woocommerce-form > .form-row {
margin-left: 0;
margin-right: 0;
}
.js-offcanvas .cart_box_content {
padding: 0 15px;
margin: 0;
height: calc(100% - 50px);
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content {
height: 100%;
display: flex;
flex-direction: column;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content ul.cart_list {
padding-left: 0;
list-style: none;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item img {
max-width: 100%;
height: auto;
width: 88px;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content ul.cart_list .woocommerce-mini-cart-item .quantity {
clear: left;
display: inline-block;
}
.js-offcanvas .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
margin-top: auto;
display: flex;
width: 100%;
justify-content: space-between;
}
.js-offcanvas#cart-canvas .offcanvas-content > h3 {
padding: 0 15px;
margin: 0;
line-height: 40px;
}
.js-offcanvas#search-canvas.c-offcanvas--top .offcanvas-content {
padding-top: 3rem;
}
.js-offcanvas#search-canvas.c-offcanvas--top .offcanvas-content .search_form_content {
display: flex;
justify-content: center;
}
.scroll_to_top {
position: fixed;
display: inline-block;
right: -15px;
bottom: 50px;
border: 2px solid;
z-index: 999;
width: 45px;
height: 45px;
text-align: center;
line-height: 40px;
opacity: 0;
visibility: hidden;
-webkit-transition: all 0.4s;
-moz-transition: all 0.4s;
-ms-transition: all 0.4s;
-o-transition: all 0.4s;
transition: all 0.4s;
border-radius: 50%;
font-weight: bold;
font-size: 15px;
background: none;
color: #232529;
transition: right 0.3s;
-webkit-transition: right 0.3s;
}
.scroll_to_top.show {
opacity: 1;
visibility: visible;
right: 25px;
}
.scroll_to_top.percent_circle {
border: 2px solid #88888815;
width: 40px;
height: 40px;
border-radius: 50%;
font-weight: 700;
}
.scroll_to_top.percent_circle .backtotop-round {
transform: rotate(-90deg);
fill: none;
stroke: #ff7272;
stroke-width: 5px;
stroke-dasharray: 0, 999;
position: absolute;
left: -6px;
top: -6px;
width: 48px;
height: 48px;
max-width: inherit;
}
.scroll_to_top.percent_circle .up-icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin: 0;
margin-top: -1px;
fill: #555555;
} .woocommerce div.product p.price ins, .woocommerce div.product span.price ins, .woocs_price_code ins {
text-decoration: unset !important;
}
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
padding: 0.5rem 1rem;
border-color: #a46497;
border-style: solid;
border-width: 0 0 0 2px;
line-height: 1.5;
display: flex;
align-items: center;
justify-content: space-between;
}
.woocommerce-error .button,
.woocommerce-info .button,
.woocommerce-message .button {
float: none;
margin: 0;
order: 2;
min-width: max-content;
}
.woocommerce-message {
border-color: #6dc22e;
}
.woocommerce-error {
border-color: #aa0000;
}
.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
display: none;
}
.familab_theme .select2-dropdown,
.familab_theme .select2-container--default .select2-search--dropdown .select2-search__field,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
.woocommerce .woocommerce-customer-details address {
border-color: #dcdcdc;
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce table.shop_table,
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
.woocommerce .woocommerce-customer-details address {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
background-color: #f8f8f8;
}
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
border-color: #dcdcdc;
}
#add_payment_method table.cart td.actions .coupon .input-text :hover, #add_payment_method table.cart td.actions .coupon .input-text :focus,
.woocommerce-cart table.cart td.actions .coupon .input-text :hover,
.woocommerce-cart table.cart td.actions .coupon .input-text :focus,
.woocommerce-checkout table.cart td.actions .coupon .input-text :hover,
.woocommerce-checkout table.cart td.actions .coupon .input-text :focus {
border-color: #242424;
} .woocommerce form .form-row {
margin-bottom: 1.125rem;
padding: 0;
}
.woocommerce form .form-row .required {
color: #242424;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label {
font-size: 13px;
font-weight: 500;
line-height: 1.5;
color: #242424;
}
.woocommerce form .form-row label,
.woocommerce-page form .form-row label,
span.woocommerce-input-wrapper {
width: 100%;
} .woocommerce .cart-collaterals .cart_totals > h2,
.woocommerce-page .cart-collaterals .cart_totals > h2,
.woocommerce-cart-form > h3,
#order_review_heading,
#customer_details .woocommerce-billing-fields > h3,
#customer_details .woocommerce-additional-fields > h3,
h2.woocommerce-order-details__title,
h2.woocommerce-column__title {
color: #242424;
font-size: 30px;
font-weight: 400;
text-transform: capitalize;
margin-bottom: 15px;
}
.woocommerce table.shop_table {
border: 1px solid #dcdcdc;
}
.woocommerce table.shop_table thead {
display: none;
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tbody td, .woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tfoot td {
border-style: solid;
border-color: #dcdcdc;
border-width: 0 0 1px 0;
color: #242424;
padding: 15px;
}
#add_payment_method table.cart img,
.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img {
width: 100px;
}
.woocommerce table.shop_table td.product-name a {
color: #242424;
font-weight: 500;
font-size: 13px;
}
.woocommerce #content table.cart td.actions .input-text,
.woocommerce table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text {
min-width: 98px;
}
.woocommerce a.remove {
display: block;
height: 1.5rem;
width: 1.5rem;
text-align: center;
line-height: 1.125rem;
border-radius: 100%;
color: #444 !important;
text-decoration: none;
font-weight: 500;
font-size: 1.5rem;
border: 0;
transition: background-color 0.15s;
}
.woocommerce a.remove:hover {
background-color: transparent;
}
table.shop_table .product-subtotal,
table.shop_table .order-total {
text-align: right;
}
table.shop_table .product-subtotal > th,
table.shop_table .order-total > th {
text-align: left;
}
.shop_table.woocommerce-checkout-review-order-table .product-total {
text-align: right;
}
.woocommerce-cart-form,
.woocommerce .col2-set,
.woocommerce-page .col2-set {
width: 100%;
float: left;
margin-right: 0;
} .cenos-checkout-step {
list-style: none;
display: flex;
max-width: 555px;
margin: 50px auto;
padding: 0;
flex-wrap: wrap;
position: relative;
}
.cenos-checkout-step .step {
position: relative;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.cenos-checkout-step .step a.step-link {
display: flex;
flex-direction: column;
align-items: center;
}
.cenos-checkout-step .step a.step-link:hover {
color: #242424;
}
.cenos-checkout-step .step span.step-icon {
display: flex;
width: 24px;
height: 24px;
border: 2px solid #ccc;
border-radius: 50%;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: bold;
color: #242424;
background: #ffffff;
margin-top: -12px;
margin-bottom: 5px;
}
.cenos-checkout-step .step span.label {
font-size: 15px;
font-weight: 500;
}
.cenos-checkout-step .step span.label:not(:hover) {
color: #aaaaaa;
}
.cenos-checkout-step .step::before {
content: "";
display: inline-block;
width: 100%;
height: 2px;
background: #cccccc;
}
.cenos-checkout-step .step.active a.step-link, .cenos-checkout-step .step.finish a.step-link {
color: #242424;
}
.cenos-checkout-step .step.active span.step-icon, .cenos-checkout-step .step.finish span.step-icon {
background: #e36c02;
color: #FFF;
border-color: #e36c02;
}
.cenos-checkout-step .step.active span.step-icon svg, .cenos-checkout-step .step.finish span.step-icon svg {
fill: #ffffff;
}
.cenos-checkout-step .step.active span.label, .cenos-checkout-step .step.finish span.label {
color: #242424;
}
.cenos-checkout-step .step.active::before, .cenos-checkout-step .step.finish::before {
background: #e36c02;
}
.cenos-checkout-step .step.finish span.step-icon {
background: #ffffff;
color: #e36c02;
border-color: #e36c02;
}
.cenos-checkout-step .step.finish span.step-icon svg {
width: 13px;
height: 13px;
fill: #e36c02;
}
.woocommerce-form-coupon-toggle, .woocommerce-form-login-toggle {
padding: 25px 0;
background-color: #f8f8f8;
max-width: 680px;
margin: 0 auto 30px auto;
}
.woocommerce-form-coupon-toggle .woocommerce-info, .woocommerce-form-login-toggle .woocommerce-info {
align-items: center;
justify-content: center;
text-transform: uppercase;
font-weight: bold;
font-size: 11px;
color: #777;
border: none;
padding: 0;
margin: 0;
}
.woocommerce-form-coupon-toggle .woocommerce-info a, .woocommerce-form-login-toggle .woocommerce-info a {
margin-left: 3px;
}
.woocommerce-checkout .woocommerce-form-login-toggle ~ .woocommerce-form-login, .woocommerce-checkout .woocommerce-form-coupon-toggle ~ .woocommerce-form-coupon {
max-width: 680px;
margin: 0 auto 30px auto;
padding: 15px 0;
text-align: center;
border: none;
font-size: 15px;
color: #242424;
}
.woocommerce-checkout .woocommerce-form-login-toggle ~ .woocommerce-form-login p.form-row, .woocommerce-checkout .woocommerce-form-coupon-toggle ~ .woocommerce-form-coupon p.form-row {
text-align: left;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-first {
display: inline-block;
width: calc(100% - 160px);
margin-right: 10px;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-first input.input-text {
border-style: dashed;
font-weight: 500;
color: #777;
font-size: 15px;
height: 50px;
line-height: 20px;
padding: 15px;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-last {
display: inline-block;
width: 150px;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-last button.button {
height: 50px;
border: none;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 0;
min-width: 150px;
}
.woocommerce-checkout .woocommerce-notices-wrapper, .woocommerce-cart .woocommerce-notices-wrapper {
max-width: 680px;
margin: 0 auto 30px auto;
} .woocommerce-cart .woocommerce-cart-form {
margin-bottom: 50px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents {
border-style: solid;
border-width: 1px 0 0 0;
border-color: #e6e6e6;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr:not(.woocommerce-cart-form__cart-item) > td {
padding: 20px 0;
border-bottom: 1px solid #e6e6e6;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
border-top: 1px solid #e6e6e6;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td {
padding: 20px 20px 20px 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation {
font-size: 13px;
font-weight: 400;
color: #242424;
display: flex;
flex-wrap: wrap;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dt {
color: #aaaaaa;
font-weight: inherit;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dt::after {
content: ":";
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dd + dt {
margin-left: 6px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dd + dt::before {
content: "/";
content: #777;
margin-right: 6px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove {
color: #aaaaaa !important;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove svg {
fill: #aaaaaa;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove:hover {
color: #242424;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-remove a.remove:hover svg {
fill: #242424;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-price {
font-size: 15px;
font-weight: 400;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity {
min-width: 50px;
padding: 0 15px;
position: relative;
display: inline-block;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-group-buttons > a {
position: absolute;
top: 0;
height: 100%;
display: flex;
align-items: center;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-group-buttons > a > svg {
fill: #aaaaaa;
width: 15px;
height: 15px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-group-buttons > a:hover > svg {
fill: #242424;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-plus {
right: 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .quantity-minus {
left: 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text {
font-size: 15px;
font-weight: 400;
border: none;
width: 60px;
text-align: center;
-moz-appearance: textfield;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text::-webkit-inner-spin-button, .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-subtotal {
font-size: 15px;
font-weight: 400;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions .coupon #coupon_code {
min-width: 200px;
padding-left: 10px;
border-style: dashed;
margin-right: 10px;
font-weight: 400;
font-size: 14px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions .coupon #coupon_code :not(:focus) {
color: #777;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions > button.button[disabled] {
color: #ffffff;
background: #8a8a8a;
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
}
.woocommerce-cart .woocommerce-cart-form button.button {
height: 50px;
border: none;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 30px;
min-width: 150px;
}
.woocommerce-cart .cart-collaterals {
margin-bottom: 50px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table {
margin: 0;
border: none;
background: #f8f8f8;
padding: 15px 15px 0 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table th, .woocommerce-cart .cart-collaterals .cart_totals .shop_table td {
border: none;
padding: 20px 0;
font-size: 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.cart-subtotal td {
font-weight: 500;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td ul#shipping_method > li {
margin-bottom: 15px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method + label {
color: #aaaaaa;
font-weight: 400;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method[checked=checked] + label {
color: #242424;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.order-total th, .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.order-total td {
border-top: 1px solid #dcdcdc;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr.order-total td {
font-size: 24px;
font-weight: 500;
}
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator .shipping-calculator-button {
display: flex;
align-items: center;
font-size: 15px;
font-weight: bold;
}
.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-calculator button.button {
height: 50px;
border: none;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 30px;
min-width: 150px;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
padding: 0 15px 15px 15px;
margin: 0;
border: none;
background: #f8f8f8;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout a.checkout-button {
height: 50px;
border: none;
width: 100%;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 0;
margin: 0;
}
.woocommerce-cart input[type=email], .woocommerce-cart input[type=search], .woocommerce-cart input[type=number], .woocommerce-cart input[type=url], .woocommerce-cart input[type=tel], .woocommerce-cart input[type=text], .woocommerce-cart input[type=password] {
height: 50px;
background: #ffffff;
}
.woocommerce-cart.familab_theme .select2-container--default {
max-width: 100%;
}
.woocommerce-cart.familab_theme .select2-container--default .select2-selection--single {
height: 50px;
line-height: 50px;
background: #ffffff;
}
.woocommerce-cart.familab_theme .select2-container--default .select2-selection--single > .select2-selection__arrow {
height: 50px;
top: 0;
} .woocommerce-checkout-review-order {
float: left;
width: 100%;
}
.woocommerce-checkout .site-main form.checkout {
display: inline-block;
width: 100%;
}
.woocommerce-checkout .site-main form.checkout input[type=email], .woocommerce-checkout .site-main form.checkout input[type=search], .woocommerce-checkout .site-main form.checkout input[type=number], .woocommerce-checkout .site-main form.checkout input[type=url], .woocommerce-checkout .site-main form.checkout input[type=tel], .woocommerce-checkout .site-main form.checkout input[type=text], .woocommerce-checkout .site-main form.checkout input[type=password] {
height: 50px;
background: #ffffff;
}
.woocommerce-checkout .site-main form.checkout .select2-container--default {
max-width: 100%;
}
.woocommerce-checkout .site-main form.checkout .select2-container--default .select2-selection--single {
height: 50px;
line-height: 50px;
background: #ffffff;
}
.woocommerce-checkout .site-main form.checkout .select2-container--default .select2-selection--single > .select2-selection__arrow {
height: 50px;
top: 0;
}
.woocommerce-checkout .site-main form.checkout button.button {
height: 50px;
border: none;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 30px;
min-width: 150px;
}
#order_review table.woocommerce-checkout-review-order-table {
display: flex;
flex-direction: column;
border: none;
margin-bottom: 0;
}
#order_review table.woocommerce-checkout-review-order-table > * {
flex: 0 0 100%;
}
#order_review table.woocommerce-checkout-review-order-table tbody {
margin-bottom: 20px;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
border: none;
padding: 0;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name {
display: flex;
align-items: center;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product-thumbnail {
width: 60px;
margin-right: 15px;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info .product_item_name_wrap {
font-size: 15px;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info .product_item_name_wrap .produc_item_name {
font-weight: 500;
font-size: 13px;
color: #242424;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info .product_item_name_wrap .product-quantity {
color: #FFF;
line-height: 18px;
height: 17px;
display: inline-block;
font-weight: 500;
padding: 0 10px;
background: #777777;
font-size: 11px;
border-radius: 2px;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation {
font-size: 13px;
font-weight: 400;
color: #242424;
display: flex;
flex-wrap: wrap;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dt {
color: #aaaaaa;
font-weight: inherit;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dt::after {
content: ":";
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dd + dt {
margin-left: 6px;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dd + dt::before {
content: "/";
content: #777;
margin-right: 6px;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-total .amount {
font-size: 15px;
font-weight: 400;
color: #242424;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item + .cart_item {
padding-top: 20px;
margin-top: 20px;
border-top: 1px solid #dcdcdc;
}
#order_review table.woocommerce-checkout-review-order-table tfoot {
background: #f8f8f8;
border: 1px solid #dcdcdc;
border-bottom: none;
padding: 30px 30px 0 30px;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr {
display: flex;
width: 100%;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr td, #order_review table.woocommerce-checkout-review-order-table tfoot tr th {
border: none;
padding: 0;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr th {
flex: 0 0 120px;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr td {
flex: 0 0 calc(100% - 120px);
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
padding-bottom: 25px;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
font-weight: 500;
text-align: right;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th, #order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td {
border-top: 1px solid #dcdcdc;
padding-top: 25px;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td ul#shipping_method > li {
margin-bottom: 15px;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method + label {
color: #aaaaaa;
font-weight: 400;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td ul#shipping_method input.shipping_method[checked=checked] + label {
color: #242424;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.order-total th, #order_review table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
border-top: 1px solid #dcdcdc;
padding-top: 25px;
}
#order_review table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
font-size: 24px;
font-weight: 500;
}
#order_review #payment {
padding: 0 30px 30px 30px;
border: 1px solid #dcdcdc;
border-top-color: #f8f8f8;
margin-top: -1px;
}
#order_review #payment .wc_payment_methods {
border-top: 1px solid #dcdcdc;
margin-top: 30px;
padding: 25px 0 0 0;
}
#order_review #payment .place-order {
padding: 25px 0 0 0;
margin: 0;
}
#order_review #payment a {
color: #e36c02;
}
#order_review #payment a:hover {
text-decoration: underline;
}
@media (min-width: 768px) { .woocommerce-cart-form,
.woocommerce .col2-set,
.woocommerce-page .col2-set {
width: 65%;
margin-right: 30px;
}
.woocommerce-customer-details .col2-set {
width: 100%;
margin-right: 0;
}
.woocommerce-customer-details .col2-set .woocommerce-column--billing-address, .woocommerce-customer-details .col2-set .woocommerce-column--shipping-address {
flex: 0 0 48%;
max-width: 48%;
}
.cart-collaterals {
display: flex;
flex-direction: column-reverse;
}
.woocommerce-page .cart-collaterals {
width: calc(35% - 30px);
}
.woocommerce-page.checkout-layout-default .cart-collaterals .cart_totals {
width: 100%;
}
.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells,
.woocommerce .cart-collaterals .cross-sells ~ .cart_totals,
.woocommerce-page .cart-collaterals .cross-sells ~ .cart_totals {
width: 100%;
} .woocommerce-page.checkout-layout-onecolumn .cart-collaterals {
width: 100%;
}
.checkout-layout-onecolumn .woocommerce-cart-form,
.checkout-layout-onecolumn .woocommerce .col2-set,
.checkout-layout-onecolumn .woocommerce-page .col2-set {
width: 100%;
}
.woocommerce-page .cart-collaterals .cart_totals {
width: 100%;
}
.woocommerce-checkout-review-order {
width: calc(35% - 30px);
}
.woocommerce table.shop_table tbody th, .woocommerce table.shop_table tbody td, .woocommerce table.shop_table tfoot th, .woocommerce table.shop_table tfoot td {
padding: 15px 20px;
}
}
@media (min-width: 1500px) {
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item td.product-remove {
width: 25px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents .woocommerce-cart-form__cart-item td.product-thumbnail {
width: 120px;
}
.woocommerce-cart .cart-collaterals {
padding-left: 30px;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table {
padding: 30px 30px 0 30px;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
padding: 0 30px 30px 30px;
} #customer_details {
margin-right: 60px;
}
#order_review {
width: calc(35% - 60px);
}
}
@media (max-width: 991px) { #order_review table.woocommerce-checkout-review-order-table tfoot {
padding: 15px 15px 0 15px;
}
#order_review #payment {
padding: 0 15px 15px 15px;
}
}
@media (max-width: 767px) {
.woocommerce-cart .woocommerce table.cart tr td.product-quantity {
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
}
.woocommerce-cart.woocommerce-page table.cart tr td.actions .coupon #coupon_code, .woocommerce-cart.woocommerce-page table.cart tr td.actions .coupon button.button {
width: 100% !important;
margin-bottom: 0.5rem;
} .woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr:not(.woocommerce-cart-form__cart-item) > td {
padding: 30px 15px;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item {
border-bottom: 1px solid #e6e6e6;
border-top: none;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td {
padding: 8px 15px;
border: none;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.product-quantity .quantity .input-text {
background: none;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td {
padding: 10px 0;
background: none;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-destination-wrap p, .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-calculator-wrap p {
text-align: left;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-destination-wrap::before, .woocommerce-cart .cart-collaterals .cart_totals .shop_table tr td.woocommerce-shipping-calculator-wrap::before {
display: none;
} #customer_details {
margin-bottom: 30px;
}
} .woocommerce-account .woocommerce h2 {
font-size: 30px;
font-weight: 400;
text-align: center;
margin-top: 45px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
padding: 0 15px 0 0;
width: 25%;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
list-style-type: none;
padding-left: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation li > a {
display: inline-block;
font-size: 1rem;
line-height: 1.5;
color: #777;
margin: 0 0 14px;
padding: 0;
border-bottom: 1px solid transparent;
}
.woocommerce-account .woocommerce-MyAccount-navigation li:hover > a {
color: #242424;
}
.woocommerce-account .woocommerce-MyAccount-navigation li.is-active > a {
border-color: #dcdcdc;
color: #242424;
}
.woocommerce-account .woocommerce-MyAccount-content legend {
padding-top: 15px;
color: #242424;
font-size: 1.25rem;
}
.woocommerce-lost-password .woocommerce {
max-width: 500px;
margin: 50px auto;
}
.woocommerce-lost-password .woocommerce p {
font-size: 15px;
}
.woocommerce-lost-password .woocommerce form .form-row {
width: 100%;
}
.woocommerce-lost-password .woocommerce button.button {
height: 50px;
border: none;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 30px;
width: 100%;
margin: 0;
}
.woocommerce-lost-password .woocommerce .input-text {
height: 50px;
background: #ffffff;
margin-bottom: 10px;
} .woocommerce-form-login #username {
margin-bottom: 10px;
}
.woocommerce-form-login .woocommerce-LostPassword {
transform: translateY(-10px);
display: flex;
align-items: center;
justify-content: space-between;
font-size: 13px;
}
.woocommerce-form-login .woocommerce-LostPassword .woocommerce-form-login__rememberme {
margin: 0;
}
.woocommerce-form-login .acount-form-switch {
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
font-weight: 500;
}
.woocommerce-form-login .acount-form-switch a {
margin-left: 5px;
color: #242424;
}
.woocommerce-form-login .acount-form-switch a::after {
content: "";
display: block;
width: 100%;
height: 2px;
background: #242424;
opacity: 0;
}
.woocommerce-form-login .acount-form-switch a:hover::after {
opacity: 1;
}
.woocommerce-account .woocommerce-form-login.woocommerce-form {
padding: 0;
border: none;
float: none;
margin-right: auto;
margin-left: auto;
max-width: 450px;
}
.woocommerce .woocommerce-form-login .password-input {
width: 100%;
}
.woocommerce-page .woocommerce-form-login .input-text, #account-canvas .woocommerce-form-login .input-text {
height: 50px;
background: #ffffff;
}
.woocommerce-page .woocommerce-form-login .password-input, #account-canvas .woocommerce-form-login .password-input {
width: 100%;
}
.woocommerce-page .woocommerce-form-login .password-input .show-password-input, #account-canvas .woocommerce-form-login .password-input .show-password-input {
top: 15px;
}
.woocommerce-page .woocommerce-form-login button.woocommerce-form-login__submit, #account-canvas .woocommerce-form-login button.woocommerce-form-login__submit {
height: 50px;
border: none;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 30px;
width: 100%;
margin: 0;
}
.woocommerce-checkout .woocommerce-form-login .woocommerce-form-login__rememberme {
margin-bottom: 35px;
}
.woocommerce-checkout .woocommerce-form-login .form-row-first, .woocommerce-checkout .woocommerce-form-login .form-row-last {
margin-bottom: 10px;
margin-top: 15px;
}
.woocommerce-checkout .woocommerce-form-login #username {
margin-bottom: 0;
}
#account-canvas .woocommerce-form-register .form-row .required {
display: none;
}
.woocommerce-form-register #reg_username, .woocommerce-form-register #reg_email, .woocommerce-form-register #reg_password {
margin-bottom: 10px;
}
.woocommerce-form-register .woocommerce-LostPassword {
transform: translateY(-10px);
display: flex;
align-items: center;
justify-content: space-between;
font-size: 13px;
font-weight: 500;
}
.woocommerce-form-register .woocommerce-LostPassword .woocommerce-form-login__rememberme {
margin: 0;
}
.woocommerce-form-register .acount-form-switch {
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 400;
}
.woocommerce-form-register .acount-form-switch a {
margin-left: 5px;
color: #242424;
}
.woocommerce-form-register .acount-form-switch a::after {
content: "";
display: block;
width: 100%;
height: 2px;
background: #242424;
opacity: 0;
}
.woocommerce-form-register .acount-form-switch a:hover::after {
opacity: 1;
}
.woocommerce-form-register .woocommerce-privacy-policy-text {
font-size: 14px;
color: #777;
margin-bottom: 25px;
}
.woocommerce-form-register .woocommerce-privacy-policy-text a {
color: #e36c02;
}
.woocommerce-account .woocommerce-form-register.woocommerce-form {
padding: 0;
border: none;
float: none;
margin-right: auto;
margin-left: auto;
max-width: 450px;
}
.woocommerce .woocommerce-form-register .password-input {
width: 100%;
}
.woocommerce-page .woocommerce-form-register .input-text {
height: 50px;
background: #ffffff;
}
.woocommerce-page .woocommerce-form-register .password-input {
width: 100%;
}
.woocommerce-page .woocommerce-form-register .password-input .show-password-input {
top: 15px;
}
.woocommerce-page .woocommerce-form-register button.woocommerce-form-register__submit {
height: 50px;
border: none;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 30px;
width: 100%;
margin: 0;
}
@media (min-width: 1200px) {
.woocommerce-lost-password .woocommerce {
margin: 100px auto;
}
} .cenos-shop-control .before-shop-control,
.cenos-shop-control .main-shop-control,
.cenos-shop-control .after-shop-control {
display: flex;
align-items: center;
}
.cenos-shop-control .before-shop-control {
flex-direction: column;
align-items: flex-start;
}
.cenos-shop-control .before-shop-control > div {
max-width: 100%;
}
.cenos-shop-control .cenos-products-tabs > a {
margin-right: 1rem;
}
.cenos-shop-control .cenos-products-tabs > a.active {
color: #000;
}
.cenos-shop-control .cenos-carousel li.category-item {
list-style: none;
}
.main-shop-control {
justify-content: space-between;
flex-wrap: wrap;
}
.main-shop-control > * {
margin-bottom: 1rem;
}
.after-shop-control {
position: relative;
}
@media (max-width: 1024px) {
.cenos-shop-control .columns-switcher {
display: none;
}
} .shop-control-quick-search {
width: 100%;
}
.shop-control-quick-search .shop-control-quick-search-form {
display: flex;
align-items: center;
justify-content: flex-start;
width: 100%;
margin-bottom: 1rem;
}
.shop-control-quick-search .shop-control-quick-search-form > select {
max-width: 200px;
}
.shop-control-quick-search .shop-control-quick-search-form > * {
margin-right: 8px;
}
.shop-control-quick-search .shop-control-quick-search-form #product_cat {
margin-left: 8px;
}
.shop-control-quick-search .shop-control-quick-search-form #product_cat + .select2 {
margin-left: 8px;
} .filter-content-wrap.mobile-dropdown, .filter-content-wrap.dropdown {
display: flex;
width: calc(100% - 32px);
border: 1px solid #ededed;
flex-direction: column;
flex-wrap: wrap;
align-items: flex-start;
position: absolute;
top: 100%;
left: 15px;
z-index: -1;
visibility: hidden;
opacity: 0;
background: #FFF;
padding: 15px;
-webkit-transition: opacity 0.35s;
-moz-transition: opacity 0.35s;
-ms-transition: opacity 0.35s;
-o-transition: opacity 0.35s;
transition: opacity 0.35s;
}
.filter-content-wrap.dropdown {
top: -15px;
}
.filter-content-wrap.mobile-dropdown.show, .filter-content-wrap.dropdown.show {
visibility: visible;
opacity: 1;
z-index: 99;
}
.filter-content-wrap > section {
width: 100%;
}
div.woof_info_popup {
position: fixed;
top: 0;
left: 0;
font-size: 15px;
font-family: inherit;
background: rgba(0, 0, 0, 0.15);
padding: 0;
border: none;
color: #e36c02;
box-shadow: none;
letter-spacing: 3px;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
@media (min-width: 768px) {
.filter-content-wrap > section {
width: auto;
}
.filter-content-wrap.mobile-dropdown {
flex-direction: row;
}
div.woof_info_popup {
left: 50%;
top: 50%;
background: rgba(255, 255, 255, 0.1);
transform: translate(-50%);
font-size: 14px;
letter-spacing: 1px;
color: #242424;
width: 98px;
height: 98px;
display: inline-block;
text-align: center;
line-height: 98px;
border-style: solid;
border-width: 1px;
border-radius: 50%;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
border-color: #dcdcdc #e36c02;
}
}
@media (min-width: 992px) {
.sidebar-right .filter-content-wrap {
order: 1;
padding: 4px 0 0 0;
}
.sidebar-left .filter-content-wrap {
order: -1;
padding: 4px 0 0 0;
}
.filter-content-wrap.dropdown {
left: 0;
flex-direction: row;
width: calc(100% - 2px);
}
.filter-content-wrap.mobile-dropdown {
left: 0;
width: calc(100% - 4px);
visibility: visible;
opacity: 1;
z-index: 99;
position: static;
border: none;
flex-direction: column;
}
.btn-for-sidebar {
display: none;
}
.sidebar-left .filter-content-wrap section,
.sidebar-right .filter-content-wrap section {
width: 100%;
}
}
@media (max-width: 767px) {
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form {
line-height: 40px;
}
} .woocommerce ul.products .cenos-product-item .product-item-wrap .product-thumbnail {
position: relative;
overflow: hidden;
}
.woocommerce ul.products .cenos-product-item .product-item-wrap .product-thumbnail .product-thumbnail-zoom {
display: block;
}
.woocommerce ul.products .cenos-product-item .product-item-wrap .product-thumbnail img {
margin-bottom: 0;
}
.woocommerce ul.products .cenos-product-item .product-item-wrap .product-thumbnails--hover img {
-webkit-transition: opacity 0.4s;
transition: opacity 0.4s;
}
.woocommerce ul.products .cenos-product-item .product-item-wrap .product-thumbnails--hover .hover-image {
position: absolute;
top: 0;
opacity: 0;
}
.woocommerce ul.products .cenos-product-item .product-item-wrap:hover .hover-image {
opacity: 1;
}
@media (min-width: 1025px) {
.woocommerce ul.products.columns-1 li.product {
width: 100%;
margin-right: 0;
}
.woocommerce ul.products.columns-1.product-item-border li.product {
width: calc(100% - 1px);
}
.woocommerce ul.products.columns-2 li.product {
margin-right: 30px;
width: calc((100% - 1 * 30px) / 2);
}
.woocommerce ul.products.columns-2 li.product:nth-child(2n+0) {
margin-right: 0;
width: calc(((100% - 1 * 30px) / 2) - 1px);
}
.woocommerce ul.products.columns-2 li.product:nth-child(2n+1) {
clear: both;
}
.woocommerce ul.products.columns-2.product-item-border li.product {
width: calc((100%/2) - 1px);
}
.woocommerce ul.products.columns-3 li.product {
margin-right: 30px;
width: calc((100% - 2 * 30px) / 3);
}
.woocommerce ul.products.columns-3 li.product:nth-child(3n+0) {
margin-right: 0;
width: calc(((100% - 2 * 30px) / 3) - 1px);
}
.woocommerce ul.products.columns-3 li.product:nth-child(3n+1) {
clear: both;
}
.woocommerce ul.products.columns-3.product-item-border li.product {
width: calc((100%/3) - 1px);
}
.woocommerce ul.products.columns-4 li.product {
margin-right: 30px;
width: calc((100% - 3 * 30px) / 4);
}
.woocommerce ul.products.columns-4 li.product:nth-child(4n+0) {
margin-right: 0;
width: calc(((100% - 3 * 30px) / 4) - 1px);
}
.woocommerce ul.products.columns-4 li.product:nth-child(4n+1) {
clear: both;
}
.woocommerce ul.products.columns-4.product-item-border li.product {
width: calc((100%/4) - 1px);
}
.woocommerce ul.products.columns-5 li.product {
margin-right: 30px;
width: calc((100% - 4 * 30px) / 5);
}
.woocommerce ul.products.columns-5 li.product:nth-child(5n+0) {
margin-right: 0;
width: calc(((100% - 4 * 30px) / 5) - 1px);
}
.woocommerce ul.products.columns-5 li.product:nth-child(5n+1) {
clear: both;
}
.woocommerce ul.products.columns-5.product-item-border li.product {
width: calc((100%/5) - 1px);
}
.woocommerce ul.products.columns-6 li.product {
margin-right: 30px;
width: calc((100% - 5 * 30px) / 6);
}
.woocommerce ul.products.columns-6 li.product:nth-child(6n+0) {
margin-right: 0;
width: calc(((100% - 5 * 30px) / 6) - 1px);
}
.woocommerce ul.products.columns-6 li.product:nth-child(6n+1) {
clear: both;
}
.woocommerce ul.products.columns-6.product-item-border li.product {
width: calc((100%/6) - 1px);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-2 li.product {
margin-right: 20px;
width: calc((100% - 1 * 20px) / 2);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-2 li.product:nth-child(2n+0) {
margin-right: 0;
width: calc(((100% - 1 * 20px) / 2) - 1px);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-2 li.product:nth-child(2n+1) {
clear: both;
}
.shop-page-layout-full-width.woocommerce ul.products.columns-3 li.product {
margin-right: 20px;
width: calc((100% - 2 * 20px) / 3);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-3 li.product:nth-child(3n+0) {
margin-right: 0;
width: calc(((100% - 2 * 20px) / 3) - 1px);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-3 li.product:nth-child(3n+1) {
clear: both;
}
.shop-page-layout-full-width.woocommerce ul.products.columns-4 li.product {
margin-right: 20px;
width: calc((100% - 3 * 20px) / 4);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-4 li.product:nth-child(4n+0) {
margin-right: 0;
width: calc(((100% - 3 * 20px) / 4) - 1px);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-4 li.product:nth-child(4n+1) {
clear: both;
}
.shop-page-layout-full-width.woocommerce ul.products.columns-5 li.product {
margin-right: 20px;
width: calc((100% - 4 * 20px) / 5);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-5 li.product:nth-child(5n+0) {
margin-right: 0;
width: calc(((100% - 4 * 20px) / 5) - 1px);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-5 li.product:nth-child(5n+1) {
clear: both;
}
.shop-page-layout-full-width.woocommerce ul.products.columns-6 li.product {
margin-right: 20px;
width: calc((100% - 5 * 20px) / 6);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-6 li.product:nth-child(6n+0) {
margin-right: 0;
width: calc(((100% - 5 * 20px) / 6) - 1px);
}
.shop-page-layout-full-width.woocommerce ul.products.columns-6 li.product:nth-child(6n+1) {
clear: both;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
.woocommerce ul.products.medium-columns-1 li.product {
width: 100%;
margin-right: 0;
}
.woocommerce ul.products.medium-columns-1.product-item-border li.product {
width: calc(100% - 1px);
}
.woocommerce ul.products.medium-columns-2 li.product {
margin-right: 20px;
width: calc((100% - 1 * 20px) / 2);
}
.woocommerce ul.products.medium-columns-2 li.product:nth-child(2n+0) {
margin-right: 0;
width: calc(((100% - 1 * 20px) / 2) - 1px);
}
.woocommerce ul.products.medium-columns-2 li.product:nth-child(2n+1) {
clear: both;
margin-right: 20px;
}
.woocommerce ul.products.medium-columns-2.product-item-border li.product {
width: calc((100%/2) - 1px);
}
.woocommerce ul.products.medium-columns-3 li.product {
margin-right: 20px;
width: calc((100% - 2 * 20px) / 3);
}
.woocommerce ul.products.medium-columns-3 li.product:nth-child(3n+0) {
margin-right: 0;
width: calc(((100% - 2 * 20px) / 3) - 1px);
}
.woocommerce ul.products.medium-columns-3 li.product:nth-child(3n+1) {
clear: both;
margin-right: 20px;
}
.woocommerce ul.products.medium-columns-3.product-item-border li.product {
width: calc((100%/3) - 1px);
}
.woocommerce ul.products.medium-columns-4 li.product {
margin-right: 20px;
width: calc((100% - 3 * 20px) / 4);
}
.woocommerce ul.products.medium-columns-4 li.product:nth-child(4n+0) {
margin-right: 0;
width: calc(((100% - 3 * 20px) / 4) - 1px);
}
.woocommerce ul.products.medium-columns-4 li.product:nth-child(4n+1) {
clear: both;
margin-right: 20px;
}
.woocommerce ul.products.medium-columns-4.product-item-border li.product {
width: calc((100%/4) - 1px);
}
}
@media (max-width: 767px) {
.woocommerce ul.products.small-columns-1 li.product {
width: 100%;
margin-right: 0;
}
.woocommerce ul.products.small-columns-1.product-item-border li.product {
width: calc(100% - 1px);
}
.woocommerce ul.products.small-columns-2 li.product {
width: calc((100% - 15px) / 2);
margin-right: 15px;
}
.woocommerce ul.products.small-columns-2 li.product:nth-child(even) {
margin-right: 0;
width: calc(((100% - 15px) / 2) - 2px);
}
.woocommerce ul.products.small-columns-2 li.product:nth-child(odd) {
clear: both;
margin-right: 15px;
}
.woocommerce ul.products.small-columns-2.product-item-border li.product {
width: calc(50% - 2px);
}
}  .woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
float: none;
width: auto;
} .cenos-product-control {
display: flex;
justify-content: space-between;
align-items: center;
}
.cenos-product-control .woocommerce-breadcrumb, .cenos-product-control .product-navigation {
margin-top: -15px;
}
.wide-gallery .cenos-product-control .woocommerce-breadcrumb, .wide-gallery .cenos-product-control .product-navigation {
margin-bottom: 0;
}
.wide-gallery .cenos-product-control {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
.cenos-product-control .woocommerce-breadcrumb {
text-transform: capitalize;
font-weight: 400;
}
.cenos-product-control .woocommerce-breadcrumb a {
font-weight: 400;
}
.cenos-product-control ul.product-navigation {
display: flex;
list-style: none;
padding: 0;
margin-left: auto;
}
.cenos-product-control ul.product-navigation li.product-nav-item {
list-style: none;
}
.cenos-product-control ul.product-navigation li.product-nav-item a.nav-btn {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
}
.cenos-product-control ul.product-navigation li.product-nav-item svg.fm-icon {
color: #777;
}
.cenos-product-control ul.product-navigation li.product-nav-item svg.fm-icon:hover {
color: #222222;
}
.cenos-product-control ul.product-navigation li.product-nav-item.hover_dropdown_wrapper > .dropdown_content {
margin: 0;
transform: translateY(0);
padding: 0;
}
.cenos-product-control ul.product-navigation li.product-nav-item.hover_dropdown_wrapper > .dropdown_content .product-nav-item-wrap {
display: flex;
align-items: center;
justify-content: space-between;
}
.cenos-product-control ul.product-navigation li.product-nav-item.hover_dropdown_wrapper > .dropdown_content .product-nav-item-wrap .product-nav-item-thumb {
margin-right: 20px;
}
.cenos-product-control ul.product-navigation li.product-nav-item.hover_dropdown_wrapper > .dropdown_content .product-nav-item-wrap .product-nav-item-thumb img {
max-width: 90px;
}
.cenos-product-control ul.product-navigation li.product-nav-item.hover_dropdown_wrapper > .dropdown_content .product-nav-item-wrap .product-nav-item-info {
display: flex;
flex-direction: column;
min-width: 150px;
padding: 15px 15px 15px 0;
}
.cenos-product-control ul.product-navigation li.product-nav-item.hover_dropdown_wrapper > .dropdown_content .product-nav-item-wrap .product-nav-item-info a {
font-size: 13px;
font-weight: 500;
color: #242424;
line-height: 15px;
margin-bottom: 8px;
}
.cenos-product-control ul.product-navigation li.product-nav-item.hover_dropdown_wrapper > .dropdown_content .product-nav-item-wrap .product-nav-item-info .woocs_price_code {
display: inline-block;
font-size: 14px;
font-weight: 400;
color: #666666;
line-height: 16px;
} .product-main.sidebar-left-full > .row, .product-main.sidebar-left > .row {
flex-direction: row-reverse;
}
.product-main.sidebar-right-full > .row, .product-main.sidebar-right > .row {
flex-direction: row;
}
.product-main.wide-gallery .product-gallery {
width: 100%;
position: relative;
}
.product-main.has_background {
position: relative;
}
.product-main.has_background::before {
content: "";
position: absolute;
width: 100vw !important;
margin-left: -50vw;
left: 50% !important;
top: 0;
bottom: 0;
} .woocommerce div.product .woocommerce-product-gallery {
opacity: 0;
transition: opacity 0.25s ease-in-out;
}
.woocommerce div.product .woocommerce-product-gallery .swiper-button-disabled {
visibility: hidden;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-paging {
display: flex;
list-style: none;
padding: 0;
margin: 0;
justify-content: center;
align-items: center;
position: absolute;
bottom: 10px;
margin-left: 50%;
transform: translateX(-50%);
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-paging li > a {
display: inline-block;
padding: 0;
margin: 0 5px;
color: #888;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-paging li > a.flex-active {
font-weight: bold;
color: #e36c02;
}
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav {
padding: 0;
list-style: none;
margin: 0;
}
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav .flex-nav-prev,
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next {
display: flex;
width: 40px;
height: 40px;
justify-content: center;
align-items: center;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 10px;
opacity: 0.15;
transition: opacity ease 0.3s;
}
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav .flex-nav-next {
right: 10px;
left: auto;
}
.woocommerce div.product .woocommerce-product-gallery .flex-direction-nav:hover .flex-nav-prev, .woocommerce div.product .woocommerce-product-gallery .flex-direction-nav:hover .flex-nav-next {
opacity: 1;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
margin-left: 115px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li {
width: 100%;
max-width: 100%;
float: none;
margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li img {
border: 1px solid transparent;
transition: border-color 0.3s linear 0s;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li:hover img, .woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li.swiper-slide-active img {
border-color: #cccccc;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next,
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev {
position: absolute;
z-index: 1;
top: 0;
width: 100%;
text-align: center;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next {
top: auto;
bottom: 0;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper.swiper-container-vertical .flex-control-thumbs {
overflow: initial;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper.swiper-container-vertical li.swiper-slide img {
max-height: 100%;
width: auto;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets {
display: none;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper {
position: relative;
margin-top: 15px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs {
overflow: initial;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li img {
border: 1px solid transparent;
width: max-content;
float: none;
transition: border-color 0.3s linear 0s;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li img.flex-active {
border-color: #dcdcdc;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li:hover img {
border-color: #dcdcdc;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .swiper-pagination-bullets {
display: none;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next, .woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev {
position: absolute;
height: 100%;
z-index: 1;
top: 0;
display: flex;
align-items: center;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next {
right: 0;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 15px;
grid-row-gap: 15px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
width: 100%;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:first-of-type {
-ms-grid-column: 1;
grid-column-start: 1;
grid-column-end: 3;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(2n+0):last-child {
grid-column-start: 1;
grid-column-end: 3;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
width: 100%;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+1) {
grid-column-start: 1;
grid-column-end: 4;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+1):last-child {
grid-column-start: 1;
grid-column-end: 7;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+2) {
grid-column-start: 4;
grid-column-end: 7;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+3) {
grid-column-start: 1;
grid-column-end: 3;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+3):nth-last-child(2) {
grid-column-start: 1;
grid-column-end: 4;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+3):last-child {
grid-column-start: 1;
grid-column-end: 7;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+4) {
grid-column-start: 3;
grid-column-end: 5;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+4):last-child {
grid-column-start: 4;
grid-column-end: 7;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image:nth-child(5n+0) {
grid-column-start: 5;
grid-column-end: 7;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image {
width: 100%;
display: block;
margin-bottom: 15px;
} .product-info.summary table.variations tr {
display: flex;
}
.product-info.summary.text-center {
text-align: center;
}
.product-info.summary.text-center form.cart {
display: flex;
justify-content: center;
}
.product-info.summary.text-center form.cart.variations_form, .product-info.summary.text-center form.cart.grouped_form {
flex-direction: column;
align-items: center;
}
.product-info.summary.text-center form.cart ul.variable-items-wrapper {
justify-content: center;
}
.product-info.summary.text-center .woocommerce-product-rating {
justify-content: center;
}
.product-info.summary.text-center .product-share {
justify-content: center;
}
.product-info.summary.text-center table.variations tr {
justify-content: center;
}
.product-info.summary.text-left {
text-align: left;
}
.product-info.summary.text-left form.cart {
display: flex;
justify-content: flex-start;
}
.product-info.summary.text-left form.cart.variations_form, .product-info.summary.text-left form.cart.grouped_form {
flex-direction: column;
align-items: flex-start;
}
.product-info.summary.text-left form.cart ul.variable-items-wrapper {
justify-content: flex-start;
}
.product-info.summary.text-left .product-share {
justify-content: flex-start;
}
.product-info.summary.text-right {
text-align: right;
}
.product-info.summary.text-right form.cart {
display: flex;
justify-content: flex-end;
}
.product-info.summary.text-right form.cart.variations_form, .product-info.summary.text-right form.cart.grouped_form {
flex-direction: column;
align-items: flex-end;
}
.product-info.summary.text-right form.cart ul.variable-items-wrapper {
justify-content: flex-end;
}
.product-info.summary.text-right .product-share {
justify-content: flex-end;
}
.product-info.summary.text-right table.variations tr {
justify-content: flex-end;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button::before { display: none !important;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_remove_from_wishlist-text {
margin-left: 3px;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
display: inline-block;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
display: none;
fill: #aaaaaa;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover:hover {
fill: #ec1d25;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon {
display: none;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
display: inline-block;
}
.summary .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover svg {
fill: #ec1d25;
}
.woocommerce-variation-add-to-cart {
display: inline-block;
} .product-share, ul.socials-sharing {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.product-share {
width: 100%;
}
ul.socials-sharing {
list-style: none;
padding: 0;
} .product-page-accordian, .woocommerce-tabs, .section-tab-content {
overflow-wrap: break-word;
} @media (min-width: 992px) {
.product-main:not(.no-sidebar) .product-content {
max-width: 75%;
}
}
@media (max-width: 991px) {
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
margin-left: 0;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper {
position: relative;
top: -40px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .flex-control-thumbs, .woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next, .woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev {
height: 1px;
visibility: hidden;
z-index: -1;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets {
display: block;
position: static;
transform: translate3d(0, 0, 0);
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .swiper-pagination-bullets .swiper-pagination-bullet {
display: inline-block;
margin: 0 5px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper {
margin-top: 0;
top: -40px;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .flex-control-thumbs, .woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next, .woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev {
height: 1px;
visibility: hidden;
z-index: -1;
}
.woocommerce div.product .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .swiper-pagination-bullets {
display: block;
position: static;
}
} .sticky-wrapper {
will-change: min-height;
}
.sticky-wrapper .sticky-inner {
transform: translate(0, 0); transform: translate3d(0, 0, 0);
will-change: position, transform;
} .woocommerce div.product .cenos-wc-tabs {
display: -ms-flexbox;
display: flex;
-ms-flex-flow: column wrap;
flex-flow: column wrap;
}
.woocommerce div.product .cenos-wc-tabs .cenos-tabs-title {
width: 100%;
}
.woocommerce div.product .cenos-wc-tabs .woocommerce-Tabs-panel {
width: 100%;
}
.woocommerce div.product .cenos-wc-tabs .woocommerce-Tabs-panel h2.woocommerce-Reviews-title,
.woocommerce div.product .cenos-wc-tabs .woocommerce-Tabs-panel > h2:first-child {
display: none;
}
.woocommerce div.product .cenos-wc-tabs.vertical {
-ms-flex-flow: row;
flex-flow: row;
}
.woocommerce div.product .cenos-wc-tabs.vertical .cenos-tabs-title {
width: max-content;
display: flex;
flex-direction: column;
min-width: 230px;
}
.woocommerce div.product .cenos-wc-tabs.vertical .woocommerce-Tabs-panel {
width: 100%;
margin-bottom: 0;
} .woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
float: none;
width: auto;
} .page-heading-content {
display: flex;
align-items: center;
position: relative;
color: #fff;
}
.page-heading-content .page-heading-title {
line-height: 1;
}
.page-heading-content .woocommerce-breadcrumb,
.page-heading-content .woocommerce-breadcrumb > a,
.page-heading-content .page-heading-title {
color: #fff;
}
.page-heading-content.dark {
color: #242424;
}
.page-heading-content.dark .woocommerce-breadcrumb,
.page-heading-content.dark .woocommerce-breadcrumb > a,
.page-heading-content.dark .page-heading-title {
color: #242424;
}
.page-heading-content .page-heading-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.page-heading-content .page-heading-container {
position: relative;
}
.page-heading-content.heading-left {
text-align: left;
justify-content: flex-start;
}
.page-heading-content.heading-center {
text-align: center;
justify-content: center;
}
.page-heading-content.heading-right {
text-align: right;
justify-content: flex-end;
} .cenos-breadcrumbs .trail-items {
padding: 0;
}
.page-heading-content .cenos-breadcrumbs .trail-items {
margin: 0;
}
.cenos-breadcrumbs .trail-items .trail-item {
display: inline-block;
}
.cenos-breadcrumbs .trail-items .trail-item:not(.trail-end)::after {
content: "/";
display: inline-block;
padding: 0 5px;
} .widget .widget-title {
font-size: 1.25rem;
}
.footer_widget .widget .widget-title {
margin-bottom: 0.5rem;
display: block;
}
.footer_widget .widget ul {
padding-left: 0;
list-style: none;
}
.cenos-sidebar-content .widget {
margin-bottom: 2rem;
} .site-footer {
clear: both;
}
.site-footer .footer-container {
display: flex;
justify-content: space-between;
}
.site-footer .footer-wrap {
display: flex;
flex-direction: column;
}
.site-footer .footer-section > .container {
display: flex;
justify-content: space-between;
align-items: center;
}
.site-footer .footer-section .footer-items.footer-center {
margin: 0 auto;
} article.post img {
max-width: 100%;
height: auto;
} .error404 #content {
padding-top: 90px;
}
.error404 .fourohfour-columns-2 {
padding: 2.617924em 0;
border: 1px solid rgba(0, 0, 0, 0.05);
border-width: 1px 0;
margin-bottom: 2.617924em;
}
.error404 .fourohfour-columns-2::before, .error404 .fourohfour-columns-2::after {
content: "";
display: table;
}
.error404 .fourohfour-columns-2::after {
clear: both;
}
.error404 .fourohfour-columns-2 ul.products li.product, .error404 .fourohfour-columns-2 .widget {
margin-bottom: 0;
}
.error404 .fourohfour-columns-2 .col-1a {
width: 47.8260869565%;
float: left;
margin-right: 4.347826087%;
}
.error404 .fourohfour-columns-2 .col-1a ul.products {
margin-bottom: 0;
}
.error404 .fourohfour-columns-2 .col-1a ul.products li.product {
width: 45.4545454545%;
float: left;
margin-right: 9.0909090909%;
}
.error404 .fourohfour-columns-2 .col-1a ul.products li.product:last-child {
margin-right: 0;
}
.error404 .fourohfour-columns-2 .col-2a {
padding: 1.618em;
background-color: rgba(0, 0, 0, 0.025);
width: 47.8260869565%;
float: right;
margin-right: 0;
} @media (max-width: 767px) { .cenos-announcement-box {
padding: 0.25rem 0;
}
.cenos-announcement-box.layout1 {
justify-content: center;
flex-direction: column;
}
.cenos-announcement-box.layout2 {
justify-content: space-between;
padding-left: 50px;
padding-right: 50px;
}
.cenos-announcement-box > * {
margin: 0.25rem 0;
}
.cenos-announcement-box button.close {
top: 0;
margin-top: 0;
} .page-heading-wrap .page-heading-content, .page-heading-wrap .blog-heading-content {
height: auto;
min-height: 120px;
padding: 20px 0;
}
.page-heading-content .page-heading-title, .blog-heading-content .page-heading-title {
font-size: 30px;
}
} @media (min-width: 768px) {
.header-layout ~ .header-mobile.not_mobile_hidden, .header-layout ~ .header-mobile-spacer.not_mobile_hidden {
display: none !important;
}
.not_mobile_hidden:not(.header-mobile, .header-mobile-spacer) {
display: none !important;
}
}
@media (min-width: 1025px) {
.header-layout ~ .header-mobile.not_device_hidden, .header-layout ~ .header-mobile-spacer.not_device_hidden {
display: none !important;
}
.not_device_hidden:not(.header-mobile, .header-mobile-spacer) {
display: none !important;
}
}
@media (max-width: 1024px) {
.hidden_on_device {
display: none !important;
}
}
@media (max-width: 767px) {
.hidden_on_mobile {
display: none !important;
}
}
.header-mobile {
height: 66px;
padding: 3px 0;
background: #FFF;
border-bottom: 1px solid #e4e4e486;
}
.header-mobile > .container {
height: 100%;
display: flex;
align-items: center;
}
.header-mobile > .container > div {
max-height: 60px;
}
.header-mobile > .container .mobile-nav-btn > a {
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
line-height: 15px;
}
.header-mobile > .container .mobile-nav-btn > a .c-button__text > svg.fm-icon {
margin-right: 3px;
}
.header-mobile > .container .header-element.cart_box a.cart-btn > span.c-button__text {
display: flex;
align-items: center;
}
.header-mobile.header-mobile-layout1 > .container {
justify-content: space-between;
}
.header-mobile.header-mobile-layout1 > .container > div {
flex: 1;
}
.header-mobile.header-mobile-layout1 .site-branding {
text-align: center;
}
.header-mobile.header-mobile-layout1 .header-mobile-right-control > .header-element {
margin-left: 12px;
}
.header-mobile.header-mobile-layout2 > .container {
justify-content: flex-end;
}
.header-mobile.header-mobile-layout2 .site-branding {
margin-left: 0;
margin-right: auto;
}
.header-mobile.header-mobile-layout2 .mobile-nav-btn {
margin-left: 1rem;
}
.header-mobile.header-mobile-layout2 .header-mobile-right-control > .header-element {
margin-left: 1rem;
}
.header-mobile.header-mobile-layout3 > .container {
justify-content: flex-start;
}
.header-mobile.header-mobile-layout3 .site-branding {
margin-left: 0;
margin-right: auto;
}
.header-mobile.header-mobile-layout3 .mobile-nav-btn {
margin-right: 1rem;
}
.header-mobile.header-mobile-layout3 .header-mobile-right-control {
margin-right: 0;
margin-left: auto;
}
.header-mobile.header-mobile-layout3 .header-mobile-right-control > .header-element {
margin-left: 1rem;
}
.header-mobile.header-mobile-layout4 {
height: 56px;
border-bottom: none !important;
box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.1);
}
.header-mobile.header-mobile-layout4 > .container {
display: flex;
justify-content: space-between;
}
.header-mobile.header-mobile-layout4 .fm-search-form {
height: 36px;
}
.header-mobile.header-mobile-layout4 .fm-search-form .search_text_input {
border: none;
font-size: 13px;
padding: 0;
margin-left: 20px;
min-width: 180px;
height: 100%;
padding-right: 35px;
}
.header-mobile.header-mobile-layout4 .fm-search-form button[type=submit] {
z-index: 3;
background: none;
width: 30px;
padding-right: 0;
position: absolute;
right: 0;
}
.header-mobile.header-mobile-layout4 .fm-search-form button[type=submit] svg {
fill: #000000;
}
.header-mobile.header-mobile-layout4 .fm-search-form .btn_clear_text {
position: absolute;
left: 0;
}
.header-mobile.header-mobile-layout4 .fm-search-form .btn_clear_text svg {
fill: #e36c02;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results {
width: 375px;
height: auto;
min-width: 320px;
max-width: 100vw;
top: 43px !important;
border-top: 1px solid #e4e4e4;
left: auto !important;
right: -5px;
padding: 20px;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset {
display: flex;
flex-direction: column;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset .search-result-item {
flex: 0 0 100%;
display: flex;
padding: 0;
margin-bottom: 20px;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset .search-result-item > a {
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset .search-result-item > a img {
width: 68px;
flex: 0 0 68px;
max-width: 68px;
height: auto;
margin: 0 15px 0 0;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info {
font-size: 14px;
font-weight: 400;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title {
line-height: 16px;
margin-bottom: 8px;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount {
font-size: 15px;
font-weight: 400;
}
.header-mobile.header-mobile-layout4 .header-element.search_form_wrapper .ajax_search .fm-search-results .fm-dataset .search-result-item:last-child {
margin-bottom: 0;
}
.header-mobile .header-control-wrap.header-mobile-right-control {
justify-content: flex-end;
}
.single-product .header-mobile, .home .header-mobile {
border-bottom: 1px solid #dcdcdc;
}
.header-mobile.header-mobile-sticky + .header-mobile-spacer {
height: 60px;
}
.header-mobile.header-mobile-sticky.headroom--pinned.headroom--not-top {
-webkit-box-shadow: 8px 6px 30px 0px rgba(0, 0, 0, 0.06);
box-shadow: 8px 6px 30px 0px rgba(0, 0, 0, 0.06);
}
.home .header-mobile.header-mobile-sticky.headroom--pinned.headroom--not-top {
border-bottom: none;
} .js-offcanvas-close.cenos-close-btn[aria-controls=mobile-header-canvas] {
padding: 6px;
}
.js-offcanvas-close.cenos-close-btn .button-title {
display: none;
}
#mobile-header-canvas {
width: 300px;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner {
display: flex;
flex-direction: column;
height: 100%;
overflow-y: auto;
overflow-x: hidden;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title {
display: flex;
height: 50px;
flex: 0 0 50px;
width: 100%;
padding: 0 20px;
justify-content: space-between;
align-items: center;
background-color: #fefefe;
border-bottom: 1px solid #dcdcdc;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title h3 {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
color: #242424;
margin: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn {
position: static;
right: 15px;
top: 15px;
line-height: 24px;
height: auto;
width: auto;
padding: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn > .c-button__text {
display: flex;
align-items: center;
flex-direction: row-reverse;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn .button-title {
display: inline-block;
font-weight: 400;
font-size: 10px;
text-transform: uppercase;
color: #242424;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn .button-title:hover {
color: #e36c02;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn svg.fm-icon {
width: 11px;
height: 11px;
margin-left: 3px;
fill: #242424;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn:hover svg.fm-icon {
fill: #e36c02;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation {
width: 100%;
padding: 0 20px;
height: calc(100% - 150px);
overflow-y: auto;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu {
margin-bottom: 0;
padding-bottom: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li {
line-height: 24px;
padding: 0.5rem 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li .sub-menu li {
padding: 5px 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li .sub-menu li:last-child {
padding-bottom: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu li.open {
padding-bottom: 0;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-navigation ul.menu > li > a {
font-weight: 500;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-bottom {
border-top: 1px solid #dcdcdc;
margin-top: auto;
margin-bottom: 1px;
padding: 20px;
display: flex;
flex-direction: column;
width: 100%;
}
@media (max-width: 575px) {
#search-canvas {
height: 100vh;
}
#search-canvas.c-offcanvas--top .offcanvas-content {
padding-top: 50px;
}
#search-canvas .offcanvas-content > h2 {
margin-bottom: 10px;
}
#search-canvas .offcanvas-content .search_form_wrapper {
width: 100%;
padding: 0 15px;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content {
width: 100%;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .twitter-typeahead {
width: 100%;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form {
height: max-content;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form .search_text_input {
width: 100%;
padding: 0;
font-size: 14px;
height: 40px;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form button[type=submit] {
height: 40px;
top: 0;
width: 40px;
padding-right: 0;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
width: 15px;
height: 15px;
}
#search-canvas .ajax_search .fm-search-results {
padding: 20px 0;
margin: 0 -5px;
height: 350px;
}
#search-canvas .ajax_search .fm-search-results .fm-dataset .search-result-item {
flex: 0 0 33.3333%;
padding: 0 5px 10px 5px;
}
} @media screen and (max-width: 782px) {
html body.admin-bar .fm-header-sticky.headroom--pinned.headroom--not-top {
top: 46px;
}
}  .header-layout9 .header-content .header-container .site-branding + .header-control-wrap {
margin-left: 0;
margin-right: auto;
}
.header-layout9 .header-content .header-container .site-branding + .header-control-wrap .fm-search-form {
flex-direction: row-reverse;
}
.header-layout9 .header-content .header-container .site-branding + .header-control-wrap .fm-search-form .search_text_input {
border: none;
padding-left: 0;
}
.header-layout9 .header-content .header-container .site-branding + .header-control-wrap .fm-search-form button[type=submit] {
background: none;
border: none;
}
.header-layout:not(.header-layout7):not(.header-layout8) .header-content .header-container .search_box.form .fm-search-form {
flex-direction: row-reverse;
}
.header-layout:not(.header-layout7):not(.header-layout8) .header-content .header-container .search_box.form .fm-search-form .search_text_input {
border: none;
padding-left: 0;
}
.header-layout:not(.header-layout7):not(.header-layout8) .header-content .header-container .search_box.form .fm-search-form button[type=submit] {
background: none;
padding-left: 0;
border: none;
border-radius: 0;
font-size: 0;
}
.header-layout:not(.header-layout7):not(.header-layout8) .header-content .header-container .header-right-control .search_box.form .fm-search-form {
flex-direction: row;
}
.header-layout:not(.header-layout7):not(.header-layout8) .header-content .header-container .header-right-control .search_box.form .fm-search-form .search_text_input {
text-align: right;
}
.header-layout7 .header-content .header-container .fm-search-form, .header-layout8 .header-content .header-container .fm-search-form {
border: 1px solid rgba(122, 122, 122, 0.25);
border-radius: 35px;
}
.header-layout7 .header-content .header-container .fm-search-form .search_text_input,
.header-layout7 .header-content .header-container .fm-search-form button[type=submit], .header-layout8 .header-content .header-container .fm-search-form .search_text_input,
.header-layout8 .header-content .header-container .fm-search-form button[type=submit] {
background: none;
border: none;
}
.header-layout7 .header-content .header-container .main-navigation > .nav-menu > li.menu-item, .header-layout8 .header-content .header-container .main-navigation > .nav-menu > li.menu-item {
height: 60px;
}
.header-layout5 .header-content .header-container .header-right-control .my-account-box a.account-btn {
display: flex;
align-items: center;
}
.header-layout5 .header-content .header-container .header-right-control .my-account-box a.account-btn svg.fm-icon + span {
margin-right: 6px;
order: -1;
}
.header-layout5 .header-content .header-container .header-right-control .cart_box a.cart-btn .mini-cart-contents {
margin-left: 3px;
}
.header-layout5 .header-content .header-container .hamburger-box a.hamburger-menu svg.fm-icon {
width: 26px;
height: 26px;
}
.header-content.header-bottom > .header-container {
position: relative;
}
.header-content.header-bottom > .header-container:before {
display: inline-block;
width: calc(100% - 30px);
border-top: 1px solid rgba(122, 122, 122, 0.25);
content: "";
position: absolute;
top: 0;
} .header-element {
font-size: inherit;
}
.top-bar-control .header-element {
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
}
.header-bottom-left-control .header-element, .header-bottom-right-control .header-element {
font-weight: 400;
font-size: 14px;
}
.header-element > a > svg.fm-icon + span {
margin-left: 5px;
}
.header-main .header-control-wrap .header-element > a {
font-weight: 400;
font-size: 14px;
}
.header-element.social-icon-box a.fm-social-icon-link {
font-size: 10px;
font-weight: 500;
text-transform: uppercase;
line-height: 12px;
}
.header-element.social-icon-box a.fm-social-icon-link svg.fm-icon + .fm-social-icon-title {
margin-left: 6px;
}
.top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child), .header-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) {
margin-right: 15px;
}
.top-bar-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) .fm-social-icon-title, .header-left-control .header-element.social-icon-box a.fm-social-icon-link:not(:last-child) .fm-social-icon-title {
border-right: 1px solid #dcdcdc;
padding-right: 15px;
}
.top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child), .header-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) {
margin-left: 15px;
}
.top-bar-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) .fm-social-icon-title, .header-right-control .header-element.social-icon-box a.fm-social-icon-link:not(:first-child) .fm-social-icon-title {
border-left: 1px solid #dcdcdc;
padding-left: 15px;
}
.header-element.contact-info-box svg.fm-icon + span {
margin-left: 6px;
}
.header-element.contact-info-box .ct-title::after {
content: ":";
display: inline-block;
margin-right: 3px;
}
.header-element.contact-info-box .ct-info:not(:last-child) {
margin-right: 15px;
}
.header-element.my-account-box a.account-btn svg.fm-icon {
transform: translateY(-1px);
}
.header-element.my-account-box a.account-btn svg.fm-icon + span {
margin-left: 6px;
}
.header-element.wishlist-box .wishlist-btn {
display: flex;
align-items: center;
}
.header-element.wishlist-box .wishlist-btn span.wishlist_counter {
display: inline-block;
margin-left: 3px;
font-size: 10px;
width: 18px;
height: 18px;
line-height: 18px;
text-align: center;
border-radius: 50%;
font-weight: 500;
color: #ffffff !important;
background-color: #e36c02;
}
.header-element.search_box.form .fm-search-form .search_text_input {
font-size: inherit;
}
.header-element.search_box.button a.search-btn.search-btn-dropdown {
display: inline-block;
}
.header-element.search_box.button a.search-btn.search-btn-dropdown:not(.show_text) {
width: 24px;
height: 24px;
line-height: 24px;
}
.header-bottom-right-control .header-element.search_box.button a.search-btn.search-btn-dropdown {
text-align: right;
}
.header-bottom-left-control .header-element.search_box.button a.search-btn.search-btn-dropdown + .search_form_wrapper.dropdown {
left: 0;
right: auto;
}
.header-element.search_box.button .search_form_wrapper.dropdown .search_form_content .fm-search-form.style1 button[type=submit] {
color: #ffffff;
font-size: 0;
border-radius: 0 2px 2px 0;
}
.header-element.search_box.button .search_form_wrapper.dropdown .search_form_content .fm-search-form.style1 button[type=submit] svg.fm-icon {
fill: #ffffff;
}
.header-element.search_form_wrapper .ajax_search .fm-search-results {
background: #ffffff;
min-width: 800px;
}
.header-element.cart_box a.cart-btn, .header-element.cart_box a.cart-btn .c-button__text {
display: flex;
align-items: center;
}
.header-element.cart_box a.cart-btn .mini-cart-contents {
margin-left: 0;
}
.header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter {
font-size: 0;
position: static;
margin-left: 2px;
}
.header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
font-size: 10px;
width: 18px;
height: 18px;
line-height: 18px;
border-radius: 50%;
font-weight: 500;
}
.header-layout6 .header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
width: 24px;
height: 24px;
line-height: 24px;
background: #242424;
color: #FFF;
margin-left: 5px;
}
.header-layout2 .header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span, .header-layout5 .header-element.cart_box a.cart-btn .mini-cart-contents .cart-counter > span {
width: 20px;
height: 20px;
line-height: 20px;
background: #242424;
color: #FFF;
margin-left: 5px;
}
.header-element .currency.list-dropdown .dropdown .current svg.fm-icon, .header-element .language.list-dropdown .dropdown .current svg.fm-icon {
width: 10px;
height: 10px;
margin-left: 4px;
}
.header-layout2 .header-element.hamburger-box .hamburger-menu svg.fm-icon {
width: 16px;
height: 16px;
}
.header-layout5 .header-element.hamburger-box .hamburger-menu svg.fm-icon {
width: 25px;
height: 25px;
}
.header-element.hamburger-box .hamburger-menu svg.fm-icon + .hamburger-title {
margin-left: 6px;
}
.header-element.hamburger-box .hamburger-menu .hamburger-title {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
}
.header-main .header-container .header-control-wrap {
height: inherit;
font-size: 13px;
}
.header-main .header-container .header-control-wrap .header-element.cart_box.hover_dropdown_wrapper {
height: inherit;
display: flex;
align-items: center;
}
.fm-header-sticky.headroom--pinned.headroom--not-top .search_form_wrapper .search_form_content .fm-search-form .search_text_input::placeholder {
color: #aaaaaa;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list {
list-style: none;
padding-left: 0;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item {
position: relative;
font-size: 13px;
font-weight: 500;
margin-bottom: 20px;
padding-right: 0;
padding-top: 0;
min-height: 108px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity {
color: #999999;
width: calc(100% - 88px);
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item img {
float: left;
margin-right: 12px;
width: 70px;
margin-left: 0;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .remove {
position: absolute;
right: 0;
top: 0;
font-size: 13px;
font-weight: 500;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .remove svg {
fill: #aaaaaa;
width: 12px;
height: 12px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .remove:hover svg {
fill: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item a {
display: block;
line-height: 18px;
font-weight: 500;
font-size: 13px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item a:not(:hover) {
color: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl {
margin: 0;
display: inline-block;
border: none;
padding: 0;
clear: both;
width: calc(100% - 88px);
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl * {
padding-bottom: 0;
margin-bottom: 0;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl dt {
font-weight: 500;
color: #999999;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl dd {
font-weight: 500;
color: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item > a:not(.remove) {
padding-right: 20px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl.variation {
font-size: 13px;
font-weight: 400;
color: #242424;
display: inline-flex;
flex-wrap: wrap;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl.variation dt {
color: #aaaaaa;
font-weight: inherit;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl.variation dt::after {
content: ":";
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl.variation dd {
margin-left: 3px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl.variation dd + dt {
margin-left: 6px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl.variation dd + dt::before {
content: "/";
content: #777;
margin-right: 6px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap {
display: inline-flex;
width: calc(100% - 88px);
justify-content: space-between;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity {
display: flex;
align-items: center;
width: 60px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity .qty {
border: none;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a {
width: 15px;
height: 15px;
border: 1px solid #aaaaaa;
display: flex;
align-items: center;
border-radius: 50%;
justify-content: center;
flex: 0 0 15px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a svg {
fill: #777;
width: 7px;
height: 7px;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a:hover {
border-color: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a:hover svg {
fill: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocs_special_price_code {
display: flex;
flex-direction: column;
justify-content: flex-end;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocs_special_price_code .amount {
color: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item:not(:last-child) {
padding-bottom: 20px;
border-bottom: 1px dotted #dcdcdc;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__total {
display: flex;
justify-content: space-between;
font-size: 14px;
font-weight: 500;
color: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__total strong {
font-weight: 500;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__total .woocs_special_price_code {
font-size: 18px;
font-weight: 500;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__buttons {
display: flex;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button {
height: 48px;
text-transform: capitalize;
font-size: 14px;
background: #aaaaaa;
color: #ffffff;
display: flex;
align-items: center;
justify-content: center;
font-weight: 400;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button + .button {
background: #242424;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__buttons a.button:hover {
background-color: #e36c02;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
text-align: center;
}
.theme-cenos .offcanvas-content .cart_box_content {
padding: 20px;
}
.theme-cenos .offcanvas-content .cart_box_content .woocommerce-mini-cart__buttons {
flex-direction: column;
margin-bottom: 0;
margin-top: 25px;
}
.theme-cenos .offcanvas-content .cart_box_content .woocommerce-mini-cart__buttons a.button + .button {
margin-top: 15px;
}
.theme-cenos .offcanvas-content .cart_box_content .woocommerce-mini-cart__total {
margin-top: auto;
margin-bottom: 0;
}
.theme-cenos .cart_box.hover_dropdown_wrapper .cart_box_content {
padding: 20px;
}
.theme-cenos .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__buttons {
justify-content: space-between;
}
.theme-cenos .cart_box.hover_dropdown_wrapper .cart_box_content .woocommerce-mini-cart__buttons a.button {
width: calc(50% - 5px);
}
.cart_box_content.dropdown_content {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.cart_box_content.dropdown_content .woocommerce-mini-cart__empty-message {
text-align: center;
font-size: 12px;
font-weight: 500;
color: #242424;
text-transform: uppercase;
letter-spacing: 1.2px;
margin: 0;
padding: 30px 0;
}
.main-navigation {
height: inherit;
display: flex;
}
.main-navigation ul.nav-menu {
height: inherit;
}
.main-navigation ul.nav-menu > li.menu-item {
height: inherit;
margin: 0 10px;
}
.main-navigation ul.nav-menu > li.menu-item > a {
height: inherit;
display: flex;
align-items: center;
padding-left: 10px;
padding-right: 10px;
}
.main-navigation ul.nav-menu > li.menu-item > a::after {
bottom: -1px;
height: 1px;
}
.main-navigation .nav-menu ul li.page_item.page_item_has_children ul.children {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
background-color: #fff;
text-align: left;
padding: 10px 0;
z-index: 9999;
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
transition: all 0.4s ease;
-webkit-box-shadow: 7px 6px 40px 0 rgba(204, 204, 223, 0.16);
-moz-box-shadow: 7px 6px 40px 0 rgba(204, 204, 223, 0.16);
box-shadow: 7px 6px 40px 0 rgba(204, 204, 223, 0.16);
display: block;
}
.main-navigation .nav-menu ul li.page_item.page_item_has_children:not(:hover) > ul.children {
visibility: hidden;
opacity: 0;
-webkit-transform: translateY(30px);
-moz-transform: translateY(30px);
-ms-transform: translateY(30px);
-o-transform: translateY(30px);
transform: translateY(30px);
}
.main-navigation .nav-menu ul li.page_item:hover .children .children {
top: 100%;
left: 100%;
}
.main-navigation .nav-menu ul > li.page_item {
height: inherit;
}
.main-navigation .nav-menu ul > li.page_item:nth-last-child(1) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(2) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(3) .children .children, .main-navigation .nav-menu ul > li.page_item:nth-last-child(4) .children .children {
right: 100%;
left: auto;
}
#cart-canvas .offcanvas-content .cart_box_head {
position: relative;
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
#cart-canvas .offcanvas-content .cart_box_head > h3 {
margin: 15px 0;
line-height: 20px;
text-transform: capitalize;
}
#cart-canvas .cenos-close-btn {
position: static;
line-height: 20px;
height: auto;
width: auto;
}
#cart-canvas .cenos-close-btn > .c-button__text {
display: flex;
align-items: center;
flex-direction: row-reverse;
}
#cart-canvas .cenos-close-btn .button-title {
display: inline-block;
font-weight: 500;
font-size: 15px;
text-transform: capitalize;
color: #242424;
}
#cart-canvas .cenos-close-btn .button-title:hover {
color: #e36c02;
}
#cart-canvas .cenos-close-btn svg.fm-icon {
width: 15px;
height: 15px;
margin-left: 5px;
fill: #242424;
}
#account-canvas .account_form_content {
display: flex;
flex-direction: column;
justify-content: center;
margin: 20px;
position: relative;
}
#account-canvas .account_form_content .cenos-close-btn {
position: absolute;
line-height: 24px;
height: auto;
width: auto;
right: 0;
top: 0;
}
#account-canvas .account_form_content .cenos-close-btn > .c-button__text {
display: flex;
align-items: center;
flex-direction: row-reverse;
}
#account-canvas .account_form_content .cenos-close-btn .button-title {
display: inline-block;
font-weight: 500;
font-size: 15px;
text-transform: capitalize;
color: #242424;
}
#account-canvas .account_form_content .cenos-close-btn .button-title:hover {
color: #e36c02;
}
#account-canvas .account_form_content .cenos-close-btn svg.fm-icon {
width: 15px;
height: 15px;
margin-left: 5px;
fill: #242424;
}
#account-canvas .account_form_content .cenos-close-btn:focus {
outline: none;
}
#account-canvas .account_form_content .nav-tabs {
position: absolute;
left: 0;
top: 0;
border: none;
}
#account-canvas .account_form_content .nav-tabs .nav-link {
padding: 0;
border: none;
font-weight: 500;
font-size: 15px;
text-transform: capitalize;
color: #777;
margin-right: 10px;
}
#account-canvas .account_form_content .nav-tabs .nav-link.active {
color: #242424;
}
#account-canvas .account_form_content .tab-content .woocommerce-form {
padding: 0;
border: none;
}
#hamburger-canvas .cenos-close-btn {
position: static;
line-height: 24px;
height: auto;
width: auto;
}
#hamburger-canvas .cenos-close-btn > .c-button__text {
display: flex;
align-items: center;
flex-direction: row-reverse;
width: max-content;
}
#hamburger-canvas .cenos-close-btn .button-title {
display: inline-block;
font-weight: 500;
font-size: 15px;
text-transform: capitalize;
color: #242424;
}
#hamburger-canvas .cenos-close-btn .button-title:hover {
color: #e36c02;
}
#hamburger-canvas .cenos-close-btn svg.fm-icon {
width: 16px;
height: 16px;
margin-left: 5px;
fill: #242424;
}
#site-navigation ul.nav-menu ul.sub-menu > li > a {
font-size: 14px;
line-height: 24px;
}
#site-navigation ul.nav-menu ul.sub-menu > li.menu-item-has-children > a {
text-transform: uppercase;
font-weight: bold;
}
#site-navigation ul.nav-menu ul.sub-menu.mega-menu-container {
padding: 20px;
}
#site-navigation ul.nav-menu ul.sub-menu.mega-menu-container > .elementor {
max-width: 100%;
width: 100%;
}
#site-navigation ul.nav-menu ul.sub-menu.mega-menu-container .elementor-widget-fmtpl-menu li.menu-item {
padding: 0;
}
#site-navigation ul.nav-menu ul.sub-menu.mega-menu-container .elementor-widget-fmtpl-menu li.menu-item.menu-item-has-badge > a {
display: flex;
align-items: center;
}
#site-navigation ul.nav-menu .menu-item-badge {
margin-left: 5px;
height: 15px;
border-radius: 2px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 6px;
width: auto;
}
#site-navigation ul.nav-menu .menu-item-badge .badge-title {
font-size: 9px;
font-weight: 700;
text-transform: uppercase;
}
@media (min-width: 1500px) {
.main-navigation ul.nav-menu > li.menu-item {
margin: 0 20px;
}
.header-layout6 .main-navigation ul.nav-menu > li.menu-item {
margin: 0 10px;
}
.theme-cenos .offcanvas-content .cart_box_content {
padding: 15px 45px 30px 45px;
}
.theme-cenos #cart-canvas.c-offcanvas {
width: 450px;
}
.theme-cenos #cart-canvas.c-offcanvas .offcanvas-content .cart_box_head {
padding: 15px 45px 0 45px;
}
.theme-cenos #cart-canvas.c-offcanvas .offcanvas-content .cart_box_head > h3 {
font-size: 15px;
font-weight: 500;
}
.theme-cenos #account-canvas .offcanvas-content {
margin: 30px;
}
} .woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.familab_theme #respond input#submit,
.familab_theme a.button,
.familab_theme button.button,
.familab_theme input.button,
.familab_theme button,
.familab_theme .btn,
.familab_theme .btn.btn-default {
padding: 12px 25px;
font-size: 14px;
line-height: 24px;
text-transform: capitalize;
font-weight: 400;
}
.woocommerce ul.products li.product .added_to_cart {
display: none;
}
ol.flex-control-nav { }
ol.flex-control-nav li {
margin: 0;
}
ol.flex-control-nav li a {
margin: 0 5px;
padding: 0;
font-size: 0;
position: relative;
}
ol.flex-control-nav li a::before {
content: "";
display: inline-block;
width: 6px;
height: 6px;
border: 6px solid #ffffff;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
box-sizing: content-box;
background: #999;
border-radius: 50%;
}
ol.flex-control-nav li a::after {
content: "";
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 18px;
height: 18px;
border: 1px solid transparent;
border-radius: 50%;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
}
ol.flex-control-nav li a:hover::before {
background-color: #242424;
}
ol.flex-control-nav li a:hover::after, ol.flex-control-nav li a.flex-active::after {
border-color: rgba(0, 0, 0, 0.6);
}
.widget { }
.widget .widget-title {
font-size: 1.25rem;
color: #242424;
font-weight: 500;
}
#product-sidebar .widget .widget-title {
display: block;
margin-bottom: 1rem;
font-weight: 400;
} .fm-search-form.ajax_search .fm-search-results {
z-index: 99;
padding: 50px 0 30px 0;
margin: 0 -10px;
width: 100%;
overflow-y: auto;
height: 550px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item {
flex: 0 0 20%;
display: flex;
flex-direction: column;
padding: 0 10px 15px 10px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a {
display: inline-block;
width: 100%;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img {
width: 100%;
height: auto;
margin-bottom: 17px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info {
font-size: 14px;
font-weight: 400;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title {
line-height: 18px;
margin-bottom: 3px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount {
font-size: 15px;
color: #555555;
line-height: 18px;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_price del .amount {
font-size: 12px;
color: #aaaaaa;
}
.fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_price ins .amount {
color: #242424;
text-decoration: none;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results, .header-layout7 .fm-search-form.ajax_search .fm-search-results, .header-layout8 .fm-search-form.ajax_search .fm-search-results, .header-layout9 .fm-search-form.ajax_search .fm-search-results, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results {
width: 375px;
height: auto;
min-width: 320px;
max-width: 100vw;
background-color: #ffffff;
top: 43px !important;
border-top: 1px solid #e4e4e4;
left: auto !important;
right: -5px;
padding: 20px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset {
display: flex;
flex-direction: column;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item {
flex: 0 0 100%;
display: flex;
padding: 0;
margin-bottom: 20px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a {
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img {
width: 68px;
flex: 0 0 68px;
max-width: 68px;
height: auto;
margin: 0 15px 0 0;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info {
font-size: 14px;
font-weight: 400;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title {
line-height: 16px;
margin-bottom: 8px;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount {
font-size: 15px;
font-weight: 400;
}
.search_box.form .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .header-layout7 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .header-layout8 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .header-layout9 .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child, .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child {
margin-bottom: 0;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results {
width: 360px;
min-width: 320px;
max-width: 100vw;
background-color: #ffffff;
top: 43px !important;
border-top: 1px solid #e4e4e4;
left: auto !important;
right: -5px;
padding: 20px;
height: 380px;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset {
display: flex;
flex-direction: column;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item {
flex: 0 0 100%;
display: flex;
padding: 0;
margin-bottom: 20px;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a {
display: flex;
flex-direction: row;
width: 100%;
align-items: center;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a img {
width: 68px;
flex: 0 0 68px;
max-width: 68px;
height: auto;
margin: 0 15px 0 0;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_info {
font-size: 14px;
font-weight: 400;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title {
line-height: 16px;
margin-bottom: 8px;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item > a .amount {
font-size: 15px;
font-weight: 400;
}
.vertical-header .fm-search-form.ajax_search .fm-search-results .fm-dataset .search-result-item:last-child {
margin-bottom: 0;
}
#fm-search-modal .modal-header button.close {
margin-top: 0;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
fill: #777777;
width: 25px;
height: 25px;
}
#fm-search-modal .modal-header button.close:hover svg.fm-icon {
fill: #242424;
}
#fm-search-modal .modal-header .modal-title {
font-size: 15px;
font-weight: 500;
}
#fm-search-modal .search_form_content {
padding: 10px 35px;
}
#fm-search-modal .search_form_content .fm-search-form {
height: 50px;
width: 100%;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input {
border-width: 0 0 2px 0;
border-color: #aaa;
font-size: 16px;
padding: 10px;
line-height: 30px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input:focus {
border-color: #242424;
color: #242424;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] {
position: absolute;
right: 0;
bottom: 0;
background: none;
padding-right: 0;
color: #242424;
border: none;
font-size: 0;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
fill: #555;
width: 20px;
height: 20px;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon:hover {
fill: #242424;
}
#fm-search-modal .search_form_content .fm-search-form.ajax_search > .twitter-typeahead {
width: 100%;
}
#search-canvas {
height: 100%;
}
#search-canvas .offcanvas-content {
display: flex;
flex-direction: column;
align-items: center;
}
#search-canvas .offcanvas-content .js-offcanvas-close {
position: static;
margin-bottom: 20px;
}
#search-canvas .offcanvas-content .js-offcanvas-close svg.fm-icon {
fill: #777777;
width: 25px;
height: 25px;
}
#search-canvas .offcanvas-content .js-offcanvas-close:hover svg.fm-icon {
fill: #242424;
}
#search-canvas .offcanvas-content > h2 {
font-size: 15px;
font-weight: 500;
margin-bottom: 20px;
}
#search-canvas .offcanvas-content .search_form_wrapper {
width: 100%;
}
#search-canvas .offcanvas-content .search_form_content {
width: 100%;
padding: 0 5%;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form {
height: 50px;
width: 100%;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .search_text_input {
border-width: 0 0 2px 0;
border-color: #aaa;
font-size: 16px;
padding: 10px 0;
line-height: 30px;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .search_text_input:focus {
border-color: #242424;
color: #242424;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] {
position: absolute;
right: 0;
bottom: 0;
background: none;
color: #242424;
padding-right: 0;
width: 40px;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
fill: #555;
width: 20px;
height: 20px;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form button[type=submit] svg.fm-icon:hover {
fill: #242424;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .btn_clear_text.show {
display: flex;
position: absolute;
z-index: 5;
left: auto;
width: 30px;
right: 40px;
bottom: 0;
text-align: center;
justify-content: center;
}
#search-canvas .offcanvas-content .search_form_content .fm-search-form .btn_clear_text.show svg {
width: 13px;
height: 13px;
}
#fm-account-modal.show .account-modal .modal-content {
background: none;
}
#fm-account-modal.show .account-modal .modal-content .cenos-close-btn {
padding: 0;
margin-bottom: 20px;
}
#fm-account-modal.show .account-modal .modal-content .cenos-close-btn svg.fm-icon {
width: 22px;
height: 22px;
fill: #ffffff;
}
#fm-account-modal.show .account-modal .modal-content .modal-body {
background: #ffffff;
padding: 25px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs {
border: none;
padding: 0;
margin-bottom: 20px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item {
border: none;
padding: 0;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link {
font-size: 24px;
color: #a9a9a9;
font-weight: bold;
border: none;
padding: 0 30px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link.active {
color: #242424;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane > h2 {
display: none;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form {
font-size: 13px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-form-row {
margin: 0 0 15px 0;
list-style-position: inside;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form input {
font-size: 13px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-button.button {
width: 100%;
font-size: 13px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-LostPassword.lost_password {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-LostPassword.lost_password label {
font-size: 13px;
font-weight: 500;
color: #242424;
}
#yith-quick-view-modal .yith-wcqv-main {
box-shadow: none;
background: transparent;
padding-top: 50px;
overflow-y: unset !important;
}
#yith-quick-view-modal .yith-wcqv-main .yith-wcqv-head #yith-quick-view-close {
position: absolute;
left: 50%;
top: 0;
margin-left: -20px;
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
font-size: 22px;
color: #ffffff;
}
#yith-quick-view-modal .yith-wcqv-main .yith-wcqv-head #yith-quick-view-close svg.fm-icon {
fill: #ffffff;
width: 22px;
height: 22px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content {
background: #ffffff;
overflow-y: scroll;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .woocommerce-badge, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .woocommerce-breadcrumb {
display: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .woocommerce-product-gallery {
margin-bottom: 0;
padding: 20px;
width: 50%;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
top: 25px;
right: 25px;
background: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:hover {
background: #ffffff;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary {
width: 50%;
margin-bottom: 0;
padding: 20px 20px 20px 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary h1.product_title {
font-size: 24px;
line-height: 30px;
font-weight: 500;
color: #242424;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary h1.product_title + .woocommerce-product-rating {
margin-top: -10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .out-of-stock {
font-size: 20px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-rating {
display: flex;
align-items: center;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-rating .star-rating {
letter-spacing: 5px;
font-size: 10px;
color: #242424;
margin: 0 7px 0 0;
width: 73px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-rating a.woocommerce-review-link {
font-size: 13px;
color: #777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .price {
font-size: 28px;
color: #555555;
margin-top: 1rem;
margin-bottom: 1.5rem;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .price del {
color: #aaa;
font-size: 16px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .price ins {
color: #ec1d25;
font-size: inherit;
font-weight: inherit;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-details__short-description {
font-size: 14px;
line-height: 24px;
color: #555555;
margin-bottom: 1rem;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-details__short-description p {
margin-bottom: 8px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-details__short-description ul {
padding-left: 0;
list-style: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-details__short-description ul li {
position: relative;
line-height: 24px;
padding-left: 16px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-details__short-description ul li::before {
content: "";
width: 8px;
height: 8px;
background: #ddd;
border-radius: 50%;
display: inline-block;
position: absolute;
top: 8px;
left: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-details__short-description ul li + li {
margin-top: 6px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart {
margin-bottom: 1rem;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .quantity {
border: 1px solid #dcdcdc;
min-height: 50px;
min-width: 150px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
position: relative;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .quantity .quantity-group-buttons {
border: none;
display: flex;
flex-direction: column;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .quantity .quantity-group-buttons > a {
position: absolute;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .quantity .quantity-group-buttons > a.quantity-plus {
right: 0;
top: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .quantity .quantity-group-buttons > a.quantity-minus {
left: 0;
top: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .quantity .input-text {
height: 50px;
border: none;
display: flex;
min-height: 100%;
width: 100%;
justify-content: center;
align-items: center;
font-size: 20px;
color: #000;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .quantity.hidden {
border: none;
height: 0;
min-height: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button {
display: flex;
align-items: center;
justify-content: center;
line-height: 15px;
margin: 0 0 10px 0;
background: #FFF;
color: #242424;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
height: 50px;
padding: 0;
border: 1px solid #cccccc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
width: 100%;
transition: border-color 0.3s linear 0s;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon {
width: 15px;
height: 15px;
margin-right: 6px;
fill: #242424;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover {
border-color: #242424;
background: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
fill: #ec1d25;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .single_add_to_cart_button, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .yith-wcwl-add-to-wishlist, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart .tinv-wraper {
flex: 0 0 calc(50% - 5px);
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart button.single_add_to_cart_button {
background: #242424;
color: #ffffff;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
height: 50px;
padding: 0;
margin: 0 0 10px 0;
transition: background-color 0.3s linear 0s;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart button.single_add_to_cart_button svg.fm-icon {
width: 15px;
height: 15px;
margin-right: 6px;
fill: #ffffff;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart button.single_add_to_cart_button + .yith-wcwl-add-to-wishlist, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart button.single_add_to_cart_button + .tinv-wraper {
margin-left: 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations {
margin-bottom: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations tr {
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations tr td.label {
text-transform: capitalize;
color: #777;
font-size: 13px;
font-weight: 400;
line-height: 1rem;
padding: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations tr td.label label {
margin-bottom: 0;
font-weight: 500;
color: #242424;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations tr:last-child {
margin-bottom: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations select {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon_single_product.svg);
background-position: right 8px top 50%;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .select2-container--default {
height: 50px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
height: 50px;
line-height: 50px;
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
color: #777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow {
height: 100%;
width: 28px;
background-position: left center;
background-size: auto;
background-repeat: no-repeat;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon_single_product.svg);
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow > b {
display: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item {
width: 36px;
height: 36px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item .variable-item-span-color {
border-radius: 50%;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item .variable-item-span-color:after {
box-shadow: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item {
width: 36px;
height: 36px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item > img {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
width: auto;
height: 36px;
padding: 0 15px;
color: #777;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item span {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item:hover {
color: #242424;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item {
width: auto;
height: auto;
display: flex;
align-items: center;
margin-right: 8px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item > * {
margin: 0 3px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item) {
box-shadow: 0 0 0 1px #dcdcdc !important;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item):hover, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item).selected {
box-shadow: 0 0 0 1px #242424 !important;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper.radio-variable-wrapper {
display: flex;
align-items: center;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .reset_variations {
display: block;
margin-top: 8px;
color: #ec1d25;
font-weight: 400;
font-size: 14px;
text-transform: capitalize;
position: relative;
padding-left: 13px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .reset_variations::before, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .reset_variations::after {
display: flex;
content: "";
width: 1px;
height: 13px;
background: #ec1d25;
position: absolute;
left: 4px;
top: 50%;
margin-top: -7px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .reset_variations::before {
transform: rotate(45deg);
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .reset_variations::after {
transform: rotate(-45deg);
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td {
padding-bottom: 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button {
display: flex;
align-items: center;
justify-content: center;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
background: #777;
color: #ffffff;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
height: 50px;
padding: 0 30px;
min-width: 150px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple svg.fm-icon {
width: 15px;
height: 15px;
margin-right: 6px;
fill: #ffffff;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item .woocommerce-grouped-product-list-item__label a {
font-weight: 500;
color: #242424;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta {
color: #242424;
font-size: 13px;
font-weight: 500;
text-transform: capitalize;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta > span, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .sku_wrapper, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .posted_in {
display: block;
margin-bottom: 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .posted_in a, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .tagged_as a {
color: #777;
font-weight: 400;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .posted_in a:hover, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .tagged_as a:hover {
color: #242424;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .sku_wrapper span {
font-weight: 400;
color: #777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share .socials-sharing {
margin-bottom: 0;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share .socials-sharing > li {
padding: 0 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share .socials-sharing > li a svg {
fill: #777;
transition: fill 0.25s linear 0s;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share .socials-sharing > li a:hover svg {
fill: #242424;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share > label {
margin-bottom: 0;
margin-right: 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share > label svg {
display: none;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share > label span {
font-size: 13px;
font-weight: 500;
color: #242424;
text-transform: capitalize;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share > label span:after {
content: ":";
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-simple .summary form.cart {
flex-wrap: wrap;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-simple .summary form.cart .quantity {
width: 100%;
flex: 0 0 100%;
margin-bottom: 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-simple .summary form.cart .single_add_to_cart_button, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-simple .summary form.cart .tinv-wraper {
flex: 0 0 calc(50% - 5px);
width: calc(50% - 5px);
display: inline-block;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-simple .summary form.cart .single_add_to_cart_button {
margin-right: 10px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-simple .summary form.cart .tinv-wraper {
display: flex;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
display: flex;
flex-wrap: wrap;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
width: 100%;
flex: 0 0 100%;
margin: 0 0 10px;
display: flex;
align-items: center;
justify-content: center;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-variable .summary form.cart .single_variation_wrap .woocommerce-variation-price {
margin-bottom: 15px;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-grouped .summary form.cart.grouped_form {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-grouped .summary form.cart.grouped_form .group_table {
flex: 0 0 100%;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product.product-type-grouped .summary form.cart.grouped_form .group_table .out-of-stock {
margin-bottom: 0;
font-size: 16px;
}
.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
opacity: 1;
}
.related-posts .swiper-pagination.swiper-pagination-bullets {
bottom: 0;
}
.related-posts .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);
margin: 0 10px;
}
.related-posts .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .related-posts .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.06);
background: #e36c02;
} .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button > span {
display: none;
}
.fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button:focus {
outline: none;
}
.fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
opacity: 1;
}
.fmtpl-dot-style-rectangle .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 3px;
width: 30px;
height: 4px;
background: #ffffff;
border: 1px solid #dddddd;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
opacity: 1;
}
.fmtpl-dot-style-rectangle .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-rectangle .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background-color: #242424;
border-color: #242424;
}
.fmtpl-dot-style-default .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
width: 10px;
height: 10px;
background: #ffffff;
border: 1px solid #dddddd;
opacity: 1;
}
.fmtpl-dot-style-default .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-default .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background-color: #242424;
border-color: #242424;
}
.fmtpl-dot-style-circle .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);
margin: 0 10px;
}
.fmtpl-dot-style-circle .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-circle .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.06);
}
.elementor-pagination-type-progressbar .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar {
height: 2px;
position: static;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #dddddd;
}
.elementor-pagination-type-progressbar .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar > .swiper-pagination-progressbar-fill {
background-color: #242424;
}
.elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
transition: all 0.25s linear 0s;
}
.elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button > span {
display: none;
}
.elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
opacity: 1;
}
.fmtpl-dot-style-rectangle .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 3px;
width: 30px;
height: 4px;
background: #ffffff;
border: 1px solid #dddddd;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
opacity: 1;
}
.fmtpl-dot-style-rectangle .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-rectangle .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background-color: #242424;
border-color: #242424;
}
.fmtpl-dot-style-default .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
width: 10px;
height: 10px;
background: #ffffff;
border: 1px solid #dddddd;
opacity: 1;
}
.fmtpl-dot-style-default .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-default .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background-color: #242424;
border-color: #242424;
}
.fmtpl-dot-style-circle .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);
}
.fmtpl-dot-style-circle .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-circle .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.06);
}
.elementor-pagination-type-progressbar .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar {
height: 2px;
position: static;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #dddddd;
transform: translateY(-20px);
}
.elementor-pagination-type-progressbar .elementor-element .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar > .swiper-pagination-progressbar-fill {
background-color: #242424;
}
.elementor-element .fmtpl-button-default {
transition: background 0.25s linear 0s, color 0.25s linear 0s, border 0.25s linear 0s;
}
.elementor-element .fmtpl-button-default .fmtpl-btn-icon {
display: flex;
align-items: center;
}
.elementor-element .fmtpl-button-default .fmtpl-btn-icon > svg {
fill: inherit;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button > span {
display: none;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
opacity: 1;
}
.fmtpl-dot-style-rectangle .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 3px;
width: 30px;
height: 4px;
background: #ffffff;
border: 1px solid #dddddd;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
opacity: 1;
}
.fmtpl-dot-style-rectangle .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-rectangle .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background-color: #242424;
border-color: #242424;
}
.fmtpl-dot-style-default .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
width: 10px;
height: 10px;
background: #ffffff;
border: 1px solid #dddddd;
opacity: 1;
}
.fmtpl-dot-style-default .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-default .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background-color: #242424;
border-color: #242424;
}
.fmtpl-dot-style-circle .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);
}
.fmtpl-dot-style-circle .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .fmtpl-dot-style-circle .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
box-shadow: 0 0 0 7px rgba(0, 0, 0, 0.06);
}
.elementor-pagination-type-progressbar .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar {
height: 2px;
position: static;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #dddddd;
transform: translateY(-20px);
}
.elementor-pagination-type-progressbar .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-progressbar > .swiper-pagination-progressbar-fill {
background-color: #242424;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-default { }
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-default .elementor-swiper-button {
visibility: hidden;
opacity: 0;
z-index: 3;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-default:hover .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 { }
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper {
padding-left: 20px;
padding-right: 20px;
margin-left: -20px;
margin-right: -20px;
padding-bottom: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
visibility: hidden;
opacity: 0;
z-index: 3;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button-prev {
left: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button-next {
right: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-slide:not(.swiper-slide-visible) {
transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-slide.swiper-slide-visible {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::after, .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::before {
width: 20px;
height: 100%;
content: "";
background: #FFF;
position: absolute;
z-index: 2;
top: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::before {
left: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::after {
right: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper ul.swiper-wrapper {
z-index: 1;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout1:hover .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 { }
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper {
padding-left: 50px;
padding-right: 50px;
margin-left: -50px;
margin-right: -50px;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button {
z-index: 3;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button-prev {
left: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .elementor-swiper-button-next {
right: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-slide:not(.swiper-slide-visible) {
transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper .swiper-slide.swiper-slide-visible {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::after, .elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::before {
width: 50px;
height: 100%;
content: "";
background: #FFF;
position: absolute;
z-index: 2;
top: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::before {
left: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper::after {
right: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout2 .fmtpl-elementor-swiper .fmtpl-elementor-main-swiper ul.swiper-wrapper {
z-index: 1;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout3 { }
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout3 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout3 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-box-heading {
width: 100%;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout3 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper {
display: flex;
align-items: flex-start;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout3 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button {
position: static;
transform: translateY(0);
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout3 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button:last-child {
margin-left: 6px;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 { }
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
padding-right: 30px;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper {
display: flex;
align-items: flex-start;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button {
position: static;
margin: 0;
transform: translateY(0);
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button.elementor-swiper-button-next {
margin-left: 6px;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .swiper-pagination.swiper-pagination-bullets {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .swiper-wrapper .swiper-slide:not(.swiper-slide-visible) {
transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .swiper-wrapper .swiper-slide.swiper-slide-visible {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-banner .fmtpl-banner {
background-position: center center;
}
.elementor-widget-fmtpl-banner .fmtpl-banner.default .fmtpl-banner-content .fmtpl-banner-button {
transition: background 0.25s linear 0s, color 0.25s linear 0s, border 0.25s linear 0s;
}
.elementor-widget-fmtpl-banner .fmtpl-banner.cenos_banner_simple_01 .fmtpl-banner-content .fmtpl-banner-title > span {
padding-left: 12px;
padding-right: 12px;
-webkit-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
-moz-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
-ms-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
-o-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
}
.elementor-widget-fmtpl-banner .fmtpl-banner.cenos_banner_simple_01:hover .fmtpl-banner-content .fmtpl-banner-title > span {
background-color: #242424;
color: #ffffff;
}
.elementor-widget-fmtpl-banner .fmtpl-banner.cenos_banner_parallax .fmtpl-banner-background {
background-attachment: fixed;
}
.elementor-widget-fmtpl-banner .fmtpl-banner.cenos_banner_parallax .fmtpl-banner-content .fmtpl-banner-title > span {
padding-left: 12px;
padding-right: 12px;
-webkit-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
-moz-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
-ms-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
-o-transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
transition: background-color ease-in-out 0.35s, color ease-in-out 0.35s;
}
.elementor-widget-fmtpl-banner .fmtpl-banner.cenos_banner_parallax:hover .fmtpl-banner-content .fmtpl-banner-title > span {
background-color: #ffffff;
color: #242424;
}
.elementor-widget-fmtpl-banner.show_hover .fmtpl-banner.cenos_banner_simple_01 .fmtpl-banner-content .fmtpl-banner-title > span {
background-color: #242424;
color: #ffffff;
}
.elementor-widget-fmtpl-banner.show_hover .fmtpl-banner.cenos_banner_simple_01 .fmtpl-banner-content .fmtpl-banner-title > span > b {
font-weight: bold;
}
.elementor-widget-fmtpl-banner.show_hover .fmtpl-banner.cenos_banner_parallax .fmtpl-banner-background.zoom {
transform: scale(1);
}
.elementor-widget-fmtpl-banner.show_hover .fmtpl-banner.cenos_banner_parallax .fmtpl-banner-content .fmtpl-banner-title > span {
background-color: #ffffff;
color: #242424;
}
.elementor-widget-fmtpl-banner.show_hover .fmtpl-banner.cenos_banner_parallax .fmtpl-banner-content .fmtpl-banner-title > span > b {
font-weight: bold;
}
.elementor-widget-cenos-advance-banner .cenos-advance-banner.default .cenos-advance-banner-title span {
display: inline-block;
margin-bottom: 1px;
padding: 3px 10px;
transition: background-color 0.3s linear 0s, color 0.3s linear 0s;
}
.elementor-widget-cenos-advance-banner .cenos-advance-banner.default:hover .cenos-advance-banner-title {
color: #ffffff;
}
.elementor-widget-cenos-advance-banner .cenos-advance-banner.default:hover .cenos-advance-banner-title span {
background: #242424;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner .fmtpl-banner-button {
display: none;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content {
position: relative;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content .fmtpl-banner-button {
display: flex;
align-items: center;
justify-content: flex-start;
visibility: hidden;
opacity: 0;
z-index: 1;
font-size: 12px;
font-weight: 700;
text-transform: none;
color: #242424;
transition: all 0.2s linear 0s;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content .fmtpl-banner-button .fmtpl-btn-icon svg {
fill: #242424;
width: 15px;
height: 15px;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content .fmtpl-banner-button:hover {
color: #e36c02;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content .fmtpl-banner-button:hover .fmtpl-btn-icon svg {
fill: #e36c02;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content .fmtpl-products-count {
transition: all 0.2s linear 0s;
z-index: 2;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content:hover .fmtpl-banner-button {
transform: translateY(-100%);
visibility: visible;
opacity: 1;
z-index: 3;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content:hover .fmtpl-products-count {
transform: translateY(-15px);
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout1 .fmtpl-category-banner-content {
display: flex;
flex-direction: column;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout1 .fmtpl-category-banner-content .fmtpl-products-count {
order: -1;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1 {
display: flex;
flex-direction: column;
align-items: center;
height: max-content !important;
position: relative;
overflow: visible;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1 .fmtpl-category-banner-background {
display: none;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1 .fmtpl-category-banner-box-img {
z-index: 2;
position: static;
opacity: 1;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1 .fmtpl-category-banner-content {
position: relative;
z-index: 2;
flex: 0 0 100%;
width: 100%;
display: flex;
flex-direction: column-reverse;
align-items: center;
padding: 15px 0;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1 .fmtpl-category-banner-content .fmtpl-products-count {
position: absolute;
left: 0;
top: 0;
opacity: 0;
visibility: hidden;
width: 100%;
text-align: center;
display: flex;
justify-content: center;
align-items: flex-end;
height: 38px;
background: #FFF;
line-height: 10px;
text-transform: uppercase;
transition: top 0.25s linear 0s, opacity 0.25s linear 0s, visibility 0.25s linear 0s;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1:before {
content: "";
position: absolute;
left: 0;
top: 0;
z-index: 1;
width: 100%;
height: 100%;
background-color: #ffffff;
box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
opacity: 0;
visibility: hidden;
transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1:hover .fmtpl-category-banner-content .fmtpl-products-count {
top: -30px;
opacity: 1;
visibility: visible;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside1:hover:before {
left: -10px;
top: -10px;
width: calc(100% + 20px);
height: calc(100% + 20px);
opacity: 1;
visibility: visible;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside2 {
display: flex;
flex-direction: column;
align-items: center;
height: max-content !important;
position: relative;
overflow: visible;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside2 .fmtpl-category-banner-background {
display: none;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside2 .fmtpl-category-banner-box-img {
position: static;
opacity: 1;
visibility: visible;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside2 .fmtpl-category-banner-content {
position: relative;
flex: 0 0 100%;
width: 100%;
display: flex;
flex-direction: column;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 {
display: flex;
flex-direction: column;
align-items: center;
height: max-content !important;
position: relative;
overflow: visible;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-background {
display: none;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img {
z-index: 2;
position: static;
opacity: 1;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img > a {
display: block;
position: relative;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img > a::before {
content: "";
background: #e36c02;
opacity: 0;
width: 0;
height: 100%;
position: absolute;
left: 0;
top: 0;
z-index: 2;
transition: opacity 0.25s linear 0s, width 0.25s linear 0s;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img > a:after {
content: "+";
width: 60px;
height: 60px;
background: #000000;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 32px;
font-weight: 300;
position: absolute;
right: 15%;
bottom: 25%;
z-index: 3;
opacity: 0;
transition: opacity 0.25s linear 0s;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img > a img {
z-index: 1;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img > a:hover::before {
opacity: 0.65;
width: 100%;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img > a:hover::after {
opacity: 1;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-content {
position: relative;
z-index: 2;
flex: 0 0 100%;
width: 100%;
display: flex;
flex-direction: column-reverse;
align-items: flex-start;
}
.elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-default .fmtpl-tabs-wrapper .nav-tabs {
border-bottom: 1px solid #dcdcdc;
}
.elementor-widget-fmtpl-products-carousel .fmtpl-products.carousel.fmtpl-products-layout-cenos_layout1 .fmtpl-products-content {
position: absolute;
z-index: 10;
}
.elementor-widget-fmtpl-products-carousel .fmtpl-products.carousel.fmtpl-products-layout-cenos_layout1 .cenos-elementor-swiper {
z-index: 9;
width: 100%;
}
.elementor-widget-fmtpl-products-carousel .fmtpl-products.carousel.fmtpl-products-layout-cenos_layout1 .cenos-elementor-swiper .fmtpl-elementor-main-swiper {
display: flex;
}
.elementor-widget-fmtpl-products-carousel .fmtpl-products.carousel.fmtpl-products-layout-cenos_layout1 .cenos-elementor-swiper .fmtpl-elementor-main-swiper::before {
display: inline-block;
content: "";
width: 100%;
z-index: 2;
background: red;
flex: 0 0 20%;
max-width: 20%;
}
.elementor-widget-fmtpl-products-carousel .fmtpl-products.carousel.fmtpl-products-layout-cenos_layout1 .cenos-elementor-swiper .fmtpl-elementor-main-swiper ul.swiper-wrapper {
flex: 0 0 80%;
max-width: 80%;
z-index: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-default { }
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-default .swiper-wrapper {
z-index: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-default .elementor-swiper-button {
visibility: hidden;
opacity: 0;
z-index: 3;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-default:hover .fmtpl-elementor-main-swiper .elementor-swiper-button {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 { }
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper {
padding-left: 15px;
padding-right: 15px;
margin-left: -15px;
margin-right: -15px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper .elementor-swiper-button-prev {
left: 5px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper .elementor-swiper-button-next {
right: 5px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper ul.swiper-wrapper {
z-index: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper {
padding-left: 15px;
padding-right: 15px;
margin-left: -15px;
margin-right: -15px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .elementor-swiper-button {
z-index: 3;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .elementor-swiper-button-prev {
left: 5px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .elementor-swiper-button-next {
right: 5px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .swiper-slide:not(.swiper-slide-visible) {
transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .swiper-slide.swiper-slide-visible {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper ul.swiper-wrapper {
z-index: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .swiper-slide .elementor-fmtpl-image-carousel {
padding: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel {
display: flex;
flex-direction: column-reverse;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel > div {
width: 100%;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel .fmtpl-elementor_content {
display: flex;
flex-direction: column;
align-items: flex-start;
justify-content: center;
padding: 50px 30px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 3px;
width: 30px;
height: 4px;
background: none;
border: 1px solid #dddddd50;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:focus {
outline: none;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background-color: #ffffff;
border-color: #ffffff;
}
.elementor-widget-fmtpl-carousel-images.elementor-pagination-position-inside .fmtpl-elementor-main-swiper .swiper-pagination-bullets {
width: 100%;
bottom: 10px;
left: 0;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .newsletter-form-content {
display: inline-block;
width: 100%;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=email], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter .mc4wp-form .fm_newsletter_form button[type=submit] {
height: auto;
transition: background 0.25s linear 0s, color 0.25s linear 0s;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=email] {
transition: border-color 0.25s linear 0s;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=email]:focus {
border-color: #242424;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=email]::placeholder {
color: #777;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout1 { }
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout1 .mc4wp-form .fm_newsletter_form {
display: flex;
align-items: center;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout1 .mc4wp-form .fm_newsletter_form input[type=email] {
text-align: left;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout1 .mc4wp-form .fm_newsletter_form button[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout1 .mc4wp-form .fm_newsletter_form input[type=submit] {
flex: 0 0 auto;
justify-content: center;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout2 { }
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout2 .mc4wp-form .fm_newsletter_form {
display: flex;
flex-direction: column;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout2 .mc4wp-form .fm_newsletter_form input[type=email] {
width: 100%;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout2 .mc4wp-form .fm_newsletter_form button[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout2 .mc4wp-form .fm_newsletter_form input[type=submit] {
width: 100%;
justify-content: center;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout3 { }
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout3 .mc4wp-form .fm_newsletter_form {
display: flex;
flex-direction: column;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout3 .mc4wp-form .fm_newsletter_form input[type=email] {
width: 100%;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout3 .mc4wp-form .fm_newsletter_form button[type=submit], .elementor-widget-fmtpl-newsletter .fmtpl-newsletter.layout3 .mc4wp-form .fm_newsletter_form input[type=submit] {
flex: 0 0 auto;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.default .nav_menu_content ul.menu {
padding: 0;
margin: 0;
list-style: none;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal .nav_menu_content ul.menu {
padding: 0;
margin: 0;
list-style: none;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal .nav_menu_content ul.menu > li {
display: inline-block;
}
.elementor-widget-fmtpl-menu .fmtpl-menu.horizontal .nav_menu_content ul.menu > li + li {
margin-left: 20px;
}
.site-footer .elementor-widget-fmtpl-menu .fmtpl-menu.horizontal .nav_menu_content ul.menu > li + li {
margin-left: 35px;
}
.site-footer .elementor-widget-fmtpl-menu .fmtpl-menu.default .nav_menu_content ul.menu li .sub-menu {
display: none;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel a.fmtpl-post-readmore .fmtpl-btn-icon svg {
fill: inherit;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-elementor-main-swiper {
padding: 15px;
margin: -15px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item {
background-color: #ffffff;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content {
padding: 30px 20px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-carousel-box-title-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-heading-info {
flex: 0 0 calc(100% - 150px);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button {
position: static;
margin: 0;
transform: translateY(0);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-default .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button.elementor-swiper-button-next {
margin-left: 6px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-carousel-box-title-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-heading-info {
flex: 0 0 calc(100% - 150px);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button {
position: static;
margin: 0;
transform: translateY(0);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button.elementor-swiper-button-next {
margin-left: 6px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-elementor-main-swiper {
padding: 5px;
margin: -5px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item {
position: relative;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-category {
position: absolute;
top: 10px;
left: 10px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-category > a {
padding: 2px 8px 0 8px;
height: 25px;
line-height: 21px !important;
background: rgba(0, 0, 0, 0.2);
border-radius: 2px;
display: inline-block;
color: #ffffff;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_01 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content .author-link:not(:hover) {
color: inherit;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 {
background-color: inherit;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-carousel-box-title-wrapper {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-left: -5px;
margin-right: -5px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-box-heading {
flex: 0 0 calc(100% - 120px);
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button {
position: static;
margin: 0;
transform: translateY(0);
transition: background-color ease-in-out 0.25s, border ease-in-out 0.25s, color ease-in-out 0.25s;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper .elementor-swiper-button.elementor-swiper-button-next {
margin-left: 6px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper {
padding: 15px;
margin: -15px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item {
position: relative;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-thumb {
display: inline-block;
z-index: 2;
position: relative;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content {
z-index: 2;
display: inline-block;
width: 100%;
padding: 15px;
position: relative;
background: #ffffff;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-meta-wrap {
display: none;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb {
box-shadow: none;
position: relative;
margin-bottom: 20px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-item-background {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-position: left top;
background-size: cover;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-item-background::before {
content: "";
display: inline-block;
width: 100%;
height: 100%;
background: #39343c;
background: linear-gradient(0deg, #39343c 0%, rgba(173, 0, 255, 0.0001) 100%);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-thumb {
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-content {
position: absolute;
bottom: 0;
left: 15px;
display: inline-block;
width: calc(100% - 30px);
background: transparent;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-content *, .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-content a, .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-content span, .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-content p {
color: #ffffff;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb .fmtpl-post-content svg {
fill: #ffffff;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item:not(.background_thumb) + .fmtpl-post-carousel-item {
margin-left: 20px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item:not(.background_thumb)::before {
display: inline-block;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
content: "";
background: #FFF;
z-index: 1;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-swiper, .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper, .elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-carousel-box-title-wrapper {
background-color: inherit;
}
.elementor-widget-fmtpl-post-list ul.fmtpl-post-list:not(.fmtpl-post-list-inline) li.fmtpl-post-list-item {
display: inline-block;
width: 100%;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper {
padding-left: 50%;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper {
position: absolute;
width: 50%;
left: 0;
top: 0;
bottom: 0;
padding-bottom: inherit;
z-index: 2;
background: #ffffff;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .highlight {
padding: 1px 10px 8px;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .swiper-pagination-bullets {
bottom: 0;
left: 100%;
width: max-content;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper .swiper-slide:not(.swiper-slide-visible) {
transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper .swiper-slide.swiper-slide-visible {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper .fmtpl-reviews-author {
display: flex;
align-items: center;
}
.site-footer .elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown {
text-align: right;
}
.site-footer .elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown ul {
right: 0;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown .current .fmtpl-dropdow-icon > svg {
width: 8px;
height: 8px;
margin-left: 8px;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul {
opacity: 0;
visibility: hidden;
list-style: none;
padding: 0;
margin: 0;
position: absolute;
bottom: 0;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-moz-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-ms-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-o-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul li {
min-width: 68px;
padding: 8px 0;
background: #ffffff;
text-align: center;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul li:hover {
background: #f4f4f4;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown > ul li a {
display: inline-block;
width: 100%;
color: #242424;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown .lang_flag {
margin-right: 6px;
}
.elementor-widget-fmtpl-language .fmtpl-language .language.fmtpl-dropdown .dropdown:hover > ul {
opacity: 1;
visibility: visible;
}
.site-footer .elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown {
text-align: right;
}
.site-footer .elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown ul {
right: 0;
}
.elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown .current .fmtpl-dropdow-icon > svg {
width: 8px;
height: 8px;
margin-left: 8px;
}
.elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown > ul {
opacity: 0;
visibility: hidden;
list-style: none;
padding: 0;
margin: 0;
position: absolute;
bottom: 0;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-moz-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-ms-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
-o-transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s;
}
.elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown > ul li {
min-width: 68px;
padding: 8px 0;
background: #ffffff;
text-align: center;
}
.elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown > ul li:hover {
background: #f4f4f4;
}
.elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown > ul li a {
display: inline-block;
width: 100%;
color: #242424;
}
.elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown .lang_flag {
margin-right: 6px;
}
.elementor-widget-fmtpl-currency .fmtpl-currency .currency.fmtpl-dropdown .dropdown:hover > ul {
opacity: 1;
visibility: visible;
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection {
height: 25px;
line-height: 25px;
border: none !important;
padding: 0 20px 0 0;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: #242424;
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection > .select2-selection__arrow {
background-position: left 0 top 50%;
background-size: auto 8px;
background-repeat: no-repeat;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon.svg);
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection > .select2-selection__arrow .presentation {
display: none;
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher.color_dark .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection {
color: #242424;
}
.site-footer .elementor-widget-wp-widget-woocs_selector.currency-switcher.color_light .widget-woocommerce-currency-switcher form.woocommerce-currency-switcher-form .select2-selection {
color: #ffffff;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container {
display: flex;
flex-wrap: wrap;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field {
margin-left: 0;
width: 100%;
flex: 100%;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea {
color: #777;
line-height: inherit;
border: 1px solid #dcdcdc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
width: 100%;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input::placeholder, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea::placeholder {
color: #aaaaaa;
font-size: 14px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input:focus, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea:focus {
border-color: #e36c02;
color: #242424;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=email], .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input[type=text] {
height: 50px;
padding: 0 15px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea {
padding: 15px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half {
flex: calc(50% - 10px);
width: calc(50% - 10px);
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half + .wpforms-one-half {
margin-left: 20px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit {
width: 150px;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
color: #FFF;
background: #242424;
border: none;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item {
position: relative;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .image-box {
position: relative;
overflow: hidden;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .image-box a:after {
content: "";
display: block;
position: absolute;
top: 50%;
bottom: 50%;
right: 50%;
left: 50%;
z-index: 1;
background-color: rgba(0, 0, 0, 0.5);
transition: top 0.5s ease-in-out, bottom 0.5s ease-in-out, left 0.5s ease-in-out, right 0.5s ease-in-out, opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
transform: rotate(45deg);
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .image-box img {
width: 100%;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .img-overlay {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 0;
left: 0;
color: #fff;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
z-index: 2;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .img-overlay > span {
display: flex;
align-items: center;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .img-overlay > span.ins-like {
display: none;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .img-overlay > span.ins-icon svg {
width: 25px;
height: 25px;
margin: 0;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item .img-overlay svg.fill {
fill: #ffffff;
margin-right: 5px;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item:hover .image-box a:after {
top: -25%;
bottom: -25%;
left: -25%;
right: -25%;
opacity: 1;
visibility: visible;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram .instagram-feed-content .fmins-item:hover .img-overlay {
opacity: 1;
visibility: visible;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout1 .instagram-feed-content {
display: flex;
flex-wrap: wrap;
grid-gap: 10px;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout1 .instagram-feed-content .fmins-item {
width: calc((100% - 20px)/3);
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout1 .instagram-feed-content .fmins-item:nth-child(3n) {
margin-right: 0;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout1 .instagram-feed-content .fmins-item:nth-child(3n+1) {
clear: both;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout2 .instagram-feed-content {
display: flex;
flex-wrap: wrap;
grid-gap: 10px;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout2 .instagram-feed-content .fmins-item {
width: calc((100% - 40px)/5);
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout2 .instagram-feed-content .fmins-item:nth-child(5n) {
margin-right: 0;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout2 .instagram-feed-content .fmins-item:nth-child(5n+1) {
clear: both;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout3 .instagram-feed-content {
display: flex;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout3 .instagram-feed-content .fmins-item {
margin: 0;
}
.elementor-widget-fmtpl-writer-banner .fmtpl-writer-banner-content {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.elementor-widget-fmtpl-writer-banner .fmtpl-writer-banner-content .fmtpl-widget-title, .elementor-widget-fmtpl-writer-banner .fmtpl-writer-banner-content .banner-desc {
flex: 0 0 100%;
}
.elementor-widget-fmtpl-writer-banner .fmtpl-writer-banner-content .txt-rotate {
margin: 0 5px;
} .cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default ul.nav-tabs {
border-bottom-color: #dddddd;
display: flex;
flex-direction: column;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default ul.nav-tabs li.nav-item {
flex: 1;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default ul.nav-tabs li.nav-item a.fmtpl-tab-link {
background: none;
display: flex;
align-items: center;
justify-content: flex-start;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content {
padding: 0 15px;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content .tab-pane h2, .cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content .tab-pane h3, .cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content .tab-pane h4, .cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content .tab-pane h5, .cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content .tab-pane p {
margin-bottom: 25px !important;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content .tab-pane li {
margin-top: 15px;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content .tab-pane li::marker {
color: #242424;
font-weight: 500;
}
.fmcl_about_team .elementor-widget-wrap {
opacity: 0;
visibility: hidden;
transition: visibility 0.25s linear 0s, opacity 0.25s linear 0s;
}
.fmcl_about_team:hover .elementor-widget-wrap {
opacity: 1;
visibility: visible;
}
.elementor-widget-fmtpl-button.fmc_effect_h11 a.fmtpl-button-button {
position: relative;
}
.elementor-widget-fmtpl-button.fmc_effect_h11 a.fmtpl-button-button::after {
content: "";
display: block;
position: absolute;
right: 0;
bottom: -2px;
width: 0;
height: 2px;
background-color: transparent;
transition: width 0.25s linear 0s;
}
.elementor-widget-fmtpl-button.fmc_effect_h11 a.fmtpl-button-button:hover::after {
background-color: #242424;
width: 100%;
left: 0;
}
.elementor-widget-button.fmc_effect_h11b a.elementor-button {
transition: all 0.35s linear 0s;
}
.elementor-widget-button.fmc_effect_h11b a.elementor-button .elementor-button-icon {
opacity: 0;
width: 0;
transition: opacity 0.35s linear 0s, width 0.35s linear 0s;
}
.elementor-widget-button.fmc_effect_h11b a.elementor-button:hover .elementor-button-icon {
opacity: 1;
width: auto;
}
section.footer_transparent {
position: fixed;
bottom: 0;
z-index: 1;
left: 0;
width: 100%;
}
.show_social_footer > .elementor-column-wrap > .elementor-widget-wrap {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.show_social_footer > .elementor-column-wrap > .elementor-widget-wrap > .elementor-element {
width: auto;
}
.show_social_footer .social_footer {
visibility: hidden;
opacity: 0;
-webkit-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
-moz-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
-ms-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
-o-transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
transition: opacity 0.25s linear 0s, visibility 0.25s linear 0s;
}
.show_social_footer:hover .social_footer {
visibility: visible;
opacity: 1;
}
.footer_transparent_section_box > .elementor-container > .elementor-row {
display: flex;
justify-content: space-between;
}
.footer_transparent_section_box > .elementor-container > .elementor-row > .elementor-element {
width: auto !important;
}
.footer_transparent_box > .elementor-column-wrap > .elementor-widget-wrap {
display: flex;
flex-direction: row;
}
.footer_transparent_box > .elementor-column-wrap > .elementor-widget-wrap > .elementor-element {
width: auto;
}
.langcu_box_footer > .elementor-column-wrap > .elementor-widget-wrap {
justify-content: center;
}
.langcu_box_footer > .elementor-column-wrap > .elementor-widget-wrap > .elementor-element {
width: 68px;
}
@media (min-width: 768px) { .show_social_footer > .elementor-column-wrap > .elementor-widget-wrap {
justify-content: center;
flex-direction: row;
}
.footer_transparent_section_box > .elementor-container > .elementor-row {
justify-content: flex-start;
}
.langcu_box_footer > .elementor-column-wrap > .elementor-widget-wrap {
justify-content: flex-end;
}
.elementor-widget-heading { }
.elementor-widget-heading.text_vertical .elementor-heading-title {
writing-mode: vertical-rl;
}
.elementor-widget-heading.left .elementor-widget-container {
display: flex;
justify-content: flex-start;
}
.elementor-widget-heading.right .elementor-widget-container {
display: flex;
justify-content: flex-end;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default ul.nav-tabs {
flex-direction: row;
}
.cenos_tab_special_01.elementor-widget-fmtpl-tabs .fmtpl-tabs-layout-default .tab-content {
padding: 15px 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 { }
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .swiper-slide .fmtpl-elementor_image {
opacity: 0.3;
transition: opacity 0.25s linear 0s;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .swiper-slide:hover .fmtpl-elementor_image {
opacity: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper {
padding-left: 20px;
padding-right: 20px;
margin-left: -20px;
margin-right: -20px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper .elementor-swiper-button {
visibility: hidden;
opacity: 0;
z-index: 3;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper .elementor-swiper-button-prev {
left: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper .elementor-swiper-button-next {
right: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper .swiper-slide:not(.swiper-slide-visible) {
transition: visibility 0.3s ease-in-out, opacity 0.3s ease-in-out;
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper .swiper-slide.swiper-slide-visible {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper::after, .elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper::before {
width: 20px;
height: 100%;
content: "";
background: #FFF;
position: absolute;
z-index: 2;
top: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper::before {
left: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper::after {
right: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper ul.swiper-wrapper {
z-index: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01:hover .fmtpl-elementor-main-swiper .elementor-swiper-button {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper {
padding-left: 15px;
padding-right: 15px;
margin-left: -13px;
margin-right: -13px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .swiper-slide .elementor-fmtpl-image-carousel {
padding: 35px;
transition: box-shadow 0.25s linear 0s;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper .swiper-slide:hover .elementor-fmtpl-image-carousel {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper::after, .elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper::before {
width: 50px;
height: 100%;
content: "";
background: #FFF;
position: absolute;
z-index: 2;
top: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper::before {
left: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper::after {
right: 0;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-carousel-box-title-wrapper {
margin-left: 0;
margin-right: 0;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content {
padding: 25px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-meta-wrap {
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
padding-top: 25px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item .fmtpl-post-content .fmtpl-post-meta-wrap::before {
display: inline-block;
content: "";
width: 30px;
height: 2px;
background: #cccccc;
position: absolute;
top: 0;
left: 0;
}
}
@media (min-width: 992px) {
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item.background_thumb {
margin-bottom: 0;
margin-right: 30px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-post-carousel-item:not(.background_thumb) + .fmtpl-post-carousel-item {
margin-left: 30px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel {
flex-direction: row-reverse;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel > div {
width: 50%;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel .fmtpl-elementor_content {
padding-left: 80px;
padding-right: 80px;
}
}
@media (min-width: 1025px) {
#fm-search-modal .modal-header button.close {
margin-top: 30px;
margin-bottom: 50px;
}
#fm-search-modal .modal-header button.close svg.fm-icon {
width: 30px;
height: 30px;
}
#fm-search-modal .search_form_content {
padding: 10px 60px;
}
#fm-search-modal .search_form_content .fm-search-form {
max-width: 880px;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input {
font-size: 24px;
text-align: center;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
width: 24px;
height: 24px;
}
#search-canvas .search_form_content .fm-search-form {
max-width: 880px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body {
padding: 50px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs {
margin-bottom: 35px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content ul.nav-tabs li.nav-item a.nav-link {
padding: 0 50px;
}
#fm-account-modal.show .account-modal .modal-content .modal-body .account_form_content .tab-content .tab-pane .woocommerce-form .woocommerce-form-row {
margin-bottom: 20px;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2 .fmtpl-category-banner-content {
transition: background-color 0.3s linear 0s;
border-radius: 2px;
padding: 15px 20px;
min-width: 150px;
position: relative;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2 .fmtpl-category-banner-content > * {
z-index: 2;
position: relative;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2 .fmtpl-category-banner-content:after {
display: inline-block;
width: 0;
height: 100%;
background-color: #141414;
content: "";
position: absolute;
left: 0;
top: 0;
z-index: 1;
transition: width 0.25s linear 0s;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2 .fmtpl-category-banner-title a,
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2 .fmtpl-products-count span,
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2 .banner-desc {
transition: color 0.3s linear 0s;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2:hover .fmtpl-category-banner-content .fmtpl-category-banner-title .title-content a.category-link,
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2:hover .fmtpl-category-banner-content .fmtpl-products-count > .products-count-title,
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2:hover .fmtpl-category-banner-content .fmtpl-products-count > .count-value,
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2:hover .fmtpl-category-banner-content .banner-desc {
color: #ffffff;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_layout2:hover .fmtpl-category-banner-content:after {
width: 100%;
}
}
@media (min-width: 1200px) {
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel .fmtpl-elementor_content {
padding: 0 100px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-carousel-item-title {
display: flex;
align-items: center;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-carousel-item-title::before {
width: 30px;
height: 5px;
background: #FFF;
display: inline-block;
content: "";
margin-right: 10px;
}
.elementor-widget-fmtpl-carousel-images.elementor-pagination-position-inside .fmtpl-elementor-main-swiper .swiper-pagination-bullets {
bottom: 25px;
left: 100px;
width: auto;
}
.elementor-widget-fmtpl-carousel-images.elementor-pagination-position-inside .fmtpl-elementor-main-swiper .swiper-pagination-bullets .swiper-pagination-bullet:first-child {
margin-left: 0;
}
}
@media (min-width: 1500px) {
.vertical-header .fm-search-form.ajax_search .fm-search-results {
height: 550px;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper {
padding-left: 25%;
padding-bottom: 30px;
margin-bottom: -30px;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper {
flex-direction: column;
position: absolute;
width: calc(25% - 30px);
padding-left: 30px;
left: 0;
top: 0;
bottom: 0;
padding-bottom: inherit;
z-index: 2;
background: #ffffff;
justify-content: center;
padding-right: 120px;
}
.elementor-widget-fmtpl-carousel-products .fmtpl-products.carousel.fmtpl-products-layout-layout4 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .swiper-pagination.swiper-pagination-bullets {
order: 9;
margin-top: 60px;
width: auto;
position: static;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper {
padding-left: 25%;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper {
z-index: 2;
position: absolute;
left: 0;
width: 25%;
height: 100%;
flex-direction: column;
justify-content: center;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-box-heading {
flex: unset;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-box-heading .fmtpl-carousel-box-title .highlight {
display: block;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper .fmtpl-carousel-navigation-wrapper {
justify-content: flex-start;
margin-top: 35px;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .swiper-wrapper {
width: 100%;
z-index: 1;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .swiper-wrapper .swiper-slide.swiper-slide-visible {
visibility: visible;
opacity: 1;
}
.elementor-widget-fmtpl-carousel-posts .fmtpl-post-list.carousel.fmtpl-post-layout-cenos_carousel_posts_02 .fmtpl-elementor-main-swiper .swiper-wrapper .swiper-slide:not(.swiper-slide-visible) {
visibility: hidden;
opacity: 0;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel .fmtpl-elementor_content {
padding-left: 150px;
padding-right: 150px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_02 .fmtpl-elementor-main-swiper {
padding-left: 40px;
padding-right: 40px;
margin-left: -40px;
margin-right: -40px;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_01 .fmtpl-elementor-main-swiper {
padding-left: 50px;
margin-left: -50px;
padding-right: 50px;
margin-right: -50px;
}
.elementor-widget-fmtpl-carousel-images.elementor-pagination-position-inside .fmtpl-elementor-main-swiper .swiper-pagination-bullets {
bottom: 50px;
left: 150px;
}
#fm-search-modal .modal-header button.close {
margin-top: 30px;
margin-bottom: 100px;
}
#fm-search-modal .search_form_content .fm-search-form {
max-width: 1140px;
height: 60px;
}
#fm-search-modal .search_form_content .fm-search-form .search_text_input {
font-size: 36px;
padding-bottom: 20px;
text-align: center;
}
#fm-search-modal .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
width: 30px;
height: 30px;
}
body .elementor section.elementor-element.desktop_w1720 {
width: 100vw;
left: 50%;
transform: translateX(-50%);
}
body .elementor section.elementor-element.desktop_w1720 > .elementor-container {
max-width: 1750px;
padding-left: 15px;
padding-right: 15px;
}
body .elementor section.elementor-element.desktop_w1820 {
width: 100vw;
left: 50%;
transform: translateX(-50%);
}
body .elementor section.elementor-element.desktop_w1820 > .elementor-container {
max-width: 1920px;
padding-left: 50px;
padding-right: 50px;
}
}
@media (max-width: 767px) {
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper {
padding-left: 0;
}
.elementor-widget-fmtpl-carousel-reviews .fmtpl-reviews-layout-cenos_01 .fmtpl-elementor-main-swiper .fmtpl-carousel-box-title-wrapper {
width: 100%;
position: static;
}
.elementor-widget-fmtpl-carousel-images .fmtpl-carousel-images.fmtpl-carousel-images-layout-cenos_carousel_image_03 .fmtpl-elementor-main-swiper .elementor-fmtpl-image-carousel .fmtpl-elementor_content {
padding: 30px 20px;
}
.elementor-widget-fmtpl-carousel-images.elementor-pagination-position-inside .fmtpl-elementor-main-swiper .swiper-pagination-bullets {
bottom: 25px;
left: 100px;
width: auto;
}
.elementor-widget-fmtpl-carousel-images.elementor-pagination-position-inside .fmtpl-elementor-main-swiper .swiper-pagination-bullets .swiper-pagination-bullet:first-child {
margin-left: 0;
}
.fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=email] {
height: 40px;
}
.fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=submit] {
height: 50px;
}
.fmtpl-newsletter.layout1 { }
.fmtpl-newsletter.layout1 .mc4wp-form .fm_newsletter_form input[type=email] {
height: 40px;
}
.fmtpl-newsletter.layout1 .mc4wp-form .fm_newsletter_form input[type=submit] {
width: 100px;
height: 40px;
}
.fmtpl-newsletter.layout2 { }
.fmtpl-newsletter.layout2 .mc4wp-form .fm_newsletter_form input[type=email] {
height: 40px;
}
.fmtpl-newsletter.layout2 .mc4wp-form .fm_newsletter_form input[type=submit] {
height: 40px;
}
.fmtpl-newsletter.layout3 { }
.fmtpl-newsletter.layout3 .mc4wp-form .fm_newsletter_form input[type=email] {
height: 40px;
}
.fmtpl-newsletter.layout3 .mc4wp-form .fm_newsletter_form input[type=submit] {
width: 100px;
height: 40px;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container {
display: flex;
flex-direction: column;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half {
flex: 100%;
max-width: 100%;
width: 100%;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field.wpforms-one-half + .wpforms-one-half {
margin-left: 0;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout1 .instagram-feed-content .fmins-item, .elementor-widget-fmtpl-instagram .fmtpl-instagram.layout2 .instagram-feed-content .fmins-item {
flex: 0 0 50%;
max-width: 50%;
width: 50%;
margin: 0;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout3 .instagram-feed-content {
flex-wrap: wrap;
}
.elementor-widget-fmtpl-instagram .fmtpl-instagram.layout3 .instagram-feed-content .fmins-item {
flex: 0 0 33.3333%;
max-width: 33.3333%;
}
}
@media (max-width: 575px) {
.elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-default .fmtpl-tabs-nav-wrap {
overflow-x: auto;
}
.elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-default .fmtpl-tabs-nav-wrap .nav-tabs {
flex-wrap: nowrap;
justify-content: flex-start;
}
.elementor-widget-fmtpl-products-tabs .fmtpl-products.fmtpl-products-tabs.fmtpl-products-tabs-layout-default .fmtpl-tabs-nav-wrap .nav-tabs a.fmtpl-tab-link {
width: max-content;
}
} .single-product #content .type-product .product-container .product-main { }
.single-product #content .type-product .product-container .product-main .product-gallery { }
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-badge {
display: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery {
margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
cursor: default;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img.zoomImg {
cursor: crosshair;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger::before {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/icon_popup_bg.svg);
background-repeat: no-repeat;
background-position: center center;
background-color: transparent;
background-size: 15px;
border: none;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__trigger::after {
display: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-thumbs li img {
opacity: 1;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper {
margin-top: 10px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next {
display: flex;
width: 40px;
height: 40px;
align-items: center;
justify-content: center;
top: 50%;
background-color: rgba(255, 255, 255, 0.9);
border: 1px solid #ccc;
margin: 0;
transform: translateY(-50%);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
transition: border-color 0.3s linear 0s, background-color 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev svg, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next svg {
fill: #aaaaaa;
transition: fill 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev:focus, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next:focus {
outline: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev:hover, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next:hover {
background-color: #ffffff;
border-color: #555555;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev:hover svg, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next:hover svg {
fill: #242424;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-prev {
left: 5px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper .cenos-next {
right: 5px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper.swiper-container-vertical li.swiper-slide img {
max-height: 100%;
width: auto;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next {
display: flex;
width: 40px;
height: 40px;
align-items: center;
justify-content: center;
left: 50%;
background-color: rgba(255, 255, 255, 0.9);
border: 1px solid #ccc;
margin: 0;
transform: translateX(-50%);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
transition: border-color 0.3s linear 0s, background-color 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev svg, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next svg {
fill: #aaaaaa;
transition: fill 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev:focus, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next:focus {
outline: none;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev:hover, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next:hover {
background-color: #ffffff;
border-color: #555555;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev:hover svg, .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next:hover svg {
fill: #242424;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-prev {
top: 10px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .cenos-next {
bottom: 10px;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper.swiper-container-vertical li.swiper-slide img {
max-height: 100%;
width: auto;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_grid2 .woocommerce-product-gallery__wrapper img {
cursor: crosshair;
}
.single-product #content .type-product .product-container .product-main .product-info.summary {
margin-bottom: 3rem;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-breadcrumb {
font-size: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-breadcrumb span:not(:last-child) {
font-size: 11px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-breadcrumb a:last-child {
color: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary h1.product_title {
font-size: 24px;
line-height: 30px;
font-weight: 500;
color: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary h1.product_title + .woocommerce-product-rating {
margin-top: -10px;
margin-bottom: 12px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .out-of-stock {
padding: 15px 35px;
width: auto;
display: inline-block;
border: 1px dashed #aaa;
border-radius: 2px;
font-size: 15px;
color: #868686;
height: 50px;
min-width: 200px;
line-height: 20px;
text-align: center;
margin-bottom: 30px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-rating {
display: flex;
align-items: center;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-rating .star-rating {
letter-spacing: 5px;
font-size: 10px;
color: #242424;
margin: 0 7px 0 0;
width: 73px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-rating a.woocommerce-review-link {
font-size: 13px;
color: #777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .price {
font-size: 28px;
color: #555555;
margin-top: 1rem;
margin-bottom: 1.5rem;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .price del {
color: #aaa;
font-size: 16px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .price ins {
color: #ec1d25;
font-size: inherit;
font-weight: inherit;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-details__short-description {
font-size: 14px;
line-height: 24px;
color: #555555;
margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-details__short-description p {
margin-bottom: 8px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-details__short-description ul {
padding-left: 0;
list-style: none;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-details__short-description ul li {
position: relative;
line-height: 24px;
padding-left: 16px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-details__short-description ul li::before {
content: "";
width: 8px;
height: 8px;
background: #ddd;
border-radius: 50%;
display: inline-block;
position: absolute;
top: 8px;
left: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-details__short-description ul li + li {
margin-top: 6px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart {
margin-bottom: 1rem;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity {
border: 1px solid #dcdcdc;
min-height: 50px;
min-width: 110px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
position: relative;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity .quantity-group-buttons {
border: none;
display: flex;
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity .quantity-group-buttons > a {
position: absolute;
width: 35px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
border: none;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity .quantity-group-buttons > a svg {
fill: #aaaaaa;
transition: fill 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity .quantity-group-buttons > a:hover svg {
fill: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity .quantity-group-buttons > a.quantity-plus {
right: 0;
top: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity .quantity-group-buttons > a.quantity-minus {
left: 0;
top: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity .input-text {
height: 50px;
border: none;
display: flex;
min-height: 100%;
width: 100%;
justify-content: center;
align-items: center;
font-size: 20px;
color: #000;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity.hidden {
border: none;
height: 0;
min-height: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .quantity:hover {
border-color: #242424;
transition: border-color 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button {
display: flex;
align-items: center;
justify-content: center;
line-height: 15px;
margin: 0 0 10px 0;
background: #FFF;
color: #242424;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
height: 50px;
padding: 0;
border: 1px solid #cccccc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
width: 100%;
transition: border-color 0.3s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button svg.fm-icon {
width: 15px;
height: 15px;
margin-right: 6px;
fill: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover {
border-color: #242424;
background: none;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
fill: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart .single_add_to_cart_button, .single-product #content .type-product .product-container .product-main .product-info.summary form.cart .yith-wcwl-add-to-wishlist, .single-product #content .type-product .product-container .product-main .product-info.summary form.cart .tinv-wraper {
flex: 0 0 calc(50% - 5px);
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart button.single_add_to_cart_button {
background: #242424;
color: #ffffff;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
height: 50px;
padding: 0;
margin: 0 0 10px 0;
transition: background-color 0.3s linear 0s;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart button.single_add_to_cart_button svg.fm-icon {
width: 15px;
height: 15px;
margin-right: 6px;
fill: #ffffff;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart button.single_add_to_cart_button + .yith-wcwl-add-to-wishlist, .single-product #content .type-product .product-container .product-main .product-info.summary form.cart button.single_add_to_cart_button + .tinv-wraper {
margin-left: 10px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations {
margin-bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations tr {
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations tr td.label {
text-transform: capitalize;
color: #777;
font-size: 13px;
font-weight: 400;
line-height: 1rem;
padding: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations tr td.label label {
margin-bottom: 0;
font-weight: 500;
color: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations tr td.woo-variation-items-wrapper {
padding-top: 5px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations tr:last-child {
margin-bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations select {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon_single_product.svg);
background-position: right 8px top 50%;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .select2-container--default {
height: 50px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
height: 50px;
line-height: 50px;
font-size: 10px;
text-transform: uppercase;
font-weight: bold;
color: #777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow {
height: 100%;
width: 28px;
background-position: left center;
background-size: auto;
background-repeat: no-repeat;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon_single_product.svg);
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single > .select2-selection__arrow > b {
display: none;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item {
width: 36px;
height: 36px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item .variable-item-span-color {
border-radius: 50%;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.color-variable-item .variable-item-span-color:after {
box-shadow: none;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item {
width: 32px;
height: 32px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.image-variable-item > img {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
width: auto;
height: 36px;
padding: 0 15px;
color: #777;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item span {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: inherit !important;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item:hover, .single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item.selected {
color: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item {
width: auto;
height: auto;
display: flex;
align-items: center;
margin-right: 8px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.radio-variable-item > * {
margin: 0 3px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item) {
box-shadow: 0 0 0 1px #dcdcdc !important;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item):hover, .single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item:not(.radio-variable-item).selected {
box-shadow: 0 0 0 1px #242424 !important;
color: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper.radio-variable-wrapper {
display: flex;
align-items: center;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .reset_variations {
display: block;
margin-top: 8px;
color: #ec1d25;
font-weight: 400;
font-size: 14px;
text-transform: capitalize;
position: relative;
padding-left: 13px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .reset_variations::before, .single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .reset_variations::after {
display: flex;
content: "";
width: 1px;
height: 13px;
background: #ec1d25;
position: absolute;
left: 4px;
top: 50%;
margin-top: -7px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .reset_variations::before {
transform: rotate(45deg);
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .reset_variations::after {
transform: rotate(-45deg);
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list.group_table {
border-top: 1px solid #dddddd;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td {
padding: 15px 0 15px 15px;
border-bottom: 1px solid #dddddd;
vertical-align: middle;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td:first-child {
padding-left: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item td.woocommerce-grouped-product-list-item__label {
font-weight: 400;
color: #242424;
line-height: 18px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item td.woocommerce-grouped-product-list-item__price {
line-height: 18px;
font-size: 15px;
color: #555555;
text-align: right;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item td.woocommerce-grouped-product-list-item__price del {
font-size: 12px;
color: #aaaaaa;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item td.woocommerce-grouped-product-list-item__price ins {
color: #ec1d25;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button {
display: flex;
align-items: center;
justify-content: center;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
background: #777;
color: #ffffff;
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
height: 50px;
padding: 0 30px;
min-width: 150px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple svg.fm-icon {
width: 15px;
height: 15px;
margin-right: 6px;
fill: #ffffff;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product_meta {
color: #242424;
font-size: 13px;
font-weight: 500;
text-transform: capitalize;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product_meta > span, .single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .sku_wrapper, .single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .posted_in {
display: block;
margin-bottom: 10px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .posted_in a, .single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .tagged_as a {
color: #777;
font-weight: 400;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .posted_in a:hover, .single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .tagged_as a:hover {
color: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .sku_wrapper span {
font-weight: 400;
color: #777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share .socials-sharing {
margin-bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share .socials-sharing > li {
padding: 0 10px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share .socials-sharing > li a svg {
fill: #777;
transition: fill 0.25s linear 0s;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share .socials-sharing > li a:hover svg {
fill: #242424;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share > label {
margin-bottom: 0;
margin-right: 10px;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share > label svg {
display: none;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share > label span {
font-size: 13px;
font-weight: 500;
color: #242424;
text-transform: capitalize;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share > label span:after {
content: ":";
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-tabs, .single-product #content .type-product .product-container .product-main .product-info.summary .product-page-sections, .single-product #content .type-product .product-container .product-main .product-info.summary .product-page-accordian {
margin-top: 3.5rem;
margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget + .widget, .single-product #content .type-product .product-container .product-main .product-sidebar .widget + .cenos_featured_box:first-child {
border-top: 1px solid #e4e4e4;
padding-top: 3rem;
margin-top: 3rem;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget {
padding: 0;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li {
margin: 20px 0 0 0;
padding: 0;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li a {
color: #242424;
font-size: 14px;
font-weight: 400;
line-height: 18px;
margin-bottom: 5px;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li a:hover {
color: #e36c02;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li a img {
float: left;
margin-left: 0;
margin-right: 10px;
height: auto;
box-shadow: none;
width: 80px;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li .star-rating {
letter-spacing: 5px;
font-size: 10px;
color: #242424;
margin: 0 0 10px 0;
width: 73px;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li .woocs_price_code {
font-size: 15px;
color: #555555;
font-weight: 400;
display: block;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li .woocs_price_code del {
font-size: 12px;
color: #aaa;
margin-right: 3px;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box {
padding: 2rem 1.5rem;
border: 1px solid #dcdcdc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box .widget-title {
display: none;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box .content-box {
display: flex;
align-items: center;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box .content-box .icon svg.fm-icon {
width: 48px;
height: 48px;
margin-right: 12px;
fill: #e36c02;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box .content-box .content-text {
color: #242424;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box .content-box .content-text .title {
font-weight: 400;
font-size: 16px;
line-height: 20px;
text-transform: capitalize;
margin-bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box .content-box .content-text .text {
font-size: 13px;
line-height: 16px;
color: #555;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box + .cenos_featured_box {
margin-top: 30px;
}
.single-product #content .type-product .product-container .product-main.sidebar-left > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left > .row .product-content > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left .product-sidebar {
margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-right > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right > .row .product-content > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-sidebar {
margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full > .row .product-content > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .related.products:before {
width: 100%;
left: 0;
transform: translateX(0);
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .related.products > h2 {
margin-bottom: 1.2rem;
font-weight: 400;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .up-sells.products:before {
width: 100%;
left: 0;
transform: translateX(0);
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .up-sells.products > h2 {
margin-bottom: 1.2rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full > .row .product-content > .row {
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .related.products:before {
width: 100%;
left: 0;
transform: translateX(0);
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .related.products > h2 {
margin-bottom: 1.2rem;
font-weight: 400;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .wide_gallery_swiper .swiper-pagination {
display: none;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide {
opacity: 0.3;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide.swiper-slide-prev, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide.swiper-slide-active, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .woocommerce-product-gallery__image.swiper-slide.swiper-slide-next {
opacity: 1;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_list .woocommerce-product-gallery__wrapper .zoomImg {
cursor: crosshair;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product_summary_wrap {
display: flex;
flex-direction: column;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary {
max-width: 100%;
flex: 0 0 100%;
width: 100%;
float: left;
display: inline-block;
padding: 0;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary.atc-form {
flex: 0 0 100%;
width: 100%;
margin-left: auto;
margin-right: 0;
margin-top: 0;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary.atc-form form.cart {
display: flex;
flex-wrap: wrap;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary.atc-form form.cart button.single_add_to_cart_button, .single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary.atc-form form.cart .tinv-wraper {
width: calc(50% - 6px);
}
.single-product #content .type-product .product-container .product-main.wide-gallery + .product-footer {
position: relative;
padding-top: 3rem;
}
.single-product #content .type-product .product-container .product-main.wide-gallery + .product-footer::before {
display: inline-block;
content: "";
position: absolute;
width: 100vw;
left: 50%;
top: 0;
transform: translateX(-50%);
border-bottom: 1px solid #dcdcdc;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist {
padding: 0;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review {
padding: 0;
position: relative;
background: 0;
border: 0;
padding-bottom: 1rem;
border-bottom: 1px solid #e4e4e4;
margin: 0 0 2rem;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container img.avatar {
float: left;
position: absolute;
top: 0;
left: 0;
padding: 4px;
width: 50px;
height: auto;
background: #FFF;
border: 1px solid #dcdcdc;
margin: 0;
box-shadow: none;
border-radius: 50%;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container .comment-text {
margin: 0 0 0 60px;
border: none;
border-radius: 0;
padding: 0;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container .comment-text .star-rating {
margin-top: 5px;
width: 73px;
letter-spacing: 5px;
font-size: 10px;
color: #242424;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta {
margin-bottom: 10px;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__author {
font-size: 15px;
font-weight: 500;
color: #242424;
text-transform: capitalize;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__dash {
display: none;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container .comment-text .meta .woocommerce-review__published-date {
font-size: 13px;
display: block;
line-height: 18px;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review .comment_container .comment-text .description {
font-size: 14px;
}
.single-product #content .type-product .product-container #reviews #comments ol.commentlist li.review:last-child {
padding-bottom: 0;
border: none;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #reply-title {
font-size: 24px;
font-weight: 400;
color: #242424;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating {
display: flex;
align-items: center;
margin-bottom: 2rem;
margin-top: 1rem;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating > * {
margin: 0;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating > label {
min-width: 68px;
margin-right: 10px;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating .stars {
min-width: 80px;
line-height: 1;
margin-right: 10px;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-rating #rating {
max-width: 150px;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment > label {
font-size: 15px;
font-weight: 400;
color: #555;
margin-bottom: 6px;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .form-submit {
margin-top: 1.5rem;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .form-submit input.submit {
min-width: 200px;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-author, .single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-email {
display: inline-block;
width: calc(50% - 10px);
margin-top: 15px;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-author {
margin-right: 20px;
float: left;
}
.single-product #content .type-product .product-container table.shop_attributes {
border: none;
font-size: 14px;
color: #555555;
}
.single-product #content .type-product .product-container table.shop_attributes tr th {
background: #f5f5f5;
border: none;
color: #242424;
font-weight: 500;
padding: 1rem;
text-transform: capitalize;
}
.single-product #content .type-product .product-container table.shop_attributes tr td {
background: #f5f5f5;
border: none;
font-style: normal;
}
.single-product #content .type-product .product-container table.shop_attributes tr:nth-child(even) th, .single-product #content .type-product .product-container table.shop_attributes tr:nth-child(even) td {
background: #ffffff;
}
.single-product #content .type-product .product-container #tab-description {
font-size: 15px;
color: #555555;
margin-bottom: 0;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs {
max-width: 930px;
margin: 0 auto;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title {
padding: 0;
text-align: center;
margin-bottom: 3rem;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title::before {
display: none;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li {
border: none;
background: none;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li::before, .single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li::after {
display: none;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li > a {
position: relative;
display: inline-block;
padding: 0;
font-weight: 400;
color: #777;
text-decoration: none;
text-transform: none;
font-size: 18px;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li > a::after {
position: absolute;
bottom: 0;
left: 0;
content: "";
width: 100%;
border-bottom: 1px solid transparent;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li > a:hover {
color: #242424;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li.active > a {
color: #242424;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li.active > a::after {
border-bottom-color: #242424;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs.vertical ul.tabs.cenos-tabs-title > li {
margin: 8px 15px 8px 0;
padding: 0;
text-align: left;
}
.single-product #content .type-product .product-container .product-page-sections {
max-width: 1040px;
margin: 0 auto;
}
.single-product #content .type-product .product-container .product-page-sections .product-section .section-tab-header h5 {
font-size: 20px;
text-transform: capitalize;
font-weight: 400;
margin-bottom: 15px;
}
.single-product #content .type-product .product-container .product-page-sections .product-section .section-tab-content h2 {
display: none;
}
.single-product #content .type-product .product-container .product-page-sections .product-section + .product-section {
padding-top: 2rem;
margin-top: 2rem;
border-top: 1px solid #dcdcdc;
}
.single-product #content .type-product .product-container .product-page-sections #reviews #review_form_wrapper .comment-respond #reply-title {
font-size: 16px;
}
.single-product #content .type-product .product-container .product-page-accordian {
max-width: 1040px;
margin: 0 auto;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card {
border: none;
margin-top: -1px;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link {
background: none;
border-radius: 0;
border-width: 1px 0 1px 0;
border-color: #dcdcdc;
display: flex;
align-items: center;
justify-content: space-between;
color: #555555;
line-height: 30px;
padding: 10px 0;
font-size: 13px;
font-weight: 500;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link svg.fm-icon {
width: 12px;
height: 12px;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link:not(.collapsed) svg.icon-collapsed {
display: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link.collapsed svg.icon-not-collapsed {
display: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link.collapsed svg.icon-collapsed {
display: inline-block;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card .accordion-inner {
padding-top: 1.5rem;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card .accordion-inner h2, .single-product #content .type-product .product-container .product-page-accordian .accordion-item.card .accordion-inner .h2 {
display: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card:first-child button.btn-link {
border-top: none;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card:last-child button.btn-link {
border-bottom: none;
}
.single-product #content .type-product .product-container .product-footer .related.products {
position: relative;
padding-top: 3rem;
margin-top: 3rem;
}
.single-product #content .type-product .product-container .product-footer .related.products:before {
display: inline-block;
content: "";
position: absolute;
width: 100vw;
left: 50%;
transform: translateX(-50%);
top: 0;
border-top: 1px solid #dcdcdc;
}
.single-product #content .type-product .product-container .product-footer .related.products > h2 {
margin-bottom: 1.2rem;
font-weight: 400;
}
.single-product #content .type-product .product-container .product-footer .related.products .cenos-carousel.swiper-container-horizonta {
padding: 20px;
margin: -20px;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products {
position: relative;
padding-top: 2rem;
margin-top: 2rem;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products:before {
display: inline-block;
content: "";
position: absolute;
width: 100vw;
left: 50%;
transform: translateX(-50%);
top: 0;
border-top: 1px solid #dcdcdc;
}
.single-product #content .type-product .product-container .product-footer .up-sells.products > h2 {
margin-bottom: 1.2rem;
font-weight: 400;
}
.single-product #content .type-product .product-container .product-footer .cenos-carousel > .swiper-pagination-bullets .swiper-pagination-bullet {
display: inline-block;
padding: 0;
margin: 0 5px;
position: relative;
background: none;
width: 18px;
height: 18px;
}
.single-product #content .type-product .product-container .product-footer .cenos-carousel > .swiper-pagination-bullets .swiper-pagination-bullet::before {
content: "";
display: inline-block;
width: 6px;
height: 6px;
border: 6px solid #ffffff;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
box-sizing: content-box;
background: #999;
border-radius: 50%;
}
.single-product #content .type-product .product-container .product-footer .cenos-carousel > .swiper-pagination-bullets .swiper-pagination-bullet::after {
content: "";
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 18px;
height: 18px;
border: 1px solid transparent;
border-radius: 50%;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
}
.single-product #content .type-product .product-container .product-footer .cenos-carousel > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
border-color: rgba(0, 0, 0, 0.6);
}
.single-product #content .type-product.product-type-simple .product-container .product-main .product-info.summary form.cart {
flex-wrap: wrap;
}
.single-product #content .type-product.product-type-simple .product-container .product-main .product-info.summary form.cart .quantity {
width: 100%;
flex: 0 0 100%;
margin-bottom: 10px;
}
.single-product #content .type-product.product-type-simple .product-container .product-main .product-info.summary form.cart .single_add_to_cart_button, .single-product #content .type-product.product-type-simple .product-container .product-main .product-info.summary form.cart .yith-wcwl-add-to-wishlist {
flex: 0 0 calc(50% - 5px);
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info.summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart {
display: flex;
flex-wrap: wrap;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info.summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
width: 100%;
flex: 0 0 100%;
margin: 0 0 10px;
}
.single-product #content .type-product.product-type-variable .product-container .product-main .product-info.summary form.cart .single_variation_wrap .woocommerce-variation-price {
margin-bottom: 15px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info.summary form.cart.grouped_form {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info.summary form.cart.grouped_form .group_table {
flex: 0 0 100%;
margin-bottom: 30px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info.summary form.cart.grouped_form .group_table .out-of-stock {
margin-bottom: 0;
font-size: 16px;
}
.single-product.single_product_has_background #content {
padding-top: 0;
}
.single-product.single_product_has_background #content > .container {
position: relative;
}
.single-product.single_product_has_background #content > .container .before_single_product {
position: absolute;
top: 0;
left: 0;
z-index: 1;
padding-left: 15px;
width: 100%;
}
.single-product.single_product_has_background #content > .container .before_single_product .woocommerce-breadcrumb {
visibility: hidden;
opacity: 0;
}
.single-product.single_product_has_background #content > .container .before_single_product .product-navigation {
position: absolute;
right: 0;
top: 2rem;
}
.single-product.single_product_has_background #content > .container .product-main.has_background {
padding-top: 2.5rem;
margin-bottom: 3rem;
}
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
opacity: 0.6;
background: rgba(255, 255, 255, 0.5);
}
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery:hover .woocommerce-product-gallery__trigger {
opacity: 1;
}
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li:hover img,
.single-product.single_product_has_background #content > .container .product-main.has_background .woocommerce-product-gallery.gallery_style_vertical .flex-control-thumbs li.swiper-slide-active img {
border-color: #dcdcdc;
}
.single-product.single-product-layout-sidebar-left .header-layout .header-main .header-container, .single-product.single-product-layout-sidebar-right .header-layout .header-main .header-container, .single-product.single-product-layout-sidebar-left-full .header-layout .header-main .header-container, .single-product.single-product-layout-sidebar-right-full .header-layout .header-main .header-container {
max-width: 1750px;
width: 1750px;
}
.single-product.single-product-layout-sidebar-left #content > .container, .single-product.single-product-layout-sidebar-right #content > .container, .single-product.single-product-layout-sidebar-left-full #content > .container, .single-product.single-product-layout-sidebar-right-full #content > .container {
max-width: 1750px;
}
.single-product.single-product-layout-sidebar-left .product-footer, .single-product.single-product-layout-sidebar-right .product-footer {
position: relative;
padding-top: 3rem;
}
.single-product.single-product-layout-sidebar-left .product-footer:before, .single-product.single-product-layout-sidebar-right .product-footer:before {
display: inline-block;
content: "";
position: absolute;
width: 100vw;
left: 50%;
transform: translateX(-50%);
top: 0;
border-top: 1px solid #dcdcdc;
}
.single-product.single-product-layout-wide-gallery #content {
padding-top: 10px;
}
.single-product.single-product-layout-wide-gallery #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery {
margin-bottom: 10px;
}
.single-product.single-product-layout-wide-gallery #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery .woocommerce-product-gallery__wrapper img {
cursor: crosshair;
}
.single-product.single-product-layout-wide-gallery #content .type-product .product-container .product-main.wide-gallery .product-info.summary h1.product_title {
margin-top: 2rem;
}
@media (min-width: 768px) {
.woocommerce div.product .woocommerce-tabs ul.tabs li {
padding: 0 1.5rem;
}
.single-product #content .type-product .product-container .product-page-sections .product-section .section-tab-header h5 {
font-size: 16px;
text-transform: uppercase;
font-weight: 400;
}
.single-product #content .type-product .product-container .product-page-accordian .accordion-item.card button.btn-link {
font-size: 18px;
font-weight: 400;
}
.single-product .product-footer {
margin-bottom: 2rem;
}
.single-product .product-footer .related.products {
margin-bottom: 2rem;
}
.single-product .product-footer .related.products .cenos-carousel.swiper-container-horizontal {
padding: 20px;
margin: -20px;
}
}
@media (min-width: 992px) { .single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery {
margin-bottom: 3.5rem;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .flex-control-thumbs li img {
width: 100%;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full > .row {
flex-direction: row-reverse;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full > .row .product-content > .row {
flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-left > .row {
flex-direction: row-reverse;
}
.single-product #content .type-product .product-container .product-main.sidebar-left > .row .product-content > .row {
flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-left .product-sidebar {
margin-bottom: 3rem;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full > .row {
flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full > .row .product-content > .row {
flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-right > .row {
flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-right > .row .product-content > .row {
flex-direction: row;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-sidebar {
margin-bottom: 3rem;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product_summary_wrap {
flex-direction: row;
max-width: 1200px;
margin: 0 auto;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery {
transform: translateX(-50vw);
left: 50%;
padding: 0;
width: 100vw;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary {
max-width: 50%;
flex: 0 0 600px;
width: 600px;
padding: 0 15px;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary.atc-form {
flex: 0 0 450px;
width: 450px;
margin-top: 4rem;
}
.single-product .woocommerce-product-gallery.gallery_style_vertical {
display: flex;
justify-content: space-between;
flex-direction: row-reverse;
}
.single-product .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
margin-left: 0 !important;
max-height: calc(100% - 105px);
flex: 0 0 calc(100% - 105px);
width: calc(100% - 105px);
}
.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper {
position: relative;
height: 490px;
max-height: 100%;
margin: 0;
width: 92px;
flex: 0 0 92px;
max-width: 92px;
}
.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper .flex-control-thumbs {
height: 100%;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.single-product #content .type-product .product-container .product-main:not(.wide-gallery) .product-gallery.single_gallery_small {
flex: 0 0 50%;
max-width: 50%;
}
.single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery.single_gallery_small + .product-info {
padding-left: 25px;
}
.single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery.single_gallery_large .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
margin-left: 100px;
}
.single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery.single_gallery_large .woocommerce-product-gallery.gallery_style_vertical .flex-viewport .flex-control-thumbs li {
width: 90px;
}
.single-product #content .type-product .product-container .product-main.sidebar-left .product-gallery.single_gallery_medium + .product-info, .single-product #content .type-product .product-container .product-main.sidebar-left-full .product-gallery.single_gallery_medium + .product-info {
padding-left: 25px;
}
.single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery.single_gallery_small, .single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery.single_gallery_medium, .single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery.single_gallery_large {
padding-right: 25px;
}
.single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery + .product-info.summary {
padding-left: 15px;
}
}
@media (min-width: 1200px) {
.single-product #content .type-product .product-container .product-main .product-info.summary .price {
margin-bottom: 2.5rem;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-details__short-description {
margin-bottom: 2.5rem;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart {
margin-bottom: 2rem;
}
.single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery.single_gallery_small + .product-info {
padding-left: 88px;
}
.single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery.single_gallery_medium {
padding-right: 50px;
}
.single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery.single_gallery_medium + .product-info {
padding-left: 50px;
}
.single-product #content .type-product .product-container .product-main.no-sidebar .product-gallery.single_gallery_large {
padding-right: 89px;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .product-gallery.single_gallery_small + .product-info, .single-product #content .type-product .product-container .product-main.sidebar-left .product-gallery.single_gallery_small + .product-info {
padding-left: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .product-gallery.single_gallery_medium + .product-info, .single-product #content .type-product .product-container .product-main.sidebar-left .product-gallery.single_gallery_medium + .product-info {
padding-left: 50px;
}
.single-product #content .type-product .product-container .product-main.sidebar-left-full .product-gallery.single_gallery_large, .single-product #content .type-product .product-container .product-main.sidebar-left .product-gallery.single_gallery_large {
padding-left: 35px;
padding-right: 35px;
max-width: 60%;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .product-gallery.single_gallery_small + .product-info {
padding-left: 35px;
padding-right: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .product-gallery.single_gallery_small.col-lg-4 {
min-width: 45%;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .product-gallery.single_gallery_medium + .product-info {
padding-left: 35px;
padding-right: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .product-gallery.single_gallery_large {
padding-right: 35px;
max-width: 60%;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .product-gallery.single_gallery_large + .product-info {
padding-right: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right-full .product-info.summary {
padding-left: 25px;
margin-right: 15px;
border-right: 1px solid #dcdcdc;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_small + .product-info {
padding-left: 35px;
padding-right: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_small.col-lg-4 {
min-width: 45%;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_small .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
margin-left: 68px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_medium + .product-info {
padding-left: 35px;
padding-right: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_medium .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
margin-left: 103px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_large {
padding-right: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_large.col-lg-8 {
max-width: 60%;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_large + .product-info {
padding-right: 35px;
}
.single-product #content .type-product .product-container .product-main.sidebar-right .product-gallery.single_gallery_large .woocommerce-product-gallery.gallery_style_vertical .flex-viewport {
margin-left: 112px;
}
.single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery.single_gallery_small + .product-info {
padding-left: 88px;
}
.single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery.single_gallery_medium {
padding-right: 50px;
}
.single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery.single_gallery_medium + .product-info {
padding-left: 50px;
}
.single-product #content .type-product .product-container .product-main.sticky-layout .product-gallery.single_gallery_large {
padding-right: 89px;
}
.single-product.single-product-layout-sidebar-left #content .type-product .product-container .product-main .product-info.summary, .single-product.single-product-layout-sidebar-left #content .type-product .product-container .product-main.sidebar-right .product-sidebar,
.single-product.single-product-layout-sidebar-left #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery, .single-product.single-product-layout-sidebar-right #content .type-product .product-container .product-main .product-info.summary, .single-product.single-product-layout-sidebar-right #content .type-product .product-container .product-main.sidebar-right .product-sidebar,
.single-product.single-product-layout-sidebar-right #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery {
margin-bottom: 4.5rem;
}
.single-product.single-product-layout-sidebar-left .product-footer, .single-product.single-product-layout-sidebar-right .product-footer {
padding-top: 4.5rem;
}
}
@media (max-width: 1024px) {
.single-product #content .type-product .product-container .product-main .product-gallery {
margin-top: 0;
}
.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery {
margin-bottom: 30px;
}
}
@media (max-width: 991px) {
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical {
margin-bottom: 10px;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet {
display: inline-block;
padding: 0;
margin: 0 5px;
position: relative;
background: none;
width: 18px;
height: 18px;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::before, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::before {
content: "";
display: inline-block;
width: 6px;
height: 6px;
border: 6px solid #ffffff;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
box-sizing: content-box;
background: #999;
border-radius: 50%;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::after, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet::after {
content: "";
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 18px;
height: 18px;
border: 1px solid transparent;
border-radius: 50%;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_default .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::after, .single-product #content .type-product .product-container .product-main.wide-gallery .product-gallery .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
border-color: rgba(0, 0, 0, 0.6);
}
.single-product #content .type-product .product-container .product-sidebar::before {
content: "";
width: 100%;
display: block;
margin-top: 30px;
margin-bottom: 40px;
border-top: 1px solid #e4e4e4;
}
}
@media (max-width: 767px) {
.woocommerce div.product .woocommerce-tabs .panel {
margin-bottom: 0;
}
.single-product #content .type-product .product-container .product-main .product-info.summary h1.product_title {
line-height: 30px;
margin-bottom: 20px;
}
.single-product #content .type-product .product-container .woocommerce-product-gallery .gallery_thumb_swiper {
top: 0 !important;
margin-top: -40px !important;
}
.single-product #content .type-product .product-container .woocommerce-product-gallery .gallery_thumb_swiper .swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 8px;
background: #aaa;
}
.single-product #content .type-product .product-container .woocommerce-product-gallery .gallery_thumb_swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .single-product #content .type-product .product-container .woocommerce-product-gallery .gallery_thumb_swiper .swiper-pagination-bullets .swiper-pagination-bullet:hover {
box-shadow: 0 0 0 2px #242424;
background: none;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs {
max-width: 100%;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title {
display: flex;
align-items: center;
margin-bottom: 20px;
overflow-x: auto;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li {
margin: 0 15px 0 0;
padding: 0;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li > a {
width: max-content;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li::after {
bottom: 3px;
}
.single-product #content .type-product .product-container .related > h2 {
font-size: 24px;
}
.single-product #content .type-product .product-container .related .cenos-carousel {
padding-bottom: 15px;
}
.single-product #content .type-product .product-container .related .cenos-carousel .swiper-pagination-bullets {
bottom: 0;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info.summary form.cart .quantity {
min-height: 40px;
min-width: 80px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info.summary form.cart .quantity .input-text {
height: 40px;
}
.single-product #content .type-product.product-type-grouped .product-container .product-main .product-info.summary form.cart .quantity .quantity-group-buttons > a {
width: 30px;
height: 40px;
}
#product-sidebar .widget .widget-title {
font-size: 24px;
}
}
@media (max-width: 575px) {
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
max-width: 100%;
flex: 0 0 100%;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .yith-wcwl-add-to-wishlist, .single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .single_add_to_cart_button {
flex: 0 0 calc(50% - 6px);
margin: 0;
}
.single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary .product_meta > span, .single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary .product_meta .sku_wrapper, .single-product #content .type-product .product-container .product-main.wide-gallery .product-info.summary .product_meta .posted_in {
border-right: none !important;
margin-left: 0 !important;
margin-bottom: 6px !important;
}
.single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-author, .single-product #content .type-product .product-container #reviews #review_form_wrapper .comment-respond #commentform .comment-form-email {
display: block;
width: 100%;
margin-top: 15px;
margin-right: 0;
}
} .page-heading-wrap { }
.page-heading-wrap .shop-heading-content .shop-heading-container .shop-title {
font-size: 30px;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel {
margin-top: 1.5rem;
max-width: 656px;
display: flex;
align-items: center;
justify-content: center;
padding: 0 30px;
overflow: hidden;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel ul.swiper-wrapper {
list-style: none;
margin: 0;
padding: 0;
display: flex;
align-items: flex-end;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel ul.swiper-wrapper li.category-item a img {
max-width: 88px;
width: auto;
height: auto;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel ul.swiper-wrapper li.category-item h3 {
margin: 0;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel ul.swiper-wrapper li.category-item h3 a {
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
display: inline-block;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel ul.swiper-wrapper li.category-item h3 a::after {
content: "";
display: block;
border-bottom: 1px solid transparent;
margin-top: 3px;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel ul.swiper-wrapper li.category-item .count {
display: none;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel ul.swiper-wrapper li.category-item:hover h3 a::after {
border-bottom-color: rgba(255, 255, 255, 0.6);
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel .swiper-button-next,
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel .swiper-button-prev {
height: 100%;
top: 0;
width: 30px;
text-align: center;
margin-top: -0.5rem;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel .swiper-button-next {
right: 0;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel .swiper-button-prev {
left: 0;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .term-description {
max-width: 680px;
text-align: center;
margin: 20px auto 0;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-parent-term-link {
display: inline-block;
margin: 10px auto 0;
height: 50px;
line-height: 49px;
font-size: 13px;
font-weight: 400;
padding: 0 25px;
border: 1px solid #777;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-parent-term-link > span {
color: #777;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-parent-term-link svg.fm-icon {
fill: #777;
}
.page-heading-wrap .shop-heading-content.heading-color-light .shop-title {
color: #FFF;
}
.page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb {
color: #FFF;
}
.woocommerce .page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb a {
color: #dddddd;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel a {
color: #FFF;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel a::after {
border-color: #FFF;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel a svg {
fill: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel .swiper-button-next svg.fm-icon,
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel .swiper-button-prev svg.fm-icon {
fill: #FFF;
}
.page-heading-wrap .shop-heading-content.heading-color-light .term-description p {
color: #dddddd;
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link {
border-color: rgba(255, 255, 255, 0.25);
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link > span {
color: #FFF;
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link svg.fm-icon {
fill: #FFF;
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link:hover {
border-color: rgba(255, 255, 255, 0.55);
}
.page-heading-wrap .shop-heading-content.heading-color-dark .shop-title {
color: #242424;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb {
color: #242424;
}
.woocommerce .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb a {
color: #777;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb .swiper-button-next svg.fm-icon,
.page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb .swiper-button-prev svg.fm-icon {
fill: #242424;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .cenos-carousel a {
color: #242424;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .cenos-carousel a::after {
color: #242424;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .cenos-carousel a svg {
fill: #242424;
}
.page-heading-wrap .shop-heading-content.heading-simple-small {
padding: 0;
min-height: 60px;
}
.page-heading-wrap .shop-heading-content.heading-simple-small .shop-heading-container {
height: 60px;
}
.page-heading-wrap .shop-heading-content.heading-simple-medium {
padding: 0;
min-height: 90px;
}
.page-heading-wrap .shop-heading-content.heading-simple-medium .shop-heading-container {
height: 90px;
}
.page-heading-wrap .shop-heading-content.heading-simple-large {
padding: 0;
min-height: 120px;
}
.page-heading-wrap .shop-heading-content.heading-simple-large .shop-heading-container {
height: 120px;
}
.page-heading-wrap.shop-heading-simple .shop-heading-content .shop-heading-container {
display: flex;
justify-content: space-between;
align-items: center;
}
.page-heading-wrap.shop-heading-simple .shop-heading-content .shop-heading-container .shop-title {
font-size: 14px;
font-weight: 500;
margin: 0;
}
.page-heading-wrap.shop-heading-simple .shop-heading-content .shop-heading-container .woocommerce-breadcrumb {
margin: 0 0 0 0.5rem;
}
.page-heading-wrap.shop-heading-simple .shop-heading-content .shop-heading-container .woocommerce-breadcrumb a {
color: #777;
}
.page-heading-wrap.has-divider .page-heading-content {
border-bottom: 1px solid #242424;
}
.shop-page-layout-background { }
.shop-page-layout-background .shop-heading-simple {
border-bottom: 1px solid #dcdcdc;
}
.shop-page-layout-background ul.products li.product {
background-color: #FFF;
}
.archive.woocommerce-page #content {
padding-top: 25px;
}
#content > .container { }
.archive.woocommerce-page #content > .container {
display: flex;
width: 100%;
flex-direction: column;
}
.archive.woocommerce-page #content > .container .woocommerce-products-header {
order: 1;
}
.archive.woocommerce-page #content > .container .woocommerce-notices-wrapper {
order: 2;
}
.archive.woocommerce-page #content > .container .cenos-shop-control {
order: 3;
}
.archive.woocommerce-page #content > .container .woof_products_top_panel {
order: 4;
margin-bottom: 30px;
margin-top: -6px;
}
.archive.woocommerce-page #content > .container ul.products {
order: 5;
}
.archive.woocommerce-page #content > .container .woocommerce-pagination {
order: 6;
}
.archive.woocommerce-page #content > .container > .sidebar-right .main-shop-control, .archive.woocommerce-page #content > .container > .sidebar-left .main-shop-control {
margin-bottom: 25px;
}
#content > .container #woof_results_by_ajax,
#content > .container #woof_results_by_ajax > .woocommerce {
display: flex;
width: 100%;
flex-direction: column;
}
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form {
justify-content: center;
font-size: 24px;
margin-bottom: 0;
flex-wrap: wrap;
}
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > select {
max-width: 135px;
}
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > select#product_cat {
max-width: 168px;
}
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > .select2-container {
height: 24px;
width: auto !important;
}
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form > .select2-container .select2-selection.select2-selection--single {
border: none;
height: auto;
line-height: 24px;
font-size: 24px;
color: #242424;
padding: 0;
}
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form button.filter-submit {
background: #FFF;
color: #242424;
width: 130px;
height: 40px;
line-height: 20px;
padding: 0;
font-size: 15px;
margin: 0;
border: 1px solid #242424;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
transition: color ease-in-out 0.3s, background-color ease-in-out 0.3s;
}
#content > .container .cenos-shop-control .before-shop-control .shop-control-quick-search .shop-control-quick-search-form button.filter-submit:hover {
background: #242424;
color: #ffffff;
}
#content > .container .cenos-shop-control .before-shop-control .cenos-parent-term-link {
display: none;
}
#content > .container .cenos-shop-control .main-shop-control {
margin-bottom: 30px;
font-size: 12px;
justify-content: flex-start;
}
#content > .container .cenos-shop-control .main-shop-control > * {
margin-bottom: 0;
}
#content > .container .cenos-shop-control .main-shop-control > *:last-child, #content > .container .cenos-shop-control .main-shop-control > .woocommerce-ordering {
margin-right: 0;
margin-left: auto;
}
#content > .container .cenos-shop-control .main-shop-control > *:not(:last-child):not(.woocommerce-ordering) {
margin-right: 30px;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs {
flex: 0 0 100%;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a {
font-size: 15px;
font-weight: 500;
color: #777;
margin-right: 30px;
display: inline-block;
position: relative;
padding-bottom: 8px;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a::after {
position: absolute;
content: "";
display: inline-block;
width: calc(100% + 6px);
left: -3px;
bottom: 0;
border-bottom: 1px solid transparent;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a:hover, #content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a.active {
color: #242424;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a.active::after {
border-bottom-color: #242424;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-filter-btn:not(.c-button), #content > .container .cenos-shop-control .main-shop-control .cenos-filter-btn .c-button__text {
display: flex;
align-items: center;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-filter-btn svg.fm-icon {
margin-right: 10px;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-filter-btn .filter-title {
font-size: 12px;
font-weight: 700;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-filter-btn .filter-title:not(hover) {
color: #242424;
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-result-count {
margin-bottom: 0;
color: #777777;
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering {
margin-bottom: 0;
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering select.orderby {
border: none;
line-height: 24px;
font-size: inherit;
height: 24px;
font-weight: 500;
width: auto;
padding: 0 25px 0 0;
background-position: right 0 top 50%;
background-size: auto 16px;
background-repeat: no-repeat;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon_sort.svg);
border-bottom: 1px solid #cccccc;
border-radius: 0;
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering select.orderby option {
padding: 0 20px;
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single {
height: auto;
line-height: unset;
border: none;
font-size: inherit;
font-weight: 500;
width: auto;
padding: 0;
display: flex;
flex-direction: row-reverse;
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered {
color: #242424;
padding: 0 22px 0 0 !important;
background-position: right center;
background-size: auto;
background-repeat: no-repeat;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon_sort.svg);
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow {
display: none;
}
#content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-dropdown {
min-width: 188px;
}
#content > .container .cenos-shop-control.control_has_quick_search .main-shop-control {
padding-top: 30px;
border-top: 1px solid #dcdcdc;
margin-top: 30px;
}
#content > .container .cenos-shop-control.control_has_product_tabs .cenos-products-tabs {
padding-top: 25px;
border-top: 1px solid #dcdcdc;
margin-top: 25px;
}
#content > .container .woof_products_top_panel button.woof_reset_button_2 {
display: none;
}
#content > .container .woof_products_top_panel .cenos_reset_filter_button {
display: flex;
align-items: center;
float: left;
padding-right: 20px;
margin-right: 10px;
position: relative;
font-size: 13px;
font-weight: 500;
}
#content > .container .woof_products_top_panel .cenos_reset_filter_button svg.fm-icon {
margin-right: 6px;
width: 15px;
height: 15px;
}
#content > .container .woof_products_top_panel .cenos_reset_filter_button::after {
height: 15px;
width: 1px;
border-right: 1px solid #777;
content: "";
display: block;
position: absolute;
right: 0;
}
#content > .container .woof_products_top_panel ul li {
margin-right: 6px !important;
}
#content > .container .woof_products_top_panel ul li a {
font-size: 13px;
color: #555;
font-weight: 400;
line-height: 20px;
display: inline-block;
padding: 0 10px;
background: #f5f5f5;
border: 1px solid #ccc;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
transition: background-color ease-in-out 0.15s, color ease-in-out 0.15s;
}
#content > .container .woof_products_top_panel ul li a .woof_remove_ppi {
padding-right: 0;
padding-left: 13px;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/close-icon-dark.svg);
background-size: 8px 8px;
background-repeat: no-repeat;
background-position: left center;
}
#content > .container .woof_products_top_panel ul li:hover a {
color: #FFF;
background-color: #242424;
border-color: #242424;
}
#content > .container .woof_products_top_panel ul li:hover a .woof_remove_ppi {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/close-icon-light.svg);
}
#content > .container .woof_products_top_panel ul li:focus a {
color: #FFF;
background-color: #e36c02;
}
#content > .container .woof_products_top_panel ul li:focus a .woof_remove_ppi {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/close-icon-light.svg);
}
.woocommerce-breadcrumb { }
.woocommerce .woocommerce-breadcrumb {
font-size: 12px;
color: #242424;
font-weight: 400;
}
.woocommerce .woocommerce-breadcrumb a {
font-size: 12px;
color: #777;
font-weight: 400;
}
.before-shop-control .woocommerce-breadcrumb {
border-bottom: 1px solid #dcdcdc;
padding-bottom: 20px;
margin-bottom: 20px;
width: 100%;
}
nav.woocommerce-pagination { }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
color: #777;
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
border-width: 2px;
line-height: 38px;
}
.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li a.current, .woocommerce nav.woocommerce-pagination ul li span:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
background-color: #242424;
border-color: #242424;
color: #FFF;
}
.woocommerce nav.woocommerce-pagination ul li a:hover svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li a.current svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li span:hover svg.fm-icon, .woocommerce nav.woocommerce-pagination ul li span.current svg.fm-icon {
fill: #FFF;
}
.woocommerce nav.woocommerce-pagination ul li a:hover svg.fm-icon :hover, .woocommerce nav.woocommerce-pagination ul li a.current svg.fm-icon :hover, .woocommerce nav.woocommerce-pagination ul li span:hover svg.fm-icon :hover, .woocommerce nav.woocommerce-pagination ul li span.current svg.fm-icon :hover {
fill: #FFF;
}
.woocommerce nav.woocommerce-pagination ul li a.prev, .woocommerce nav.woocommerce-pagination ul li span.prev {
width: auto;
padding: 0 15px 0 12px;
}
.woocommerce nav.woocommerce-pagination ul li a.next, .woocommerce nav.woocommerce-pagination ul li span.next {
width: auto;
padding: 0 12px 0 15px;
}
.cenos_woof_pagination_trigger a.cenos_woof_pagination_trigger_action {
font-size: 11px;
font-weight: 500;
color: #777;
text-transform: uppercase;
width: 98px;
height: 98px;
display: inline-block;
text-align: center;
line-height: 98px;
border: 1px solid #dcdcdc;
border-radius: 50%;
transition: border-color 0.25s;
-webkit-transition: border-color 0.25s;
}
.cenos_woof_pagination_trigger a.cenos_woof_pagination_trigger_action:hover {
border-left-color: #e36c02;
border-right-color: #e36c02;
}
.cenos_woof_pagination_trigger a.cenos_woof_pagination_trigger_action.disabled {
display: none;
}
.cenos_woof_pagination_trigger .loaded_msg {
display: none;
width: 100%;
text-align: center;
letter-spacing: 2px;
text-transform: uppercase;
}
.cenos_woof_pagination_trigger svg.fm-icon {
display: none;
}
.cenos_woof_pagination_trigger.disabled .loaded_msg {
display: inline-block;
color: #e36c02;
font-weight: 500;
}
.cenos_woof_pagination_trigger.disabled .cenos_woof_pagination_trigger_action {
display: none;
}
.select2-container { }
.select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow {
background-position: left center;
background-size: auto;
background-repeat: no-repeat;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon.svg);
}
.shop-control-quick-search .select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/select_icon_single_product.svg);
}
.select2-container.select2-container--default .select2-selection--single > .select2-selection__arrow > b {
display: none;
}
.select2-container.select2-container--default .select2-dropdown {
min-width: 188px;
border: none;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}
.select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options {
max-height: 288px;
}
.select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option {
padding: 9px 12px;
color: #242424;
}
.select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option[aria-selected=true], .select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option[data-selected=true], .select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option.select2-results__option--highlighted[aria-selected], .select2-container.select2-container--default .select2-dropdown .select2-results > .select2-results__options .select2-results__option.select2-results__option--highlighted[data-selected] {
background-color: #eee;
color: #242424;
}
.filter-content-wrap { }
.filter-content-wrap .widget-woof .widget-title {
display: none;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner > h4 {
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
margin-bottom: 1.5rem;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list {
padding-left: 0;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li {
margin: 0 !important;
padding: 0 !important;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list li > label {
margin-bottom: 0 !important;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li > div {
padding: 0;
margin: 0 8px 0 0;
border-radius: 50%;
border: 1px solid #dcdcdc;
width: 15px;
height: 15px;
background: none;
transition: border-color 0.15s;
-webkit-transition: border-color 0.15s;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li > div.checked {
border-color: #242424;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/check-icon-bg.svg);
background-size: 10px 10px;
background-repeat: no-repeat;
background-position: 1px center;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label {
font-size: 13px;
font-weight: 400;
color: #555555;
padding: 0;
margin: 0;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label .woof_checkbox_count {
color: #777;
font-weight: normal;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label.woof_checkbox_label_selected {
color: #242424;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li .woof_childs_list_opener {
margin-left: auto;
margin-right: 30px;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li .woof_childs_list_opener > span {
background-size: 15px 15px !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 24px;
height: 24px;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li .woof_childs_list_opener .woof_is_closed {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/angle-down-icon-bg.svg);
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li .woof_childs_list_opener .woof_is_opened {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/angle-up-icon-bg.svg);
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li ul.woof_childs_list {
flex: 0 0 100%;
padding-left: 0;
margin: 12px 0 0 12px !important;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li:not(:last-child) {
margin: 0 0 20px !important;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li:hover > div {
border-color: #242424;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li {
display: flex;
flex-wrap: wrap;
align-items: center;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li > div {
padding: 0;
margin: 0 8px 0 0;
border-radius: 50%;
border: 1px solid #dcdcdc;
width: 15px;
height: 15px;
background: none;
transition: border-color 0.15s;
-webkit-transition: border-color 0.15s;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li > div.checked {
border-color: #242424;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/check-icon-bg.svg);
background-size: 10px 10px;
background-repeat: no-repeat;
background-position: 1px center;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label {
font-size: 13px;
font-weight: 500;
color: #242424;
padding: 0;
margin: 0;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label .woof_checkbox_count {
color: #777;
font-weight: normal;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label.woof_checkbox_label_selected, .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label:hover {
color: #242424;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li .woof_childs_list_opener {
margin-left: auto;
margin-right: 0;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li .woof_childs_list_opener > span {
background-size: 15px 15px !important;
background-repeat: no-repeat !important;
background-position: center !important;
width: 24px;
height: 24px;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li .woof_childs_list_opener .woof_is_closed {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/angle-down-icon-bg.svg);
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li .woof_childs_list_opener .woof_is_opened {
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/angle-up-icon-bg.svg);
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li ul.woof_childs_list {
flex: 0 0 100%;
padding-left: 0;
margin: 12px 0 0 12px !important;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li:not(:last-child) {
margin: 0 0 12px !important;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li:hover > div {
border-color: #242424;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color {
display: flex;
flex-wrap: wrap;
width: 100%;
align-items: center;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li {
flex: 0 0 50%;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li .woof_tooltip {
display: flex;
align-items: center;
justify-content: flex-end;
flex-direction: row-reverse;
margin-bottom: 30px;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li .woof_tooltip .woof_tooltip_data {
visibility: visible !important;
background: none;
border: none;
color: #555555;
position: static;
font-size: 13px;
font-weight: 400;
min-width: 0;
min-height: 0;
max-width: 100%;
margin: 0;
padding: 0;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li .woof_tooltip .woof_tooltip_data > span {
color: #555555;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li .woof_tooltip .woof_tooltip_data.checked {
color: #242424;
opacity: 1;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li .woof_tooltip .woof_color_term {
margin-right: 8px !important;
border-radius: 50%;
width: 18px;
height: 18px;
padding: 0;
border: 2px solid #FFF;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0);
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li .woof_tooltip .woof_color_term:hover, .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_color > li .woof_tooltip .woof_color_term.checked {
border-width: 2px;
border-color: #FFF;
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.8);
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li {
position: relative;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_count {
position: absolute;
top: 0;
right: 0;
width: 16px;
height: 16px;
line-height: 16px !important;
background: #f8f8f8;
color: #FFF;
font-size: 10px;
font-weight: 500 !important;
border: 1px solid #ccc;
color: #aaa;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_term {
width: auto;
margin: 5px 10px 5px 0;
background: #ffffff;
padding: 6px 8px;
line-height: 18px;
font-size: 13px;
font-weight: 400;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
transition: background-color 0.3s linear 0s, color 0.3s linear 0s, border-color 0.3s linear 0s;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_term:hover {
border-color: #242424;
color: #242424;
background: #ffffff;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_label li .woof_label_term.checked {
background-color: #242424;
border-color: #242424;
color: #ffffff;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_container_product_cat {
overflow-x: hidden;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-line {
height: 2px;
top: 26px;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-line .irs-line-left {
background: #777777;
height: 2px;
border-left: 1px solid #979797;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-line .irs-line-mid {
height: 2px;
background: #777777;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-line .irs-line-right {
background: #777777;
height: 2px;
border-right: 1px solid #979797;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-min, .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-max, .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-from, .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-to, .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs .irs-single {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-grid {
display: none;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-bar {
height: 2px;
top: 26px;
background: #dddddd;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-slider {
width: 6px;
height: 6px;
top: 18px;
background: #aaaaaa;
border-radius: 50%;
border: 6px solid #FFF;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
box-sizing: content-box;
cursor: pointer;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-slider:hover {
background-color: #e36c02;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container {
margin: 2rem 0 1rem;
flex: 0 0 100%;
max-width: 100%;
}
.filter-content-wrap.dropdown {
border: none;
padding: 3rem 0;
box-sizing: content-box;
}
.filter-content-wrap.dropdown::before {
z-index: 1;
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: -webkit-calc(100vw);
width: -moz-calc(100vw);
width: calc(100vw);
height: 100%;
background-color: #FFF;
border-top: 1px solid #ccc;
box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 10px 10px 15px 0px rgba(0, 0, 0, 0.05);
}
.filter-content-wrap.dropdown > * {
z-index: 2;
}
.filter-content-wrap.dropdown > .cenos-close-filter-btn {
display: block;
transform: translateY(-1.5rem);
margin-bottom: 1rem;
font-size: 14px;
font-weight: 500;
}
.filter-content-wrap.dropdown > .cenos-close-filter-btn svg.fm-icon {
width: 12px;
height: 12px;
margin-right: 10px;
}
.filter-content-wrap.dropdown > .cenos-close-filter-btn:not(:hover) {
color: #242424;
}
.filter-content-wrap.dropdown > .cenos-close-filter-btn:not(:hover) svg.fm-icon {
fill: #242424;
}
.filter-content-wrap.dropdown > section.WOOF_Widget {
width: 100%;
z-index: 2;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone {
display: flex;
flex-wrap: wrap;
width: 100%;
flex-direction: column;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container {
flex: 1;
margin: 0;
padding: 0;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container + .woof_container {
margin-top: 30px;
padding-top: 30px;
border-top: 1px solid #dcdcdc;
}
.filter-content-wrap.dropdown.show {
transform: translateY(-65px);
}
.offcanvas-content .filter-content-wrap .woof_container, .sidebar-left .filter-content-wrap .woof_container, .sidebar-right .filter-content-wrap .woof_container {
padding-bottom: 0;
margin-bottom: 0;
}
.offcanvas-content .filter-content-wrap .woof_container + .woof_container, .sidebar-left .filter-content-wrap .woof_container + .woof_container, .sidebar-right .filter-content-wrap .woof_container + .woof_container {
border-top: 1px solid #dcdcdc;
padding-top: 3rem;
margin-top: 3rem;
}
.offcanvas-content .filter-content-wrap .woof_container {
padding: 0 1.5rem;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn {
width: auto;
height: 40px;
margin-top: 10px;
margin-right: 1.5rem;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn .c-button__text {
display: flex;
align-items: center;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn svg.fm-icon {
width: 12px;
height: 12px;
margin-right: 6px;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn .button-title {
display: inline-block;
font-size: 11px;
font-weight: 500;
line-height: 15px;
text-transform: uppercase;
color: #242424;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn .button-title:hover {
color: #777;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn:focus {
outline: none;
}
#filter-canvas .offcanvas-content > h3 {
margin-bottom: 26px;
font-size: 14px;
font-weight: bold;
line-height: 40px;
padding: 10px 1.5rem;
border-bottom: 1px solid #cccccc;
}
#filter-canvas .offcanvas_box_head {
position: relative;
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
#filter-canvas .offcanvas_box_head > h3 {
visibility: hidden;
}
#filter-canvas .offcanvas_box_head .cenos-close-btn {
position: static;
line-height: 24px;
height: auto;
width: auto;
margin: 0 0 8px;
}
.variable-items-wrapper { }
.variable-items-wrapper li.woo-variation-swatches-variable-item-more a {
font-size: 12px !important;
color: #888;
margin-left: 5px;
text-transform: lowercase;
}
body.woo-variation-swatches .variable-items-wrapper li.variable-item.color-variable-item {
box-shadow: none;
border-radius: 50%;
}
body.woo-variation-swatches .variable-items-wrapper li.variable-item.color-variable-item:hover, body.woo-variation-swatches .variable-items-wrapper li.variable-item.color-variable-item.selected {
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}
body.woo-variation-swatches .variable-items-wrapper li.variable-item.color-variable-item.selected:hover {
box-shadow: 0 0 0 1px black;
}
#yith-wcwl-popup-message { top: 30px !important;
right: 30px !important;
margin: 0 !important;
}
@media (min-width: 768px) {
.page-heading-wrap { }
.page-heading-wrap .shop-heading-content .shop-heading-container .shop-title {
font-size: 48px;
font-weight: 300;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-carousel {
margin-top: 3rem;
}
.page-heading-wrap .shop-heading-content.heading-color-light .shop-title {
color: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb {
color: #FFF;
}
.woocommerce .page-heading-wrap .shop-heading-content.heading-color-light .woocommerce-breadcrumb a {
color: #dddddd;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel a {
color: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel a::after {
border-color: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel a svg {
fill: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel .swiper-button-next svg.fm-icon,
.page-heading-wrap .shop-heading-content.heading-color-light .cenos-carousel .swiper-button-prev svg.fm-icon {
fill: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light .term-description p {
color: #dddddd;
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link {
border-color: rgba(255, 255, 255, 0.25);
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link > span {
color: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link svg.fm-icon {
fill: #fff;
}
.page-heading-wrap .shop-heading-content.heading-color-light a.cenos-parent-term-link:hover {
border-color: rgba(255, 255, 255, 0.55);
}
.page-heading-wrap .shop-heading-content.heading-color-dark .shop-title {
color: #242424;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb {
color: #242424;
}
.woocommerce .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb a {
color: #777;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb .swiper-button-next svg.fm-icon,
.page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb .swiper-button-prev svg.fm-icon {
fill: #242424;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .cenos-carousel a {
color: #242424;
}
.page-heading-wrap .shop-heading-content.heading-color-dark .cenos-carousel a::after {
color: #242424;
}
.page-heading-wrap .shop-heading-content.heading-simple-small {
padding: 0;
min-height: 60px;
}
.page-heading-wrap .shop-heading-content.heading-simple-small .shop-heading-container {
height: 60px;
}
.page-heading-wrap .shop-heading-content.heading-simple-medium {
padding: 0;
min-height: 90px;
}
.page-heading-wrap .shop-heading-content.heading-simple-medium .shop-heading-container {
height: 90px;
}
.page-heading-wrap .shop-heading-content.heading-simple-large {
padding: 0;
min-height: 120px;
}
.page-heading-wrap .shop-heading-content.heading-simple-large .shop-heading-container {
height: 120px;
}
}
@media (min-width: 992px) {
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone {
flex-direction: row;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container + .woof_container {
margin: 0 15px 0 0;
padding-top: 0;
border-top: none;
}
}
@media (min-width: 1025px) {
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone {
flex-direction: row;
}
.filter-content-wrap.dropdown > section.WOOF_Widget .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container + .woof_container {
margin: 0 3rem 0 0;
}
}
@media (min-width: 1200px) {
.shop-page-layout-full-width .header-container,
.shop-page-layout-full-width .footer-container,
.shop-page-layout-full-width #content > .container,
.shop-page-layout-full-width .shop-heading-container {
width: 100%;
max-width: 100%;
padding-left: 30px;
padding-right: 30px;
}
.archive.woocommerce-page #content {
padding-bottom: 50px;
}
}
@media (min-width: 1500px) {
.shop-page-layout-full-width .header-container,
.shop-page-layout-full-width .footer-container,
.shop-page-layout-full-width #content > .container,
.shop-page-layout-full-width .shop-heading-container {
width: 100%;
max-width: 100%;
padding-left: 88px;
padding-right: 88px;
}
}
@media (max-width: 1024px) {
.archive.woocommerce-page #content > .container .sidebar-left, .archive.woocommerce-page #content > .container .sidebar-right {
position: relative;
}
.archive.woocommerce-page #content > .container .sidebar-left .cenos-filter-button.btn-for-sidebar > a.cenos-filter-btn, .archive.woocommerce-page #content > .container .sidebar-right .cenos-filter-button.btn-for-sidebar > a.cenos-filter-btn {
position: absolute;
left: 15px;
z-index: 9;
}
.archive.woocommerce-page #content > .container .sidebar-left .filter-content-wrap.mobile-dropdown,
.archive.woocommerce-page #content > .container .sidebar-left .filter-content-wrap.dropdown, .archive.woocommerce-page #content > .container .sidebar-right .filter-content-wrap.mobile-dropdown,
.archive.woocommerce-page #content > .container .sidebar-right .filter-content-wrap.dropdown {
top: calc(100% + 30px);
}
.archive.woocommerce-page #content > .container .sidebar-left .cenos-shop-control, .archive.woocommerce-page #content > .container .sidebar-right .cenos-shop-control {
padding-left: 88px;
}
}
@media (max-width: 767px) {
.offcanvas-content .filter-content-wrap .woof_container {
padding: 0 15px;
}
#filter-canvas {
overflow: unset;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn {
transform: translateX(45px);
display: block;
position: fixed;
top: 15px;
right: 0;
z-index: 9999;
margin: 0;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn .c-button__text {
display: flex;
flex-direction: column;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn svg.fm-icon {
width: 20px;
height: 20px;
margin: 0 0 6px 0;
fill: #ffffff;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn .button-title {
display: inline-block;
font-size: 10px;
font-weight: 400;
line-height: 13px;
text-transform: uppercase;
color: #ffffff;
}
#filter-canvas .offcanvas-content {
padding-top: 30px;
}
#filter-canvas .offcanvas-content .offcanvas_box_head > h3 {
display: none;
}
#filter-canvas .offcanvas-content .filter-content-wrap .woof_container + .woof_container, #filter-canvas .sidebar-left .filter-content-wrap .woof_container + .woof_container, #filter-canvas .sidebar-right .filter-content-wrap .woof_container + .woof_container {
border-top: 1px solid #e4e4e4;
padding-top: 35px;
margin-top: 35px;
}
#filter-canvas .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner > h4 {
font-size: 10px;
text-transform: uppercase;
margin-bottom: 1rem;
}
}
@media (max-width: 575px) {
#content > .container .cenos-shop-control .main-shop-control > * {
display: none;
}
#content > .container .cenos-shop-control .main-shop-control > .cenos-products-tabs, #content > .container .cenos-shop-control .main-shop-control > .woocommerce-ordering, #content > .container .cenos-shop-control .main-shop-control > .cenos-filter-button {
display: block;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a {
margin-right: 15px;
padding-bottom: 0;
margin-bottom: 8px;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a::after {
left: 0;
bottom: 0;
width: 100%;
}
} .woocommerce ul.products.products-grid-style li.product {
margin-bottom: 15px;
}
.woocommerce ul.products.products-grid-style li.product .cenos_flashs_group {
display: flex;
flex-direction: column;
position: absolute;
top: 15px;
left: 15px;
right: auto;
text-align: right;
z-index: 2;
}
.woocommerce ul.products.products-grid-style li.product .cenos_flashs_group .woocommerce-badge {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
height: 17px;
padding: 0 10px;
min-width: 42px;
display: flex;
align-items: center;
justify-content: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.woocommerce ul.products.products-grid-style li.product .cenos_flashs_group .woocommerce-badge + .woocommerce-badge {
margin-top: 3px;
}
.woocommerce ul.products.products-grid-style li.product .cenos_flashs_group .woocommerce-badge.sold_out {
background: none;
}
.woocommerce ul.products.products-grid-style li.product .cenos_flashs_group .woocommerce-badge.sold_out .fm-icon {
fill: #FFF;
margin-right: 5px;
}
.woocommerce ul.products.products-grid-style li.product .product-item-cat-link {
font-size: 10px;
font-weight: 600;
color: #777;
text-transform: uppercase;
line-height: 13px;
display: block;
}
.woocommerce ul.products.products-grid-style li.product .product-item-cat-link:hover {
color: #e36c02;
}
.woocommerce ul.products.products-grid-style li.product .woocommerce-loop-product__title {
padding: 0;
}
.woocommerce ul.products.products-grid-style li.product .woocommerce-loop-product__title, .woocommerce ul.products.products-grid-style li.product .woocommerce-loop-product__title a {
font-size: 14px;
font-weight: 400;
color: #242424;
line-height: 18px;
}
.woocommerce ul.products.products-grid-style li.product .woocommerce-loop-product__title a:hover {
opacity: 0.8;
}
.woocommerce ul.products.products-grid-style li.product .price {
color: #555;
font-size: 15px;
line-height: 18px;
font-weight: 400;
}
.woocommerce ul.products.products-grid-style li.product .price del {
color: #aaa;
margin-right: 5px;
font-weight: 400;
font-size: 12px;
}
.woocommerce ul.products.products-grid-style li.product .price ins {
color: #ec1d25;
text-decoration: none;
font-weight: inherit;
}
.woocommerce ul.products.products-grid-style li.product .price .woocommerce-variation-availability {
display: none;
}
.woocommerce ul.products.products-grid-style li.product .star-rating {
margin: 0;
letter-spacing: 5px;
color: #242424;
font-size: 10px;
width: 72px;
line-height: 11px;
}
.woocommerce ul.products.products-grid-style li.product .variations_form {
padding: 0 2px;
}
.woocommerce ul.products.products-grid-style li.product .variations_form * {
margin-top: 0;
margin-bottom: 0;
line-height: 0;
}
.woocommerce ul.products.products-grid-style li.product .variations_form .woo-variation-swatches-variable-item-more {
line-height: 18px;
width: auto;
}
.woocommerce ul.products.products-grid-style li.product .variations_form .variable-items-wrapper li.variable-item {
height: 25px;
width: 25px;
border-radius: 50%;
}
.woocommerce ul.products.products-grid-style li.product .variations_form .variable-items-wrapper li.variable-item.color-variable-item {
height: 20px;
width: 20px;
}
.woocommerce ul.products.products-grid-style li.product .variations_form .variable-items-wrapper li.variable-item.color-variable-item .variable-item-span-color {
border-radius: 50%;
}
.woocommerce ul.products.products-grid-style li.product .variations_form .variable-items-wrapper li.variable-item.image-variable-item > img {
border-radius: 50%;
}
.woocommerce ul.products.products-grid-style li.product .yith-wcwl-add-button .view-wishlist, .woocommerce ul.products.products-grid-style li.product .yith-wcwl-add-button .separator {
display: none;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
margin: 0;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button::before { display: none !important;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_already_on_wishlist-text {
display: none;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
display: inline-block;
fill: #777;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
display: none;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
fill: #242424;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
animation: heartBeat 1.2s ease-in-out infinite;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-make-remove span.tinvwl_remove_from_wishlist-text {
display: none !important;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon {
display: none;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
display: inline-block;
}
.woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover, .woocommerce ul.products.products-grid-style li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover:hover {
fill: #ec1d25;
}
.woocommerce ul.products.products-grid-style li.product .yith-wcqv-button svg {
fill: #777;
}
.woocommerce ul.products.products-grid-style li.product .yith-wcqv-button:hover svg {
fill: #242424;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail {
position: relative;
margin-bottom: 18px;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action {
position: absolute;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right {
z-index: 1;
position: absolute;
right: 8px;
top: 8px;
display: flex;
flex-direction: column;
align-items: flex-end;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right a.button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button {
width: 35px;
height: 35px;
background: none;
margin: 0;
padding: 0;
font-size: 0;
display: flex;
justify-content: center;
align-items: center;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right a.button svg, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button svg {
width: 15px;
height: 15px;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right a.button svg {
fill: #777;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right a.button:hover svg {
fill: #242424;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: 10px;
z-index: 1;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.bottom > a.button svg.fm-icon {
margin-right: 6px;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action a.button {
display: flex;
align-items: center;
justify-content: center;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action > a.button.yith-wcqv-button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action a.button.compare {
display: none;
}
.woocommerce ul.products.products-grid-style li.product .product-infos {
display: flex;
flex-direction: column;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos,
.woocommerce ul.products.products-grid-style li.product .product-infos .cenos_item_title_wrapper,
.woocommerce ul.products.products-grid-style li.product .product-infos .cenos_item_button_wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-item-cat-link {
margin-bottom: 4px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .star-rating {
margin-bottom: 4px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos {
margin-bottom: 4px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos .product-item-cat-link {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .product-top-infos .star-rating {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .woocommerce-loop-product__title {
margin-bottom: 12px;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .price {
margin: 0;
}
.woocommerce ul.products.products-grid-style li.product .product-infos .variations_form {
margin: 0;
}
.woocommerce ul.products.products-grid-style li.product.outofstock .cenos_flashs_group {
z-index: 3;
}
.woocommerce ul.products.products-grid-style li.product.outofstock .product-thumbnail::before {
position: absolute;
left: 0;
top: 0;
z-index: 1;
content: "";
display: inline-block;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.15);
}
.woocommerce ul.products.products-grid-style li.product.outofstock .product-thumbnail .cenos_thumb_action {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-thumbnail {
margin-bottom: 18px;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .product-top-infos {
order: 1;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .cenos_item_title_wrapper {
order: 2;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .variations_form {
order: 3;
margin-bottom: 15px;
margin-top: -6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .price {
order: 4;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .woocommerce-loop-product__title a:hover {
opacity: 1;
color: #e36c02;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .cenos_item_title_wrapper {
align-items: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .variations_form {
transform: translateX(-2px);
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-thumbnail .swiper-button-next {
right: 0;
border-radius: 3px 0 0 3px;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-thumbnail .swiper-button-next svg.fm-icon {
width: 15px;
height: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-thumbnail .swiper-button-prev {
left: 0;
border-radius: 0 3px 3px 0;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-thumbnail .swiper-button-prev svg.fm-icon {
width: 15px;
height: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-infos .cenos_item_button_wrapper {
position: relative;
flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-infos .cenos_item_button_wrapper a.button {
justify-content: center;
align-items: center;
flex: 0 0 100%;
width: 100%;
display: flex;
padding: 10px 0;
line-height: 30px;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
background-color: #eeeeee;
color: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-infos .cenos_item_button_wrapper a.button svg.fm-icon {
fill: #242424;
margin-right: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-infos .cenos_item_button_wrapper a.button + .button {
margin-top: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-infos .cenos_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-grid-style.product-item-slider .product-infos .cenos_item_button_wrapper a.button.compare {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-slider .product-infos .cenos_item_button_wrapper .variations_form {
width: 100%;
margin-top: 8px;
padding: 0;
}
.woocommerce ul.products.products-grid-style.product-item-slider .swiper-lazy-preloader {
border: none;
}
.woocommerce ul.products.products-grid-style.product-item-border {
border-left: 1px solid #dcdcdc;
margin-left: 1px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product {
box-sizing: content-box;
background: none;
margin: -1px 0 0 -1px !important;
border: 1px solid #dcdcdc;
text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: 0;
display: flex;
width: 100% !important;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
flex: 1;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
height: 50px;
width: 100%;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
transition: background-color 0.35s linear 0s, transform 0.35s linear 0s;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button svg {
margin-right: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.added {
background-color: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.yith-wcqv-button {
background-color: #e36c02;
color: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.yith-wcqv-button svg {
fill: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.yith-wcqv-button:hover {
background-color: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt,
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right .yith-wcwl-add-to-wishlist a.delete_item.button.alt {
box-shadow: none;
width: auto;
height: auto;
background: none;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button.yith-wcqv-button, .woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button.compare {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos {
background: transparent;
padding: 22px 0;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos .variations_form {
margin-top: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos .variations_form .variations .variable-items-wrapper {
justify-content: center !important;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos .star-rating {
margin: 0 auto;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos .star-rating + .price {
margin-top: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos .woocommerce-loop-product__title {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos .woocommerce-loop-product__title + .star-rating {
margin-top: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-infos .woocommerce-loop-product__title + .price {
margin-top: 12px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover, .woocommerce ul.products.products-grid-style.product-item-border li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
background: none;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.icon-hover, .woocommerce ul.products.products-grid-style.product-item-border li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.icon-hover {
fill: #ec1d25;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos {
text-align: left;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos .product-top-infos {
order: 1;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos .woocommerce-loop-product__title {
order: 2;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos .variations_form {
order: 3;
margin-bottom: 15px;
margin-top: -6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos .price {
order: 4;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos > a.button {
display: none;
order: 5;
margin: 0;
background: none;
border: none;
border-radius: 0;
color: #e36c02;
padding: 0;
line-height: 18px;
font-size: 14px;
font-weight: 500;
text-transform: capitalize;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos > a.button svg.fm-icon {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos > a.button:hover {
opacity: 0.8;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
display: flex;
margin: 0;
padding: 0;
font-size: 0;
justify-content: center;
align-items: center;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product {
text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail {
margin-bottom: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom {
display: flex;
width: calc(100% - 10px) !important;
margin-left: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
flex: 1;
margin: 0 5px;
text-align: center;
padding: 0 15px;
height: 40px;
font-size: 13px;
text-transform: capitalize;
font-weight: 400;
line-height: 15px;
color: #555;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button > svg.fm-icon {
margin-right: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.right .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt,
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.right .yith-wcwl-add-to-wishlist a.delete_item.button.alt {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-infos .variations_form {
margin-top: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-infos .variations_form .variations .variable-items-wrapper {
justify-content: center !important;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-infos .star-rating {
margin: 0 auto;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-infos .star-rating + .price {
margin-top: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-infos .woocommerce-loop-product__title {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-infos .woocommerce-loop-product__title + .star-rating {
margin-top: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-infos .woocommerce-loop-product__title + .price {
margin-top: 12px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product {
text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail {
margin-bottom: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: 0;
display: flex;
width: 100% !important;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
flex: 1;
height: 50px;
width: 100%;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 15px;
font-weight: 400;
line-height: 18px;
text-transform: capitalize;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button > svg.fm-icon {
margin-right: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.yith-wcqv-button {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos .star-rating {
margin: 0 auto;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos .star-rating + .price {
margin-top: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos .woocommerce-loop-product__title {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos .woocommerce-loop-product__title + .star-rating {
margin-top: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos .woocommerce-loop-product__title + .price {
margin-top: 12px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos .variations_form .variations .variable-items-wrapper {
justify-content: center !important;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product {
background: #FFF;
text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: 0;
display: flex;
width: 100% !important;
z-index: 1;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
height: 50px;
width: 100%;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
transition: background-color 0.35s linear 0s, transform 0.35s linear 0s;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button svg {
margin-right: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.right a.button {
background: none;
width: 30px;
height: 30px;
box-shadow: none;
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos {
padding: 22px 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .variations_form {
margin-top: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .variations_form .variations .variable-items-wrapper {
justify-content: center !important;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .star-rating {
margin: 0 auto;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .star-rating + .price {
margin-top: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .woocommerce-loop-product__title {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .woocommerce-loop-product__title a:hover {
opacity: 1;
color: #e36c02;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .woocommerce-loop-product__title + .star-rating {
margin-top: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .woocommerce-loop-product__title + .price {
margin-top: 12px;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-thumbnail {
margin-bottom: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: 0;
display: flex;
width: 100% !important;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-thumbnail .cenos_thumb_action.bottom .price {
background: #FFF;
margin: 0;
height: 40px;
display: flex;
align-items: center;
padding: 0 20px;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-thumbnail .cenos_thumb_action.right a.button {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist {
margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt,
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt {
width: 30px;
height: 30px;
background: none;
margin-top: 0;
padding: 0;
font-size: 0;
justify-content: center;
align-items: center;
display: flex;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt svg.fm-icon,
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt svg.fm-icon {
fill: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt svg.fm-icon.icon-hover,
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt svg.fm-icon.icon-hover {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt:hover svg.fm-icon,
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt:hover svg.fm-icon {
fill: #ec1d25;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt:hover svg.fm-icon:not(.icon-hover),
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt:hover svg.fm-icon:not(.icon-hover) {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.add_to_wishlist.button.alt:hover svg.fm-icon.icon-hover,
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt:hover svg.fm-icon.icon-hover {
display: inline-block;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt svg.fm-icon:not(.icon-hover) {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .yith-wcwl-add-to-wishlist a.delete_item.button.alt svg.icon-hover {
display: block;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .woocommerce-loop-product__title {
padding: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .star-rating {
line-height: 18px;
height: 18px;
margin-left: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-infos .variations_form .variations {
display: flex;
align-items: center;
margin-left: -1px;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.icon-hover, .woocommerce ul.products.products-grid-style.product-item-style-5 li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.icon-hover {
fill: #ec1d25;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail {
margin-bottom: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button svg {
fill: #555555;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-infos {
line-height: 18px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-infos .cenos_item_title_wrapper {
order: -1;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-infos a.product-item-cat-link,
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-infos .woocommerce-loop-product__title {
padding: 0;
line-height: 18px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-infos .price {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product {
text-align: center;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom {
width: 100%;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom .tinv-wraper {
order: -1;
flex: 0 0 48px;
max-width: 48px;
margin: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
padding: 0;
height: 48px;
width: 48px;
font-size: 0;
border-radius: 2px 0 0 2px;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button > svg.fm-icon {
margin: 0;
width: 15px;
height: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button:hover, .woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom .tinv-wraper.tinv-wishlist a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list {
background-color: #f2f2f2;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
display: flex;
justify-content: center;
align-items: center;
flex: 0 0 48px;
max-width: 48px;
border-left: 1px solid #dddddd;
padding: 0;
height: 48px;
width: 48px;
font-size: 0;
border-radius: 0;
background-color: #ffffff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button > svg.fm-icon {
margin: 0;
width: 15px;
height: 15px;
fill: #777;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button:hover, .woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.added {
background-color: #f2f2f2;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button:hover svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.added svg.fm-icon {
fill: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.yith-wcqv-button {
order: 2;
border-radius: 0 2px 2px 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-infos .variations_form {
margin-top: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-infos .variations_form .variations .variable-items-wrapper {
justify-content: center !important;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-infos .star-rating {
margin: 0 auto;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-infos .star-rating + .price {
margin-top: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-infos .woocommerce-loop-product__title {
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-infos .woocommerce-loop-product__title + .star-rating {
margin-top: 5px;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-infos .woocommerce-loop-product__title + .price {
margin-top: 12px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap {
display: flex;
flex-direction: column;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_flashs_group {
position: absolute;
top: 10px;
left: 10px;
right: auto;
z-index: 1;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_flashs_group .woocommerce-badge {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
height: 17px;
padding: 0 10px;
min-width: 42px;
display: flex;
align-items: center;
justify-content: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_flashs_group .woocommerce-badge + .woocommerce-badge {
margin-top: 3px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_flashs_group .woocommerce-badge.sold_out .fm-icon {
fill: #FFF;
margin-right: 5px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-thumbnail {
margin-bottom: 15px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos {
line-height: 24px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos a.product-item-cat-link {
display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
padding: 0;
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title:not(:hover) {
color: #242424;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .star-rating {
margin: 3px 0 12px 0;
letter-spacing: 5px;
color: #242424;
font-size: 10px;
width: 72px;
line-height: 11px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .product-item-excerpt {
font-size: 13px;
color: #777;
margin: 12px 0 10px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .price {
display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper {
display: flex;
justify-content: space-between;
flex-direction: column;
align-items: flex-start;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper a.button {
display: flex;
align-items: center;
justify-content: center;
height: 45px;
font-size: 14px;
font-weight: 400;
text-transform: capitalize;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper a.button svg.fm-icon {
margin-right: 6px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper a.button.compare {
display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper .price {
font-weight: 400;
color: #555;
font-size: 16px;
margin: 0;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper .price del {
color: #aaa;
font-size: 13px;
font-weight: inherit;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper .price ins {
color: #ec1d25;
font-weight: inherit;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper .variations_form .variations > li {
margin: 6px 0 0 0;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist {
margin-top: 15px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
margin: 0;
color: #777;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button::before { display: none !important;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
display: inline-block;
fill: #777;
margin-right: 6px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover {
color: #242424;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
fill: #242424;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
animation: heartBeat 1.2s ease-in-out infinite;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon {
display: none;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
display: inline-block;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover, .woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover:hover {
fill: #ec1d25;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap {
display: flex;
flex-direction: column;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .cenos_flashs_group {
position: absolute;
top: 10px;
left: 10px;
right: auto;
z-index: 1;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .cenos_flashs_group .woocommerce-badge {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
height: 17px;
padding: 0 10px;
min-width: 42px;
display: flex;
align-items: center;
justify-content: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .cenos_flashs_group .woocommerce-badge + .woocommerce-badge {
margin-top: 3px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .cenos_flashs_group .woocommerce-badge.sold_out .fm-icon {
fill: #FFF;
margin-right: 5px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
margin-bottom: 15px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
line-height: 24px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos a.product-item-cat-link {
font-size: 11px;
font-weight: 500;
color: #777;
text-transform: uppercase;
line-height: 14px;
display: block;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
padding: 0;
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title:not(:hover) {
color: #242424;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .star-rating {
margin: 3px 0 12px 0;
letter-spacing: 5px;
color: #242424;
font-size: 10px;
width: 72px;
line-height: 11px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-excerpt {
font-size: 13px;
color: #777;
margin: 8px 0 10px;
max-height: 75px;
overflow-y: hidden;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price {
font-weight: 400;
color: #555;
font-size: 16px;
margin: 6px 0 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price del {
color: #aaa;
font-size: 13px;
font-weight: inherit;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .price ins {
color: #ec1d25;
font-weight: inherit;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button {
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
line-height: 14px;
height: 50px;
padding: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button.product_type_external svg.fm-icon {
display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button svg.fm-icon {
margin-right: 6px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button.compare {
display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_title_wrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
margin: 0;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button::before { display: none !important;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_add_to_wishlist-text, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button span.tinvwl_already_on_wishlist-text {
display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
display: inline-block;
fill: #777;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon.icon-hover {
display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
fill: #242424;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
animation: heartBeat 1.2s ease-in-out infinite;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-make-remove span.tinvwl_remove_from_wishlist-text {
display: none !important;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon {
display: none;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover {
display: inline-block;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.fm-icon.icon-hover:hover {
fill: #ec1d25;
}
@media (min-width: 768px) {
.woocommerce ul.products.products-grid-style li.product {
margin-bottom: 30px;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: 15px;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.bottom a.button {
transition: background 0.25s;
-webkit-transition: background 0.25s;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action > a.button.yith-wcqv-button, .woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action > a.button.compare {
display: flex;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product {
z-index: 9;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap {
position: relative;
z-index: 2;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-thumbnail {
z-index: 2;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos {
position: relative;
z-index: 2;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper {
flex-direction: column;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button {
position: absolute;
bottom: 0;
transform: translateY(0);
opacity: 0;
visibility: hidden;
transition: visibility ease-in-out 0.3s, opacity ease-in-out 0.3s, background-color ease-in-out 0.3s, transform ease-in-out 0.3s;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button svg.fm-icon {
transition: fill 0.35s;
-webkit-transition: fill 0.35s;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button:hover, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button.added {
background: #242424;
color: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button:hover svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button.added svg.fm-icon {
fill: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev {
width: 35px;
height: 60px;
background: #ffffff;
opacity: 0.25;
transition: background 0.3s;
-webkit-transition: background 0.3s;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev svg.fm-icon {
fill: #777;
width: 1rem;
height: 1rem;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next:hover, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev:hover {
background: #FFF;
opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next:hover svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev:hover svg.fm-icon {
fill: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next:focus, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next:visited, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev:focus, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev:visited {
outline: none;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap::before {
z-index: 1;
position: absolute;
top: 0;
content: "";
width: calc(100% + 20px);
height: calc(100% + 90px);
display: block;
background: #ffffff;
transform: translate3d(-10px, -10px, 0);
opacity: 0;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
transition: opacity 0.35s;
-webkit-transition: opacity 0.35s;
-webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap:hover .swiper-button-next:not(.swiper-button-disabled), .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap:hover .swiper-button-prev:not(.swiper-button-disabled) {
opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap:hover::before {
opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product:hover {
z-index: 10;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product:hover .product-infos .cenos_item_button_wrapper a.button {
transform: translateY(70px);
opacity: 1;
visibility: visible;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product:hover .product-thumbnail .swiper-button-next:not(.swiper-button-disabled), .woocommerce ul.products.products-grid-style.product-item-slider li.product:hover .product-thumbnail .swiper-button-prev:not(.swiper-button-disabled) {
opacity: 0.6;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product:hover .product-thumbnail .swiper-button-next:not(.swiper-button-disabled):hover, .woocommerce ul.products.products-grid-style.product-item-slider li.product:hover .product-thumbnail .swiper-button-prev:not(.swiper-button-disabled):hover {
opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button.compare, .woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button.yith-wcqv-button {
opacity: 0;
visibility: hidden;
background: none;
display: inline-block;
transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button.compare svg, .woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button.yith-wcqv-button svg {
transition: fill 0.3s linear 0s;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button:hover {
color: #ec1d25;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.right a.button:hover svg.fm-icon {
fill: #ec1d25;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
transform: translateY(100%);
height: 50px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail:hover .cenos_thumb_action > a.button {
transform: translateY(0);
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail:hover .cenos_thumb_action.right.compare, .woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail:hover .cenos_thumb_action.right.yith-wcqv-button {
opacity: 1;
visibility: visible;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail:hover .cenos_thumb_action a.button.compare, .woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail:hover .cenos_thumb_action a.button.yith-wcqv-button {
opacity: 1;
visibility: visible;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product {
margin-bottom: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-thumbnail .cenos_thumb_action a.button {
transition: background 0.25s linear 0s;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-thumbnail .cenos_thumb_action a.button.compare, .woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-thumbnail .cenos_thumb_action a.button.yith-wcqv-button {
opacity: 0;
visibility: hidden;
transition: opacity ease-in-out 0.25s, visibility ease-in-out 0.25s, background ease-in-out 0.25s;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-thumbnail:hover .cenos_thumb_action a.button.compare, .woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-thumbnail:hover .cenos_thumb_action a.button.yith-wcqv-button {
opacity: 1;
visibility: visible;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos .price {
height: 18px;
transition: visibility ease-in-out 0.25s, opacity ease-in-out 0.25s, transform ease-in-out 0.25s;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos > a.button {
display: block;
visibility: hidden;
opacity: 0;
transition: visibility ease-in-out 0.25s, opacity ease-in-out 0.25s, transform ease-in-out 0.25s;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product:hover .product-infos .price {
transform: translateY(-15px);
visibility: hidden;
opacity: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product:hover .product-infos > a.button {
transform: translateY(-20px);
visibility: visible;
opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product:hover .product-infos > a.button:hover {
opacity: 0.8;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail {
position: relative;
display: flex;
height: max-content;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail a.woocommerce-loop-product__link {
position: inherit;
display: inline-block;
width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail a.woocommerce-loop-product__link::before {
content: "";
display: inline-block;
width: 100%;
height: 100%;
background: transparent;
position: absolute;
left: 0;
right: 0;
transition: background 0.35s;
-webkit-transition: background 0.35s;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.right a.button {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.right a.button.compare {
opacity: 0;
visibility: hidden;
transition: opacity ease-in-out 0.3s, visibility ease-in-out 0.3s;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom {
width: calc(100% - 30px) !important;
margin-left: 15px;
bottom: -40px;
transition: bottom 0.35s;
-webkit-transition: bottom 0.35s;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
color: #555555;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button svg.fm-icon {
fill: #555;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button:not(:hover) {
background: #FFF;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button:hover {
color: #FFF;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button:hover svg.fm-icon {
fill: #FFF;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.added {
background-color: #242424;
color: #FFF;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.added svg.fm-icon {
fill: #ffffff;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.added::after {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.loading::after {
top: 50%;
transform: translateY(-50%);
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail:hover a.woocommerce-loop-product__link::before {
background: rgba(0, 0, 0, 0.1);
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail:hover .cenos_thumb_action.bottom {
bottom: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail:hover .cenos_thumb_action.right a.button.compare {
visibility: visible;
opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
display: flex;
width: 40px;
height: 40px;
background: #FFF;
margin-top: 0;
margin-bottom: 6px;
padding: 0;
font-size: 0;
justify-content: center;
align-items: center;
color: #242424;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product {
margin-bottom: 20px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail {
position: relative;
display: flex;
margin-bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail a.woocommerce-loop-product__link {
display: inline-block;
position: inherit;
width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: -50px;
transition: bottom 0.35s;
-webkit-transition: bottom 0.35s;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
height: 50px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.added::after {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.loading::after {
top: 50%;
transform: translateY(-50%);
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.right a.button.yith-wcqv-button {
opacity: 0;
visibility: hidden;
transition: opacity 0.3s linear 0s, visibility 0.3s linear 0s;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail:hover .cenos_thumb_action.bottom {
bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail:hover .cenos_thumb_action.right a.button.compare, .woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail:hover .cenos_thumb_action.right a.button.yith-wcqv-button {
visibility: visible;
opacity: 1;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos {
padding-top: 18px;
position: relative;
background-color: #ffffff;
transition: transform 0.3s linear 0s, padding 0.3s linear 0s;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos > a.button {
position: absolute;
bottom: 0;
left: 0;
margin-top: 18px;
font-size: 15px;
line-height: 18px;
font-weight: 400;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
text-transform: capitalize;
opacity: 0;
height: 50px;
width: 100%;
transition: opacity 0.3s linear 0s, background-color 0.3s linear 0s, color 0.3s linear 0s;
transform: translateY(90px);
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-infos > a.button svg {
width: 15px;
height: 15px;
line-height: 18px;
margin-right: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product:hover .product-infos {
transform: translateY(-50px);
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product:hover .product-infos > a.button {
opacity: 1;
transform: translateY(65px);
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product {
transition: box-shadow 0.25s;
-webkit-transition: box-shadow 0.25s;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.right a.button.compare, .woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.right a.button.yith-wcqv-button {
opacity: 0;
visibility: hidden;
transition: opacity ease-in-out 0.3s, visibility ease-in-out 0.3s;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.bottom a.button {
transition: bottom 0.35s;
-webkit-transition: bottom 0.35s;
bottom: -50px;
height: 50px;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail:hover .cenos_thumb_action.right a.button.compare, .woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail:hover .cenos_thumb_action.right a.button.yith-wcqv-button {
opacity: 1;
visibility: visible;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
display: flex;
width: 30px;
height: 30px;
background: none;
justify-content: center;
align-items: center;
color: #242424;
box-shadow: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product:hover {
-webkit-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.1);
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product:hover .product-thumbnail .cenos_thumb_action.bottom a.button {
bottom: 0;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-thumbnail .cenos_thumb_action.right {
top: 10px;
right: 10px;
}
.woocommerce ul.products.products-grid-style.product-item-style-5 li.product .product-thumbnail .cenos_thumb_action.bottom .price {
height: 50px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button, .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button {
transform: translateX(60px);
opacity: 0;
visibility: hidden;
transition: visibility ease-in-out 0.3s, opacity ease-in-out 0.3s, transform ease-in-out 0.3s;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button:first-child, .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button:first-child {
transition-delay: 0.15s;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button:nth-child(2), .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button:nth-child(2) {
transition-delay: 0.2s;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button:nth-child(3), .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button:nth-child(3) {
transition-delay: 0.25s;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button:nth-child(4), .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button:nth-child(4) {
transition-delay: 0.3s;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button:hover, .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button:hover {
color: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button:hover svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button:hover svg.fm-icon {
fill: #242424;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.button:hover svg.fm-icon.icon-hover, .woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button:hover svg.fm-icon.icon-hover {
fill: #ec1d25;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product:hover .product-thumbnail .cenos_thumb_action.right a.button, .woocommerce ul.products.products-grid-style.product-item-style-6 li.product:hover .product-thumbnail .cenos_thumb_action.right a.tinvwl_add_to_wishlist_button {
opacity: 1;
visibility: visible;
transform: translateX(0);
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail {
position: relative;
display: flex;
height: max-content;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail a.woocommerce-loop-product__link {
position: inherit;
display: inline-block;
width: 100%;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail a.woocommerce-loop-product__link::before {
content: "";
display: inline-block;
width: 100%;
height: 100%;
background: transparent;
position: absolute;
left: 0;
right: 0;
transition: background 0.35s;
-webkit-transition: background 0.35s;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: -55px;
transition: bottom 0.35s;
-webkit-transition: bottom 0.35s;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail:hover a.woocommerce-loop-product__link::before {
background: rgba(0, 0, 0, 0.1);
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail:hover .cenos_thumb_action.bottom {
bottom: 30px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap {
flex-direction: row;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-thumbnail {
flex: 0 0 220px;
margin-right: 20px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos {
margin-right: 15px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .woocommerce-loop-product__title {
font-size: 18px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .product-item-excerpt {
font-size: 14px;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper {
flex: 0 0 180px;
margin-left: auto;
justify-content: flex-start;
align-items: center;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper > * {
width: 100%;
text-align: center;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper .variations_form .variations {
margin-bottom: 0;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .cenos_item_button_wrapper .variations_form .variations .variable-items-wrapper {
justify-content: center !important;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap {
flex-direction: row;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-thumbnail {
flex: 0 0 180px;
margin-right: 20px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos {
flex: 0 0 calc(100% - 200px);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button {
flex: 0 0 calc(50% - 6px);
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button.yith-wcqv-button, .woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button.compare {
display: flex;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button + .button {
margin-left: 10px;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button:not(:hover):not(.added) {
background: #eeeeee;
color: #242424;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper a.button:not(:hover):not(.added) svg.fm-icon {
fill: #242424;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper .variations_form {
flex: 0 0 100%;
max-width: 100%;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .cenos_item_button_wrapper .variations_form ul.variations {
margin: 0;
}
}
@media (min-width: 1025px) {
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap::before {
width: calc(100% + 30px);
height: calc(100% + 100px);
transform: translate3d(-15px, -15px, 0);
}
}
@media (min-width: 1025px) and (max-width: 1199px) {
.woocommerce ul.products.products-list2-style li.product {
width: 100%;
}
}
@media (min-width: 1500px) {
.woocommerce ul.products.columns-2.products-list2-style li.product {
margin-right: 80px;
width: calc((100% - 80px) / 2);
}
.woocommerce ul.products.columns-2.products-list2-style li.product:nth-child(2n+0) {
margin-right: 0;
}
}
@media (max-width: 767px) {
.woocommerce ul.products.products-grid-style li.product .product-item-wrap .product-infos a.product-item-cat-link {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-item-wrap .product-infos .product-top-infos {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-2 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-style-3 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
display: none;
height: 40px;
line-height: 16px;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
display: none;
height: 40px;
line-height: 16px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-item-wrap .product-infos .product-top-infos {
margin-bottom: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-item-wrap .product-infos .cenos_item_title_wrapper {
flex-direction: column;
align-items: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-item-wrap .product-infos .cenos_item_title_wrapper .woocommerce-loop-product__title {
margin-bottom: 6px;
}
.woocommerce ul.products.products-grid-style.product-item-style-6 li.product .product-item-wrap .product-infos .cenos_item_title_wrapper .price {
margin-bottom: 8px;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .product-top-infos, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_button_wrapper {
display: none;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_title_wrapper {
align-items: flex-start;
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_title_wrapper .woocommerce-loop-product__title {
flex: 0 0 calc(100% - 20px);
}
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .product-infos .cenos_item_title_wrapper .tinv-wraper {
flex: 0 0 15px;
line-height: 15px;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button {
display: none;
}
}
@media (max-width: 575px) {
.woocommerce ul.products.products-grid-style li.product .variations_form { }
.woocommerce ul.products.products-grid-style li.product .variations_form .woo-variation-swatches-variable-item-more {
display: none;
}
} .woocommerce-wishlist table.wishlist_table td.product-remove a.remove_from_wishlist:hover {
background: none !important;
color: #e36c02 !important;
}
.woocommerce-wishlist table.wishlist_table td.product-name a.button.yith-wcqv-button {
color: #ffffff;
margin-left: 10px;
}
.woocommerce-wishlist table.wishlist_table td.product-name a.button.yith-wcqv-button svg.fm-icon {
margin-right: 6px;
}
.tinv-wishlist .tinv-header > h2 {
text-transform: capitalize;
}
.tinv-wishlist table.tinvwl-table-manage-list tr {
border-top: 1px solid #dcdcdc;
}
.tinv-wishlist table.tinvwl-table-manage-list th {
padding: 20px 15px;
color: #242424;
font-size: 15px;
font-weight: 500;
border: none;
}
.tinv-wishlist table.tinvwl-table-manage-list th.product-date {
display: none;
}
.tinv-wishlist table.tinvwl-table-manage-list th.product-cb {
padding-left: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list td {
font-weight: 400;
font-size: 14px;
padding: 20px 15px;
border: none;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-name {
font-size: 14px;
font-weight: 400;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-name dl.variation {
font-size: 13px;
font-weight: 400;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-name dl.variation .variation-LampStyle {
font-weight: inherit;
color: inherit;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-stock {
font-size: 11px;
font-weight: bold;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-stock span:not(.tinvwl-txt) {
display: none;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-stock .tinvwl-txt {
border: 1px solid #242424;
color: #242424;
line-height: 9px;
text-transform: capitalize;
border-radius: 3px;
display: inline-block;
padding: 6px 20px;
font-weight: 500;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-cb {
padding-left: 0;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-action {
padding-right: 0;
min-width: 250px;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-action button.button {
padding: 8px 20px;
font-size: 13px;
line-height: 24px;
text-transform: capitalize;
font-weight: 400;
color: #ffffff;
}
.tinv-wishlist table.tinvwl-table-manage-list td.product-date {
display: none;
}
.tinv-wishlist table.tinvwl-table-manage-list tfoot > tr {
border-bottom: 1px solid #dcdcdc;
}
.tinv-wishlist table.tinvwl-table-manage-list tfoot > tr > td {
padding: 20px 0;
}
.tinv-wishlist table.tinvwl-table-manage-list tfoot .tinvwl-to-right.look_in button.button, .tinv-wishlist table.tinvwl-table-manage-list tfoot .tinvwl-input-group-btn button.button {
font-size: 13px;
height: 42px;
padding: 0 25px;
min-width: 150px;
}
.woocommerce form.woocommerce-form-track-order {
font-size: 15px;
color: #242424;
}
.woocommerce form.woocommerce-form-track-order .form-row {
width: 100%;
flex: 0 0 100%;
max-width: 100%;
}
.woocommerce form.woocommerce-form-track-order .form-row button.button {
width: 100%;
padding: 15px 20px;
line-height: 20px;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
letter-spacing: 1px;
}
.woocommerce form.woocommerce-form-track-order .form-row input.input-text {
height: 50px;
} .error-404 .page-title-404 {
font-size: 60px;
}
.error-404 .fm-search-form button[type=submit] {
width: 50px;
}
.error-404 ul.products.product-item-style-1 {
text-align: left;
}
@media (min-width: 768px) {
.woocommerce form.woocommerce-form-track-order .form-row.form-row-first, .woocommerce form.woocommerce-form-track-order .form-row.form-row-last {
width: 47%;
flex: 0 0 47%;
max-width: 47%;
}
.error-404 .page-title-404 {
font-size: 120px;
font-weight: bold;
}
}  body .cenos-sidebar-content aside.widget ul:not(.woof_list) {
padding-left: 0;
list-style: none;
margin-bottom: 0;
}
body .cenos-sidebar-content aside.widget ul:not(.woof_list) li {
padding: 8px 0;
}
body .cenos-sidebar-content aside.widget ul:not(.woof_list) li ul {
padding-left: 12px;
}
body .cenos-sidebar-content aside.widget ul:not(.woof_list) li ul li:first-child {
margin-top: 8px;
}
body .cenos-sidebar-content aside.widget ul:not(.woof_list) li:last-child {
padding-bottom: 0;
}
body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table {
width: 100%;
}
body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead, body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody {
border-left: 1px solid #dcdcdc;
}
body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead tr, body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody tr {
border-bottom: 1px solid #dcdcdc;
}
body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead th, body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table thead td, body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody th, body .cenos-sidebar-content aside.widget.widget_calendar table.wp-calendar-table tbody td {
border-right: 1px solid #dcdcdc;
border-top: 1px solid #dcdcdc;
text-align: center;
vertical-align: middle;
padding: 8px;
}
body .cenos-sidebar-content aside.widget.widget_text img {
max-width: 100%;
height: auto;
}
body .cenos-sidebar-content aside.widget.widget_rss .rss-date {
display: block;
text-transform: uppercase;
font-size: 13px;
}
body .cenos-sidebar-content aside.widget.widget_recent_comments .recentcomments .comment-author-link {
font-style: italic;
}
body .wp-caption-text {
font-size: 13px;
font-style: italic;
padding-top: 10px;
}
body .site-header .header-layout.header-layout1 .header-main .header-container .site-branding {
display: flex;
min-height: 80px;
align-items: center;
}
body .site-header .header-layout.header-layout1 .header-main .header-container .site-navigation {
align-items: center;
display: flex;
}
body .site-main article.post.sticky .entry-title {
margin-bottom: 1rem;
}
body .site-main article.post.sticky .entry-title > a {
padding-left: 30px;
background-image: url(//wistok.com/wp-content/themes/cenos_v1.1.4/cenos/assets/images/sticky_icon.svg);
background-size: 22px 22px;
background-repeat: no-repeat;
background-position: left center;
border-bottom: 2px solid #e36c02;
padding-bottom: 3px;
}
body .site-footer .footer-section.footer_main {
border-top: 1px solid #e4e4e4;
}
body .site-footer .footer-section.footer_main .footer-items {
flex: 1;
}
body .site-footer .footer-section.footer_main .footer-items .footer-copyright {
width: 100%;
text-align: center;
display: inline-block;
padding: 30px 15px;
}
body .post-password-form input[type=submit] {
background: #242424;
color: #FFF;
height: 100%;
padding: 10px 20px;
line-height: 22px;
border: none;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
letter-spacing: 1px;
}
body .entry-content > table {
margin-bottom: 1rem;
}
body.familab_theme .wp-block-button {
margin-bottom: 20px;
}
body.familab_theme .wp-block-button.is-style-squared .wp-block-button__link {
border-radius: 0;
}
body.familab_theme .wp-block-button__link {
color: #ffffff;
background-color: #32373c;
}
body.familab_theme .wp-block-button__link:hover {
color: #ffffff;
}
body.familab_theme .is-style-outline .wp-block-button__link, body.familab_theme .wp-block-button__link.is-style-outline {
color: #32373c;
background-color: transparent;
}
body.familab_theme .is-style-outline .wp-block-button__link:hover, body.familab_theme .wp-block-button__link.is-style-outline:hover {
color: #32373c;
}
body.familab_theme section.wp-block-cover-image h2 a, body.familab_theme section.wp-block-cover-image h2 a:hover, body.familab_theme section.wp-block-cover-image h2 a:focus, body.familab_theme section.wp-block-cover-image h2 a:active, body.familab_theme .wp-block-cover-image-text a, body.familab_theme .wp-block-cover-image-text a:hover, body.familab_theme .wp-block-cover-image-text a:focus, body.familab_theme .wp-block-cover-image-text a:active, body.familab_theme .wp-block-cover-text a, body.familab_theme .wp-block-cover-text a:hover, body.familab_theme .wp-block-cover-text a:focus, body.familab_theme .wp-block-cover-text a:active {
color: #fff;
}
body .wp-block-cover .wp-block-cover-text {
color: #ffffff;
}
body table caption {
caption-side: top;
background: #f8f8f8;
padding: 10px 15px;
text-transform: capitalize;
font-weight: 500;
color: #242424;
border-style: solid;
border-width: 1px 1px 0 1px;
border-color: #dcdcdc;
}
body table th, body table b, body table strong {
font-weight: 500;
}
body.search .page-title {
margin-bottom: 30px;
}
body.search .site-main {
min-height: 75vh;
}
.single-post table {
margin-bottom: 1rem;
}
article.type-page .entry-content img {
max-width: 100%;
}
article.type-post img {
max-width: 100%;
}
article.type-post .gallery {
display: flex;
flex-wrap: wrap;
}
article.type-post .gallery .gallery-item {
margin: 0.8em 0;
padding: 0 0.8em;
width: 100%;
}
article.type-post .gallery.gallery-columns-2 .gallery-item {
max-width: 50%;
}
article.type-post .gallery.gallery-columns-3 .gallery-item {
max-width: 33.3333333333%;
}
article.type-post .gallery.gallery-columns-4 .gallery-item {
max-width: 25%;
}
article.type-post .gallery.gallery-columns-5 .gallery-item {
max-width: 20%;
}
article.type-post .gallery.gallery-columns-6 .gallery-item {
max-width: 16.6666666667%;
}
article.type-post .gallery.gallery-columns-7 .gallery-item {
max-width: 14.2857142857%;
}
article.type-post .gallery.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
article.type-post .gallery.gallery-columns-9 .gallery-item {
max-width: 11.1111111111%;
} blockquote {
border-left: 2px solid #242424;
padding: 0.5rem 0 0.5rem 1rem;
margin-left: 20px;
font-size: 1.125rem;
font-weight: 500;
}
.single-post blockquote > * {
margin-bottom: 0;
}
.single-post blockquote > * + * {
margin-bottom: 1rem;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget {
margin-bottom: 3rem;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .widget-title {
display: block;
width: 100%;
font-size: 18px;
line-height: 24px;
margin-bottom: 26px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .widget-title::after {
display: block;
width: 30px;
height: 2px;
background: #cccccc;
content: "";
margin-top: 8px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item {
margin-bottom: 20px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item .post-list-thumb {
margin-bottom: 10px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item .post-list-thumb img {
border-radius: 3px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item .post-list-content .post-list-category {
font-size: 11px;
font-weight: 500;
line-height: 20px;
text-transform: uppercase;
display: block;
margin-bottom: 6px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item .post-list-content .post-list-category a:not(:hover) {
color: #777;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item .post-list-content .post-list-title {
font-size: 13px;
font-weight: 600;
line-height: 20px;
margin-bottom: 6px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item .post-list-content .post-list-meta {
font-size: 11px;
line-height: 20px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-item-background {
width: 100%;
height: calc(100% - 60px);
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .entry-taxonomy .cat-links {
margin-left: 15px;
margin-top: 15px;
font-size: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .entry-taxonomy .cat-links a {
margin: 0 6px 0 0;
padding: 0 8px;
height: 22px;
line-height: 23px;
background: rgba(0, 0, 0, 0.35);
border-radius: 2px;
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
color: #FFFFFF;
display: inline-block;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .entry-taxonomy .cat-links a:hover {
background: #242424;
color: #ffffff;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta {
margin-bottom: 0;
margin-top: auto;
font-size: 11px;
font-weight: 500;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta a {
font-size: 11px;
font-weight: 500;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta a:not(:hover) {
color: #777777;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta .posted-on {
font-size: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta .posted-on a {
font-size: 11px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta .post-author {
position: relative;
padding-left: 10px;
margin-left: 10px;
text-transform: capitalize;
position: relative;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta .post-author a {
margin-left: 3px;
text-transform: capitalize;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item.has_background .post-list-content .post-list-meta .post-author::before {
width: 1px;
height: 12px;
background: #aaa;
content: "";
position: absolute;
left: 0;
top: 50%;
margin-top: -6px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_search .widget-title {
margin-bottom: 30px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_search .fm-search-form input.search_text_input {
background: #f4f4f4;
border-radius: 2px 0 0 2px;
box-shadow: none;
-webkit-appearance: none;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_search .fm-search-form button[type=submit] {
width: 44px;
padding: 0 10px;
border-radius: 0 2px 2px 0;
font-size: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_search .fm-search-form button[type=submit] svg.fm-icon {
fill: #ffffff;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_categories {
margin-bottom: 2.5rem;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_categories .widget-title {
margin-bottom: 15px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_categories ul {
padding-left: 0;
list-style: none;
margin-bottom: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_categories ul li {
padding: 8px 0;
text-transform: uppercase;
font-size: 11px;
font-weight: 500;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_categories ul li ul {
padding-left: 12px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_categories ul li ul li:first-child {
margin-top: 8px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.widget_categories ul li:last-child {
padding-bottom: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter {
background: #e36c02;
color: #FFF;
padding: 20px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .widget-title {
color: #ffffff;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .widget-title::after {
background: #ffffff;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter > .text {
line-height: 22px;
margin-bottom: 25px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .fm_newsletter_form {
position: relative;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .fm_newsletter_form input[type=email] {
width: 100%;
background: #ffffff;
border: none;
padding-right: 88px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .fm_newsletter_form input[type=submit] {
position: absolute;
right: 0;
height: 100%;
border: none;
background: none;
padding: 0 10px;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
background: #242424;
color: #FFF;
border-radius: 0 2px 2px 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .fm_newsletter_form input[type=submit]:hover {
background: #000000;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .widget-title {
margin-bottom: 30px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list {
list-style: none;
padding-left: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item {
display: flex;
margin-bottom: 20px;
flex-wrap: wrap;
padding: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item .post-list-thumb {
width: 90px;
margin-right: 20px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item .post-list-thumb a {
display: block;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item .post-list-thumb a img {
max-width: 100%;
height: auto;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item .post-list-content {
flex: 1;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item.has_background {
position: relative;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item.has_background .post-item-background {
position: absolute;
width: 100%;
height: calc(100% - 60px);
background-size: cover;
background-position: center;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item.has_background .post-list-thumb {
width: 100%;
margin-right: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item.has_background .post-list-thumb img {
visibility: hidden;
opacity: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item.has_background .entry-taxonomy {
position: absolute;
top: 0;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_recent_posts .cenos-posts-list .post-item.no-thumbnail .post-list-thumb {
display: none;
}
.header-breadcrumb-wrap .cenos-breadcrumbs .trail-items {
margin: 25px 0;
}
.header-breadcrumb-wrap .cenos-breadcrumbs .trail-item, .header-breadcrumb-wrap .cenos-breadcrumbs .trail-item a {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: #777777;
}
.header-breadcrumb-wrap .cenos-breadcrumbs .trail-item.trail-end, .header-breadcrumb-wrap .cenos-breadcrumbs .trail-item a.trail-end {
color: #242424;
}
.blog-layout-none:not(.page) .header-breadcrumb-wrap {
display: none;
}
.blog-layout-none:not(.page) .header-breadcrumb-wrap + #content {
padding-top: 25px;
}
.header-breadcrumb-wrap + #content {
padding-top: 0;
}
.archive-before-content {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 40px;
}
.archive-before-content .blog_category_list {
margin: 12px 0 0;
padding: 0;
list-style: none;
display: flex;
flex-wrap: wrap;
}
.archive-before-content .blog_category_list .cat-item a, .archive-before-content .blog_category_list .cat-item-all a {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
color: #777777;
}
.archive-before-content .blog_category_list .cat-item a:hover, .archive-before-content .blog_category_list .cat-item-all a:hover {
color: #242424;
}
.archive-before-content .blog_category_list .cat-item:not(:last-child), .archive-before-content .blog_category_list .cat-item-all:not(:last-child) {
margin-right: 20px;
}
.archive-before-content .blog_category_list .cat-item.current-cat > a, .archive-before-content .blog_category_list .cat-item-all.current-cat > a {
color: #242424;
}
.archive-before-content .blog_category_list .cat-item.current-cat > a::after, .archive-before-content .blog_category_list .cat-item-all.current-cat > a::after {
width: 100%;
height: 1px;
background: #242424;
display: block;
content: "";
}
.archive-before-content .blog_category_list:not(.has-current-cat) .cat-item-all a {
color: #242424;
}
.archive-before-content .blog_category_list + .fm-search-form button[type=submit] {
width: 44px;
background: #242424;
}
.archive-before-content .blog_category_list + .fm-search-form button[type=submit] svg {
fill: #FFF;
}
.archive-before-content .fm-search-form input.search-field.search_text_input {
background: #ffffff;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid {
margin-bottom: 30px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner {
background: #FFF;
transition: box-shadow 0.3s;
-webkit-transition: box-shadow 0.3s;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info {
display: flex;
flex-direction: column;
background: inherit;
padding: 25px 20px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links {
font-size: 0;
line-height: 12px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links a {
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
padding: 0 8px;
line-height: 18px;
position: relative;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links a:not(:hover) {
color: #777777;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links a:first-child {
padding-left: 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links a + a::before {
content: "";
width: 3px;
height: 3px;
display: inline-block;
border-radius: 50%;
background: #777777;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .post-item-head h2.entry-title {
line-height: 24px;
margin-bottom: 15px;
overflow-wrap: break-word;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .post-item-head h2.entry-title a {
font-size: 16px;
font-weight: 500;
line-height: inherit;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .excerpt {
display: none;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas {
margin-bottom: 0;
margin-top: auto;
font-size: 11px;
font-weight: 500;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas a {
font-size: 11px;
font-weight: 500;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas a:not(:hover) {
color: #777777;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas .posted-on {
font-size: 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas .posted-on a {
font-size: 11px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas .post-author {
position: relative;
padding-left: 10px;
margin-left: 10px;
text-transform: capitalize;
position: relative;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas .post-author a {
margin-left: 3px;
text-transform: capitalize;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info .metas .post-author::before {
width: 1px;
height: 12px;
background: #aaa;
content: "";
position: absolute;
left: 0;
top: 50%;
margin-top: -6px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner.no-thumbnail .entry-image-attachment {
margin: 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner.no-thumbnail .info .post-item-head .post-categories {
position: static;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner.no-thumbnail .info .post-item-head .post-categories .cat-links {
margin: 0 0 0.25rem 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list {
margin-bottom: 60px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner {
position: relative;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .entry-image-attachment {
margin-bottom: 35px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .post-item-head .post-categories {
position: absolute;
left: 0;
top: 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links {
margin-left: 15px;
margin-top: 15px;
font-size: 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links a {
margin: 0 6px 0 0;
padding: 0 8px;
height: 22px;
line-height: 23px;
background: rgba(0, 0, 0, 0.35);
border-radius: 2px;
font-size: 11px;
font-weight: 500;
text-transform: uppercase;
color: #FFFFFF;
display: inline-block;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .post-item-head .post-categories .entry-taxonomy .cat-links a:hover {
background: #242424;
color: #ffffff;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .post-item-head .entry-title {
line-height: 32px;
overflow-wrap: break-word;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas {
margin-bottom: 0;
margin-top: auto;
font-size: 13px;
font-weight: 500;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas a {
font-size: 13px;
font-weight: 500;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas a:not(:hover) {
color: #777777;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas .posted-on {
font-size: 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas .posted-on a {
font-size: 13px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas .post-author {
position: relative;
padding-left: 10px;
margin-left: 10px;
text-transform: capitalize;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas .post-author a {
margin-left: 3px;
text-transform: capitalize;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .metas .post-author::before {
width: 1px;
height: 12px;
background: #aaa;
content: "";
position: absolute;
left: 0;
top: 50%;
margin-top: -6px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .excerpt {
margin-top: 10px;
font-size: 15px;
color: #242424;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner.no-thumbnail .entry-image-attachment {
margin: 0;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner.no-thumbnail .info .post-item-head .post-categories {
position: static;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner.no-thumbnail .info .post-item-head .post-categories .cat-links {
margin: 0 0 0.25rem 0;
}
body:not(.woocommerce-page) .page-links {
clear: both;
}
body:not(.woocommerce-page) .page-links .post-page-numbers {
padding: 8px;
display: inline-block;
font-weight: 500;
}
body:not(.woocommerce-page) .page-links .post-page-numbers.current {
color: #e36c02;
}
body:not(.woocommerce-page) .page-links .post-page-numbers.current:hover {
color: #000000;
}
body:not(.woocommerce-page) .pagination .nav-links {
display: inline-block;
width: 100%;
}
body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li .page-numbers {
margin: 5px;
font-size: 11px;
text-transform: uppercase;
font-weight: 700;
width: 40px;
height: 40px;
line-height: 40px;
background: #ffffff;
}
.pagination-style2 body:not(.woocommerce-page) .pagination .nav-links ul.page-numbers li .page-numbers {
border-radius: 2px;
}
.single-post.blog-layout-none #content > .container {
max-width: 1024px;
}
.single-post .site-main article.single-post {
color: #555555;
font-size: 1rem;
line-height: 1.75;
}
.single-post .site-main article.single-post .post-header {
margin-bottom: 1rem;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links {
font-size: 0;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a {
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
position: relative;
display: inline-block;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a:not(:hover) {
color: #242424;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a:not(:last-child) {
padding-right: 10px;
margin-right: 10px;
}
.single-post .site-main article.single-post .post-header .post-categories .cat-links a:not(:last-child)::after {
content: "";
display: inline-block;
height: 12px;
width: 1px;
background: #aaaaaa;
position: absolute;
right: 0;
top: 50%;
margin-top: -6px;
}
.single-post .site-main article.single-post .post-header h1.entry-title {
overflow-wrap: break-word;
}
.single-post .site-main article.single-post .post-header .metas {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-bottom: 0;
margin-top: auto;
font-size: 13px;
font-weight: 500;
height: 30px;
}
.single-post .site-main article.single-post .post-header .metas a {
font-size: 13px;
font-weight: 500;
}
.single-post .site-main article.single-post .post-header .metas a:not(:hover) {
color: #777777;
}
.single-post .site-main article.single-post .post-header .metas .posted-on {
height: inherit;
font-size: 0;
}
.single-post .site-main article.single-post .post-header .metas .posted-on a {
font-size: 13px;
}
.single-post .site-main article.single-post .post-header .metas .post-author {
height: inherit;
position: relative;
padding-left: 10px;
margin-left: 10px;
text-transform: capitalize;
position: relative;
}
.single-post .site-main article.single-post .post-header .metas .post-author a {
margin-left: 3px;
text-transform: capitalize;
}
.single-post .site-main article.single-post .post-header .metas .post-author::before {
width: 1px;
height: 12px;
background: #aaa;
content: "";
position: absolute;
left: 0;
top: 50%;
margin-top: -7px;
}
.single-post .site-main article.single-post .post-header .metas .post-comments {
margin-left: auto;
margin-right: 0;
display: block;
}
.single-post .site-main article.single-post .post-header .metas .post-comments a:not(:hover) {
color: #242424;
}
.single-post .site-main article.single-post .post-header .metas .post-comments svg.fm-icon {
margin-right: 6px;
}
.single-post .site-main article.single-post .entry-content {
padding-bottom: 20px;
}
.single-post .site-main article.single-post .entry-content img.wp-post-image {
margin-bottom: 1rem;
}
.single-post .site-main article.single-post .entry-content figure.wp-block-gallery {
margin-bottom: 1rem;
}
.single-post .site-main article.single-post .entry-content blockquote {
box-shadow: inset 0 0 0 0 #555;
border-left: 2px solid #000;
padding-left: 1em;
}
.single-post .site-main article.single-post .info-bottom {
margin-bottom: 50px;
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
clear: both;
}
.single-post .site-main article.single-post .info-bottom .tags-links {
font-size: 0;
}
.single-post .site-main article.single-post .info-bottom .tags-links a {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
background: #ffffff;
border: 1px solid #dcdcdc;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
height: 40px;
line-height: 40px;
padding: 0 20px;
margin-right: 10px;
margin-top: 6px;
display: inline-block;
}
.single-post .site-main article.single-post .info-bottom .tags-links a:hover {
background-color: #242424;
color: #ffffff;
border-color: #242424;
}
.single-post .site-main article.single-post .info-bottom .post-item-share {
margin-left: auto;
margin-right: 0;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .title {
display: none;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cenos-blog-share {
display: flex;
flex-wrap: wrap;
justify-content: flex-end;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cenos-blog-share a {
display: inline-block;
margin-left: 20px;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cenos-blog-share a svg.fm-icon:hover {
fill: #242424;
}
.single-post .site-main article.single-post .footer-post {
margin-bottom: 50px;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a {
display: flex;
flex-direction: column;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .post_nav-text {
font-size: 10px;
font-weight: bold;
text-transform: uppercase;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .post_nav-text:not(:hover) {
color: #777;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .nav-post-title {
font-size: 18px;
font-weight: 500;
line-height: 28px;
text-transform: none;
word-break: break-word;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-previous {
text-align: left;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-previous a {
text-align: left;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-next {
border: none;
text-align: right;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-next a {
float: right;
text-align: right;
}
.single-post .site-main .related-posts > h2 {
font-size: 24px;
margin-bottom: 1rem;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner .info {
padding: 20px 0 0 0;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner .info .post-item-head h2.entry-title {
margin-bottom: 12px;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner .info .metas a {
text-transform: uppercase;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner .info .metas .post-author {
display: none;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner .info .excerpt {
display: block;
margin-bottom: 15px;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner .info .post-categories .cat-links {
margin-bottom: 0 !important;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner:hover {
box-shadow: none;
}
.single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner.has-thumbnail .info, .single-post .site-main .related-posts article.cenos-post-item.post-grid .post-inner.no-thumbnail .info {
padding-top: 0;
}
.single-post .site-main .comments-wrapper #comments {
margin-top: 30px;
}
.single-post #comments, .page:not(.woocommerce-page) #comments {
margin-top: 50px;
padding-top: 50px;
border-top: 1px solid #dcdcdc;
clear: both;
}
.single-post #comments .comments-title, .page:not(.woocommerce-page) #comments .comments-title {
margin-bottom: 2rem;
font-size: 24px;
}
.single-post #comments .comment-list, .page:not(.woocommerce-page) #comments .comment-list {
list-style: none;
padding-left: 0;
margin-bottom: 50px;
}
.single-post #comments .comment-list .comment, .page:not(.woocommerce-page) #comments .comment-list .comment {
width: 100%;
}
.single-post #comments .comment-list .comment.depth-1:not(.parent), .page:not(.woocommerce-page) #comments .comment-list .comment.depth-1:not(.parent) {
padding-bottom: 25px;
border-bottom: solid 1px #dcdcdc;
margin-bottom: 30px;
}
.single-post #comments .comment-list .comment-body, .page:not(.woocommerce-page) #comments .comment-list .comment-body {
display: flex;
flex-wrap: wrap;
}
.single-post #comments .comment-list .comment-body .user-avatar .comment-author, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar .comment-author {
border-radius: 50%;
}
.single-post #comments .comment-list .comment-body .user-avatar .comment-author img, .page:not(.woocommerce-page) #comments .comment-list .comment-body .user-avatar .comment-author img {
width: 50px;
margin-right: 12px;
max-width: 100%;
height: auto;
border: 1px solid #f1f1f1;
padding: 4px;
border-radius: 50%;
}
.single-post #comments .comment-list .comment-body .comment-content, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content {
flex: 1;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info {
display: flex;
flex-direction: column;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name, .single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info .author-display-name a {
font-weight: 500;
font-style: normal;
text-transform: capitalize;
color: #242424;
font-size: 15px;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info time, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info time {
font-size: 13px;
color: #777;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
color: #777;
margin-right: 10px;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:last-child, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:last-child {
margin-right: 0;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:hover, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a:hover {
color: #242424;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-text p:last-child, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-text p:last-child {
margin-bottom: 0;
}
.single-post #comments .comment-list .comment-body #respond, .page:not(.woocommerce-page) #comments .comment-list .comment-body #respond {
flex: 0 0 100%;
margin-top: 30px;
}
.single-post #comments .comment-list .comment-body #respond #reply-title, .page:not(.woocommerce-page) #comments .comment-list .comment-body #respond #reply-title {
display: flex;
justify-content: space-between;
}
.single-post #comments .comment-list .comment-body #respond #reply-title #cancel-comment-reply-link, .page:not(.woocommerce-page) #comments .comment-list .comment-body #respond #reply-title #cancel-comment-reply-link {
font-size: 15px;
}
.single-post #comments .comment-list .children, .page:not(.woocommerce-page) #comments .comment-list .children {
padding-left: 60px;
list-style: none;
}
.single-post #comments .comment-list .children .comment, .page:not(.woocommerce-page) #comments .comment-list .children .comment {
width: 100%;
}
.single-post #comments .comment-list .children .comment .comment-body, .page:not(.woocommerce-page) #comments .comment-list .children .comment .comment-body {
margin-top: 25px;
border-top: 1px solid #dcdcdc;
padding-top: 30px;
}
.single-post #comments .comment-list .children .comment:not(.parent) .comment-body:last-child, .page:not(.woocommerce-page) #comments .comment-list .children .comment:not(.parent) .comment-body:last-child {
padding-bottom: 25px;
border-bottom: 1px solid #dcdcdc;
margin-bottom: 30px;
}
.single-post #comments .comment-list .pingback, .single-post #comments .comment-list .trackback, .page:not(.woocommerce-page) #comments .comment-list .pingback, .page:not(.woocommerce-page) #comments .comment-list .trackback {
margin-bottom: 1.5rem;
}
.single-post #comments .comment-respond #reply-title, .page:not(.woocommerce-page) #comments .comment-respond #reply-title {
display: block;
margin-bottom: 10px;
font-size: 24px;
font-weight: 500;
color: #242424;
}
.single-post #comments .comment-respond .comment-form p, .page:not(.woocommerce-page) #comments .comment-respond .comment-form p {
margin-bottom: 23px;
}
.single-post #comments .comment-respond .comment-form label, .page:not(.woocommerce-page) #comments .comment-respond .comment-form label {
font-size: 15px;
font-weight: 500;
color: #555555;
}
.single-post #comments .comment-respond .comment-form .cenos_comment_fields_group, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cenos_comment_fields_group {
display: flex;
flex-wrap: wrap;
}
.single-post #comments .comment-respond .comment-form .cenos_comment_fields_group > p, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cenos_comment_fields_group > p {
width: calc((100% - 60px)/3);
margin-right: 30px;
margin-bottom: 10px;
}
.single-post #comments .comment-respond .comment-form .cenos_comment_fields_group > p:nth-child(3n), .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cenos_comment_fields_group > p:nth-child(3n) {
margin-right: 0;
}
.single-post #comments .comment-respond .comment-form .cenos_comment_fields_group > p.comment-form-cookies-consent, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cenos_comment_fields_group > p.comment-form-cookies-consent {
width: 100%;
margin-right: 0;
margin-bottom: 20px;
}
.single-post #comments .comment-respond .comment-form .form-submit input#submit, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .form-submit input#submit {
width: 200px;
}
.single-post #comments .comment-navigation, .page:not(.woocommerce-page) #comments .comment-navigation {
margin-top: 1rem;
margin-bottom: 2rem;
}
.single-post #comments #respond, .page:not(.woocommerce-page) #comments #respond {
clear: both;
}
@media (min-width: 1200px) {
body:not(.woocommerce-page) .sidebar-left .site-main {
padding-left: 2rem;
}
body:not(.woocommerce-page) .sidebar-right .site-main {
padding-right: 2rem;
}
}
@media (min-width: 1500px) {
.single-post blockquote > * + * {
margin-bottom: 30px;
}
.single-post .entry-content > table {
margin-bottom: 30px;
}
body:not(.woocommerce-page) .sidebar-left .site-main {
padding-left: 3rem;
}
body:not(.woocommerce-page) .sidebar-right .site-main {
padding-right: 3rem;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter {
padding: 30px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .fm_newsletter_form input[type=email] {
height: 50px;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter .fm_newsletter_form input[type=submit] {
padding: 0 15px;
}
.single-post .site-main article.single-post .post-header .post-categories {
margin-bottom: 1rem;
}
.single-post .site-main article.single-post .post-header h1.entry-title {
font-size: 48px;
line-height: 48px;
margin-bottom: 1rem;
}
.single-post .site-main article.single-post .post-header h1.entry-title > em {
font-size: inherit;
}
.single-post .site-main article.single-post .entry-content img.wp-post-image {
margin-bottom: 2rem;
}
.single-post .site-main article.single-post .entry-content .h1, .single-post .site-main article.single-post .entry-content .h2 {
margin-bottom: 1.5rem;
}
.single-post .site-main article.single-post .entry-content .h3, .single-post .site-main article.single-post .entry-content .h4, .single-post .site-main article.single-post .entry-content .h5, .single-post .site-main article.single-post .entry-content .h6, .single-post .site-main article.single-post .entry-content h1, .single-post .site-main article.single-post .entry-content h2, .single-post .site-main article.single-post .entry-content h3, .single-post .site-main article.single-post .entry-content h4, .single-post .site-main article.single-post .entry-content h5, .single-post .site-main article.single-post .entry-content h6 {
margin-bottom: 1rem;
}
.single-post .site-main article.single-post .entry-content p {
margin-bottom: 1.75rem;
}
}
@media (max-width: 1024px) {
body:not(.woocommerce-page) article.cenos-post-item.post-grid {
margin-bottom: 20px;
padding-left: 10px;
padding-right: 10px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner:hover {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
}
@media (max-width: 991px) {
body:not(.woocommerce-page) .sidebar-right .cenos-sidebar-content, body:not(.woocommerce-page) .sidebar-left .cenos-sidebar-content {
order: 2;
padding-top: 50px;
margin-top: 50px;
border-top: 1px solid #dcdcdc;
}
body:not(.woocommerce-page) article.cenos-post-item {
flex: 0 0 100%;
max-width: 100%;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid {
padding-left: 15px;
padding-right: 15px;
margin-bottom: 30px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list {
margin-bottom: 45px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .entry-image-attachment {
margin-bottom: 20px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .post-item-head .entry-title {
font-size: 26px;
line-height: 30px;
}
body:not(.woocommerce-page) article.cenos-post-item.post-list .post-inner .info .excerpt {
margin-top: 6px;
}
body:not(.woocommerce-page) .related-posts article.cenos-post-item.post-grid {
padding-left: 0;
padding-right: 0;
}
}
@media (max-width: 767px) {
.archive-before-content {
flex-direction: column;
}
.archive-before-content .blog_category_list {
display: none;
order: 2;
}
body:not(.woocommerce-page) article.cenos-post-item.post-grid .post-inner .info {
padding: 20px 15px;
}
.single-post .site-main article.single-post .post-header h1.entry-title {
font-size: 36px;
line-height: 40px;
}
.single-post .site-main article.single-post .info-bottom {
flex-direction: column;
}
.single-post .site-main article.single-post .info-bottom .post-item-share {
margin: 20px auto 0 auto;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cenos-blog-share {
align-items: center;
}
.single-post .site-main article.single-post .info-bottom .post-item-share .cenos-blog-share a {
margin: 0 8px;
}
.single-post .site-main article.single-post .footer-post .post-navigation {
padding: 15px 0;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links {
display: flex;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links .nav-post-title {
display: none;
}
.single-post #comments .comment-respond .comment-form .cenos_comment_fields_group > p, .page:not(.woocommerce-page) #comments .comment-respond .comment-form .cenos_comment_fields_group > p {
width: 100%;
margin-right: 0;
margin-bottom: 1rem;
}
.single-post #comments .comment-list .children, .page:not(.woocommerce-page) #comments .comment-list .children {
padding-left: 1.25rem;
}
} @media (min-width: 576px) and (max-width: 1469px) {
.theme-cenos .header-mobile > .container,
.theme-cenos #content > .container,
.theme-cenos .header-breadcrumb-wrap > .container,
.theme-cenos .site-content .page-heading-wrap .page-heading-container {
max-width: 100%;
}
}
@media (max-width: 575px) {
#search-canvas {
height: 100vh;
}
#search-canvas.c-offcanvas--top .offcanvas-content {
padding-top: 50px;
}
#search-canvas .offcanvas-content > h2 {
margin-bottom: 10px;
}
#search-canvas .offcanvas-content .search_form_wrapper {
width: 100%;
padding: 0 15px;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content {
width: 100%;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .twitter-typeahead {
width: 100%;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form {
height: max-content;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form .search_text_input {
width: 100%;
padding: 0;
font-size: 14px;
height: 40px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
box-shadow: none;
-webkit-appearance: none;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form button[type=submit] {
height: 40px;
top: 0;
width: 40px;
padding-right: 0;
}
#search-canvas .offcanvas-content .search_form_wrapper .search_form_content .fm-search-form button[type=submit] svg.fm-icon {
width: 15px;
height: 15px;
}
#search-canvas .ajax_search .fm-search-results {
padding: 20px 0;
margin: 0 -5px;
height: 380px;
}
#search-canvas .ajax_search .fm-search-results .fm-dataset .search-result-item {
flex: 0 0 33.3333%;
padding: 0 5px 5px 5px;
}
#search-canvas .ajax_search .fm-search-results .fm-dataset .search-result-item > a img {
margin-bottom: 10px;
}
#search-canvas .ajax_search .fm-search-results .fm-dataset .search-result-item > a .result_item_title {
margin-bottom: 5px;
}
#cart-canvas {
width: 320px;
max-width: 100%;
}
#cart-canvas .offcanvas-content .cart_box_head {
height: 50px;
border-bottom: 1px solid #dcdcdc;
}
#cart-canvas .offcanvas-content .cart_box_head > h3 {
font-size: 10px;
text-transform: uppercase;
font-weight: 700;
}
#cart-canvas .offcanvas-content .cenos-close-btn svg.fm-icon {
width: 11px;
height: 11px;
margin-left: 3px;
}
#cart-canvas .offcanvas-content .cenos-close-btn .button-title {
font-size: 10px;
text-transform: uppercase;
font-weight: 400;
}
#cart-canvas .offcanvas-content .cenos-close-btn:hover .cenos-close-btn .button-title {
color: #e36c02;
}
#cart-canvas .offcanvas-content .cenos-close-btn:hover .cenos-close-btn svg.fm-icon {
fill: #e36c02;
}
#account-canvas .account_form_content .nav-tabs .nav-link {
font-size: 10px;
text-transform: uppercase;
font-weight: 700;
}
#account-canvas .account_form_content .cenos-close-btn svg.fm-icon {
width: 11px;
height: 11px;
margin-left: 3px;
}
#account-canvas .account_form_content .cenos-close-btn .button-title {
font-size: 10px;
text-transform: uppercase;
font-weight: 400;
}
#account-canvas .account_form_content .cenos-close-btn:hover .cenos-close-btn .button-title {
color: #e36c02;
}
#account-canvas .account_form_content .cenos-close-btn:hover .cenos-close-btn svg.fm-icon {
fill: #e36c02;
}
} .familab_theme .elementor-widget:not(:last-child) {
margin-bottom: 0;
} .woo-variation-swatches.wvs-attr-behavior-blur .variable-item:not(.radio-variable-item).disabled::before, .woo-variation-swatches.wvs-attr-behavior-blur .variable-item:not(.radio-variable-item).disabled:hover::before, .woo-variation-swatches.wvs-attr-behavior-blur .variable-item:not(.radio-variable-item).disabled::after, .woo-variation-swatches.wvs-attr-behavior-blur .variable-item:not(.radio-variable-item).disabled:hover::after {
width: calc(100% - 6px);
left: 3px;
background: #ff454580 !important;
}
.woo-variation-swatches .variations_form.wvs-archive-variation-wrapper .variable-item.color-variable-item .variable-item-span-color::after {
box-shadow: none;
} .familab_theme a {
transition: color 0.18s linear 0s;
}
.fmtpl-products-tabs .fmtpl-tabs-wrapper .nav-tabs.top .fmtpl-tab-link,
.cenos_woof_pagination_trigger a.cenos_woof_pagination_trigger_action {
transition: all 0.2s linear 0s;
}
.familab_theme a.fmtpl-button-button, .familab_theme a.button {
-webkit-transition: color 0.25s linear 0s, border-color 0.25s linear 0s, background-color 0.25s linear 0s;
-moz-transition: color 0.25s linear 0s, border-color 0.25s linear 0s, background-color 0.25s linear 0s;
-ms-transition: color 0.25s linear 0s, border-color 0.25s linear 0s, background-color 0.25s linear 0s;
-o-transition: color 0.25s linear 0s, border-color 0.25s linear 0s, background-color 0.25s linear 0s;
transition: color 0.25s linear 0s, border-color 0.25s linear 0s, background-color 0.25s linear 0s;
}
.has-direction-bar .scroll_to_top.show {
bottom: 65px;
right: 15px;
}
.has-direction-bar .site-content {
margin-bottom: 60px;
}
.has-direction-bar .footer-direction-bar {
position: fixed;
top: auto;
bottom: 0;
left: 0;
right: 0;
height: 60px;
display: flex;
flex-wrap: wrap;
align-items: center;
background: #f8f8f8;
box-shadow: 0px -2px 6px 0px rgba(17, 17, 17, 0.1);
text-shadow: 0px -2px 6px rgba(17, 17, 17, 0.1);
z-index: 9;
}
.has-direction-bar .footer-direction-bar > * {
flex: 1;
text-align: center;
margin: 0;
}
.has-direction-bar .footer-direction-bar > * a > span, .has-direction-bar .footer-direction-bar > * a .c-button__text > span {
display: block;
}
.has-direction-bar .footer-direction-bar > * a.cart-btn .c-button__text {
position: relative;
}
.has-direction-bar .footer-direction-bar > * a.cart-btn .c-button__text > span {
display: block;
}
.has-direction-bar .footer-direction-bar > * a.cart-btn .c-button__text > span.mini-cart-contents {
position: absolute;
font-size: 0;
top: -10px;
left: 46%;
transform: translateX(5px);
}
.has-direction-bar .footer-direction-bar > * a.cart-btn .c-button__text > span.mini-cart-contents .cart-counter > span {
font-size: 10px;
background: #242424;
width: 20px;
height: 20px;
color: #FFF;
display: inline-block;
text-align: center;
line-height: 16px;
border-radius: 50%;
font-weight: 500;
border: 2px solid #FFF;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.has-direction-bar .footer-direction-bar .direction-element > a {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: 11px;
font-weight: 500;
color: #555555;
line-height: 10px;
}
.has-direction-bar .footer-direction-bar .direction-element > a svg {
width: 15px;
height: 15px;
fill: #242424;
margin-bottom: 8px;
}
.has-direction-bar .footer-direction-bar .direction-element > a:hover {
color: #e36c02;
}
.has-direction-bar .footer-direction-bar .direction-element > a:hover svg {
fill: #e36c02;
}
.has-direction-bar .footer-direction-bar .direction-element.active a {
color: #e36c02;
}
.has-direction-bar .footer-direction-bar .direction-element.active a svg {
fill: #e36c02;
}
.has-direction-bar .footer-direction-bar > .wishlist-box {
position: relative;
}
.has-direction-bar .footer-direction-bar > .wishlist-box .wishlist-btn.has-counter .wishlist_counter {
position: absolute;
top: -10px;
left: 46%;
transform: translateX(5px);
background: #242424;
width: 20px;
height: 20px;
font-size: 10px;
color: #FFF;
display: inline-block;
text-align: center;
line-height: 16px;
border-radius: 50%;
font-weight: 500;
border: 2px solid #FFF;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.has-direction-bar .footer-direction-bar > .wishlist-box .wishlist-btn.has-counter .wishlist_counter svg {
fill: #ffffff;
} .igrowl-success {
border-radius: 2px;
background: #fefefe;
border: 1px solid #a4e648;
}
.igrowl-success .igrowl-message, .igrowl-success .igrowl-title {
color: #242424;
font-size: 14px;
font-weight: 400;
line-height: 18px;
}
.igrowl-success .igrowl-title {
font-weight: 500;
font-size: 15px;
line-height: 20px;
}
.igrowl-dismiss {
display: none;
} .cenos-mobile {
overflow-x: hidden;
}
.cenos-mobile.single-product .site-header .single_product_header > a {
position: absolute;
left: 5px;
top: 5px;
display: flex;
width: 30px;
height: 30px;
justify-content: center;
align-items: center;
}
.cenos-mobile.single-product .site-header .single_product_header > a svg {
fill: #000;
width: 15px;
height: 15px;
}
.cenos-mobile.single-product #content {
padding-top: 0;
}
.cenos-mobile.single-product #content .before_single_product {
display: none;
}
.cenos-mobile.single-product #content .type-product .product-container .product-main .product-gallery {
padding-left: 0;
padding-right: 0;
}
.cenos-mobile.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging {
margin: 0;
bottom: 15px;
left: 15px;
transform: none;
}
.cenos-mobile.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging > li > a {
margin: 0 6px 0 0;
}
.cenos-mobile.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging > li > a::before {
box-shadow: none;
border: none;
width: 6px;
height: 6px;
background: #aaaaaa;
}
.cenos-mobile.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging > li > a.flex-active::before {
width: 20px;
border-radius: 3px;
background: #000000;
}
.cenos-mobile.single-product #content .type-product .product-container .product-main .product-gallery .woocommerce-product-gallery .flex-control-paging > li > a::after {
display: none;
}
.cenos-mobile.single-product #content .type-product .product-container .product-main .product-info {
margin-bottom: 2rem;
}
.cenos-mobile.single-product #content .type-product .product-container .product-footer {
margin-bottom: 1.5rem;
}
.cenos-mobile.single-product #content .type-product .product-container .product-footer .related.products {
margin-top: 1.5rem;
}
.cenos-mobile .woo_shop_header {
position: relative;
height: 52px;
width: 100%;
display: flex;
align-items: center;
background: #ffffff;
padding: 8px 15px 8px 0;
z-index: 999;
}
.cenos-mobile .woo_shop_header + .page-heading-wrap, .cenos-mobile .woo_shop_header + #content {
box-shadow: inset 0 6px 30px 0 rgba(0, 0, 0, 0.1);
-webkit-box-shadow: inset 0 6px 30px 0 rgba(0, 0, 0, 0.1);
-moz-box-shadow: inset 0 6px 30px 0 rgba(0, 0, 0, 0.1);
}
.cenos-mobile .page-heading-wrap .shop-heading-content .shop-title {
margin-bottom: 0;
text-align: center;
}
.cenos-mobile .page-heading-wrap .shop-heading-content .shop-heading-container .term-description {
margin-top: 6px;
}
.cenos-mobile .page-heading-wrap .shop-heading-content .shop-heading-container .term-description p {
margin-bottom: 0;
}
.cenos-mobile .categories_dropdown {
flex: 0 0 calc(100% - 100px);
position: relative;
}
.cenos-mobile .categories_dropdown ul {
position: absolute;
opacity: 0;
visibility: hidden;
top: 100%;
right: 0;
padding: 0;
list-style: none;
background: #ffffff;
box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
z-index: 99;
}
.cenos-mobile .categories_dropdown ul li.category-item {
line-height: 40px;
padding: 0 15px;
min-width: 150px;
}
.cenos-mobile .categories_dropdown ul li.category-item a {
color: #242424;
font-size: 11px;
font-weight: 500;
}
.cenos-mobile .categories_dropdown ul li.category-item:nth-child(2n+1) {
background: #eeeeee;
}
.cenos-mobile .categories_dropdown .current {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
font-size: 16px;
font-weight: 700;
line-height: 18px;
color: #242424;
}
.cenos-mobile .categories_dropdown .current .dropdow-icon {
line-height: 36px;
}
.cenos-mobile .categories_dropdown.opened ul {
opacity: 1;
visibility: visible;
}
.cenos-mobile a.parent-term-link {
display: flex;
width: 36px;
height: 36px;
flex: 0 0 36px;
max-width: 36px;
justify-content: center;
align-items: center;
margin-right: 10px;
}
.cenos-mobile a.parent-term-link svg {
width: 18px;
height: 18px;
color: #242424;
}
.cenos-mobile a.go_home {
margin-left: auto;
margin-right: 0;
height: 36px;
width: 36px;
flex: 0 0 36px;
max-width: 36px;
background: #f2f2f2;
display: flex;
align-items: center;
justify-content: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.cenos-mobile.archive.woocommerce-page #content {
padding-top: 15px;
}
.cenos-mobile #content > .container .cenos-shop-control .before-shop-control {
display: none;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control {
margin-bottom: 15px;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control .woocommerce-result-count {
display: inline-block;
line-height: 20px;
margin: 0;
padding: 0;
color: #777;
font-size: 12px;
font-weight: 400;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control .cenos-filter-button {
display: none;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering {
height: 20px;
display: flex !important;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering .select2-container.select2-container--default {
height: inherit;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered {
color: #777;
font-size: 12px;
font-weight: 400;
padding: 0 25px 0 0 !important;
background-position: right center;
}
.cenos-mobile .scroll_to_top {
display: none;
}
.cenos-mobile.woocommerce ul.products.products-grid-style li.product .product-infos .variations_form .variable-items-wrapper li.variable-item.color-variable-item {
height: 16px;
width: 16px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product {
text-align: center;
margin-bottom: 25px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-thumbnail {
margin-bottom: 15px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-infos {
align-items: center;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-infos .woocommerce-loop-product__title {
line-height: 16px;
margin-bottom: 5px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-infos .woocommerce-loop-product__title a {
font-size: 14px;
line-height: inherit;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-infos .woocommerce-loop-product__title + .price {
margin-top: 5px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-infos .star-rating {
margin-bottom: 12px;
font-size: 9px;
height: 10px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-infos .price {
font-size: 13px;
font-weight: 400;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_01 li.product .product-infos .price del {
font-weight: 400;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product {
margin-bottom: 25px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-thumbnail {
overflow: unset;
margin-bottom: 13px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-thumbnail .cenos_thumb_action.bottom {
bottom: -21px;
right: 5px;
z-index: 1;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-thumbnail .cenos_thumb_action.bottom a.button {
font-size: 0;
padding: 0;
background: #242424;
width: 42px;
height: 42px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-weight: 500;
border: 2px solid #FFF;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-thumbnail .cenos_thumb_action.bottom a.button svg {
fill: #ffffff;
width: 15px;
height: 15px;
margin: 0;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-thumbnail .cenos_thumb_action.bottom a.button.added {
background-color: #e36c02;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos {
display: flex;
flex-direction: column;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos a.product-item-cat-link {
order: 1;
display: block !important;
font-size: 10px;
font-weight: 500;
margin-bottom: 2px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos .woocommerce-loop-product__title {
order: 2;
margin-bottom: 8px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos .woocommerce-loop-product__title a {
font-size: 13px;
line-height: 15px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos .product-price-wrapper {
order: 3;
display: flex;
justify-content: space-between;
align-items: center;
line-height: 18px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos .product-price-wrapper .price {
font-size: 13px;
font-weight: 500;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos .product-price-wrapper .price del {
font-weight: 400;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos .product-price-wrapper .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
line-height: 18px;
}
.cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-infos .variations_form {
order: 5;
margin-top: 3px;
}
.cenos-mobile.single-product .site-header .single_product_header > a {
position: absolute;
left: 5px;
top: 13px;
display: flex;
width: 30px;
height: 30px;
justify-content: center;
align-items: center;
}
.cenos-mobile.single-product .site-header .single_product_header > a svg {
fill: #000;
width: 15px;
height: 15px;
}
.cenos-mobile.single-product #content {
overflow-x: hidden;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery {
margin-left: -15px;
margin-right: -15px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .tinv-wishlist .tinvwl_add_to_wishlist_button {
position: absolute;
right: 5px;
top: 18px;
width: 20px;
height: 20px;
z-index: 1;
margin: 0;
font-size: 0;
display: flex;
align-items: center;
justify-content: center;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .tinv-wishlist .tinvwl_add_to_wishlist_button::before {
display: none;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .tinv-wishlist .tinvwl_add_to_wishlist_button svg {
margin: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .tinv-wishlist .tinvwl_add_to_wishlist_button svg.icon-hover {
display: none;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg {
display: none;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-product-in-list svg.icon-hover {
display: block;
fill: #ec1d25;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .product-share {
z-index: 1;
position: absolute;
right: 5px;
top: 15px;
width: 20px;
height: 20px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .product-share .sharing-icon {
font-size: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .product-share .socials-sharing {
visibility: hidden;
opacity: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .product-share:hover .socials-sharing {
visibility: visible;
opacity: 1;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-gallery .tinv-wraper + .product-share {
top: 45px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info {
padding-left: 0;
padding-right: 0;
margin-bottom: 2.5rem;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info .single_variation_wrap {
width: 100%;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary h1.product_title {
font-size: 20px;
font-weight: 400;
line-height: 24px;
margin-bottom: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary h1.product_title + .woocommerce-product-rating {
margin-top: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary h1.product_title + .price {
margin-top: 18px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .woocommerce-product-rating {
margin-bottom: 15px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .woocommerce-product-rating .star-rating {
letter-spacing: 5px;
font-size: 9px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .price {
margin-bottom: 20px;
font-size: 18px;
font-weight: 400;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .price del {
font-size: 12px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .price ins {
font-weight: inherit;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .woocommerce-product-details__short-description {
font-size: 13px;
line-height: 22px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart {
display: flex;
flex-wrap: nowrap;
margin-bottom: 2rem;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart .quantity, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart .single_variation_wrap .woocommerce-variation-add-to-cart .quantity {
width: 110px;
flex: 0 0 110px;
margin-bottom: 10px;
margin-right: 10px;
height: 50px;
min-width: 110px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart .single_add_to_cart_button {
flex: 0 0 calc(100% - 120px);
padding: 0;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.variations_form table.variations tr td.label {
text-transform: capitalize;
font-size: 13px;
font-weight: 500;
line-height: 1rem;
padding: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.variations_form table.variations tr td.label label {
font-weight: inherit;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.variations_form table.variations tr td.label span.woo-selected-variation-item-name {
color: #777;
font-weight: 400;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.variations_form table.variations tr td.label::after {
display: none;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form {
flex-direction: column;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form .quantity {
width: 80px;
flex: 0 0 80px;
min-width: 80px;
margin-bottom: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td {
padding: 0 0 15px 0;
vertical-align: middle;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td.woocommerce-grouped-product-list-item__label label {
line-height: 18px;
margin-bottom: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td.woocommerce-grouped-product-list-item__label a {
font-weight: 400;
color: #242424;
line-height: inherit;
font-size: 14px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td.woocommerce-grouped-product-list-item__price {
text-align: right;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td.woocommerce-grouped-product-list-item__price .woocs_price_code {
color: #242424;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item > td.woocommerce-grouped-product-list-item__price .woocs_price_code del {
color: #aaaaaa;
font-size: 12px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.grouped_form button.single_add_to_cart_button {
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
flex: 0 0 100%;
width: 100%;
max-width: 100%;
display: flex;
height: 50px;
padding: 17px 0;
line-height: 16px;
justify-content: center;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta {
font-size: 13px;
font-weight: 500;
color: #242424;
text-transform: capitalize;
line-height: 15px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .tagged_as, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .sku_wrapper, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .posted_in {
margin-bottom: 12px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta > span:last-child {
margin-bottom: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .sku_wrapper span.sku, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .posted_in a, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .tagged_as a {
color: #777;
font-weight: 400;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card {
margin: 0;
border-radius: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card button.btn-link {
border-width: 1px 0 0;
color: #242424;
border-color: #cccccc;
padding: 15px 0;
font-size: 13px;
font-weight: 500;
text-transform: capitalize;
line-height: 18px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card button.btn-link svg.fm-icon {
width: 15px;
height: 15px;
fill: #777;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card button.btn-link[aria-expanded=true] {
text-decoration: none;
border-bottom: 1px solid #efefef;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card button.btn-link[aria-expanded=true] svg.fm-icon {
fill: #242424;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card button.btn-link.collapsed {
text-decoration: none;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card:first-child {
border-top: 1px solid #cccccc;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card:last-child {
border-bottom: 1px solid #cccccc;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-inner#accordion_reviews {
padding-bottom: 2rem;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-inner#accordion_additional_information {
padding-bottom: 2rem;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-inner#accordion_additional_information table.shop_attributes {
margin-bottom: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer #accordion_description {
font-weight: 400;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer #accordion_description b, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer #accordion_description strong {
font-weight: 500;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer #reviews #review_form_wrapper .comment-respond #reply-title {
font-size: 18px;
font-weight: 500;
color: #242424;
line-height: 20px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer #reviews #review_form_wrapper .comment-respond #commentform .comment-form-comment > label {
font-size: 13px;
font-weight: 500;
margin-bottom: 5px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer #reviews #review_form_wrapper .comment-respond #commentform .form-submit input.submit {
height: 45px;
font-size: 13px;
text-transform: capitalize;
font-weight: 400;
color: #FFF;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer #reviews #review_form_wrapper .comment-respond #commentform textarea#comment {
min-height: 80px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer table.shop_attributes tr th, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer table.shop_attributes tr td {
font-size: 13px;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .related.products {
margin-top: 50px;
padding-top: 0;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .related.products::before {
display: none;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .related.products > h2 {
font-size: 18px;
font-weight: 500;
}
.cenos-mobile.single-product.has-sticky-atc .site-content {
margin-bottom: 78px;
}
.cenos-mobile.single-product.has-sticky-atc .scroll_to_top.show {
bottom: 80px;
right: 15px;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn {
position: fixed;
top: auto;
bottom: 0;
left: 0;
right: 0;
height: 78px;
width: 100%;
padding: 15px;
display: flex;
flex-wrap: wrap;
align-items: center;
background: #ffffff;
box-shadow: 0 0 20px 0 rgba(17, 17, 17, 0.1);
text-shadow: 0 0 20px rgba(17, 17, 17, 0.1);
z-index: 9;
opacity: 0;
visibility: hidden;
transform: translateY(100%);
transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out, transform 0.35s ease-in-out;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn.show {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container {
display: flex;
flex-wrap: wrap;
flex: 1;
align-items: center;
justify-content: space-between;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container a.go_home {
margin-right: 10px;
margin-left: 0;
flex: 0 0 48px;
max-width: 48px;
height: 48px;
width: 48px;
background: #f2f2f2;
display: flex;
align-items: center;
justify-content: center;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container a.go_home svg {
width: 18px;
height: 18px;
color: #242424;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-content {
display: none;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart {
margin-left: auto;
width: 295px;
flex: 0 0 295px;
max-width: calc(100% - 60px);
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart .cenos-sticky-variations-atc, .cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart button.single_add_to_cart_button {
background: #e36c02;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
height: 48px;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 15px;
font-weight: 400;
text-transform: capitalize;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart .cenos-sticky-variations-atc svg, .cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart button.single_add_to_cart_button svg {
fill: #ffffff;
width: 15px;
height: 15px;
margin-right: 6px;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart form > * {
display: none;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart form > button[type=submit] {
display: block;
}
.cenos-mobile.woocommerce ul.products.products-grid-style li.product .cenos_flashs_group {
top: 10px;
left: 10px;
}
.cenos-mobile .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container {
margin: 15px;
}
.cenos-mobile .filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_submit_search_form_container button.woof_reset_search_form {
width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-content {
display: flex;
align-items: center;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-content .cenos-sticky-btn-thumbnail img {
width: auto;
max-height: 48px;
margin-right: 10px;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-content .cenos-sticky-btn-info .product-title {
margin-bottom: 0;
font-size: 15px;
line-height: 20px;
font-weight: 500;
}
}
body:not(.cenos-mobile) .woocommerce-mini-cart {
position: relative;
}
body:not(.cenos-mobile) .cart_box .cart_box_content.dropdown_content {
max-height: inherit;
overflow: unset;
padding: 20px 0;
}
body:not(.cenos-mobile) .cart_box .cart_box_content.dropdown_content .widget_shopping_cart_content > * {
padding: 0 20px;
}
body:not(.cenos-mobile) .cart_box .cart_box_content.dropdown_content .woocommerce-mini-cart {
max-height: 410px;
}
body:not(.cenos-mobile) .cart_box.hover_dropdown_wrapper .cart_box_content.dropdown_content {
max-height: inherit;
overflow: unset;
padding: 20px 0;
}
body:not(.cenos-mobile) .c-offcanvas.is-open .offcanvas-content {
overflow: unset;
}
body:not(.cenos-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content {
padding: 20px 0;
}
body:not(.cenos-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content .woocommerce-mini-cart, body:not(.cenos-mobile) .c-offcanvas.is-open .offcanvas-content .cart_box_content .widget_shopping_cart_content > p {
padding: 0 20px;
}
body:not(.cenos-mobile) .c-offcanvas.is-open .offcanvas-content .filter-content-wrap {
position: relative;
height: calc(100% - 40px);
}
body:not(.cenos-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-inner {
overflow: unset;
}
body:not(.cenos-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-content {
position: relative;
height: calc(100% - 95px);
padding: 25px 0 0;
}
body:not(.cenos-mobile) .c-offcanvas.is-open#hamburger-canvas .hamburger-screen-content > .hamburger-navigation {
padding: 0 25px;
}
body:not(.cenos-mobile) .fm-search-form.ajax_search .fm-search-results {
overflow: initial;
}
body:not(.cenos-mobile) .fm-search-form.ajax_search .fm-search-results .fm-dataset-search {
position: relative;
height: 100%;
}
body:not(.cenos-mobile) .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results, body:not(.cenos-mobile) .search_form_wrapper.header-element .fm-search-form.ajax_search .fm-search-results {
padding: 20px 0;
}
body:not(.cenos-mobile) .search_form_wrapper.dropdown .fm-search-form.ajax_search .fm-search-results .fm-dataset-search, body:not(.cenos-mobile) .search_form_wrapper.header-element .fm-search-form.ajax_search .fm-search-results .fm-dataset-search {
padding: 0 20px;
display: block;
height: 380px;
}
body:not(.cenos-mobile).has-offcanvas--overlay.hasVerticalScrollbar {
padding-right: 17px;
}
body:not(.cenos-mobile).has-offcanvas--overlay.hasVerticalScrollbar .site-header.cenos_transparent_header, body:not(.cenos-mobile).has-offcanvas--overlay.hasVerticalScrollbar .fm-header-sticky {
padding-right: 17px;
}
.scroll_btn_box {
position: fixed;
display: inline-block;
right: -15px;
bottom: 120px;
z-index: 999;
opacity: 0;
visibility: hidden;
transition: right 0.3s linear 0s, opacity 0.3s linear 0s, visibility 0.3s linear 0s;
}
.scroll_btn_box > .direction-element {
margin: 0;
}
.scroll_btn_box > .direction-element a {
font-size: 0;
}
.scroll_btn_box > .direction-element a svg {
fill: #242424;
width: 15px;
height: 15px;
}
.scroll_btn_box > .direction-element .wishlist_counter, .scroll_btn_box > .direction-element .cart-counter > span {
width: 16px;
height: 16px;
display: flex;
align-items: center;
justify-content: center;
background-color: #e36c02;
font-size: 10px;
font-weight: 500;
position: absolute;
right: -16px;
top: 0;
border-radius: 50%;
color: #FFF;
}
.scroll_btn_box.show {
opacity: 1;
visibility: visible;
right: 38px;
}
.scroll_btn_box + .scroll_btn_box {
bottom: 160px;
}
.scroll_btn_box.scroll_cart_btn.on_single_mobile {
bottom: auto;
top: 100px;
}
.cenos-mobile .scroll_btn_box {
right: 20px;
}
.cenos-mobile .scroll_btn_box .cart_box a.cart-btn {
width: 42px;
height: 42px;
background: #000;
border-radius: 50%;
border: 2px solid #FFF;
box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
-moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
align-items: center;
justify-content: center;
display: flex;
}
.cenos-mobile .scroll_btn_box .cart_box a.cart-btn svg {
fill: #ffffff;
}
.cenos-mobile .scroll_btn_box .cart_box a.cart-btn .cart-counter > span {
width: 20px;
height: 20px;
background-color: #FFF;
border: 1px solid #f8f8f8;
color: #e36c02;
font-size: 11px;
right: -8px;
top: -3px;
}
a.product-360-button {
position: absolute;
z-index: 2;
left: 45px;
top: 20px;
background: #FFF;
line-height: 18px;
padding: 9px 15px;
border-radius: 20px;
}
a.product-360-button:hover {
color: #e36c02;
}
a.product-360-button:hover svg {
fill: #e36c02;
}
.product-360-view-wrapper .modal-content {
background: transparent;
border: none;
}
.product-360-view-wrapper .modal-body {
max-height: 786px;
overflow: hidden;
display: flex;
align-items: flex-end;
}
.product-360-view-wrapper .cenos-threed-view {
cursor: ew-resize;
margin: 0 auto;
overflow: hidden;
position: relative;
max-height: 100%;
background: #ffffff;
}
.product-360-view-wrapper .cenos-threed-view::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 5px;
bottom: 15px;
content: "";
height: 50%;
left: 15px;
position: absolute;
right: 15px;
z-index: 10;
}
.product-360-view-wrapper .cenos-threed-view .threed-view-images {
display: none;
list-style: outside none none;
margin: 0;
padding: 0;
}
.product-360-view-wrapper .cenos-threed-view .threed-view-images img {
height: auto;
position: absolute;
top: 0;
width: 100%;
left: 0;
}
.product-360-view-wrapper .cenos-threed-view .threed-view-images img.current-image {
position: static;
visibility: visible;
z-index: 9;
}
.product-360-view-wrapper .cenos-threed-view .threed-view-images img.previous-image {
visibility: hidden;
}
.product-360-view-wrapper .cenos-threed-view .nav_bar {
bottom: 15px;
box-shadow: 0 1px 8px 2px rgba(0, 0, 0, 0.15);
left: 50%;
background: #fff;
position: absolute;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%);
padding: 0;
border-radius: 2px;
z-index: 11;
}
.product-360-view-wrapper .cenos-threed-view .nav_bar a {
display: inline-block;
text-decoration: none;
font-size: 0;
text-align: center;
vertical-align: middle;
width: 30px;
height: 30px;
margin: 5px 8px;
position: relative;
}
.product-360-view-wrapper .cenos-threed-view .nav_bar a:before {
content: "";
width: 30px;
height: 30px;
font-size: 15px;
border-radius: 50%;
background: #f8f8f8;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
.product-360-view-wrapper .cenos-threed-view .nav_bar a.nav_bar_previous:before {
content: "<";
}
.product-360-view-wrapper .cenos-threed-view .nav_bar a.nav_bar_play:after {
content: "";
border-style: solid;
display: block;
position: absolute;
top: 9px;
left: 7px;
border-width: 6px;
border-color: #aaa #aaa transparent transparent;
transform: rotateZ(45deg);
border-radius: 0;
width: auto;
height: auto;
}
.product-360-view-wrapper .cenos-threed-view .nav_bar a.nav_bar_stop:after {
content: "";
width: 14px;
height: 14px;
border: 2px solid #aaa;
background: #aaa;
display: block;
position: absolute;
top: 8px;
left: 8px;
}
.product-360-view-wrapper .cenos-threed-view .nav_bar a.nav_bar_next:before {
content: ">";
}
.product-360-view-wrapper .cenos-threed-view .spinner {
text-align: center;
} .flex-viewport .video-frame iframe {
width: 100%;
height: 100%;
} .wcfm-theme-cenos #wcfm_membership_container input[type=text],
.wcfm-theme-cenos #wcfm_membership_container input[type=file],
.wcfm-theme-cenos #wcfm_membership_container input[type=password],
.wcfm-theme-cenos #wcfm_membership_container select, .wcfm-theme-cenos #wcfm_membership_container input[type=number],
.wcfm-theme-cenos #wcfm_membership_container input[type=time],
.wcfm-theme-cenos #wcfm_membership_container input[type=search],
.wcfm-theme-cenos #wcfm_membership_container textarea {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
width: 100% !important;
max-width: 100%;
border: 1px solid #dcdcdc;
font-size: 14px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
box-shadow: none;
transition: border-color 0.3s;
-webkit-transition: border-color 0.3s;
vertical-align: middle;
padding: 0 15px;
height: 50px;
background: #FFF;
margin-bottom: 1.5rem;
}
.wcfm-theme-cenos #wcfm_membership_container input[type=text]:focus,
.wcfm-theme-cenos #wcfm_membership_container input[type=file]:focus,
.wcfm-theme-cenos #wcfm_membership_container input[type=password]:focus,
.wcfm-theme-cenos #wcfm_membership_container select:focus, .wcfm-theme-cenos #wcfm_membership_container input[type=number]:focus,
.wcfm-theme-cenos #wcfm_membership_container input[type=time]:focus,
.wcfm-theme-cenos #wcfm_membership_container input[type=search]:focus,
.wcfm-theme-cenos #wcfm_membership_container textarea:focus {
outline: none;
border-color: #242424;
color: #242424;
}
.wcfm-theme-cenos .wcfmmp-store-search-form input.wcfmmp-radius-addr,
.wcfm-theme-cenos .wcfmmp-store-search-form input.wcfm-search-field,
.wcfm-theme-cenos .wcfmmp-store-search-form input#search,
.wcfm-theme-cenos .wcfmmp-store-search-form select#wcfmmp_store_category,
.wcfm-theme-cenos .wcfmmp-store-search-form select#wcfmmp_store_country,
.wcfm-theme-cenos .wcfmmp-store-search-form #wcfmmp_store_state,
.wcfm-theme-cenos .wcfmmp-store-search-form .select2-container,
.wcfm-theme-cenos .wcfmmp-store-search-form .wcfmmp-search-box,
.wcfm-theme-cenos #wcfmmp_store_orderby {
box-shadow: none !important;
border-color: #dcdcdc !important;
}
.wcfm-theme-cenos .wcfmmp-store-search-form .select2-container {
border: none !important;
}
.wcfm-theme-cenos .wcfmmp_sold_by_container_advanced .wcfmmp-store-rating::before,
.wcfm-theme-cenos .wcfmmp_store_info .wcfmmp-store-rating::before,
.wcfm-theme-cenos .wcfmmp_sold_by_container .wcfmmp-store-rating::before {
font-size: 11px;
letter-spacing: 3px;
}
.wcfm-theme-cenos span.wcfmmp_sold_by_label {
display: none;
}
.wcfm-theme-cenos #wcfmmp-store .sidebar .widget {
margin-bottom: 45px;
}
.wcfm-theme-cenos #wcfmmp-store .sidebar .widget .sidebar_heading {
margin-bottom: 0;
}
.wcfm-theme-cenos #wcfmmp-store .sidebar .widget .widget-title {
display: block;
width: 100%;
font-size: 18px;
line-height: 24px;
margin-bottom: 26px;
text-transform: capitalize;
}
.wcfm-theme-cenos #wcfmmp-store .sidebar .widget .widget-title::after {
display: block;
width: 30px;
height: 2px;
background: #cccccc;
content: "";
margin-top: 8px;
}
.wcfm-theme-cenos #wcfmmp-store .sidebar .widget .fm-search-form button[type=submit] {
min-width: 50px;
}
.wcfm-theme-cenos #wcfmmp-store .sidebar .widget.widget_categories .widget-title {
margin-bottom: 15px;
}
.wcfm-theme-cenos #wcfmmp-store .sidebar .widget.widget_categories ul li {
padding-left: 0;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists {
box-shadow: none;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap-holder {
padding-left: 0;
padding-right: 0;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists .wcfmmp-store-lists-sorting {
margin-left: 0;
margin-right: 0;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap ul.wcfmmp-store-wrap {
margin-left: -15px;
margin-right: -15px;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap ul.wcfmmp-store-wrap p.store-phone {
background: none;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store a.wcfmmp-visit-store {
font-size: 12px;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-data > h2 a {
font-weight: 500;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-data .wcfmmp-store-rating:before {
font-size: 11px;
letter-spacing: 5px;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-phone {
font-size: 14px;
color: #555 !important;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-phone i {
background: none !important;
color: #242424;
font-size: inherit;
margin-right: 6px;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-phone.store-phone {
margin-top: 6px;
}
.wcfm-theme-cenos.wcfmmp-store-list-page #wcfmmp-stores-lists #wcfmmp-stores-wrap .wcfmmp-single-store .store-data-container .store-enquiry a.wcfm_catalog_enquiry {
min-width: 150px;
line-height: 20px;
padding: 10px 15px;
border: none;
border-radius: 2px;
font-size: 14px;
-webkit-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-moz-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-ms-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-o-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
margin-top: 20px;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store ul.product_list_widget li a {
font-weight: 500;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store.wcfmmp-single-store-holder {
max-width: 1440px;
padding: 0 15px;
margin: 50px auto;
box-shadow: none !important;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .right_side {
border: 1px solid #dcdcdc;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .left_sidebar {
padding-bottom: 3.9%;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links {
border-bottom-color: #dcdcdc;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li {
border: none !important;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li a {
font-size: 14px;
line-height: 20px;
letter-spacing: 0.5px;
color: #555;
padding: 10px 15px;
display: inline-block;
text-transform: none;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:after {
height: 1px;
top: auto;
bottom: 1px;
background: #e36c02 !important;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:hover a, .wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li.active a {
color: #242424 !important;
border: none !important;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:hover:after, .wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li.active:after {
background-color: #e36c02 !important;
opacity: 1;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .product_area .products-wrapper ul li.product {
padding: 0;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .reviews_area, .wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .policies_area, .wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .wcfm_store_description {
border: 1px solid #dcdcdc;
box-shadow: none;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .add_review input {
box-shadow: none;
border-bottom: 1px solid #dcdcdc;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .woocommerce .reviews_area .add_review button {
border: none;
border-radius: 2px;
height: 40px;
line-height: 20px;
padding: 10px 25px;
-webkit-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-moz-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-ms-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-o-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .reviews_heading, .wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .wcfm_policies_heading {
text-transform: uppercase;
font-size: 13px;
line-height: 15px;
color: #242424;
border-bottom: 1px solid #dcdcdc;
padding-bottom: 10px;
font-weight: 500;
margin-bottom: 10px;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store nav.woocommerce-pagination {
margin-bottom: 30px;
}
.wcfm-theme-cenos .wcfm-membership-wrapper {
padding: 0;
border: none;
float: none;
box-shadow: none;
margin-right: auto;
margin-left: auto;
max-width: 450px;
width: 100%;
}
.wcfm-theme-cenos .wcfm-membership-wrapper h2.wcfm_registration_form_heading {
font-size: 30px;
font-weight: 400;
text-align: center;
margin-top: 45px;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_registration_form_expander .wcfm_title {
display: block;
width: 100%;
font-size: 13px;
font-weight: 500;
line-height: 1.5;
color: #242424;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container p.wcfm_title strong, .wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container span.wcfm_title strong {
font-weight: 500 !important;
font-style: normal !important;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container .wcfm_email_verified, .wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container .wcfm_sms_verified, .wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container .wcfm_store_slug_verified {
margin-left: 0;
text-align: center;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container .select2-container, .wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container .select2-container .select2-selection {
min-height: 50px !important;
line-height: 48px;
width: 100% !important;
box-shadow: none;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container input#terms {
margin-left: 0;
display: inline-block;
float: left;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container p.terms_title.wcfm_title {
margin-bottom: 1.5rem !important;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container #wcfm_membership_register_button {
height: 50px;
border: none;
background: #242424;
color: #FFF;
font-size: 14px;
text-transform: capitalize;
font-weight: 400;
text-align: center;
line-height: 22px;
padding: 15px 30px;
width: 100%;
margin: 0;
transition: all 0.25s;
outline: none;
box-shadow: none;
border-radius: 2px;
}
.wcfm-theme-cenos .wcfm-membership-wrapper #wcfm_membership_container #wcfm_membership_register_button:hover {
background-color: #e36c02;
}
.wcfm-theme-cenos.single-product .wcfm_ele_wrapper a.wcfm_catalog_enquiry, .wcfm-theme-cenos.single-product .wcfm_ele_wrapper a.wcfm-chat-now, .wcfm-theme-cenos.single-product .wcfm_ele_wrapper a.wcfm_chat_now_button {
border: none;
border-radius: 2px;
height: 40px;
line-height: 20px;
padding: 10px 13px !important;
font-size: 13px;
-webkit-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-moz-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-ms-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-o-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
}
.wcfm-theme-cenos.single-product .wcfmmp_sold_by_container_advanced {
border-radius: 2px;
border-color: #dcdcdc;
}
.wcfm-theme-cenos.single-product .wcfmmp_sold_by_container_advanced .wcfmmp_sold_by_label {
font-size: 9px;
line-height: 12px;
margin-top: 10px;
}
.wcfm-theme-cenos.single-product .wcfmmp_sold_by_container_advanced .wcfmmp_sold_by_wrapper .wcfmmp_sold_by_store {
line-height: 20px;
}
.wcfm-theme-cenos.single-product .wcfmmp_sold_by_container_advanced .wcfmmp_sold_by_wrapper .wcfmmp_sold_by_store a {
margin-top: 5px;
font-size: 12px;
text-transform: uppercase;
line-height: 15px;
}
.wcfm-theme-cenos ul.products.products-grid-style li.product .product-infos .variations_form ul, .wcfm-theme-cenos ul.products.products-grid-style li.product .product-infos .variations_form ul.variations {
padding-bottom: 0 !important;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-slider .wcfmmp_sold_by_container {
margin-left: 0;
margin-right: auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-border .wcfmmp_sold_by_container .wcfmmp-store-rating {
margin: 0 auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-clean .wcfmmp_sold_by_container {
margin-left: 0;
margin-right: auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-1 .product-infos .woocommerce-loop-product__title {
margin-bottom: 12px !important;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-1 .wcfmmp_sold_by_container {
margin-left: 0;
margin-right: auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-2 .wcfmmp_sold_by_container .wcfmmp-store-rating {
margin: 0 auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-3 .wcfmmp_sold_by_container .wcfmmp-store-rating {
margin: 0 auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-4 .wcfmmp_sold_by_container .wcfmmp-store-rating {
margin: 0 auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-5 .wcfmmp_sold_by_container {
margin-left: 0;
margin-right: auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-6 .wcfmmp_sold_by_container {
margin-left: 0;
margin-right: auto;
}
.wcfm-theme-cenos ul.products.products-grid-style.product-item-style-7 .wcfmmp_sold_by_container .wcfmmp-store-rating {
margin: 0 auto;
} .dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget {
margin-bottom: 45px;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget .sidebar_heading {
margin-bottom: 0;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget .widget-title {
display: block;
width: 100%;
font-size: 18px;
line-height: 24px;
margin-bottom: 26px;
text-transform: capitalize;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget .widget-title::after {
display: block;
width: 30px;
height: 2px;
background: #cccccc;
content: "";
margin-top: 8px;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget .fm-search-form button[type=submit] {
min-width: 50px;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu .widget-title {
margin-bottom: 15px;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu ul {
list-style: none;
padding-left: 0;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu ul li {
padding-left: 0;
line-height: 30px;
}
.dokan-theme-cenos .dokan-store-sidebar .widget.dokan-store-widget.dokan-store-menu ul li ul.children {
padding-left: 10px;
}
.dokan-theme-cenos .dokan-pagination-container .dokan-pagination li {
display: inline;
border: none;
box-sizing: border-box;
margin: 0 0.25rem;
}
.dokan-theme-cenos .dokan-pagination-container .dokan-pagination li a {
text-decoration: none;
min-width: 40px;
height: 40px;
padding: 0 8px;
margin: 0;
text-align: center;
border: 1px solid #dcdcdc;
-webkit-transition: background-color 0.15s ease-in-out;
-moz-transition: background-color 0.15s ease-in-out;
-ms-transition: background-color 0.15s ease-in-out;
-o-transition: background-color 0.15s ease-in-out;
transition: background-color 0.15s ease-in-out;
color: #777;
font-size: 11px;
font-weight: bold;
text-transform: uppercase;
border-width: 2px;
line-height: 38px;
display: inline-block;
}
.dokan-theme-cenos .dokan-pagination-container .dokan-pagination li:hover a, .dokan-theme-cenos .dokan-pagination-container .dokan-pagination li.active a {
background-color: #242424;
border-color: #242424;
color: #FFF;
}
.dokan-theme-cenos ul.products.products-grid-style li.product .sold-by-dokan-vendor .sold-by-label {
font-size: 11px;
font-style: italic;
}
.dokan-theme-cenos ul.products.products-grid-style li.product .sold-by-dokan-vendor a {
font-weight: 500;
color: #e36c02;
font-size: 13px;
}
.dokan-theme-cenos.single-product .product-info .sold-by-dokan-vendor .sold-by-label {
font-size: 12px;
font-style: italic;
}
.dokan-theme-cenos.single-product .product-info .sold-by-dokan-vendor a {
font-weight: 500;
color: #e36c02;
font-size: 14px;
}
#add_payment_method #payment ul.payment_methods .stripe-card-group, .woocommerce-checkout #payment ul.payment_methods .stripe-card-group,
.wc-stripe-elements-field, .wc-stripe-iban-element-field {
width: 100%;
}.fmtpl-swiper-item-wrap {
display: grid;
grid-template-columns: repeat(2, 1fr);
}
.fmtpl-swiper-item-wrap .fmtpl-post-carousel-item.background_thumb {
grid-column-start: 1;
grid-column-end: 3;
}
@media (min-width: 992px) {
.fmtpl-swiper-item-wrap {
grid-template-columns: repeat(4, 1fr);
}
}
.elementor-widget-fmtpl-title.intro_heading .fmtpl-tittle-content-wrap {
position: relative;
}
.elementor-widget-fmtpl-title.intro_heading .fmtpl-tittle-content-wrap .fmtpl-widget-title {
position: relative;
z-index: 1;
}
.elementor-widget-fmtpl-title.intro_heading .fmtpl-tittle-content-wrap .fmtpl-widget-title .highlight {
line-height: 80px;
height: 80px;
display: inline-block;
position: absolute;
top: 32px;
}
.elementor-widget-fmtpl-title.intro_heading .fmtpl-tittle-content-wrap .fmtpl-sub-title {
position: absolute;
z-index: 2;
top: 40%;
left: 50%;
transform: translate(-50%);
width: 100%;
}
.familab_theme a.tf_button_buynow {
background: #e36c02;
height: 50px;
padding: 0 25px;
display: inline-block;
color: #FFF !important;
font-size: 14px !important;
line-height: 50px;
font-weight: 400 !important;
border-radius: 2px;
-webkit-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-moz-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-ms-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
-o-transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
transition: color 0.3s linear 0s, border-color 0.3s linear 0s, background-color 0.3s linear 0s;
}
.familab_theme a.tf_button_buynow:hover {
background-color: #ff4545;
} .flex-viewport.has-video {
height: auto !important;
}
.video-frame {
position: relative;
}
.video-frame .fmfw-video-iframe {
width: 100%;
height: 100%;
border: none;
background: #000;
position: absolute;
}
.video-frame .video-lazy-image {
width: 100%;
height: auto;
visibility: hidden;
opacity: 0;
max-height: 100%;
}
.video-frame.lazy-video .video-lazy-image {
opacity: 1;
visibility: visible;
}
.video-frame.lazy-video .fmfw-video-iframe {
z-index: -1;
}
.video-frame.lazy-video .fmfw-video-iframe.playing {
z-index: 1;
} a.product-video-button {
position: absolute;
z-index: 2;
left: 45px;
top: 20px;
background: #FFF;
line-height: 18px;
padding: 9px 15px;
border-radius: 20px;
}
.product-360-button ~ a.product-video-button {
top: 60px;
}
.product-video-view-wrapper .modal-content {
background: transparent;
border: none;
}
.product-video-view-wrapper .modal-body {
height: calc(100vh - 200px);
max-height: 786px;
overflow: hidden;
display: flex;
align-items: flex-end;
}
.product-video-view-wrapper .modal-body iframe {
width: 100%;
height: 100%;
border: none;
background: #000;
}
@media screen and (max-width: 600px) {
#wpadminbar {
position: static;
margin-top: -46px;
}
}.c-offcanvas, .c-offcanvas-content-wrap {
transform: translate3d(0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.c-offcanvas-bg.c-offcanvas-bg--push, .c-offcanvas-bg.c-offcanvas-bg--reveal, .c-offcanvas-content-wrap, .c-offcanvas {
transition: transform 300ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c-offcanvas.is-open {
transform: translate3d(0, 0, 0);
visibility: visible;
opacity: 1;
} .c-offcanvas-content-wrap {
position: relative;
z-index: 3;
overflow: hidden;
} .c-offcanvas {
position: fixed;
min-height: 100%;
max-height: none;
top: 0;
display: block;
background: #fff;
overflow: hidden;
}
.c-offcanvas--opening {
transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
}
.c-offcanvas.is-closed {
max-height: 100%;
overflow: hidden;
visibility: hidden;
box-shadow: none;
opacity: 0;
z-index: -1;
}
.c-offcanvas.is-scrollable {
overflow-y: auto;
}
.c-offcanvas--overlay {
z-index: 1080;
}
.c-offcanvas--reveal {
z-index: 2;
} .c-offcanvas-bg {
position: fixed;
top: 0;
height: 100%;
width: 100%;
z-index: 1079;
left: -100%;
background-color: transparent;
transition: background-color 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}
.c-offcanvas-bg.is-animating, .c-offcanvas-bg.is-open {
left: 0;
background-color: rgba(0, 0, 0, 0.68);
visibility: visible;
}
.c-offcanvas-bg.is-closed {
visibility: hidden;
}
.c-offcanvas-bg--closing.is-animating {
background: transparent;
} .c-offcanvas--left {
height: 100%;
width: 20rem;
transform: translate3d(-20rem, 0, 0);
}
.c-offcanvas--full-left {
height: 100%;
width: 100%;
transform: translate3d(-100%, 0, 0);
} .c-offcanvas--right {
height: 100%;
width: 20rem;
right: 0;
transform: translate3d(20rem, 0, 0);
}
.c-offcanvas--full-right {
height: 100%;
width: 100%;
right: 0;
transform: translate3d(100%, 0, 0);
} .c-offcanvas--top {
left: 0;
right: 0;
top: 0;
height: 15rem;
min-height: auto;
width: 100%;
transform: translate3d(0, -15rem, 0);
} .c-offcanvas--bottom {
top: auto;
left: 0;
right: 0;
bottom: 0;
height: 15rem;
min-height: auto;
width: 100%;
transform: translate3d(0, 15rem, 0);
} .c-offcanvas-content-wrap {
z-index: 3;
}
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--left.is-open {
transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--right.is-open {
transform: translate3d(-25rem, 0, 0);
}
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--full-left.is-open {
transform: translate3d(100%, 0, 0);
}
.c-offcanvas-content-wrap--reveal.c-offcanvas-content-wrap--full-right.is-open {
transform: translate3d(-100%, 0, 0);
}
.c-offcanvas--reveal {
z-index: 0;
transform: translate3d(0, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--left.is-open {
transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--right.is-open {
transform: translate3d(-25rem, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--full-left.is-open {
transform: translate3d(100%, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--reveal.c-offcanvas-bg--full-right.is-open {
transform: translate3d(-100%, 0, 0);
} .c-offcanvas--push {
z-index: 6;
}
.c-offcanvas--push--opening {
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.c-offcanvas-content-wrap {
z-index: 3;
}
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--left.is-open {
transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--right.is-open {
transform: translate3d(-25rem, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--left.is-open {
transform: translate3d(20rem, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--right.is-open {
transform: translate3d(-25rem, 0, 0);
}
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--full-left.is-open {
transform: translate3d(100%, 0, 0);
}
.c-offcanvas-content-wrap--push.c-offcanvas-content-wrap--full-right.is-open {
transform: translate3d(-100%, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--full-left.is-open {
transform: translate3d(100%, 0, 0);
}
.c-offcanvas-bg.c-offcanvas-bg--push.c-offcanvas-bg--full-right.is-open {
transform: translate3d(-100%, 0, 0);
}
.c-offcanvas--full-fade{
height: 100%;
width: 100%;
opacity: 0;
visibility: hidden;
transition: opacity 300ms cubic-bezier(0.4, 0, 0.6, 1),visibility 300ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c-offcanvas--full-fade.is_open{
opacity: 1;
visibility: visible;
}
.c-offcanvas.is-open .offcanvas-content {
height: 100%;
overflow: auto;
}
.c-offcanvas.c-offcanvas--top .offcanvas-content {
text-align: center;
}
@media (max-width: 767px) {
.c-offcanvas--left {
max-width: 290px;
width: 290px;
transform: translate3d(-290px, 0, 0);
}
.c-offcanvas--right {
max-width: 290px;
width: 290px;
transform: translate3d(290px, 0, 0);
}
}.igrowl{position:fixed;z-index:9999;border-radius:3px;border:1px solid;padding:8px 30px 8px 10px;-webkit-transition:bottom .2s ease,top .2s ease;-moz-transition:bottom .2s ease,top .2s ease;transition:bottom .2s ease,top .2s ease}@media only screen and (max-width:480px){.igrowl{width:90%}.igrowl[alert-placement^=left],.igrowl[alert-placement^=center]{margin-left:-45%!important;left:50%!important}.igrowl[alert-placement^=right]{right:50%!important;margin-right:-45%}}@media only screen and (min-width:481px) and (max-width:1023px){.igrowl{width:300px}}@media only screen and (min-width:1024px){.igrowl{width:420px}}@media only screen and (min-width:1600px){.igrowl{width:480px}}.igrowl-link{padding:0}.igrowl-link a{padding:8px 30px 8px 15px;display:block}.igrowl-center{left:50%}@media only screen and (min-width:481px) and (max-width:1023px){.igrowl-center{margin-left:-150px}}@media only screen and (min-width:1024px){.igrowl-center{margin-left:-210px}}@media only screen and (min-width:1600px){.igrowl-center{margin-left:-240px}}@media only screen and (max-width:480px){.igrowl-center.igrowl-small{margin-left:-30%!important}}@media only screen and (min-width:481px) and (max-width:1023px){.igrowl-center.igrowl-small{margin-left:-110px}}@media only screen and (min-width:1024px){.igrowl-center.igrowl-small{margin-left:-130px}}@media only screen and (min-width:1600px){.igrowl-center.igrowl-small{margin-left:-160px}}@media only screen and (max-width:480px){.igrowl-small{width:60%}}@media only screen and (min-width:481px) and (max-width:1023px){.igrowl-small{width:220px}}@media only screen and (min-width:1024px){.igrowl-small{width:260px}}@media only screen and (min-width:1600px){.igrowl-small{width:320px}}.igrowl-icon,.igrowl-img{display:inline-block;vertical-align:middle;width:45px}.igrowl-icon{margin:0 5px}.igrowl-icon+.igrowl-text{width:calc(100% - 55px)}.igrowl-img{margin-right:15px}.igrowl-img img{display:block;max-width:100%;height:auto}.igrowl-img+.igrowl-text{width:calc(100% - 60px)}.igrowl-text{display:inline-block;vertical-align:middle}.igrowl-title{display:block;font-weight:700;font-size:1.3rem;line-height:2rem}.igrowl-title+.igrowl-message{margin-top:2px}.igrowl-message{display:block;font-size:1.3rem;line-height:2rem}.igrowl-message a,.igrowl-title a{font-size:1.3rem;color:inherit;font-weight:inherit;border-bottom:1px solid}.igrowl-message a:hover,.igrowl-title a:hover{opacity:.7}.igrowl-dismiss{cursor:pointer;-webkit-appearance:none;border:none;background:0 0;outline:0;color:inherit;text-shadow:none;position:absolute;font-size:1rem;padding:4px;top:0;right:0;color:rgba(0,0,0,.5);transition:color .3s ease;-webkit-tap-highlight-color:transparent}.igrowl-dismiss::-moz-focus-inner{border:0;padding:0}.igrowl-dismiss:before{font-family:igrowl-feather,igrowl-linecons,igrowl-steadysets,igrowl-vicons;font-size:1.8rem!important}.igrowl-dismiss:hover{color:rgba(0,0,0,.6)}.igrowl-info{background:#b4e4ff;border-color:#5C9CCF}.igrowl-info .igrowl-message,.igrowl-info .igrowl-title{color:#1E3E4C}.igrowl-info .igrowl-icon{color:#275467}.igrowl-error{background:#FFA1A1;border-color:#F58585}.igrowl-error .igrowl-message,.igrowl-error .igrowl-title{color:#712A2A}.igrowl-error .igrowl-icon{color:#743838}.igrowl-success{background:#ADDA6E;border-color:#7EB137}.igrowl-success .igrowl-message,.igrowl-success .igrowl-title{color:#2B4711}.igrowl-success .igrowl-icon{color:#254911}.igrowl-notice{background:#FFE35A;border-color:#D3B93D}.igrowl-notice .igrowl-message,.igrowl-notice .igrowl-title{color:#535123}.igrowl-notice .igrowl-icon{color:#635F00}.igrowl-simple{background:#fff;border-color:#969696}.igrowl-simple .igrowl-icon,.igrowl-simple .igrowl-message,.igrowl-simple .igrowl-title{color:#333}.igrowl-info-sat{background:#66d1ff;border-color:#2D9BE6}.igrowl-info-sat .igrowl-icon,.igrowl-info-sat .igrowl-message,.igrowl-info-sat .igrowl-title{color:#1e3e4c}.igrowl-error-sat{background:#FF5959;border-color:#B30000}.igrowl-error-sat .igrowl-icon,.igrowl-error-sat .igrowl-message,.igrowl-error-sat .igrowl-title{color:#fff}.igrowl-error-sat .igrowl-dismiss{color:rgba(255,255,255,.9)}.igrowl-success-sat{background:#98D52D;border-color:#53AD00}.igrowl-success-sat .igrowl-message,.igrowl-success-sat .igrowl-title{color:#3A570F}.igrowl-success-sat .igrowl-icon{color:#37660C}.igrowl-notice-sat{background:#FFD600;border-color:#B1A30A}.igrowl-notice-sat .igrowl-message,.igrowl-notice-sat .igrowl-title{color:#55550A}.igrowl-notice-sat .igrowl-icon{color:#575701}body{font-family: Rubik;font-weight: 400;font-size: 14px;line-height: 24px;letter-spacing: 0px;font-style: normal;font-weight: 400;font-style: normal;}body{color:#777777;}body button.close svg { fill: #777777;}h1, .h1{font-family: Rubik;font-weight: 400;font-size: 40px;line-height: 1.5;letter-spacing: 0px;text-transform: none;font-style: normal;font-weight: 400;font-style: normal;}h1, .h1{color:#242424;}h1, .h1 button.close svg { fill: #242424;}h1 svg.stroke, .h1 svg.stroke{stroke:#242424;}h1 svg.fill, .h1 svg.fill{fill:#242424;}h2, .h2{font-family: Rubik;font-weight: 500;font-size: 30px;line-height: 1.5;text-transform: none;}h2, .h2{color:#23232c;}h2, .h2 button.close svg { fill: #23232c;}h2 svg.stroke, .h2 svg.stroke{stroke:#23232c;}h2 svg.fill, .h2 svg.fill{fill:#23232c;}h3, .h3{font-family: Rubik;font-weight: 500;font-size: 20px;line-height: 1.5;text-transform: none;}h3, .h3{color:#23232c;}h3, .h3 button.close svg { fill: #23232c;}h3 svg.stroke, .h3 svg.stroke{stroke:#23232c;}h3 svg.fill, .h3 svg.fill{fill:#23232c;}h4, .h4{font-family: Rubik;font-weight: 400;font-size: 18px;line-height: 1.5;text-transform: none;}h4, .h4{color:#23232c;}h4, .h4 button.close svg { fill: #23232c;}h4 svg.stroke, .h4 svg.stroke{stroke:#23232c;}h4 svg.fill, .h4 svg.fill{fill:#23232c;}h5, .h5{font-family: Rubik;font-weight: 400;font-size: 14px;line-height: 1.5;text-transform: none;}h5, .h5{color:#23232c;}h5, .h5 button.close svg { fill: #23232c;}h5 svg.stroke, .h5 svg.stroke{stroke:#23232c;}h5 svg.fill, .h5 svg.fill{fill:#23232c;}h6, .h6{font-family: Rubik;font-weight: 400;font-size: 12px;line-height: 1.5;text-transform: none;}h6, .h6{color:#23232c;}h6, .h6 button.close svg { fill: #23232c;}h6 svg.stroke, .h6 svg.stroke{stroke:#23232c;}h6 svg.fill, .h6 svg.fill{fill:#23232c;}.cenos-announcement-box{font-family: Poppins;font-weight: 500;font-size: 16x;line-height: 1.5;letter-spacing: 0px;font-style: normal;font-weight: 500;font-style: normal;}.cenos-announcement-box{color:#ffffff;}.cenos-announcement-box button.close svg { fill: #ffffff;}.cenos-announcement-box svg.stroke{stroke:#ffffff;}.cenos-announcement-box svg.fill{fill:#ffffff;}.site-header .main-navigation, .site-header .main-navigation a{font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;font-weight: 700;font-size: 14px;line-height: 1.5;letter-spacing: 0px;text-transform: uppercase;font-style: normal;font-weight: 700;font-style: normal;}a {color: #242424}a:hover {color: #f96302}@media(min-width: 1470px) {.container{ max-width:1440px;}.elementor-section.elementor-section-boxed > .elementor-container { max-width:1440px;} }.header-container, .footer-container{width: 1440px;}.header-main{height: 80px;}.site-header:not(.cenos_transparent_header) .header-layout{background-color:#ffffff;}.header-main .header-element,.header-main .header-element.search_box.form .fm-search-form .search_text_input,.header-main .header-element.search_box.form .fm-search-form button[type=submit],.header-main .header-element.search_form_wrapper .fm-search-form .search_text_input,.header-main .header-element.search_form_wrapper .fm-search-form button[type=submit],.header-main .header-element.search_box.button > a,.header-main .header-element.search_box.button > a span,.header-main .header-element.cart_box > a,.header-main .header-element.cart_box > a span,.header-main .header-element.my-account-box > a,.header-main .header-element.my-account-box > a span,.header-main .header-element.wishlist-box > a,.header-main .header-element.wishlist-box > a span,.header-main .header-element.hamburger-box > a,.header-main .header-element.hamburger-box > a span,.header-main .header-element.contact-info-box > a,.header-main .header-element.contact-info-box > a span,.header-main .header-element.social-icon-box > a,.header-main .header-element.social-icon-box > a span,.header-main .header-element.currency-box > span.label,.header-main .header-element.language-box > span.label,.header-main .header-element.currency-box .dropdown > .current,.header-main .header-element.currency-box .dropdown > .current span,.header-main .header-element.language-box .dropdown > .current,.header-main .header-element.language-box .dropdown > .current span,.header-main .header-element.contact-info-box,.header-main .header-element.html_right_1,.header-main .header-element.html_left_1,#site-navigation > .nav-menu > li > a,#site-navigation > .nav-menu > li > a span{color:#222222;}.header-main .header-element.search_box.form .fm-search-form button[type=submit] svg,.header-main .header-element.search_form_wrapper .fm-search-form button[type=submit] svg,.header-main .header-element.search_box.button > a svg,.header-main .header-element.search_box.button > a svg.fm-icon,.header-main .header-element.cart_box > a svg,.header-main .header-element.cart_box > a svg.fm-icon,.header-main .header-element.my-account-box > a svg,.header-main .header-element.my-account-box > a svg.fm-icon,.header-main .header-element.wishlist-box > a svg,.header-main .header-element.wishlist-box > a svg.fm-icon,.header-main .header-element.hamburger-box > a svg,.header-main .header-element.hamburger-box > a svg.fm-icon,.header-main .header-element.contact-info-box > a svg,.header-main .header-element.contact-info-box > a svg.fm-icon,.header-main .header-element.social-icon-box > a svg,.header-main .header-element.social-icon-box > a svg.fm-icon,.header-main .header-element.currency-box .dropdown > .current svg,.header-main .header-element.language-box .dropdown > .current svg,.header-main .header-element.contact-info-box svg,.header-main .header-element.contact-info-box svg.fm-icon,.header-main .header-element.html_right_1 svg,.header-main .header-element.html_right_1 svg.fm-icon,.header-main .header-element.html_left_1 svg,.header-main .header-element.html_left_1 svg.fm-icon,#site-navigation > .nav-menu > li > a svg,#site-navigation > .nav-menu > li > a svg.fm-icon{fill:#222222;}.header-main .header-element.search_box.button > a:hover,.header-main .header-element.search_box.button > a:hover span,.header-main .header-element.cart_box > a:hover,.header-main .header-element.cart_box > a:hover span,.header-main .header-element.my-account-box > a:hover,.header-main .header-element.my-account-box > a:hover span,.header-main .header-element.wishlist-box > a:hover,.header-main .header-element.wishlist-box > a:hover span,.header-main .header-element.hamburger-box > a:hover,.header-main .header-element.hamburger-box > a:hover span,.header-main .header-element.contact-info-box > a:hover,.header-main .header-element.contact-info-box > a:hover span,.header-main .header-element.social-icon-box > a:hover,.header-main .header-element.social-icon-box > a:hover span,#site-navigation > .nav-menu > li > a:hover,#site-navigation > .nav-menu > li > a:hover span{color:#f96302;}.header-main .header-element.search_box.button > a:hover svg,.header-main .header-element.search_box.button > a:hover svg.fm-icon,.header-main .header-element.cart_box > a:hover svg,.header-main .header-element.cart_box > a:hover svg.fm-icon,.header-main .header-element.my-account-box > a:hover svg,.header-main .header-element.my-account-box > a:hover svg.fm-icon,.header-main .header-element.wishlist-box > a:hover svg,.header-main .header-element.wishlist-box > a:hover svg.fm-icon,.header-main .header-element.hamburger-box > a:hover svg,.header-main .header-element.hamburger-box > a:hover svg.fm-icon,.header-main .header-element.contact-info-box > a:hover svg,.header-main .header-element.contact-info-box > a:hover svg.fm-icon,.header-main .header-element.social-icon-box > a:hover svg,.header-main .header-element.social-icon-box > a:hover svg.fm-icon,#site-navigation > .nav-menu > li > a:hover svg,#site-navigation > .nav-menu > li > a:hover svg.fm-icon{fill:#f96302;}.header-layout{box-shadow: 0 7px 6px -4px rgba(0, 0, 0, 0.03), 0 7px 6px rgba(0, 0, 0, 0.03);border-bottom: none;}.site-branding{width:189px;padding-top:0px;padding-bottom:0;padding-left:0;padding-right:0;text-align:left;align-self:center;}.header-layout3 .header-main {grid-template-columns: 1fr 189px 1fr}.header-layout5 .header-main {grid-template-columns: 1fr 189px 1fr}.header-layout6 .header-main {grid-template-columns: 1fr 189px 1fr}.site-logo{max-width:200px;}.cart_box{margin-left:10px;}.my-account-box{margin-left:20px;}.wishlist-box{margin-left:20px;}@media (min-width: 1200px) {.fm-search-form{width: 390px;}}#hamburger-canvas{background-color: #7f7f7f;}.site-header .header-layout.headroom--pinned.headroom--not-top .header-main{height:80px;}.site-header .header-layout.headroom--pinned.headroom--not-top{background-color:#ffffff;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.form .fm-search-form .search_text_input,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.form .fm-search-form button[type=submit],body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form .search_text_input,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form button[type=submit],body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box > span.label,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box > span.label,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box .dropdown > .current,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box .dropdown > .current span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box .dropdown > .current,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box .dropdown > .current span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_right_1,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_left_1,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a span{color:#242424;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.form .fm-search-form button[type=submit] svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_form_wrapper .fm-search-form button[type=submit] svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.currency-box .dropdown > .current svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.language-box .dropdown > .current svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_right_1 svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_right_1 svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_left_1 svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.html_left_1 svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a svg.fm-icon{fill:#242424;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover span,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a:hover,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a:hover span{color:#f96302;}body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.search_box.button > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.cart_box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.my-account-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.wishlist-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.hamburger-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.contact-info-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top .header-main .header-element.social-icon-box > a:hover svg.fm-icon,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a:hover svg,body.familab_theme .site-header .header-layout.headroom--pinned.headroom--not-top #site-navigation > .nav-menu > li > a:hover svg.fm-icon{fill:#f96302;}.blog-heading-content{background-color: #f8f8f8;}.blog-heading-content,.blog-heading-content p,.blog-heading-content a,.blog-heading-content .page-heading-title{color:#242424;}.blog-heading-content svg.stroke{stroke:#242424;}.blog-heading-content svg.fill{fill:#242424;}.blog-heading-content{height:120px;}.blog .content, .archive:not(.woocommerce-page) .content{background-color: #ffffff;}.shop-heading-simple .shop-heading-content{background-color:#f8f8f8;}.woocommerce-badge.on_sale {color: #ffffff;background-color: #55a61d;;}.woocommerce-badge.new {color: #666666;background-color: #ff9331;;}.woocommerce-badge.featured {color: #ffffff;background-color: #fe4819;;}.woocommerce-badge.sold_out {color: #fb1c1c;background-color: #ffffff;;}.page-heading-wrap.has-divider .shop-heading-content{border-color: #e8e8e8;}@media (min-width: 992px) {.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper{height: 490px;}}@media (min-width: 1200px) {.single-product .woocommerce-product-gallery.gallery_style_vertical .gallery_thumb_swiper{height: 600px;}}.vertical-header .main-navigation ul.nav-menu > li.menu-item-has-children:hover > a::before, .vertical-header .main-navigation ul.nav-menu > li.menu-item-mega:hover > a::before {
border-color: #f96302;
}
.cenos-announcement-box button.close svg.fm-icon:hover {
stroke: #f96302;
}
.cenos-announcement-box .announcement_btn > a.btn-default {
background-color: #f96302;
}
.fm-countdown-time .box-count {
background: #f96302;
} .header-element.cart_box > a .cart-counter > span {
background: #f96302;
} .top-bar.dark *:hover, .top-bar.dark a:hover, .top-bar.dark p:hover {
color: #f96302;
}
.top-bar.dark svg.fm-icon:hover {
fill: #f96302;
} #hamburger-canvas .hamburger-screen-inner .hamburger-bottom .social-links a.fm-social-icon-link:hover {
color: #f96302;
}
#hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li.menu-item-has-children:hover > a .toggle-icon::before, #hamburger-canvas .hamburger-screen-inner nav.hamburger-navigation ul.menu > li.menu-item-mega:hover > a .toggle-icon::before {
border-color: #f96302;
}
.post-navigation a:hover {
color: #f96302;
}
.ajax-navigation a {
background-color: #f96302;
}
.ajax-navigation a:hover, .ajax-navigation a:focus {
background-color: #b65805;
}
.woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li a.current, .woocommerce nav.woocommerce-pagination ul li span:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
background-color: #f96302;
border-color: #f96302;
}
.site-navigation a:after {
background-color: #f96302;
} .cenos-checkout-step .step.active span.step-icon, .cenos-checkout-step .step.finish span.step-icon {
background: #f96302;
border-color: #f96302;
}
.cenos-checkout-step .step.active::before, .cenos-checkout-step .step.finish::before {
background: #f96302;
}
.cenos-checkout-step .step.finish span.step-icon {
color: #f96302;
border-color: #f96302;
}
.cenos-checkout-step .step.finish span.step-icon svg {
fill: #f96302;
}
#order_review #payment a {
color: #f96302;
} .woocommerce-form-register .woocommerce-privacy-policy-text a {
color: #f96302;
}
div.woof_info_popup {
color: #f96302;
}
@media (min-width: 768px) {
div.woof_info_popup {
border-color: #e4e4e4 #f96302;
}
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-paging li > a.flex-active {
color: #f96302;
}
.header-mobile.header-mobile-layout4 .fm-search-form .btn_clear_text svg {
fill: #f96302;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn .button-title:hover {
color: #f96302;
}
#mobile-header-canvas .offcanvas-content .mobile-header-screen-inner .mobile-header-title .cenos-close-btn:hover svg.fm-icon {
fill: #f96302;
}
.header-element.wishlist-box .wishlist-btn span.wishlist_counter {
background-color: #f96302;
}
#cart-canvas .cenos-close-btn .button-title:hover {
color: #f96302;
}
#account-canvas .account_form_content .cenos-close-btn .button-title:hover {
color: #f96302;
}
#hamburger-canvas .cenos-close-btn .button-title:hover {
color: #f96302;
}
.related-posts .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .related-posts .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:hover {
background: #f96302;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content .fmtpl-banner-button:hover {
color: #f96302;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.default .fmtpl-category-banner-content .fmtpl-banner-button:hover .fmtpl-btn-icon svg {
fill: #f96302;
}
.elementor-widget-fmtpl-category-banner .fmtpl-category-banner.cenos_outside3 .fmtpl-category-banner-box-img > a::before {
background: #f96302;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input:focus, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea:focus {
border-color: #f96302;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-submit-container button.wpforms-submit:hover {
background: #f96302;
}
.single-product #content .type-product .product-container .product-main { }
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.woocommerce ul.product_list_widget li a:hover {
color: #f96302;
}
.single-product #content .type-product .product-container .product-main .product-sidebar .widget.cenos_featured_box .content-box .icon svg.fm-icon {
fill: #f96302;
}
#content > .container { }
#content > .container .woof_products_top_panel ul li:focus a {
background-color: #f96302;
}
.cenos_woof_pagination_trigger a.cenos_woof_pagination_trigger_action:hover {
border-left-color: #f96302;
border-right-color: #f96302;
}
.cenos_woof_pagination_trigger.disabled .loaded_msg {
color: #f96302;
}
.filter-content-wrap { }
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container.woof_price_filter .irs-with-grid .irs-slider:hover {
background-color: #f96302;
} .woocommerce ul.products.products-grid-style li.product .product-item-cat-link:hover {
color: #f96302;
}
.woocommerce ul.products.products-grid-style.product-item-style-clean li.product .product-infos .woocommerce-loop-product__title a:hover {
color: #f96302;
}
.woocommerce ul.products.products-grid-style.product-item-border li.product .product-thumbnail .cenos_thumb_action.bottom > a.button.yith-wcqv-button {
background-color: #f96302;
}
.woocommerce ul.products.products-grid-style.product-item-style-1 li.product .product-infos > a.button {
color: #f96302;
}
.woocommerce ul.products.products-grid-style.product-item-style-4 li.product .product-infos .woocommerce-loop-product__title a:hover {
color: #f96302;
} .woocommerce-wishlist table.wishlist_table td.product-remove a.remove_from_wishlist:hover {
color: #f96302 !important;
}
body .site-main article.post.sticky .entry-title > a {
border-bottom: 2px solid #f96302;
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget.cenos_newsletter {
background: #f96302;
}
body:not(.woocommerce-page) .page-links .post-page-numbers.current {
color: #f96302;
}
@media (max-width: 575px) {
#cart-canvas .offcanvas-content .cenos-close-btn:hover .cenos-close-btn .button-title {
color: #f96302;
}
#cart-canvas .offcanvas-content .cenos-close-btn:hover .cenos-close-btn svg.fm-icon {
fill: #f96302;
}
#account-canvas .account_form_content .cenos-close-btn:hover .cenos-close-btn .button-title {
color: #f96302;
}
#account-canvas .account_form_content .cenos-close-btn:hover .cenos-close-btn svg.fm-icon {
fill: #f96302;
}
}
.has-direction-bar .footer-direction-bar .direction-element > a:hover {
color: #f96302;
}
.has-direction-bar .footer-direction-bar .direction-element > a:hover svg {
fill: #f96302;
}
.has-direction-bar .footer-direction-bar .direction-element.active a {
color: #f96302;
}
.has-direction-bar .footer-direction-bar .direction-element.active a svg {
fill: #f96302;
} .cenos-mobile .woocommerce ul.products.products-grid-style.product-item-layout_m_02 li.product .product-thumbnail .cenos_thumb_action.bottom a.button.added {
background-color: #f96302;
}
.cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart .cenos-sticky-variations-atc, .cenos-mobile.single-product.has-sticky-atc .cenos-sticky-atc-btn .cenos-sticky-btn-container .cenos-sticky-btn-cart button.single_add_to_cart_button {
background: #f96302;
}
.scroll_btn_box > .direction-element .wishlist_counter, .scroll_btn_box > .direction-element .cart-counter > span {
background-color: #f96302;
}
.cenos-mobile .scroll_btn_box .cart_box a.cart-btn .cart-counter > span {
color: #f96302;
}
a.product-360-button:hover {
color: #f96302;
}
a.product-360-button:hover svg {
fill: #f96302;
}
.wcfm-membership-wrapper .wcfm_form_simple_submit_wrapper #wcfm_membership_register_button:hover {
background-color: #f96302;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:after {
background: #f96302 !important;
}
.wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li:hover a:after, .wcfm-theme-cenos.wcfm-store-page #wcfmmp-store .tab_area .tab_links li.active a:after {
background-color: #f96302 !important;
}
.dokan-theme-cenos ul.products.products-grid-style li.product .sold-by-dokan-vendor a, .dokan-theme-cenos .product-info .sold-by-dokan-vendor a {
color: #f96302;
}body {
color: #777777;
}
.fm-search-form .btn_clear_text svg {
fill: #777777;
}
.woocommerce-form-coupon-toggle .woocommerce-info, .woocommerce-form-login-toggle .woocommerce-info {
color: #777777;
}
.woocommerce-checkout form.woocommerce-form-coupon .form-row-first input.input-text {
color: #777777;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td dl.variation dd + dt::before {
content: #777777;
}
.woocommerce-cart .woocommerce-cart-form table.woocommerce-cart-form__contents td.actions .coupon #coupon_code :not(:focus) {
color: #777777;
}
#order_review table.woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name .product_info dl.variation dd + dt::before {
content: #777777;
}
.woocommerce-account .woocommerce-MyAccount-navigation li > a {
color: #777777;
}
.woocommerce-form-register .woocommerce-privacy-policy-text {
color: #777777;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item dl.variation dd + dt::before {
content: #777777;
}
.theme-cenos .cart_box_content .widget_shopping_cart_content ul.cart_list li.mini_cart_item .quantity-wrap .woocommerce-mini-cart-item__qty .quantity > a svg {
fill: #777777;
}
#account-canvas .account_form_content .nav-tabs .nav-link {
color: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .woocommerce-product-rating a.woocommerce-review-link {
color: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations tr td.label {
color: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single {
color: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
color: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
background: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .posted_in a, #yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .tagged_as a {
color: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product_meta .sku_wrapper span {
color: #777777;
}
#yith-quick-view-modal .yith-wcqv-main #yith-quick-view-content .type-product .summary .product-share .socials-sharing > li a svg {
fill: #777777;
}
.elementor-widget-fmtpl-newsletter .fmtpl-newsletter .mc4wp-form .fm_newsletter_form input[type=email]::placeholder {
color: #777777;
}
.elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field input, .elementor-widget.elementor-widget-wpforms .wpforms-container.contact_form form.wpforms-form .wpforms-field-container .wpforms-field textarea {
color: #777777;
}
.single-product #content .before_single_product .cenos-product-control ul.product-navigation li.product-nav-item svg.fm-icon {
color: #777777;
}
.single-product #content .type-product .product-container .product-main { }
.single-product #content .type-product .product-container .product-main .product-info.summary .woocommerce-product-rating a.woocommerce-review-link {
color: #777777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations tr td.label {
color: #777777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .select2-container--default .select2-selection--single {
color: #777777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.variations_form table.variations .variable-items-wrapper .variable-item.button-variable-item {
color: #777777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary form.cart.grouped_form .woocommerce-grouped-product-list .woocommerce-grouped-product-list-item a.button.product_type_simple {
background: #777777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .posted_in a, .single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .tagged_as a {
color: #777777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product_meta .sku_wrapper span {
color: #777777;
}
.single-product #content .type-product .product-container .product-main .product-info.summary .product-share .socials-sharing > li a svg {
fill: #777777;
}
.single-product #content .type-product .product-container .woocommerce-tabs.cenos-wc-tabs ul.tabs.cenos-tabs-title > li > a {
color: #777777;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-parent-term-link {
border: 1px solid #777777;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-parent-term-link > span {
color: #777777;
}
.page-heading-wrap .shop-heading-content .shop-heading-container .cenos-parent-term-link svg.fm-icon {
fill: #777777;
}
.woocommerce .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb a {
color: #777777;
}
.page-heading-wrap.shop-heading-simple .shop-heading-content .shop-heading-container .woocommerce-breadcrumb a {
color: #777777;
}
#content > .container .cenos-shop-control .main-shop-control .cenos-products-tabs a {
color: #777777;
}
#content > .container .woof_products_top_panel .cenos_reset_filter_button::after {
border-right: 1px solid #777777;
}
.woocommerce .woocommerce-breadcrumb a {
color: #777777;
}
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
color: #777777;
}
.cenos_woof_pagination_trigger a.cenos_woof_pagination_trigger_action {
color: #777777;
}
.filter-content-wrap { }
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_checkbox li label.woof_checkbox_label .woof_checkbox_count {
color: #777777;
}
.filter-content-wrap .widget-woof .woof_sid_widget .woof_redraw_zone .woof_container .woof_container_inner ul.woof_list.woof_list_radio li label.woof_checkbox_label .woof_checkbox_count {
color: #777777;
}
#filter-canvas .js-offcanvas-close.cenos-close-btn .button-title:hover {
color: #777777;
}
@media (min-width: 768px) {
.woocommerce .page-heading-wrap .shop-heading-content.heading-color-dark .woocommerce-breadcrumb a {
color: #777777;
}
}
.woocommerce ul.products.products-grid-style li.product .product-item-cat-link {
color: #777777;
}
.woocommerce ul.products.products-grid-style li.product .yith-wcqv-button svg {
fill: #777777;
}
.woocommerce ul.products.products-grid-style li.product .product-thumbnail .cenos_thumb_action.right a.button svg {
fill: #777777;
}
.woocommerce ul.products.products-grid-style.product-item-style-7 li.product .product-thumbnail .cenos_thumb_action.bottom > a.button > svg.fm-icon {
fill: #777777;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .product-infos .product-item-excerpt {
color: #777777;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button {
color: #777777;
}
.woocommerce ul.products.products-list-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
fill: #777777;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .product-infos .product-item-excerpt {
color: #777777;
}
.woocommerce ul.products.products-list2-style li.product .product-item-wrap .tinv-wishlist.tinv-wraper a.tinvwl_add_to_wishlist_button svg.fm-icon {
fill: #777777;
}
@media (min-width: 768px) {
.woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-next svg.fm-icon, .woocommerce ul.products.products-grid-style.product-item-slider li.product .product-item-wrap .swiper-button-prev svg.fm-icon {
fill: #777777;
}
}
body:not(.woocommerce-page) .cenos-sidebar-content aside.widget .cenos-posts-list .post-item .post-list-content .post-list-category a:not(:hover) {
color: #777777;
}
.single-post .site-main article.single-post .footer-post .post-navigation .nav-links a .post_nav-text:not(:hover) {
color: #777777;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-info time, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-info time {
color: #777777;
}
.single-post #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a, .page:not(.woocommerce-page) #comments .comment-list .comment-body .comment-content .comment-heading .comment-action a {
color: #777777;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control .woocommerce-result-count {
color: #777777;
}
.cenos-mobile #content > .container .cenos-shop-control .main-shop-control .woocommerce-ordering .select2-container.select2-container--default .select2-selection--single > .select2-selection__rendered {
color: #777777;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary form.cart.variations_form table.variations tr td.label span.woo-selected-variation-item-name {
color: #777777;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .sku_wrapper span.sku, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .posted_in a, .cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-main .product-info.summary .product_meta .tagged_as a {
color: #777777;
}
.cenos-mobile.single-product #content .type-product .product-container.mobile-single-layout_01 .product-footer .product-page-accordian .accordion-item.card button.btn-link svg.fm-icon {
fill: #777777;
}