@charset "UTF-8";

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
from, 50%, to {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from, to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes 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(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
from {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from, 11.1%, to {
-webkit-transform: none;
transform: none;
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from, 20%, 40%, 60%, 80%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from, 60%, 75%, 90%, to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-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: none;
transform: none;
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-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) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
from {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
from {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
to {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
from {
opacity: 1;
}
to {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
to {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.fa,.fab,.fal,.far,.fas{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1}.fa-lg{font-size:1.33333em;line-height:.75em;vertical-align:-.0667em}.fa-xs{font-size:.75em}.fa-sm{font-size:.875em}.fa-1x{font-size:1em}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-6x{font-size:6em}.fa-7x{font-size:7em}.fa-8x{font-size:8em}.fa-9x{font-size:9em}.fa-10x{font-size:10em}.fa-fw{text-align:center;width:1.25em}.fa-ul{list-style-type:none;margin-left:2.5em;padding-left:0}.fa-ul>li{position:relative}.fa-li{left:-2em;position:absolute;text-align:center;width:2em;line-height:inherit}.fa-border{border:.08em solid #eee;border-radius:.1em;padding:.2em .25em .15em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.fab.fa-pull-left,.fal.fa-pull-left,.far.fa-pull-left,.fas.fa-pull-left{margin-right:.3em}.fa.fa-pull-right,.fab.fa-pull-right,.fal.fa-pull-right,.far.fa-pull-right,.fas.fa-pull-right{margin-left:.3em}.fa-spin{animation:fa-spin 2s infinite linear}.fa-pulse{animation:fa-spin 1s infinite steps(8)}@keyframes fa-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";transform:scaleX(-1)}.fa-flip-vertical{transform:scaleY(-1)}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical,.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"}.fa-flip-both,.fa-flip-horizontal.fa-flip-vertical{transform:scale(-1)}:root .fa-flip-both,:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before{content:"\f369"}.fa-acquisitions-incorporated:before{content:"\f6af"}.fa-ad:before{content:"\f641"}.fa-address-book:before{content:"\f2b9"}.fa-address-card:before{content:"\f2bb"}.fa-adjust:before{content:"\f042"}.fa-adn:before{content:"\f170"}.fa-adobe:before{content:"\f778"}.fa-adversal:before{content:"\f36a"}.fa-affiliatetheme:before{content:"\f36b"}.fa-air-freshener:before{content:"\f5d0"}.fa-airbnb:before{content:"\f834"}.fa-algolia:before{content:"\f36c"}.fa-align-center:before{content:"\f037"}.fa-align-justify:before{content:"\f039"}.fa-align-left:before{content:"\f036"}.fa-align-right:before{content:"\f038"}.fa-alipay:before{content:"\f642"}.fa-allergies:before{content:"\f461"}.fa-amazon:before{content:"\f270"}.fa-amazon-pay:before{content:"\f42c"}.fa-ambulance:before{content:"\f0f9"}.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-amilia:before{content:"\f36d"}.fa-anchor:before{content:"\f13d"}.fa-android:before{content:"\f17b"}.fa-angellist:before{content:"\f209"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-down:before{content:"\f107"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angry:before{content:"\f556"}.fa-angrycreative:before{content:"\f36e"}.fa-angular:before{content:"\f420"}.fa-ankh:before{content:"\f644"}.fa-app-store:before{content:"\f36f"}.fa-app-store-ios:before{content:"\f370"}.fa-apper:before{content:"\f371"}.fa-apple:before{content:"\f179"}.fa-apple-alt:before{content:"\f5d1"}.fa-apple-pay:before{content:"\f415"}.fa-archive:before{content:"\f187"}.fa-archway:before{content:"\f557"}.fa-arrow-alt-circle-down:before{content:"\f358"}.fa-arrow-alt-circle-left:before{content:"\f359"}.fa-arrow-alt-circle-right:before{content:"\f35a"}.fa-arrow-alt-circle-up:before{content:"\f35b"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-down:before{content:"\f063"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrows-alt:before{content:"\f0b2"}.fa-arrows-alt-h:before{content:"\f337"}.fa-arrows-alt-v:before{content:"\f338"}.fa-artstation:before{content:"\f77a"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asterisk:before{content:"\f069"}.fa-asymmetrik:before{content:"\f372"}.fa-at:before{content:"\f1fa"}.fa-atlas:before{content:"\f558"}.fa-atlassian:before{content:"\f77b"}.fa-atom:before{content:"\f5d2"}.fa-audible:before{content:"\f373"}.fa-audio-description:before{content:"\f29e"}.fa-autoprefixer:before{content:"\f41c"}.fa-avianex:before{content:"\f374"}.fa-aviato:before{content:"\f421"}.fa-award:before{content:"\f559"}.fa-aws:before{content:"\f375"}.fa-baby:before{content:"\f77c"}.fa-baby-carriage:before{content:"\f77d"}.fa-backspace:before{content:"\f55a"}.fa-backward:before{content:"\f04a"}.fa-bacon:before{content:"\f7e5"}.fa-balance-scale:before{content:"\f24e"}.fa-ban:before{content:"\f05e"}.fa-band-aid:before{content:"\f462"}.fa-bandcamp:before{content:"\f2d5"}.fa-barcode:before{content:"\f02a"}.fa-bars:before{content:"\f0c9"}.fa-baseball-ball:before{content:"\f433"}.fa-basketball-ball:before{content:"\f434"}.fa-bath:before{content:"\f2cd"}.fa-battery-empty:before{content:"\f244"}.fa-battery-full:before{content:"\f240"}.fa-battery-half:before{content:"\f242"}.fa-battery-quarter:before{content:"\f243"}.fa-battery-three-quarters:before{content:"\f241"}.fa-battle-net:before{content:"\f835"}.fa-bed:before{content:"\f236"}.fa-beer:before{content:"\f0fc"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-bell:before{content:"\f0f3"}.fa-bell-slash:before{content:"\f1f6"}.fa-bezier-curve:before{content:"\f55b"}.fa-bible:before{content:"\f647"}.fa-bicycle:before{content:"\f206"}.fa-bimobject:before{content:"\f378"}.fa-binoculars:before{content:"\f1e5"}.fa-biohazard:before{content:"\f780"}.fa-birthday-cake:before{content:"\f1fd"}.fa-bitbucket:before{content:"\f171"}.fa-bitcoin:before{content:"\f379"}.fa-bity:before{content:"\f37a"}.fa-black-tie:before{content:"\f27e"}.fa-blackberry:before{content:"\f37b"}.fa-blender:before{content:"\f517"}.fa-blender-phone:before{content:"\f6b6"}.fa-blind:before{content:"\f29d"}.fa-blog:before{content:"\f781"}.fa-blogger:before{content:"\f37c"}.fa-blogger-b:before{content:"\f37d"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-bold:before{content:"\f032"}.fa-bolt:before{content:"\f0e7"}.fa-bomb:before{content:"\f1e2"}.fa-bone:before{content:"\f5d7"}.fa-bong:before{content:"\f55c"}.fa-book:before{content:"\f02d"}.fa-book-dead:before{content:"\f6b7"}.fa-book-medical:before{content:"\f7e6"}.fa-book-open:before{content:"\f518"}.fa-book-reader:before{content:"\f5da"}.fa-bookmark:before{content:"\f02e"}.fa-bootstrap:before{content:"\f836"}.fa-bowling-ball:before{content:"\f436"}.fa-box:before{content:"\f466"}.fa-box-open:before{content:"\f49e"}.fa-boxes:before{content:"\f468"}.fa-braille:before{content:"\f2a1"}.fa-brain:before{content:"\f5dc"}.fa-bread-slice:before{content:"\f7ec"}.fa-briefcase:before{content:"\f0b1"}.fa-briefcase-medical:before{content:"\f469"}.fa-broadcast-tower:before{content:"\f519"}.fa-broom:before{content:"\f51a"}.fa-brush:before{content:"\f55d"}.fa-btc:before{content:"\f15a"}.fa-buffer:before{content:"\f837"}.fa-bug:before{content:"\f188"}.fa-building:before{content:"\f1ad"}.fa-bullhorn:before{content:"\f0a1"}.fa-bullseye:before{content:"\f140"}.fa-burn:before{content:"\f46a"}.fa-buromobelexperte:before{content:"\f37f"}.fa-bus:before{content:"\f207"}.fa-bus-alt:before{content:"\f55e"}.fa-business-time:before{content:"\f64a"}.fa-buysellads:before{content:"\f20d"}.fa-calculator:before{content:"\f1ec"}.fa-calendar:before{content:"\f133"}.fa-calendar-alt:before{content:"\f073"}.fa-calendar-check:before{content:"\f274"}.fa-calendar-day:before{content:"\f783"}.fa-calendar-minus:before{content:"\f272"}.fa-calendar-plus:before{content:"\f271"}.fa-calendar-times:before{content:"\f273"}.fa-calendar-week:before{content:"\f784"}.fa-camera:before{content:"\f030"}.fa-camera-retro:before{content:"\f083"}.fa-campground:before{content:"\f6bb"}.fa-canadian-maple-leaf:before{content:"\f785"}.fa-candy-cane:before{content:"\f786"}.fa-cannabis:before{content:"\f55f"}.fa-capsules:before{content:"\f46b"}.fa-car:before{content:"\f1b9"}.fa-car-alt:before{content:"\f5de"}.fa-car-battery:before{content:"\f5df"}.fa-car-crash:before{content:"\f5e1"}.fa-car-side:before{content:"\f5e4"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-caret-square-down:before{content:"\f150"}.fa-caret-square-left:before{content:"\f191"}.fa-caret-square-right:before{content:"\f152"}.fa-caret-square-up:before{content:"\f151"}.fa-caret-up:before{content:"\f0d8"}.fa-carrot:before{content:"\f787"}.fa-cart-arrow-down:before{content:"\f218"}.fa-cart-plus:before{content:"\f217"}.fa-cash-register:before{content:"\f788"}.fa-cat:before{content:"\f6be"}.fa-cc-amazon-pay:before{content:"\f42d"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-apple-pay:before{content:"\f416"}.fa-cc-diners-club:before{content:"\f24c"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-cc-visa:before{content:"\f1f0"}.fa-centercode:before{content:"\f380"}.fa-centos:before{content:"\f789"}.fa-certificate:before{content:"\f0a3"}.fa-chair:before{content:"\f6c0"}.fa-chalkboard:before{content:"\f51b"}.fa-chalkboard-teacher:before{content:"\f51c"}.fa-charging-station:before{content:"\f5e7"}.fa-chart-area:before{content:"\f1fe"}.fa-chart-bar:before{content:"\f080"}.fa-chart-line:before{content:"\f201"}.fa-chart-pie:before{content:"\f200"}.fa-check:before{content:"\f00c"}.fa-check-circle:before{content:"\f058"}.fa-check-double:before{content:"\f560"}.fa-check-square:before{content:"\f14a"}.fa-cheese:before{content:"\f7ef"}.fa-chess:before{content:"\f439"}.fa-chess-bishop:before{content:"\f43a"}.fa-chess-board:before{content:"\f43c"}.fa-chess-king:before{content:"\f43f"}.fa-chess-knight:before{content:"\f441"}.fa-chess-pawn:before{content:"\f443"}.fa-chess-queen:before{content:"\f445"}.fa-chess-rook:before{content:"\f447"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-down:before{content:"\f078"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-chevron-up:before{content:"\f077"}.fa-child:before{content:"\f1ae"}.fa-chrome:before{content:"\f268"}.fa-chromecast:before{content:"\f838"}.fa-church:before{content:"\f51d"}.fa-circle:before{content:"\f111"}.fa-circle-notch:before{content:"\f1ce"}.fa-city:before{content:"\f64f"}.fa-clinic-medical:before{content:"\f7f2"}.fa-clipboard:before{content:"\f328"}.fa-clipboard-check:before{content:"\f46c"}.fa-clipboard-list:before{content:"\f46d"}.fa-clock:before{content:"\f017"}.fa-clone:before{content:"\f24d"}.fa-closed-captioning:before{content:"\f20a"}.fa-cloud:before{content:"\f0c2"}.fa-cloud-download-alt:before{content:"\f381"}.fa-cloud-meatball:before{content:"\f73b"}.fa-cloud-moon:before{content:"\f6c3"}.fa-cloud-moon-rain:before{content:"\f73c"}.fa-cloud-rain:before{content:"\f73d"}.fa-cloud-showers-heavy:before{content:"\f740"}.fa-cloud-sun:before{content:"\f6c4"}.fa-cloud-sun-rain:before{content:"\f743"}.fa-cloud-upload-alt:before{content:"\f382"}.fa-cloudscale:before{content:"\f383"}.fa-cloudsmith:before{content:"\f384"}.fa-cloudversify:before{content:"\f385"}.fa-cocktail:before{content:"\f561"}.fa-code:before{content:"\f121"}.fa-code-branch:before{content:"\f126"}.fa-codepen:before{content:"\f1cb"}.fa-codiepie:before{content:"\f284"}.fa-coffee:before{content:"\f0f4"}.fa-cog:before{content:"\f013"}.fa-cogs:before{content:"\f085"}.fa-coins:before{content:"\f51e"}.fa-columns:before{content:"\f0db"}.fa-comment:before{content:"\f075"}.fa-comment-alt:before{content:"\f27a"}.fa-comment-dollar:before{content:"\f651"}.fa-comment-dots:before{content:"\f4ad"}.fa-comment-medical:before{content:"\f7f5"}.fa-comment-slash:before{content:"\f4b3"}.fa-comments:before{content:"\f086"}.fa-comments-dollar:before{content:"\f653"}.fa-compact-disc:before{content:"\f51f"}.fa-compass:before{content:"\f14e"}.fa-compress:before{content:"\f066"}.fa-compress-arrows-alt:before{content:"\f78c"}.fa-concierge-bell:before{content:"\f562"}.fa-confluence:before{content:"\f78d"}.fa-connectdevelop:before{content:"\f20e"}.fa-contao:before{content:"\f26d"}.fa-cookie:before{content:"\f563"}.fa-cookie-bite:before{content:"\f564"}.fa-copy:before{content:"\f0c5"}.fa-copyright:before{content:"\f1f9"}.fa-couch:before{content:"\f4b8"}.fa-cpanel:before{content:"\f388"}.fa-creative-commons:before{content:"\f25e"}.fa-creative-commons-by:before{content:"\f4e7"}.fa-creative-commons-nc:before{content:"\f4e8"}.fa-creative-commons-nc-eu:before{content:"\f4e9"}.fa-creative-commons-nc-jp:before{content:"\f4ea"}.fa-creative-commons-nd:before{content:"\f4eb"}.fa-creative-commons-pd:before{content:"\f4ec"}.fa-creative-commons-pd-alt:before{content:"\f4ed"}.fa-creative-commons-remix:before{content:"\f4ee"}.fa-creative-commons-sa:before{content:"\f4ef"}.fa-creative-commons-sampling:before{content:"\f4f0"}.fa-creative-commons-sampling-plus:before{content:"\f4f1"}.fa-creative-commons-share:before{content:"\f4f2"}.fa-creative-commons-zero:before{content:"\f4f3"}.fa-credit-card:before{content:"\f09d"}.fa-critical-role:before{content:"\f6c9"}.fa-crop:before{content:"\f125"}.fa-crop-alt:before{content:"\f565"}.fa-cross:before{content:"\f654"}.fa-crosshairs:before{content:"\f05b"}.fa-crow:before{content:"\f520"}.fa-crown:before{content:"\f521"}.fa-crutch:before{content:"\f7f7"}.fa-css3:before{content:"\f13c"}.fa-css3-alt:before{content:"\f38b"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-cut:before{content:"\f0c4"}.fa-cuttlefish:before{content:"\f38c"}.fa-d-and-d:before{content:"\f38d"}.fa-d-and-d-beyond:before{content:"\f6ca"}.fa-dashcube:before{content:"\f210"}.fa-database:before{content:"\f1c0"}.fa-deaf:before{content:"\f2a4"}.fa-delicious:before{content:"\f1a5"}.fa-democrat:before{content:"\f747"}.fa-deploydog:before{content:"\f38e"}.fa-deskpro:before{content:"\f38f"}.fa-desktop:before{content:"\f108"}.fa-dev:before{content:"\f6cc"}.fa-deviantart:before{content:"\f1bd"}.fa-dharmachakra:before{content:"\f655"}.fa-dhl:before{content:"\f790"}.fa-diagnoses:before{content:"\f470"}.fa-diaspora:before{content:"\f791"}.fa-dice:before{content:"\f522"}.fa-dice-d20:before{content:"\f6cf"}.fa-dice-d6:before{content:"\f6d1"}.fa-dice-five:before{content:"\f523"}.fa-dice-four:before{content:"\f524"}.fa-dice-one:before{content:"\f525"}.fa-dice-six:before{content:"\f526"}.fa-dice-three:before{content:"\f527"}.fa-dice-two:before{content:"\f528"}.fa-digg:before{content:"\f1a6"}.fa-digital-ocean:before{content:"\f391"}.fa-digital-tachograph:before{content:"\f566"}.fa-directions:before{content:"\f5eb"}.fa-discord:before{content:"\f392"}.fa-discourse:before{content:"\f393"}.fa-divide:before{content:"\f529"}.fa-dizzy:before{content:"\f567"}.fa-dna:before{content:"\f471"}.fa-dochub:before{content:"\f394"}.fa-docker:before{content:"\f395"}.fa-dog:before{content:"\f6d3"}.fa-dollar-sign:before{content:"\f155"}.fa-dolly:before{content:"\f472"}.fa-dolly-flatbed:before{content:"\f474"}.fa-donate:before{content:"\f4b9"}.fa-door-closed:before{content:"\f52a"}.fa-door-open:before{content:"\f52b"}.fa-dot-circle:before{content:"\f192"}.fa-dove:before{content:"\f4ba"}.fa-download:before{content:"\f019"}.fa-draft2digital:before{content:"\f396"}.fa-drafting-compass:before{content:"\f568"}.fa-dragon:before{content:"\f6d5"}.fa-draw-polygon:before{content:"\f5ee"}.fa-dribbble:before{content:"\f17d"}.fa-dribbble-square:before{content:"\f397"}.fa-dropbox:before{content:"\f16b"}.fa-drum:before{content:"\f569"}.fa-drum-steelpan:before{content:"\f56a"}.fa-drumstick-bite:before{content:"\f6d7"}.fa-drupal:before{content:"\f1a9"}.fa-dumbbell:before{content:"\f44b"}.fa-dumpster:before{content:"\f793"}.fa-dumpster-fire:before{content:"\f794"}.fa-dungeon:before{content:"\f6d9"}.fa-dyalog:before{content:"\f399"}.fa-earlybirds:before{content:"\f39a"}.fa-ebay:before{content:"\f4f4"}.fa-edge:before{content:"\f282"}.fa-edit:before{content:"\f044"}.fa-egg:before{content:"\f7fb"}.fa-eject:before{content:"\f052"}.fa-elementor:before{content:"\f430"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-ello:before{content:"\f5f1"}.fa-ember:before{content:"\f423"}.fa-empire:before{content:"\f1d1"}.fa-envelope:before{content:"\f0e0"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-text:before{content:"\f658"}.fa-envelope-square:before{content:"\f199"}.fa-envira:before{content:"\f299"}.fa-equals:before{content:"\f52c"}.fa-eraser:before{content:"\f12d"}.fa-erlang:before{content:"\f39d"}.fa-ethereum:before{content:"\f42e"}.fa-ethernet:before{content:"\f796"}.fa-etsy:before{content:"\f2d7"}.fa-euro-sign:before{content:"\f153"}.fa-evernote:before{content:"\f839"}.fa-exchange-alt:before{content:"\f362"}.fa-exclamation:before{content:"\f12a"}.fa-exclamation-circle:before{content:"\f06a"}.fa-exclamation-triangle:before{content:"\f071"}.fa-expand:before{content:"\f065"}.fa-expand-arrows-alt:before{content:"\f31e"}.fa-expeditedssl:before{content:"\f23e"}.fa-external-link-alt:before{content:"\f35d"}.fa-external-link-square-alt:before{content:"\f360"}.fa-eye:before{content:"\f06e"}.fa-eye-dropper:before{content:"\f1fb"}.fa-eye-slash:before{content:"\f070"}.fa-facebook:before{content:"\f09a"}.fa-facebook-f:before{content:"\f39e"}.fa-facebook-messenger:before{content:"\f39f"}.fa-facebook-square:before{content:"\f082"}.fa-fantasy-flight-games:before{content:"\f6dc"}.fa-fast-backward:before{content:"\f049"}.fa-fast-forward:before{content:"\f050"}.fa-fax:before{content:"\f1ac"}.fa-feather:before{content:"\f52d"}.fa-feather-alt:before{content:"\f56b"}.fa-fedex:before{content:"\f797"}.fa-fedora:before{content:"\f798"}.fa-female:before{content:"\f182"}.fa-fighter-jet:before{content:"\f0fb"}.fa-figma:before{content:"\f799"}.fa-file:before{content:"\f15b"}.fa-file-alt:before{content:"\f15c"}.fa-file-archive:before{content:"\f1c6"}.fa-file-audio:before{content:"\f1c7"}.fa-file-code:before{content:"\f1c9"}.fa-file-contract:before{content:"\f56c"}.fa-file-csv:before{content:"\f6dd"}.fa-file-download:before{content:"\f56d"}.fa-file-excel:before{content:"\f1c3"}.fa-file-export:before{content:"\f56e"}.fa-file-image:before{content:"\f1c5"}.fa-file-import:before{content:"\f56f"}.fa-file-invoice:before{content:"\f570"}.fa-file-invoice-dollar:before{content:"\f571"}.fa-file-medical:before{content:"\f477"}.fa-file-medical-alt:before{content:"\f478"}.fa-file-pdf:before{content:"\f1c1"}.fa-file-powerpoint:before{content:"\f1c4"}.fa-file-prescription:before{content:"\f572"}.fa-file-signature:before{content:"\f573"}.fa-file-upload:before{content:"\f574"}.fa-file-video:before{content:"\f1c8"}.fa-file-word:before{content:"\f1c2"}.fa-fill:before{content:"\f575"}.fa-fill-drip:before{content:"\f576"}.fa-film:before{content:"\f008"}.fa-filter:before{content:"\f0b0"}.fa-fingerprint:before{content:"\f577"}.fa-fire:before{content:"\f06d"}.fa-fire-alt:before{content:"\f7e4"}.fa-fire-extinguisher:before{content:"\f134"}.fa-firefox:before{content:"\f269"}.fa-first-aid:before{content:"\f479"}.fa-first-order:before{content:"\f2b0"}.fa-first-order-alt:before{content:"\f50a"}.fa-firstdraft:before{content:"\f3a1"}.fa-fish:before{content:"\f578"}.fa-fist-raised:before{content:"\f6de"}.fa-flag:before{content:"\f024"}.fa-flag-checkered:before{content:"\f11e"}.fa-flag-usa:before{content:"\f74d"}.fa-flask:before{content:"\f0c3"}.fa-flickr:before{content:"\f16e"}.fa-flipboard:before{content:"\f44d"}.fa-flushed:before{content:"\f579"}.fa-fly:before{content:"\f417"}.fa-folder:before{content:"\f07b"}.fa-folder-minus:before{content:"\f65d"}.fa-folder-open:before{content:"\f07c"}.fa-folder-plus:before{content:"\f65e"}.fa-font:before{content:"\f031"}.fa-font-awesome:before{content:"\f2b4"}.fa-font-awesome-alt:before{content:"\f35c"}.fa-font-awesome-flag:before{content:"\f425"}.fa-font-awesome-logo-full:before{content:"\f4e6"}.fa-fonticons:before{content:"\f280"}.fa-fonticons-fi:before{content:"\f3a2"}.fa-football-ball:before{content:"\f44e"}.fa-fort-awesome:before{content:"\f286"}.fa-fort-awesome-alt:before{content:"\f3a3"}.fa-forumbee:before{content:"\f211"}.fa-forward:before{content:"\f04e"}.fa-foursquare:before{content:"\f180"}.fa-free-code-camp:before{content:"\f2c5"}.fa-freebsd:before{content:"\f3a4"}.fa-frog:before{content:"\f52e"}.fa-frown:before{content:"\f119"}.fa-frown-open:before{content:"\f57a"}.fa-fulcrum:before{content:"\f50b"}.fa-funnel-dollar:before{content:"\f662"}.fa-futbol:before{content:"\f1e3"}.fa-galactic-republic:before{content:"\f50c"}.fa-galactic-senate:before{content:"\f50d"}.fa-gamepad:before{content:"\f11b"}.fa-gas-pump:before{content:"\f52f"}.fa-gavel:before{content:"\f0e3"}.fa-gem:before{content:"\f3a5"}.fa-genderless:before{content:"\f22d"}.fa-get-pocket:before{content:"\f265"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-ghost:before{content:"\f6e2"}.fa-gift:before{content:"\f06b"}.fa-gifts:before{content:"\f79c"}.fa-git:before{content:"\f1d3"}.fa-git-square:before{content:"\f1d2"}.fa-github:before{content:"\f09b"}.fa-github-alt:before{content:"\f113"}.fa-github-square:before{content:"\f092"}.fa-gitkraken:before{content:"\f3a6"}.fa-gitlab:before{content:"\f296"}.fa-gitter:before{content:"\f426"}.fa-glass-cheers:before{content:"\f79f"}.fa-glass-martini:before{content:"\f000"}.fa-glass-martini-alt:before{content:"\f57b"}.fa-glass-whiskey:before{content:"\f7a0"}.fa-glasses:before{content:"\f530"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-globe:before{content:"\f0ac"}.fa-globe-africa:before{content:"\f57c"}.fa-globe-americas:before{content:"\f57d"}.fa-globe-asia:before{content:"\f57e"}.fa-globe-europe:before{content:"\f7a2"}.fa-gofore:before{content:"\f3a7"}.fa-golf-ball:before{content:"\f450"}.fa-goodreads:before{content:"\f3a8"}.fa-goodreads-g:before{content:"\f3a9"}.fa-google:before{content:"\f1a0"}.fa-google-drive:before{content:"\f3aa"}.fa-google-play:before{content:"\f3ab"}.fa-google-plus:before{content:"\f2b3"}.fa-google-plus-g:before{content:"\f0d5"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-wallet:before{content:"\f1ee"}.fa-gopuram:before{content:"\f664"}.fa-graduation-cap:before{content:"\f19d"}.fa-gratipay:before{content:"\f184"}.fa-grav:before{content:"\f2d6"}.fa-greater-than:before{content:"\f531"}.fa-greater-than-equal:before{content:"\f532"}.fa-grimace:before{content:"\f57f"}.fa-grin:before{content:"\f580"}.fa-grin-alt:before{content:"\f581"}.fa-grin-beam:before{content:"\f582"}.fa-grin-beam-sweat:before{content:"\f583"}.fa-grin-hearts:before{content:"\f584"}.fa-grin-squint:before{content:"\f585"}.fa-grin-squint-tears:before{content:"\f586"}.fa-grin-stars:before{content:"\f587"}.fa-grin-tears:before{content:"\f588"}.fa-grin-tongue:before{content:"\f589"}.fa-grin-tongue-squint:before{content:"\f58a"}.fa-grin-tongue-wink:before{content:"\f58b"}.fa-grin-wink:before{content:"\f58c"}.fa-grip-horizontal:before{content:"\f58d"}.fa-grip-lines:before{content:"\f7a4"}.fa-grip-lines-vertical:before{content:"\f7a5"}.fa-grip-vertical:before{content:"\f58e"}.fa-gripfire:before{content:"\f3ac"}.fa-grunt:before{content:"\f3ad"}.fa-guitar:before{content:"\f7a6"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hackerrank:before{content:"\f5f7"}.fa-hamburger:before{content:"\f805"}.fa-hammer:before{content:"\f6e3"}.fa-hamsa:before{content:"\f665"}.fa-hand-holding:before{content:"\f4bd"}.fa-hand-holding-heart:before{content:"\f4be"}.fa-hand-holding-usd:before{content:"\f4c0"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-middle-finger:before{content:"\f806"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25a"}.fa-hand-rock:before{content:"\f255"}.fa-hand-scissors:before{content:"\f257"}.fa-hand-spock:before{content:"\f259"}.fa-hands:before{content:"\f4c2"}.fa-hands-helping:before{content:"\f4c4"}.fa-handshake:before{content:"\f2b5"}.fa-hanukiah:before{content:"\f6e6"}.fa-hard-hat:before{content:"\f807"}.fa-hashtag:before{content:"\f292"}.fa-hat-wizard:before{content:"\f6e8"}.fa-haykal:before{content:"\f666"}.fa-hdd:before{content:"\f0a0"}.fa-heading:before{content:"\f1dc"}.fa-headphones:before{content:"\f025"}.fa-headphones-alt:before{content:"\f58f"}.fa-headset:before{content:"\f590"}.fa-heart:before{content:"\f004"}.fa-heart-broken:before{content:"\f7a9"}.fa-heartbeat:before{content:"\f21e"}.fa-helicopter:before{content:"\f533"}.fa-highlighter:before{content:"\f591"}.fa-hiking:before{content:"\f6ec"}.fa-hippo:before{content:"\f6ed"}.fa-hips:before{content:"\f452"}.fa-hire-a-helper:before{content:"\f3b0"}.fa-history:before{content:"\f1da"}.fa-hockey-puck:before{content:"\f453"}.fa-holly-berry:before{content:"\f7aa"}.fa-home:before{content:"\f015"}.fa-hooli:before{content:"\f427"}.fa-hornbill:before{content:"\f592"}.fa-horse:before{content:"\f6f0"}.fa-horse-head:before{content:"\f7ab"}.fa-hospital:before{content:"\f0f8"}.fa-hospital-alt:before{content:"\f47d"}.fa-hospital-symbol:before{content:"\f47e"}.fa-hot-tub:before{content:"\f593"}.fa-hotdog:before{content:"\f80f"}.fa-hotel:before{content:"\f594"}.fa-hotjar:before{content:"\f3b1"}.fa-hourglass:before{content:"\f254"}.fa-hourglass-end:before{content:"\f253"}.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-start:before{content:"\f251"}.fa-house-damage:before{content:"\f6f1"}.fa-houzz:before{content:"\f27c"}.fa-hryvnia:before{content:"\f6f2"}.fa-html5:before{content:"\f13b"}.fa-hubspot:before{content:"\f3b2"}.fa-i-cursor:before{content:"\f246"}.fa-ice-cream:before{content:"\f810"}.fa-icicles:before{content:"\f7ad"}.fa-id-badge:before{content:"\f2c1"}.fa-id-card:before{content:"\f2c2"}.fa-id-card-alt:before{content:"\f47f"}.fa-igloo:before{content:"\f7ae"}.fa-image:before{content:"\f03e"}.fa-images:before{content:"\f302"}.fa-imdb:before{content:"\f2d8"}.fa-inbox:before{content:"\f01c"}.fa-indent:before{content:"\f03c"}.fa-industry:before{content:"\f275"}.fa-infinity:before{content:"\f534"}.fa-info:before{content:"\f129"}.fa-info-circle:before{content:"\f05a"}.fa-instagram:before{content:"\f16d"}.fa-intercom:before{content:"\f7af"}.fa-internet-explorer:before{content:"\f26b"}.fa-invision:before{content:"\f7b0"}.fa-ioxhost:before{content:"\f208"}.fa-italic:before{content:"\f033"}.fa-itch-io:before{content:"\f83a"}.fa-itunes:before{content:"\f3b4"}.fa-itunes-note:before{content:"\f3b5"}.fa-java:before{content:"\f4e4"}.fa-jedi:before{content:"\f669"}.fa-jedi-order:before{content:"\f50e"}.fa-jenkins:before{content:"\f3b6"}.fa-jira:before{content:"\f7b1"}.fa-joget:before{content:"\f3b7"}.fa-joint:before{content:"\f595"}.fa-joomla:before{content:"\f1aa"}.fa-journal-whills:before{content:"\f66a"}.fa-js:before{content:"\f3b8"}.fa-js-square:before{content:"\f3b9"}.fa-jsfiddle:before{content:"\f1cc"}.fa-kaaba:before{content:"\f66b"}.fa-kaggle:before{content:"\f5fa"}.fa-key:before{content:"\f084"}.fa-keybase:before{content:"\f4f5"}.fa-keyboard:before{content:"\f11c"}.fa-keycdn:before{content:"\f3ba"}.fa-khanda:before{content:"\f66d"}.fa-kickstarter:before{content:"\f3bb"}.fa-kickstarter-k:before{content:"\f3bc"}.fa-kiss:before{content:"\f596"}.fa-kiss-beam:before{content:"\f597"}.fa-kiss-wink-heart:before{content:"\f598"}.fa-kiwi-bird:before{content:"\f535"}.fa-korvue:before{content:"\f42f"}.fa-landmark:before{content:"\f66f"}.fa-language:before{content:"\f1ab"}.fa-laptop:before{content:"\f109"}.fa-laptop-code:before{content:"\f5fc"}.fa-laptop-medical:before{content:"\f812"}.fa-laravel:before{content:"\f3bd"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-laugh:before{content:"\f599"}.fa-laugh-beam:before{content:"\f59a"}.fa-laugh-squint:before{content:"\f59b"}.fa-laugh-wink:before{content:"\f59c"}.fa-layer-group:before{content:"\f5fd"}.fa-leaf:before{content:"\f06c"}.fa-leanpub:before{content:"\f212"}.fa-lemon:before{content:"\f094"}.fa-less:before{content:"\f41d"}.fa-less-than:before{content:"\f536"}.fa-less-than-equal:before{content:"\f537"}.fa-level-down-alt:before{content:"\f3be"}.fa-level-up-alt:before{content:"\f3bf"}.fa-life-ring:before{content:"\f1cd"}.fa-lightbulb:before{content:"\f0eb"}.fa-line:before{content:"\f3c0"}.fa-link:before{content:"\f0c1"}.fa-linkedin:before{content:"\f08c"}.fa-linkedin-in:before{content:"\f0e1"}.fa-linode:before{content:"\f2b8"}.fa-linux:before{content:"\f17c"}.fa-lira-sign:before{content:"\f195"}.fa-list:before{content:"\f03a"}.fa-list-alt:before{content:"\f022"}.fa-list-ol:before{content:"\f0cb"}.fa-list-ul:before{content:"\f0ca"}.fa-location-arrow:before{content:"\f124"}.fa-lock:before{content:"\f023"}.fa-lock-open:before{content:"\f3c1"}.fa-long-arrow-alt-down:before{content:"\f309"}.fa-long-arrow-alt-left:before{content:"\f30a"}.fa-long-arrow-alt-right:before{content:"\f30b"}.fa-long-arrow-alt-up:before{content:"\f30c"}.fa-low-vision:before{content:"\f2a8"}.fa-luggage-cart:before{content:"\f59d"}.fa-lyft:before{content:"\f3c3"}.fa-magento:before{content:"\f3c4"}.fa-magic:before{content:"\f0d0"}.fa-magnet:before{content:"\f076"}.fa-mail-bulk:before{content:"\f674"}.fa-mailchimp:before{content:"\f59e"}.fa-male:before{content:"\f183"}.fa-mandalorian:before{content:"\f50f"}.fa-map:before{content:"\f279"}.fa-map-marked:before{content:"\f59f"}.fa-map-marked-alt:before{content:"\f5a0"}.fa-map-marker:before{content:"\f041"}.fa-map-marker-alt:before{content:"\f3c5"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-markdown:before{content:"\f60f"}.fa-marker:before{content:"\f5a1"}.fa-mars:before{content:"\f222"}.fa-mars-double:before{content:"\f227"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mask:before{content:"\f6fa"}.fa-mastodon:before{content:"\f4f6"}.fa-maxcdn:before{content:"\f136"}.fa-medal:before{content:"\f5a2"}.fa-medapps:before{content:"\f3c6"}.fa-medium:before{content:"\f23a"}.fa-medium-m:before{content:"\f3c7"}.fa-medkit:before{content:"\f0fa"}.fa-medrt:before{content:"\f3c8"}.fa-meetup:before{content:"\f2e0"}.fa-megaport:before{content:"\f5a3"}.fa-meh:before{content:"\f11a"}.fa-meh-blank:before{content:"\f5a4"}.fa-meh-rolling-eyes:before{content:"\f5a5"}.fa-memory:before{content:"\f538"}.fa-mendeley:before{content:"\f7b3"}.fa-menorah:before{content:"\f676"}.fa-mercury:before{content:"\f223"}.fa-meteor:before{content:"\f753"}.fa-microchip:before{content:"\f2db"}.fa-microphone:before{content:"\f130"}.fa-microphone-alt:before{content:"\f3c9"}.fa-microphone-alt-slash:before{content:"\f539"}.fa-microphone-slash:before{content:"\f131"}.fa-microscope:before{content:"\f610"}.fa-microsoft:before{content:"\f3ca"}.fa-minus:before{content:"\f068"}.fa-minus-circle:before{content:"\f056"}.fa-minus-square:before{content:"\f146"}.fa-mitten:before{content:"\f7b5"}.fa-mix:before{content:"\f3cb"}.fa-mixcloud:before{content:"\f289"}.fa-mizuni:before{content:"\f3cc"}.fa-mobile:before{content:"\f10b"}.fa-mobile-alt:before{content:"\f3cd"}.fa-modx:before{content:"\f285"}.fa-monero:before{content:"\f3d0"}.fa-money-bill:before{content:"\f0d6"}.fa-money-bill-alt:before{content:"\f3d1"}.fa-money-bill-wave:before{content:"\f53a"}.fa-money-bill-wave-alt:before{content:"\f53b"}.fa-money-check:before{content:"\f53c"}.fa-money-check-alt:before{content:"\f53d"}.fa-monument:before{content:"\f5a6"}.fa-moon:before{content:"\f186"}.fa-mortar-pestle:before{content:"\f5a7"}.fa-mosque:before{content:"\f678"}.fa-motorcycle:before{content:"\f21c"}.fa-mountain:before{content:"\f6fc"}.fa-mouse-pointer:before{content:"\f245"}.fa-mug-hot:before{content:"\f7b6"}.fa-music:before{content:"\f001"}.fa-napster:before{content:"\f3d2"}.fa-neos:before{content:"\f612"}.fa-network-wired:before{content:"\f6ff"}.fa-neuter:before{content:"\f22c"}.fa-newspaper:before{content:"\f1ea"}.fa-nimblr:before{content:"\f5a8"}.fa-nintendo-switch:before{content:"\f418"}.fa-node:before{content:"\f419"}.fa-node-js:before{content:"\f3d3"}.fa-not-equal:before{content:"\f53e"}.fa-notes-medical:before{content:"\f481"}.fa-npm:before{content:"\f3d4"}.fa-ns8:before{content:"\f3d5"}.fa-nutritionix:before{content:"\f3d6"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-oil-can:before{content:"\f613"}.fa-old-republic:before{content:"\f510"}.fa-om:before{content:"\f679"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-otter:before{content:"\f700"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-pager:before{content:"\f815"}.fa-paint-brush:before{content:"\f1fc"}.fa-paint-roller:before{content:"\f5aa"}.fa-palette:before{content:"\f53f"}.fa-palfed:before{content:"\f3d8"}.fa-pallet:before{content:"\f482"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-parachute-box:before{content:"\f4cd"}.fa-paragraph:before{content:"\f1dd"}.fa-parking:before{content:"\f540"}.fa-passport:before{content:"\f5ab"}.fa-pastafarianism:before{content:"\f67b"}.fa-paste:before{content:"\f0ea"}.fa-patreon:before{content:"\f3d9"}.fa-pause:before{content:"\f04c"}.fa-pause-circle:before{content:"\f28b"}.fa-paw:before{content:"\f1b0"}.fa-paypal:before{content:"\f1ed"}.fa-peace:before{content:"\f67c"}.fa-pen:before{content:"\f304"}.fa-pen-alt:before{content:"\f305"}.fa-pen-fancy:before{content:"\f5ac"}.fa-pen-nib:before{content:"\f5ad"}.fa-pen-square:before{content:"\f14b"}.fa-pencil-alt:before{content:"\f303"}.fa-pencil-ruler:before{content:"\f5ae"}.fa-penny-arcade:before{content:"\f704"}.fa-people-carry:before{content:"\f4ce"}.fa-pepper-hot:before{content:"\f816"}.fa-percent:before{content:"\f295"}.fa-percentage:before{content:"\f541"}.fa-periscope:before{content:"\f3da"}.fa-person-booth:before{content:"\f756"}.fa-phabricator:before{content:"\f3db"}.fa-phoenix-framework:before{content:"\f3dc"}.fa-phoenix-squadron:before{content:"\f511"}.fa-phone:before{content:"\f095"}.fa-phone-slash:before{content:"\f3dd"}.fa-phone-square:before{content:"\f098"}.fa-phone-volume:before{content:"\f2a0"}.fa-php:before{content:"\f457"}.fa-pied-piper:before{content:"\f2ae"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-pied-piper-hat:before{content:"\f4e5"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-piggy-bank:before{content:"\f4d3"}.fa-pills:before{content:"\f484"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-p:before{content:"\f231"}.fa-pinterest-square:before{content:"\f0d3"}.fa-pizza-slice:before{content:"\f818"}.fa-place-of-worship:before{content:"\f67f"}.fa-plane:before{content:"\f072"}.fa-plane-arrival:before{content:"\f5af"}.fa-plane-departure:before{content:"\f5b0"}.fa-play:before{content:"\f04b"}.fa-play-circle:before{content:"\f144"}.fa-playstation:before{content:"\f3df"}.fa-plug:before{content:"\f1e6"}.fa-plus:before{content:"\f067"}.fa-plus-circle:before{content:"\f055"}.fa-plus-square:before{content:"\f0fe"}.fa-podcast:before{content:"\f2ce"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print:before{content:"\f02f"}.fa-procedures:before{content:"\f487"}.fa-product-hunt:before{content:"\f288"}.fa-project-diagram:before{content:"\f542"}.fa-pushed:before{content:"\f3e1"}.fa-puzzle-piece:before{content:"\f12e"}.fa-python:before{content:"\f3e2"}.fa-qq:before{content:"\f1d6"}.fa-qrcode:before{content:"\f029"}.fa-question:before{content:"\f128"}.fa-question-circle:before{content:"\f059"}.fa-quidditch:before{content:"\f458"}.fa-quinscape:before{content:"\f459"}.fa-quora:before{content:"\f2c4"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-quran:before{content:"\f687"}.fa-r-project:before{content:"\f4f7"}.fa-radiation:before{content:"\f7b9"}.fa-radiation-alt:before{content:"\f7ba"}.fa-rainbow:before{content:"\f75b"}.fa-random:before{content:"\f074"}.fa-raspberry-pi:before{content:"\f7bb"}.fa-ravelry:before{content:"\f2d9"}.fa-react:before{content:"\f41b"}.fa-reacteurope:before{content:"\f75d"}.fa-readme:before{content:"\f4d5"}.fa-rebel:before{content:"\f1d0"}.fa-receipt:before{content:"\f543"}.fa-recycle:before{content:"\f1b8"}.fa-red-river:before{content:"\f3e3"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-alien:before{content:"\f281"}.fa-reddit-square:before{content:"\f1a2"}.fa-redhat:before{content:"\f7bc"}.fa-redo:before{content:"\f01e"}.fa-redo-alt:before{content:"\f2f9"}.fa-registered:before{content:"\f25d"}.fa-renren:before{content:"\f18b"}.fa-reply:before{content:"\f3e5"}.fa-reply-all:before{content:"\f122"}.fa-replyd:before{content:"\f3e6"}.fa-republican:before{content:"\f75e"}.fa-researchgate:before{content:"\f4f8"}.fa-resolving:before{content:"\f3e7"}.fa-restroom:before{content:"\f7bd"}.fa-retweet:before{content:"\f079"}.fa-rev:before{content:"\f5b2"}.fa-ribbon:before{content:"\f4d6"}.fa-ring:before{content:"\f70b"}.fa-road:before{content:"\f018"}.fa-robot:before{content:"\f544"}.fa-rocket:before{content:"\f135"}.fa-rocketchat:before{content:"\f3e8"}.fa-rockrms:before{content:"\f3e9"}.fa-route:before{content:"\f4d7"}.fa-rss:before{content:"\f09e"}.fa-rss-square:before{content:"\f143"}.fa-ruble-sign:before{content:"\f158"}.fa-ruler:before{content:"\f545"}.fa-ruler-combined:before{content:"\f546"}.fa-ruler-horizontal:before{content:"\f547"}.fa-ruler-vertical:before{content:"\f548"}.fa-running:before{content:"\f70c"}.fa-rupee-sign:before{content:"\f156"}.fa-sad-cry:before{content:"\f5b3"}.fa-sad-tear:before{content:"\f5b4"}.fa-safari:before{content:"\f267"}.fa-salesforce:before{content:"\f83b"}.fa-sass:before{content:"\f41e"}.fa-satellite:before{content:"\f7bf"}.fa-satellite-dish:before{content:"\f7c0"}.fa-save:before{content:"\f0c7"}.fa-schlix:before{content:"\f3ea"}.fa-school:before{content:"\f549"}.fa-screwdriver:before{content:"\f54a"}.fa-scribd:before{content:"\f28a"}.fa-scroll:before{content:"\f70e"}.fa-sd-card:before{content:"\f7c2"}.fa-search:before{content:"\f002"}.fa-search-dollar:before{content:"\f688"}.fa-search-location:before{content:"\f689"}.fa-search-minus:before{content:"\f010"}.fa-search-plus:before{content:"\f00e"}.fa-searchengin:before{content:"\f3eb"}.fa-seedling:before{content:"\f4d8"}.fa-sellcast:before{content:"\f2da"}.fa-sellsy:before{content:"\f213"}.fa-server:before{content:"\f233"}.fa-servicestack:before{content:"\f3ec"}.fa-shapes:before{content:"\f61f"}.fa-share:before{content:"\f064"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-share-square:before{content:"\f14d"}.fa-shekel-sign:before{content:"\f20b"}.fa-shield-alt:before{content:"\f3ed"}.fa-ship:before{content:"\f21a"}.fa-shipping-fast:before{content:"\f48b"}.fa-shirtsinbulk:before{content:"\f214"}.fa-shoe-prints:before{content:"\f54b"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-shopping-cart:before{content:"\f07a"}.fa-shopware:before{content:"\f5b5"}.fa-shower:before{content:"\f2cc"}.fa-shuttle-van:before{content:"\f5b6"}.fa-sign:before{content:"\f4d9"}.fa-sign-in-alt:before{content:"\f2f6"}.fa-sign-language:before{content:"\f2a7"}.fa-sign-out-alt:before{content:"\f2f5"}.fa-signal:before{content:"\f012"}.fa-signature:before{content:"\f5b7"}.fa-sim-card:before{content:"\f7c4"}.fa-simplybuilt:before{content:"\f215"}.fa-sistrix:before{content:"\f3ee"}.fa-sitemap:before{content:"\f0e8"}.fa-sith:before{content:"\f512"}.fa-skating:before{content:"\f7c5"}.fa-sketch:before{content:"\f7c6"}.fa-skiing:before{content:"\f7c9"}.fa-skiing-nordic:before{content:"\f7ca"}.fa-skull:before{content:"\f54c"}.fa-skull-crossbones:before{content:"\f714"}.fa-skyatlas:before{content:"\f216"}.fa-skype:before{content:"\f17e"}.fa-slack:before{content:"\f198"}.fa-slack-hash:before{content:"\f3ef"}.fa-slash:before{content:"\f715"}.fa-sleigh:before{content:"\f7cc"}.fa-sliders-h:before{content:"\f1de"}.fa-slideshare:before{content:"\f1e7"}.fa-smile:before{content:"\f118"}.fa-smile-beam:before{content:"\f5b8"}.fa-smile-wink:before{content:"\f4da"}.fa-smog:before{content:"\f75f"}.fa-smoking:before{content:"\f48d"}.fa-smoking-ban:before{content:"\f54d"}.fa-sms:before{content:"\f7cd"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-snowboarding:before{content:"\f7ce"}.fa-snowflake:before{content:"\f2dc"}.fa-snowman:before{content:"\f7d0"}.fa-snowplow:before{content:"\f7d2"}.fa-socks:before{content:"\f696"}.fa-solar-panel:before{content:"\f5ba"}.fa-sort:before{content:"\f0dc"}.fa-sort-alpha-down:before{content:"\f15d"}.fa-sort-alpha-up:before{content:"\f15e"}.fa-sort-amount-down:before{content:"\f160"}.fa-sort-amount-up:before{content:"\f161"}.fa-sort-down:before{content:"\f0dd"}.fa-sort-numeric-down:before{content:"\f162"}.fa-sort-numeric-up:before{content:"\f163"}.fa-sort-up:before{content:"\f0de"}.fa-soundcloud:before{content:"\f1be"}.fa-sourcetree:before{content:"\f7d3"}.fa-spa:before{content:"\f5bb"}.fa-space-shuttle:before{content:"\f197"}.fa-speakap:before{content:"\f3f3"}.fa-speaker-deck:before{content:"\f83c"}.fa-spider:before{content:"\f717"}.fa-spinner:before{content:"\f110"}.fa-splotch:before{content:"\f5bc"}.fa-spotify:before{content:"\f1bc"}.fa-spray-can:before{content:"\f5bd"}.fa-square:before{content:"\f0c8"}.fa-square-full:before{content:"\f45c"}.fa-square-root-alt:before{content:"\f698"}.fa-squarespace:before{content:"\f5be"}.fa-stack-exchange:before{content:"\f18d"}.fa-stack-overflow:before{content:"\f16c"}.fa-stamp:before{content:"\f5bf"}.fa-star:before{content:"\f005"}.fa-star-and-crescent:before{content:"\f699"}.fa-star-half:before{content:"\f089"}.fa-star-half-alt:before{content:"\f5c0"}.fa-star-of-david:before{content:"\f69a"}.fa-star-of-life:before{content:"\f621"}.fa-staylinked:before{content:"\f3f5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-steam-symbol:before{content:"\f3f6"}.fa-step-backward:before{content:"\f048"}.fa-step-forward:before{content:"\f051"}.fa-stethoscope:before{content:"\f0f1"}.fa-sticker-mule:before{content:"\f3f7"}.fa-sticky-note:before{content:"\f249"}.fa-stop:before{content:"\f04d"}.fa-stop-circle:before{content:"\f28d"}.fa-stopwatch:before{content:"\f2f2"}.fa-store:before{content:"\f54e"}.fa-store-alt:before{content:"\f54f"}.fa-strava:before{content:"\f428"}.fa-stream:before{content:"\f550"}.fa-street-view:before{content:"\f21d"}.fa-strikethrough:before{content:"\f0cc"}.fa-stripe:before{content:"\f429"}.fa-stripe-s:before{content:"\f42a"}.fa-stroopwafel:before{content:"\f551"}.fa-studiovinari:before{content:"\f3f8"}.fa-stumbleupon:before{content:"\f1a4"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-subscript:before{content:"\f12c"}.fa-subway:before{content:"\f239"}.fa-suitcase:before{content:"\f0f2"}.fa-suitcase-rolling:before{content:"\f5c1"}.fa-sun:before{content:"\f185"}.fa-superpowers:before{content:"\f2dd"}.fa-superscript:before{content:"\f12b"}.fa-supple:before{content:"\f3f9"}.fa-surprise:before{content:"\f5c2"}.fa-suse:before{content:"\f7d6"}.fa-swatchbook:before{content:"\f5c3"}.fa-swimmer:before{content:"\f5c4"}.fa-swimming-pool:before{content:"\f5c5"}.fa-symfony:before{content:"\f83d"}.fa-synagogue:before{content:"\f69b"}.fa-sync:before{content:"\f021"}.fa-sync-alt:before{content:"\f2f1"}.fa-syringe:before{content:"\f48e"}.fa-table:before{content:"\f0ce"}.fa-table-tennis:before{content:"\f45d"}.fa-tablet:before{content:"\f10a"}.fa-tablet-alt:before{content:"\f3fa"}.fa-tablets:before{content:"\f490"}.fa-tachometer-alt:before{content:"\f3fd"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-tape:before{content:"\f4db"}.fa-tasks:before{content:"\f0ae"}.fa-taxi:before{content:"\f1ba"}.fa-teamspeak:before{content:"\f4f9"}.fa-teeth:before{content:"\f62e"}.fa-teeth-open:before{content:"\f62f"}.fa-telegram:before{content:"\f2c6"}.fa-telegram-plane:before{content:"\f3fe"}.fa-temperature-high:before{content:"\f769"}.fa-temperature-low:before{content:"\f76b"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-tenge:before{content:"\f7d7"}.fa-terminal:before{content:"\f120"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-th:before{content:"\f00a"}.fa-th-large:before{content:"\f009"}.fa-th-list:before{content:"\f00b"}.fa-the-red-yeti:before{content:"\f69d"}.fa-theater-masks:before{content:"\f630"}.fa-themeco:before{content:"\f5c6"}.fa-themeisle:before{content:"\f2b2"}.fa-thermometer:before{content:"\f491"}.fa-thermometer-empty:before{content:"\f2cb"}.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-think-peaks:before{content:"\f731"}.fa-thumbs-down:before{content:"\f165"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbtack:before{content:"\f08d"}.fa-ticket-alt:before{content:"\f3ff"}.fa-times:before{content:"\f00d"}.fa-times-circle:before{content:"\f057"}.fa-tint:before{content:"\f043"}.fa-tint-slash:before{content:"\f5c7"}.fa-tired:before{content:"\f5c8"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-toilet:before{content:"\f7d8"}.fa-toilet-paper:before{content:"\f71e"}.fa-toolbox:before{content:"\f552"}.fa-tools:before{content:"\f7d9"}.fa-tooth:before{content:"\f5c9"}.fa-torah:before{content:"\f6a0"}.fa-torii-gate:before{content:"\f6a1"}.fa-tractor:before{content:"\f722"}.fa-trade-federation:before{content:"\f513"}.fa-trademark:before{content:"\f25c"}.fa-traffic-light:before{content:"\f637"}.fa-train:before{content:"\f238"}.fa-tram:before{content:"\f7da"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-trash:before{content:"\f1f8"}.fa-trash-alt:before{content:"\f2ed"}.fa-trash-restore:before{content:"\f829"}.fa-trash-restore-alt:before{content:"\f82a"}.fa-tree:before{content:"\f1bb"}.fa-trello:before{content:"\f181"}.fa-tripadvisor:before{content:"\f262"}.fa-trophy:before{content:"\f091"}.fa-truck:before{content:"\f0d1"}.fa-truck-loading:before{content:"\f4de"}.fa-truck-monster:before{content:"\f63b"}.fa-truck-moving:before{content:"\f4df"}.fa-truck-pickup:before{content:"\f63c"}.fa-tshirt:before{content:"\f553"}.fa-tty:before{content:"\f1e4"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-tv:before{content:"\f26c"}.fa-twitch:before{content:"\f1e8"}.fa-twitter:before{content:"\f099"}.fa-twitter-square:before{content:"\f081"}.fa-typo3:before{content:"\f42b"}.fa-uber:before{content:"\f402"}.fa-ubuntu:before{content:"\f7df"}.fa-uikit:before{content:"\f403"}.fa-umbrella:before{content:"\f0e9"}.fa-umbrella-beach:before{content:"\f5ca"}.fa-underline:before{content:"\f0cd"}.fa-undo:before{content:"\f0e2"}.fa-undo-alt:before{content:"\f2ea"}.fa-uniregistry:before{content:"\f404"}.fa-universal-access:before{content:"\f29a"}.fa-university:before{content:"\f19c"}.fa-unlink:before{content:"\f127"}.fa-unlock:before{content:"\f09c"}.fa-unlock-alt:before{content:"\f13e"}.fa-untappd:before{content:"\f405"}.fa-upload:before{content:"\f093"}.fa-ups:before{content:"\f7e0"}.fa-usb:before{content:"\f287"}.fa-user:before{content:"\f007"}.fa-user-alt:before{content:"\f406"}.fa-user-alt-slash:before{content:"\f4fa"}.fa-user-astronaut:before{content:"\f4fb"}.fa-user-check:before{content:"\f4fc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-clock:before{content:"\f4fd"}.fa-user-cog:before{content:"\f4fe"}.fa-user-edit:before{content:"\f4ff"}.fa-user-friends:before{content:"\f500"}.fa-user-graduate:before{content:"\f501"}.fa-user-injured:before{content:"\f728"}.fa-user-lock:before{content:"\f502"}.fa-user-md:before{content:"\f0f0"}.fa-user-minus:before{content:"\f503"}.fa-user-ninja:before{content:"\f504"}.fa-user-nurse:before{content:"\f82f"}.fa-user-plus:before{content:"\f234"}.fa-user-secret:before{content:"\f21b"}.fa-user-shield:before{content:"\f505"}.fa-user-slash:before{content:"\f506"}.fa-user-tag:before{content:"\f507"}.fa-user-tie:before{content:"\f508"}.fa-user-times:before{content:"\f235"}.fa-users:before{content:"\f0c0"}.fa-users-cog:before{content:"\f509"}.fa-usps:before{content:"\f7e1"}.fa-ussunnah:before{content:"\f407"}.fa-utensil-spoon:before{content:"\f2e5"}.fa-utensils:before{content:"\f2e7"}.fa-vaadin:before{content:"\f408"}.fa-vector-square:before{content:"\f5cb"}.fa-venus:before{content:"\f221"}.fa-venus-double:before{content:"\f226"}.fa-venus-mars:before{content:"\f228"}.fa-viacoin:before{content:"\f237"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-vial:before{content:"\f492"}.fa-vials:before{content:"\f493"}.fa-viber:before{content:"\f409"}.fa-video:before{content:"\f03d"}.fa-video-slash:before{content:"\f4e2"}.fa-vihara:before{content:"\f6a7"}.fa-vimeo:before{content:"\f40a"}.fa-vimeo-square:before{content:"\f194"}.fa-vimeo-v:before{content:"\f27d"}.fa-vine:before{content:"\f1ca"}.fa-vk:before{content:"\f189"}.fa-vnv:before{content:"\f40b"}.fa-volleyball-ball:before{content:"\f45f"}.fa-volume-down:before{content:"\f027"}.fa-volume-mute:before{content:"\f6a9"}.fa-volume-off:before{content:"\f026"}.fa-volume-up:before{content:"\f028"}.fa-vote-yea:before{content:"\f772"}.fa-vr-cardboard:before{content:"\f729"}.fa-vuejs:before{content:"\f41f"}.fa-walking:before{content:"\f554"}.fa-wallet:before{content:"\f555"}.fa-warehouse:before{content:"\f494"}.fa-water:before{content:"\f773"}.fa-wave-square:before{content:"\f83e"}.fa-waze:before{content:"\f83f"}.fa-weebly:before{content:"\f5cc"}.fa-weibo:before{content:"\f18a"}.fa-weight:before{content:"\f496"}.fa-weight-hanging:before{content:"\f5cd"}.fa-weixin:before{content:"\f1d7"}.fa-whatsapp:before{content:"\f232"}.fa-whatsapp-square:before{content:"\f40c"}.fa-wheelchair:before{content:"\f193"}.fa-whmcs:before{content:"\f40d"}.fa-wifi:before{content:"\f1eb"}.fa-wikipedia-w:before{content:"\f266"}.fa-wind:before{content:"\f72e"}.fa-window-close:before{content:"\f410"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-windows:before{content:"\f17a"}.fa-wine-bottle:before{content:"\f72f"}.fa-wine-glass:before{content:"\f4e3"}.fa-wine-glass-alt:before{content:"\f5ce"}.fa-wix:before{content:"\f5cf"}.fa-wizards-of-the-coast:before{content:"\f730"}.fa-wolf-pack-battalion:before{content:"\f514"}.fa-won-sign:before{content:"\f159"}.fa-wordpress:before{content:"\f19a"}.fa-wordpress-simple:before{content:"\f411"}.fa-wpbeginner:before{content:"\f297"}.fa-wpexplorer:before{content:"\f2de"}.fa-wpforms:before{content:"\f298"}.fa-wpressr:before{content:"\f3e4"}.fa-wrench:before{content:"\f0ad"}.fa-x-ray:before{content:"\f497"}.fa-xbox:before{content:"\f412"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-y-combinator:before{content:"\f23b"}.fa-yahoo:before{content:"\f19e"}.fa-yammer:before{content:"\f840"}.fa-yandex:before{content:"\f413"}.fa-yandex-international:before{content:"\f414"}.fa-yarn:before{content:"\f7e3"}.fa-yelp:before{content:"\f1e9"}.fa-yen-sign:before{content:"\f157"}.fa-yin-yang:before{content:"\f6ad"}.fa-yoast:before{content:"\f2b1"}.fa-youtube:before{content:"\f167"}.fa-youtube-square:before{content:"\f431"}.fa-zhihu:before{content:"\f63f"}.sr-only{border:0;clip:rect(0,0,0,0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.sr-only-focusable:active,.sr-only-focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}@font-face{font-family:"Font Awesome 5 Brands";font-style:normal;font-weight:normal;font-display:auto;src:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-brands-400.eot);src:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-brands-400.woff2) format("woff2"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-brands-400.woff) format("woff"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-brands-400.ttf) format("truetype"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-brands-400.svg#fontawesome) format("svg")}.fab{font-family:"Font Awesome 5 Brands"}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:400;font-display:auto;src:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-regular-400.eot);src:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-regular-400.woff2) format("woff2"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-regular-400.woff) format("woff"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-regular-400.ttf) format("truetype"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-regular-400.svg#fontawesome) format("svg")}.far{font-weight:400}@font-face{font-family:"Font Awesome 5 Free";font-style:normal;font-weight:900;font-display:auto;src:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-solid-900.eot);src:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-solid-900.woff2) format("woff2"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-solid-900.woff) format("woff"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-solid-900.ttf) format("truetype"),url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/font-awesome/webfonts/fa-solid-900.svg#fontawesome) format("svg")}.fa,.far,.fas{font-family:"Font Awesome 5 Free"}.fa,.fas{font-weight:900}body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 44px 25px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{max-height:50vh;overflow:auto;pointer-events:all}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}:root{--mm-line-height:20px;--mm-listitem-size:44px;--mm-navbar-size:44px;--mm-offset-top:0;--mm-offset-right:0;--mm-offset-bottom:0;--mm-offset-left:0;--mm-color-border:rgba(0, 0, 0, 0.1);--mm-color-button:rgba(0, 0, 0, 0.3);--mm-color-text:rgba(0, 0, 0, 0.75);--mm-color-text-dimmed:rgba(0, 0, 0, 0.3);--mm-color-background:#f3f3f3;--mm-color-background-highlight:rgba(0, 0, 0, 0.05);--mm-color-background-emphasis:rgba(255, 255, 255, 0.4);--mm-shadow:0 0 10px rgba(0, 0, 0, 0.3)}.mm-hidden{display:none!important}.mm-wrapper{overflow-x:hidden;position:relative}.mm-menu{background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);line-height:var(--mm-line-height);display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0;position:absolute;top:var(--mm-offset-top);right:var(--mm-offset-right);bottom:var(--mm-offset-bottom);left:var(--mm-offset-left);z-index:0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.mm-menu a,.mm-menu a:active,.mm-menu a:hover,.mm-menu a:link,.mm-menu a:visited{color:inherit;text-decoration:none}[dir=rtl] .mm-menu{direction:rtl}.mm-panel{background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);-webkit-overflow-scrolling:touch;overflow:scroll;overflow-x:hidden;overflow-y:auto;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-panel:not(.mm-hidden){display:block}.mm-panel:after{content:'';display:block;height:20px}.mm-panel_opened{z-index:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-panel_opened-parent{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}.mm-panel_highest{z-index:2}.mm-panel_noanimation{-webkit-transition:none!important;-o-transition:none!important;transition:none!important}.mm-panel_noanimation.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-panel__content{padding:20px}.mm-panels{background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text);position:relative;height:100%;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;overflow:hidden}.mm-panels>.mm-panel{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}[dir=rtl] .mm-panel:not(.mm-panel_opened){-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}[dir=rtl] .mm-panel.mm-panel_opened-parent{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}.mm-listitem_vertical>.mm-panel{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;display:none;width:100%;padding:10px 0 10px 10px}.mm-listitem_vertical>.mm-panel:after,.mm-listitem_vertical>.mm-panel:before{content:none;display:none}.mm-listitem_opened>.mm-panel{display:block}.mm-listitem_vertical>.mm-listitem__btn{height:44px;height:var(--mm-listitem-size);bottom:auto}.mm-listitem_vertical .mm-listitem:last-child:after{border-color:transparent}.mm-listitem_opened>.mm-listitem__btn:after{-webkit-transform:rotate(225deg);-ms-transform:rotate(225deg);transform:rotate(225deg);right:19px}.mm-btn{-webkit-box-sizing:border-box;box-sizing:border-box;width:44px;-ms-flex-negative:0;flex-shrink:0;padding:0}.mm-btn:after,.mm-btn:before{border-color:var(--mm-color-button);border-width:2px;border-style:solid}.mm-btn_next:after,.mm-btn_prev:before{content:'';border-bottom:none;border-right:none;-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:8px;height:8px;margin:auto;position:absolute;top:0;bottom:0}.mm-btn_prev:before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}.mm-btn_next:after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}.mm-btn_close:after,.mm-btn_close:before{content:'';-webkit-box-sizing:content-box;box-sizing:content-box;display:block;width:5px;height:5px;margin:auto;position:absolute;top:0;bottom:0;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.mm-btn_close:before{border-right:none;border-bottom:none;right:18px}.mm-btn_close:after{border-left:none;border-top:none;right:25px}[dir=rtl] .mm-btn_next:after{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);left:23px;right:auto}[dir=rtl] .mm-btn_prev:before{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg);right:23px;left:auto}[dir=rtl] .mm-btn_close:after,[dir=rtl] .mm-btn_close:before{right:auto}[dir=rtl] .mm-btn_close:before{left:25px}[dir=rtl] .mm-btn_close:after{left:18px}.mm-navbar{background:var(--mm-color-background);border-color:var(--mm-color-border);color:var(--mm-color-text-dimmed);text-align:center;border-bottom-width:1px;border-bottom-style:solid;display:-webkit-box;display:-ms-flexbox;display:flex;height:var(--mm-navbar-size);opacity:1;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-navbar>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-left:0;padding-right:0}.mm-navbar a,.mm-navbar a:hover{text-decoration:none}.mm-navbar__title{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;width:100%}.mm-navbar__btn{position:relative}.mm-navbar__btn:first-child{text-align:left}.mm-navbar__btn:last-child{text-align:right}[dir=rtl] .mm-navbar{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}[dir=rtl] .mm-navbar__btn:first-child{text-align:right}[dir=rtl] .mm-navbar__btn:last-child{text-align:left}.mm-listview{list-style:none;display:block;padding:0;margin:0}.mm-listitem{color:var(--mm-color-text);border-color:var(--mm-color-border);list-style:none;display:block;padding:0;margin:0;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.mm-listitem:after{content:'';border-color:inherit;border-bottom-width:1px;border-bottom-style:solid;display:block;position:absolute;left:20px;right:0;bottom:0}.mm-listitem a,.mm-listitem a:hover{text-decoration:none}.mm-listitem__btn,.mm-listitem__text{color:inherit;display:block;padding:calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);padding-left:0;padding-right:0}.mm-listitem__text{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;padding-left:20px;padding-right:10px;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;-ms-flex-preferred-size:10%;flex-basis:10%}.mm-listitem__btn{-webkit-tap-highlight-color:var(--mm-color-background-emphasis);tap-highlight-color:var(--mm-color-background-emphasis);background:rgba(3,2,1,0);border-color:inherit;width:auto;padding-right:54px;position:relative}.mm-listitem__btn:not(.mm-listitem__text){border-left-width:1px;border-left-style:solid}.mm-listitem_selected>.mm-listitem__text{background:var(--mm-color-background-emphasis)}.mm-listitem_opened>.mm-listitem__btn,.mm-listitem_opened>.mm-panel{background:var(--mm-color-background-highlight)}[dir=rtl] .mm-listitem:after{left:0;right:20px}[dir=rtl] .mm-listitem__text{padding-left:10px;padding-right:20px}[dir=rtl] .mm-listitem__btn{padding-left:54px;border-left-width:0;border-left-style:none}[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text){padding-right:0;border-right-width:1px;border-right-style:solid}.mm-page{-webkit-box-sizing:border-box;box-sizing:border-box;position:relative}.mm-slideout{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease;z-index:1}.mm-wrapper_opened{overflow-x:hidden;position:relative}.mm-wrapper_background .mm-page{background:inherit}.mm-menu_offcanvas{position:fixed;right:auto;z-index:0}.mm-menu_offcanvas:not(.mm-menu_opened){display:none}.mm-menu_offcanvas{width:80%;min-width:240px;max-width:440px}.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_offcanvas~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper__blocker{background:rgba(3,2,1,0);overflow:hidden;display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index:2}.mm-wrapper_blocking{overflow:hidden}.mm-wrapper_blocking body{overflow:hidden}.mm-wrapper_blocking .mm-wrapper__blocker{display:block}.mm-sronly{border:0!important;clip:rect(1px,1px,1px,1px)!important;-webkit-clip-path:inset(50%)!important;clip-path:inset(50%)!important;white-space:nowrap!important;width:1px!important;min-width:1px!important;height:1px!important;min-height:1px!important;padding:0!important;overflow:hidden!important;position:absolute!important}.mm-menu_autoheight{-webkit-transition:none .4s ease;-o-transition:none .4s ease;transition:none .4s ease;-webkit-transition-property:height,-webkit-transform;transition-property:height,-webkit-transform;-o-transition-property:transform,height;transition-property:transform,height;transition-property:transform,height,-webkit-transform}.mm-menu_autoheight:not(.mm-menu_offcanvas){position:relative}.mm-menu_autoheight.mm-menu_position-bottom,.mm-menu_autoheight.mm-menu_position-top{max-height:80%}.mm-menu_autoheight-measuring .mm-panel{display:block!important}.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel{display:none!important}.mm-menu_autoheight-measuring .mm-panels>.mm-panel{bottom:auto!important;height:auto!important}[class*=mm-menu_columns-]{-webkit-transition-property:width;-o-transition-property:width;transition-property:width}[class*=mm-menu_columns-] .mm-panels>.mm-panel{right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:width,transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened,[class*=mm-menu_columns-] .mm-panels>.mm-panel_opened-parent{display:block!important}[class*=mm-panel_columns-]{border-right:1px solid;border-color:inherit}.mm-menu_columns-1 .mm-panel_columns-0,.mm-menu_columns-2 .mm-panel_columns-1,.mm-menu_columns-3 .mm-panel_columns-2,.mm-menu_columns-4 .mm-panel_columns-3{border-right:none}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-0{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_columns-0 .mm-panels>.mm-panel{z-index:0}.mm-menu_columns-0 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-0 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu_columns-0{width:80%;min-width:240px;max-width:0}.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:0px){.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-1{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu_columns-1 .mm-panels>.mm-panel{z-index:1;width:100%}.mm-menu_columns-1 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-1 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}.mm-menu_columns-1{width:80%;min-width:240px;max-width:440px}.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1~.mm-slideout{-webkit-transform:translate3d(440px,0,0);transform:translate3d(440px,0,0)}}.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-2{-webkit-transform:translate3d(200%,0,0);transform:translate3d(200%,0,0)}.mm-menu_columns-2 .mm-panels>.mm-panel{z-index:2;width:50%}.mm-menu_columns-2 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-2 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}.mm-menu_columns-2{width:80%;min-width:240px;max-width:880px}.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2~.mm-slideout{-webkit-transform:translate3d(880px,0,0);transform:translate3d(880px,0,0)}}.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1100px){.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-880px,0,0);transform:translate3d(-880px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-3{-webkit-transform:translate3d(300%,0,0);transform:translate3d(300%,0,0)}.mm-menu_columns-3 .mm-panels>.mm-panel{z-index:3;width:33.34%}.mm-menu_columns-3 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-3 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}.mm-menu_columns-3{width:80%;min-width:240px;max-width:1320px}.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3~.mm-slideout{-webkit-transform:translate3d(1320px,0,0);transform:translate3d(1320px,0,0)}}.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:1650px){.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1320px,0,0);transform:translate3d(-1320px,0,0)}}[class*=mm-menu_columns-] .mm-panels>.mm-panel_columns-4{-webkit-transform:translate3d(400%,0,0);transform:translate3d(400%,0,0)}.mm-menu_columns-4 .mm-panels>.mm-panel{z-index:4;width:25%}.mm-menu_columns-4 .mm-panels>.mm-panel else{width:100%}.mm-menu_columns-4 .mm-panels>.mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent){-webkit-transform:translate3d(500%,0,0);transform:translate3d(500%,0,0)}.mm-menu_columns-4{width:80%;min-width:240px;max-width:1760px}.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout{-webkit-transform:translate3d(80vw,0,0);transform:translate3d(80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout{-webkit-transform:translate3d(240px,0,0);transform:translate3d(240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4~.mm-slideout{-webkit-transform:translate3d(1760px,0,0);transform:translate3d(1760px,0,0)}}.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:2200px){.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-1760px,0,0);transform:translate3d(-1760px,0,0)}}[class*=mm-menu_columns-].mm-menu_position-bottom,[class*=mm-menu_columns-].mm-menu_position-top{width:100%;max-width:100%;min-width:100%}.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front{-webkit-transition-property:width,min-width,max-width,-webkit-transform;transition-property:width,min-width,max-width,-webkit-transform;-o-transition-property:width,min-width,max-width,transform;transition-property:width,min-width,max-width,transform;transition-property:width,min-width,max-width,transform,-webkit-transform}.mm-counter{color:var(--mm-color-text-dimmed);text-align:right;display:block;padding-left:20px;float:right}.mm-listitem_nosubitems>.mm-counter{display:none}[dir=rtl] .mm-counter{text-align:left;float:left;padding-left:0;padding-right:20px}.mm-divider{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;opacity:1;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease;font-size:75%;text-transform:uppercase;background:var(--mm-color-background);position:-webkit-sticky;position:sticky;z-index:1;top:0;min-height:var(--mm-line-height);padding:calc(((var(--mm-listitem-size) * .65) - var(--mm-line-height)) * .5);padding-right:10px;padding-left:20px}.mm-divider:before{content:'';background:var(--mm-color-background-highlight);position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1}.mm-menu_dividers-light .mm-divider{font-size:inherit;color:var(--mm-color-text-dimmed);padding-top:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .75);padding-bottom:calc((var(--mm-listitem-size) - var(--mm-line-height)) * .25)}.mm-menu_dividers-light .mm-divider:before{background:inherit}.mm-menu_border-none .mm-divider{border-top-width:1px;border-top-style:solid}.mm-wrapper_dragging .mm-menu,.mm-wrapper_dragging .mm-slideout{-webkit-transition-duration:0s!important;-o-transition-duration:0s!important;transition-duration:0s!important}.mm-menu_dropdown{-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%}.mm-wrapper_dropdown .mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}.mm-wrapper_dropdown .mm-wrapper__blocker{-webkit-transition-delay:0s!important;-o-transition-delay:0s!important;transition-delay:0s!important;z-index:1}.mm-wrapper_dropdown .mm-menu_dropdown{z-index:2}.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown{display:none}[class*=mm-menu_tip-]:before{content:'';background:inherit;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);display:block;width:15px;height:15px;position:absolute;z-index:0;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.mm-menu_tip-left:before{left:22px}.mm-menu_tip-right:before{right:22px}.mm-menu_tip-top:before{top:-8px}.mm-menu_tip-bottom:before{bottom:-8px}:root{--mm-iconbar-size:44px}.mm-menu_iconbar-left .mm-navbars_bottom,.mm-menu_iconbar-left .mm-navbars_top,.mm-menu_iconbar-left .mm-panels{margin-left:var(--mm-iconbar-size)}.mm-menu_iconbar-left .mm-iconbar{border-right-width:1px;display:block;left:0}.mm-menu_iconbar-right .mm-navbars_bottom,.mm-menu_iconbar-right .mm-navbars_top,.mm-menu_iconbar-right .mm-panels{margin-right:var(--mm-iconbar-size)}.mm-menu_iconbar-right .mm-iconbar{border-left-width:1px;display:block;right:0}.mm-iconbar{background:var(--mm-color-background);color:var(--mm-color-text-dimmed);border:0 solid rgba(0,0,0,.1);border-color:var(--mm-color-border);text-align:center;overflow:hidden;display:none;-webkit-box-sizing:border-box;box-sizing:border-box;width:var(--mm-iconbar-size);position:absolute;top:0;bottom:0;z-index:2}.mm-iconbar__bottom,.mm-iconbar__top{width:inherit;position:absolute}.mm-iconbar__bottom>*,.mm-iconbar__top>*{-webkit-box-sizing:border-box;box-sizing:border-box;display:block;padding:11px 0}.mm-iconbar__bottom a,.mm-iconbar__bottom a:hover,.mm-iconbar__top a,.mm-iconbar__top a:hover{text-decoration:none}.mm-iconbar__top{top:0}.mm-iconbar__bottom{bottom:0}.mm-iconbar__tab_selected{background:var(--mm-color-background-emphasis)}:root{--mm-iconpanel-size:44px}.mm-panel_iconpanel-1{width:calc(100% - (var(--mm-iconpanel-size) * 1))}.mm-panel_iconpanel-2{width:calc(100% - (var(--mm-iconpanel-size) * 2))}.mm-panel_iconpanel-3{width:calc(100% - (var(--mm-iconpanel-size) * 3))}.mm-panel_iconpanel-first~.mm-panel{width:calc(100% - var(--mm-iconpanel-size))}.mm-menu_iconpanel .mm-panels>.mm-panel{left:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:transform,width;transition-property:transform,width;transition-property:transform,width,-webkit-transform}.mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left-width:1px;border-left-style:solid}.mm-menu_iconpanel .mm-panels>.mm-panel_opened,.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{display:block!important}.mm-menu_iconpanel .mm-panels>.mm-panel_opened-parent{overflow-y:hidden;-webkit-transform:unset;-ms-transform:unset;transform:unset}.mm-menu_hidedivider .mm-panel_opened-parent .mm-divider,.mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar{opacity:0}.mm-panel__blocker{background:inherit;opacity:0;display:block;position:absolute;top:0;right:0;left:0;z-index:3;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-panel_opened-parent .mm-panel__blocker{opacity:.6;bottom:-100000px}[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel{left:0;right:auto;-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:transform,width;transition-property:transform,width;transition-property:transform,width,-webkit-transform}[dir=rtl] .mm-menu_iconpanel .mm-panels>.mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0){border-left:none;border-right:1px solid;border-color:inherit}.mm-menu_keyboardfocus a:focus,.mm-menu_keyboardfocus.mm-menu_opened~.mm-wrapper__blocker a:focus{outline:0;background:var(--mm-color-background-emphasis)}.mm-wrapper__blocker .mm-tabstart{cursor:default;display:block;width:100%;height:100%}.mm-wrapper__blocker .mm-tabend{opacity:0;position:absolute;bottom:0}.mm-navbars_bottom,.mm-navbars_top{background:inherit;border-color:inherit;border-width:0;position:relative;-ms-flex-negative:0;flex-shrink:0}.mm-navbars_bottom>.mm-navbar,.mm-navbars_top>.mm-navbar{border-width:0}.mm-navbars_bottom>.mm-navbar>:not(img):not(.mm-btn),.mm-navbars_top>.mm-navbar>:not(img):not(.mm-btn){-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1}.mm-navbars_top{border-bottom-style:solid;border-bottom-width:1px}.mm-navbars_bottom{border-top-style:solid;border-top-width:1px}.mm-navbar__breadcrumbs{-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;-webkit-overflow-scrolling:touch;overflow-x:auto;text-align:left;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;width:100%;padding:0}.mm-navbar__breadcrumbs>*{display:inline-block;padding:calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);padding-left:0;padding-right:6px}.mm-navbar__breadcrumbs>a{text-decoration:underline}.mm-btn.mm-hidden+.mm-navbar__breadcrumbs{padding-left:20px}.mm-navbar__tab_selected{background:inherit!important;color:inherit!important;border-width:1px;border-style:solid;border-color:inherit}.mm-navbar__tab_selected:first-child{border-left:none}.mm-navbar__tab_selected:last-child{border-right:none}.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs,.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar{background:inherit!important;color:inherit!important}.mm-navbars_top .mm-navbar_tabs:not(:last-child){border-bottom-width:1px;border-bottom-style:solid}.mm-navbars_top .mm-navbar__tab_selected{border-bottom:none;margin-bottom:-1px}.mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected{border-top:none}.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar{background:inherit;color:inherit}.mm-navbars_bottom .mm-navbar_tabs:not(:first-child){border-top-width:1px;border-top-style:solid}.mm-navbars_bottom .mm-navbar__tab_selected{border-top:none;margin-top:-1px}.mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected{border-bottom:none}.mm-navbar_tabs>a:not(.mm-navbar__tab_selected),.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs~.mm-navbar,.mm-navbars_top.mm-navbars_has-tabs>.mm-navbar:not(.mm-navbar_tabs){background:var(--mm-color-background-emphasis);color:var(--mm-color-text-dimmed)}.mm-searchfield{display:-webkit-box;display:-ms-flexbox;display:flex;height:var(--mm-navbar-size);padding:0;overflow:hidden}.mm-searchfield input{border:none!important;outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;border-radius:4px;font:inherit;font-size:inherit;line-height:calc(var(--mm-navbar-size) * .7);display:block;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%;height:calc(var(--mm-navbar-size) * .7);min-height:unset;max-height:unset;margin:0;padding:0 10px}.mm-searchfield input,.mm-searchfield input:focus,.mm-searchfield input:hover{background:var(--mm-color-background-highlight);color:var(--mm-color-text)}.mm-searchfield input::-ms-clear{display:none}.mm-searchfield__input{padding:6.6px 10px 0 10px;padding-top:calc(var(--mm-navbar-size) * .15);position:relative}.mm-panel__noresultsmsg{color:var(--mm-color-text-dimmed);text-align:center;font-size:150%;padding:44px 0}.mm-searchfield__btn{position:absolute;right:0;top:0;bottom:0}.mm-panel_search{left:0!important;right:0!important;width:100%!important;border-left:none!important}.mm-searchfield__input{-webkit-box-flex:1;-ms-flex:1;flex:1;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;max-width:100%}.mm-searchfield__cancel{line-height:var(--mm-navbar-size);text-decoration:none;display:block;padding-right:10px;margin-right:-100px;-webkit-transition:margin .4s ease;-o-transition:margin .4s ease;transition:margin .4s ease}.mm-searchfield__cancel-active{margin-right:0}.mm-listitem_nosubitems>.mm-listitem__btn{display:none}.mm-listitem_nosubitems>.mm-listitem__text{padding-right:10px}.mm-sectionindexer{background:inherit;text-align:center;font-size:12px;-webkit-box-sizing:border-box;box-sizing:border-box;width:20px;position:absolute;top:0;bottom:0;right:-20px;z-index:5;-webkit-transition:right .4s ease;-o-transition:right .4s ease;transition:right .4s ease;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:space-evenly;-ms-flex-pack:space-evenly;justify-content:space-evenly}.mm-sectionindexer a{color:var(--mm-color-text-dimmed);line-height:1;text-decoration:none;display:block}.mm-sectionindexer~.mm-panel{padding-right:0;-webkit-transition:padding-right .4s ease;-o-transition:padding-right .4s ease;transition:padding-right .4s ease}.mm-sectionindexer_active{right:0}.mm-sectionindexer_active~.mm-panel{padding-right:20px}:root{--mm-sidebar-collapsed-size:44px;--mm-sidebar-expanded-size:440px}.mm-wrapper_sidebar-collapsed body,.mm-wrapper_sidebar-expanded body{position:relative}.mm-wrapper_sidebar-collapsed .mm-slideout,.mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transition-property:width,-webkit-transform;transition-property:width,-webkit-transform;-o-transition-property:width,transform;transition-property:width,transform;transition-property:width,transform,-webkit-transform}.mm-wrapper_sidebar-collapsed .mm-page,.mm-wrapper_sidebar-expanded .mm-page{background:inherit;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:100vh}.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed,.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;top:0!important;right:auto!important;bottom:0!important;left:0!important}.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-divider,.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar{opacity:0}.mm-wrapper_sidebar-collapsed .mm-slideout{width:calc(100% - var(--mm-sidebar-collapsed-size));-webkit-transform:translate3d(var(--mm-sidebar-collapsed-size),0,0);transform:translate3d(var(--mm-sidebar-collapsed-size),0,0)}.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{border-right-width:1px;border-right-style:solid;min-width:0!important;max-width:100000px!important}.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after{content:none;display:none}.mm-wrapper_sidebar-expanded.mm-wrapper_blocking,.mm-wrapper_sidebar-expanded.mm-wrapper_blocking body{overflow:visible}.mm-wrapper_sidebar-expanded .mm-wrapper__blocker{display:none!important}.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{width:calc(100% - var(--mm-sidebar-expanded-size));-webkit-transform:translate3d(var(--mm-sidebar-expanded-size),0,0);transform:translate3d(var(--mm-sidebar-expanded-size),0,0)}.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded{width:var(--mm-sidebar-expanded-size)}.mm-menu__blocker{background:rgba(3,2,1,0);display:block;position:absolute;top:0;right:0;bottom:0;left:0;z-index:3}.mm-menu_opened .mm-menu__blocker{display:none}[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}input.mm-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;background:var(--mm-color-border);border-radius:34px;display:inline-block;min-width:58px;width:58px;height:34px;margin:0 10px;margin-top:calc((var(--mm-listitem-size) - 34px)/ 2);-webkit-transition:background-color .2s ease;-o-transition:background-color .2s ease;transition:background-color .2s ease}input.mm-toggle:before{content:'';background:var(--mm-color-background);border-radius:34px;display:block;width:32px;height:32px;margin:1px;-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;-o-transition:transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}input.mm-toggle:checked{background:#4bd963}input.mm-toggle:checked:before{-webkit-transform:translateX(24px);-ms-transform:translateX(24px);transform:translateX(24px)}input.mm-check{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;display:inline-block;width:34px;height:34px;margin:0 10px;margin-top:calc((var(--mm-listitem-size) - 34px)/ 2)}input.mm-check:before{border-color:var(--mm-color-text);content:'';display:block;border-left:3px solid;border-bottom:3px solid;width:40%;height:20%;margin:25% 0 0 20%;opacity:.3;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transition:opacity .2s ease;-o-transition:opacity .2s ease;transition:opacity .2s ease}input.mm-check:checked:before{opacity:1}[dir=rtl] input.mm-toggle:checked~label.mm-toggle:before{float:left}.mm-menu_border-none .mm-listitem:after,.mm-panel_border-none .mm-listitem:after{content:none}.mm-menu_border-full .mm-listitem:after,.mm-panel_border-full .mm-listitem:after{left:0!important}.mm-menu_border-offset .mm-listitem:after,.mm-panel_border-offset .mm-listitem:after{right:20px}.mm-menu_fx-menu-zoom{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-wrapper_opened .mm-menu_fx-menu-zoom{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0);-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center}.mm-wrapper_opening .mm-menu_fx-menu-zoom{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}.mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(.7,.7) translate3d(30%,0,0);transform:scale(.7,.7) translate3d(30%,0,0);-webkit-transform-origin:right center;-ms-transform-origin:right center;transform-origin:right center}.mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}.mm-menu_fx-menu-slide{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-wrapper_opened .mm-menu_fx-menu-slide{-webkit-transform:translate3d(-30%,0,0);transform:translate3d(-30%,0,0)}.mm-wrapper_opening .mm-menu_fx-menu-slide{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(30%,0,0);transform:translate3d(30%,0,0)}.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-menu-fade{opacity:0;-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease}.mm-wrapper_opening .mm-menu_fx-menu-fade{opacity:1}.mm-menu_fx-panels-none .mm-panel,.mm-panel_fx-none{-webkit-transition-property:none;-o-transition-property:none;transition-property:none}.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent,.mm-panel_fx-none.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-panels-zoom .mm-panel,.mm-panel_fx-zoom{-webkit-transform-origin:left center;-ms-transform-origin:left center;transform-origin:left center;-webkit-transform:scale(1.5,1.5) translate3d(100%,0,0);transform:scale(1.5,1.5) translate3d(100%,0,0)}.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened,.mm-panel_fx-zoom.mm-panel_opened{-webkit-transform:scale(1,1) translate3d(0,0,0);transform:scale(1,1) translate3d(0,0,0)}.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent,.mm-panel_fx-zoom.mm-panel_opened-parent{-webkit-transform:scale(.7,.7) translate3d(-30%,0,0);transform:scale(.7,.7) translate3d(-30%,0,0)}.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent,.mm-panel_fx-slide-0.mm-panel_opened-parent{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent,.mm-panel_fx-slide-100.mm-panel_opened-parent{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu_fx-panels-slide-up .mm-panel,.mm-panel_fx-slide-up{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}.mm-menu_fx-panels-slide-up .mm-panel_opened,.mm-menu_fx-panels-slide-up .mm-panel_opened-parent,.mm-panel_fx-slide-up.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_fx-panels-slide-right .mm-panel,.mm-panel_fx-slide-right{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu_fx-panels-slide-right .mm-panel_opened,.mm-menu_fx-panels-slide-right .mm-panel_opened-parent,.mm-panel_fx-slide-right.mm-panel_opened{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}[class*=mm-menu_fx-listitems-] .mm-listitem{-webkit-transition:none .4s ease;-o-transition:none .4s ease;transition:none .4s ease}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1){-webkit-transition-delay:50ms;-o-transition-delay:50ms;transition-delay:50ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2){-webkit-transition-delay:.1s;-o-transition-delay:.1s;transition-delay:.1s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3){-webkit-transition-delay:150ms;-o-transition-delay:150ms;transition-delay:150ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4){-webkit-transition-delay:.2s;-o-transition-delay:.2s;transition-delay:.2s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5){-webkit-transition-delay:250ms;-o-transition-delay:250ms;transition-delay:250ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6){-webkit-transition-delay:.3s;-o-transition-delay:.3s;transition-delay:.3s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7){-webkit-transition-delay:350ms;-o-transition-delay:350ms;transition-delay:350ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8){-webkit-transition-delay:.4s;-o-transition-delay:.4s;transition-delay:.4s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9){-webkit-transition-delay:450ms;-o-transition-delay:450ms;transition-delay:450ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10){-webkit-transition-delay:.5s;-o-transition-delay:.5s;transition-delay:.5s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11){-webkit-transition-delay:550ms;-o-transition-delay:550ms;transition-delay:550ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12){-webkit-transition-delay:.6s;-o-transition-delay:.6s;transition-delay:.6s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13){-webkit-transition-delay:650ms;-o-transition-delay:650ms;transition-delay:650ms}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14){-webkit-transition-delay:.7s;-o-transition-delay:.7s;transition-delay:.7s}[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15){-webkit-transition-delay:750ms;-o-transition-delay:750ms;transition-delay:750ms}.mm-menu_fx-listitems-slide .mm-listitem{-webkit-transition-property:opacity,-webkit-transform;transition-property:opacity,-webkit-transform;-o-transition-property:transform,opacity;transition-property:transform,opacity;transition-property:transform,opacity,-webkit-transform;-webkit-transform:translate3d(50%,0,0);transform:translate3d(50%,0,0);opacity:0}.mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.mm-menu_fx-listitems-fade .mm-listitem{-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;opacity:0}.mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem{opacity:1}.mm-menu_fx-listitems-drop .mm-listitem{-webkit-transition-property:opacity,top;-o-transition-property:opacity,top;transition-property:opacity,top;opacity:0;top:-25%}.mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem{opacity:1;top:0}.mm-menu_fullscreen{width:100%;min-width:140px;max-width:10000px}.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout{-webkit-transform:translate3d(100vw,0,0);transform:translate3d(100vw,0,0)}@media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout{-webkit-transform:translate3d(140px,0,0);transform:translate3d(140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen~.mm-slideout{-webkit-transform:translate3d(10000px,0,0);transform:translate3d(10000px,0,0)}}.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:140px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-140px,0,0);transform:translate3d(-140px,0,0)}}@media all and (min-width:10000px){.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-10000px,0,0);transform:translate3d(-10000px,0,0)}}.mm-menu_fullscreen.mm-menu_position-top{height:100vh;min-height:140px;max-height:10000px}.mm-menu_fullscreen.mm-menu_position-bottom{height:100vh;min-height:140px;max-height:10000px}.mm-menu_listview-justify .mm-panels>.mm-panel:after,.mm-menu_listview-justify .mm-panels>.mm-panel:before,.mm-panels>.mm-panel_listview-justify:after,.mm-panels>.mm-panel_listview-justify:before{content:none;display:none}.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listview,.mm-panels>.mm-panel_listview-justify .mm-listview{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%;margin-top:0;margin-bottom:0}.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem,.mm-panels>.mm-panel_listview-justify .mm-listitem{-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;min-height:44px}.mm-menu_listview-justify .mm-panels>.mm-panel .mm-listitem__text,.mm-panels>.mm-panel_listview-justify .mm-listitem__text{-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-box-flex:1;-ms-flex:1 0 auto;flex:1 0 auto;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mm-listview_inset{list-style:inside disc;width:100%;padding:0 30px 15px 30px;margin:0}.mm-listview_inset .mm-listitem{padding:5px 0}.mm-listitem_spacer{padding-top:44px;padding-top:var(--mm-listitem-size)}.mm-listitem_spacer>.mm-listitem__btn{top:44px;top:var(--mm-listitem-size)}.mm-menu_multiline .mm-listitem__text,.mm-panel_multiline .mm-listitem__text{-o-text-overflow:clip;text-overflow:clip;white-space:normal}[class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:0}.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened~.mm-wrapper__blocker{opacity:.3;-webkit-transition:opacity .4s ease .4s;-o-transition:opacity .4s ease .4s;transition:opacity .4s ease .4s}.mm-menu_opened.mm-menu_pagedim~.mm-wrapper__blocker{background:inherit}.mm-menu_opened.mm-menu_pagedim-black~.mm-wrapper__blocker{background:#000}.mm-menu_opened.mm-menu_pagedim-white~.mm-wrapper__blocker{background:#fff}.mm-menu_popup{-webkit-transition:opacity .4s ease;-o-transition:opacity .4s ease;transition:opacity .4s ease;opacity:0;-webkit-box-shadow:0 2px 10px rgba(0,0,0,.3);box-shadow:0 2px 10px rgba(0,0,0,.3);height:80%;min-height:140px;max-height:880px;top:50%;left:50%;bottom:auto;right:auto;z-index:2;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}.mm-menu_popup.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}.mm-menu_popup.mm-menu_opened~.mm-wrapper__blocker{-webkit-transition-delay:0s!important;-o-transition-delay:0s!important;transition-delay:0s!important;z-index:1}.mm-wrapper_opening .mm-menu_popup{opacity:1}.mm-menu_position-right{left:auto;right:0}.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}.mm-menu_position-bottom,.mm-menu_position-front,.mm-menu_position-top{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-menu_position-bottom.mm-menu_opened,.mm-menu_position-front.mm-menu_opened,.mm-menu_position-top.mm-menu_opened{z-index:2}.mm-menu_position-bottom.mm-menu_opened~.mm-slideout,.mm-menu_position-front.mm-menu_opened~.mm-slideout,.mm-menu_position-top.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}.mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker{z-index:1}.mm-menu_position-front{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu_position-front.mm-menu_position-right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu_position-bottom,.mm-menu_position-top{width:100%;min-width:100%;max-width:100%}.mm-menu_position-top{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.mm-menu_position-top{height:80vh;min-height:140px;max-height:880px}.mm-menu_position-bottom{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);top:auto}.mm-menu_position-bottom{height:80vh;min-height:140px;max-height:880px}.mm-wrapper_opening .mm-menu_position-bottom,.mm-wrapper_opening .mm-menu_position-front,.mm-wrapper_opening .mm-menu_position-top{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.mm-menu_shadow-page:after{-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow);content:"";display:block;width:20px;height:120%;position:absolute;left:100%;top:-10%;z-index:100;-webkit-clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%);clip-path:polygon(-20px 0,0 0,0 100%,-20px 100%)}.mm-menu_shadow-page.mm-menu_position-right:after{left:auto;right:100%;-webkit-clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%);clip-path:polygon(20px 0,40px 0,40px 100%,20px 100%)}.mm-menu_shadow-page.mm-menu_position-front:after{content:none;display:none}.mm-menu_shadow-menu{-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}.mm-menu_shadow-panels .mm-panels>.mm-panel{-webkit-box-shadow:var(--mm-shadow);box-shadow:var(--mm-shadow)}.mm-menu_theme-white{--mm-color-border:rgba( 0,0,0, 0.1 );--mm-color-button:rgba( 0,0,0, 0.3 );--mm-color-text:rgba( 0,0,0, 0.7 );--mm-color-text-dimmed:rgba( 0,0,0, 0.3 );--mm-color-background:#fff;--mm-color-background-highlight:rgba( 0,0,0, 0.06 );--mm-color-background-emphasis:rgba( 0,0,0, 0.03 );--mm-shadow:0 0 10px rgba( 0,0,0, 0.2 )}.mm-menu_theme-dark{--mm-color-border:rgba( 0,0,0, 0.3 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.85 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#333;--mm-color-background-highlight:rgba( 255,255,255, 0.08 );--mm-color-background-emphasis:rgba( 0,0,0, 0.1 );--mm-shadow:0 0 20px rgba( 0,0,0, 0.5 )}.mm-menu_theme-black{--mm-color-border:rgba( 255,255,255, 0.25 );--mm-color-button:rgba( 255,255,255, 0.4 );--mm-color-text:rgba( 255,255,255, 0.75 );--mm-color-text-dimmed:rgba( 255,255,255, 0.4 );--mm-color-background:#000;--mm-color-background-highlight:rgba( 255,255,255, 0.2 );--mm-color-background-emphasis:rgba( 255,255,255, 0.15 );--mm-shadow:none}.mm-menu_tileview .mm-listview,.mm-panel_tileview .mm-listview{margin:0!important}.mm-menu_tileview .mm-listview:after,.mm-panel_tileview .mm-listview:after{content:'';display:block;clear:both}.mm-menu_tileview .mm-listitem,.mm-panel_tileview .mm-listitem{padding:0;float:left;position:relative;width:50%;height:0;padding-top:50%}.mm-menu_tileview .mm-listitem:after,.mm-panel_tileview .mm-listitem:after{left:0;top:0;border-right-width:1px;border-right-style:solid;z-index:-1}.mm-menu_tileview .mm-listitem.mm-tile-xs,.mm-panel_tileview .mm-listitem.mm-tile-xs{width:12.5%;padding-top:12.5%}.mm-menu_tileview .mm-listitem.mm-tile-s,.mm-panel_tileview .mm-listitem.mm-tile-s{width:25%;padding-top:25%}.mm-menu_tileview .mm-listitem.mm-tile-l,.mm-panel_tileview .mm-listitem.mm-tile-l{width:75%;padding-top:75%}.mm-menu_tileview .mm-listitem.mm-tile-xl,.mm-panel_tileview .mm-listitem.mm-tile-xl{width:100%;padding-top:100%}.mm-menu_tileview .mm-listitem__text,.mm-panel_tileview .mm-listitem__text{line-height:1px;text-align:center;padding:50% 10px 0 10px;margin:0;position:absolute;top:0;right:1px;bottom:1px;left:0}.mm-menu_tileview .mm-listitem__btn,.mm-panel_tileview .mm-listitem__btn{width:auto}.mm-menu_tileview .mm-listitem__btn:after,.mm-menu_tileview .mm-listitem__btn:before,.mm-panel_tileview .mm-listitem__btn:after,.mm-panel_tileview .mm-listitem__btn:before{content:none;display:none}.mm-menu_tileview .mm-divider,.mm-panel_tileview .mm-divider{display:none}.mm-menu_tileview .mm-panel,.mm-panel_tileview{padding-left:0;padding-right:0}.mm-menu_tileview .mm-panel:after,.mm-menu_tileview .mm-panel:before,.mm-panel_tileview:after,.mm-panel_tileview:before{content:none;display:none}body.modal-open .mm-slideout{z-index:unset}.ui-draggable-handle{-ms-touch-action:none;touch-action:none}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important;pointer-events:none}.ui-icon{display:inline-block;vertical-align:middle;margin-top:-.25em;position:relative;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-icon-block{left:50%;margin-left:-8px;display:block}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:0.1px;display:block;-ms-touch-action:none;touch-action:none}.ui-resizable-disabled .ui-resizable-handle,.ui-resizable-autohide .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:7px;width:100%;top:-5px;left:0}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}.ui-resizable-e{cursor:e-resize;width:7px;right:-5px;top:0;height:100%}.ui-resizable-w{cursor:w-resize;width:7px;left:-5px;top:0;height:100%}.ui-resizable-se{cursor:se-resize;width:12px;height:12px;right:1px;bottom:1px}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px}.ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black}.ui-sortable-handle{-ms-touch-action:none;touch-action:none}.ui-accordion .ui-accordion-header{display:block;cursor:pointer;position:relative;margin:2px 0 0 0;padding:.5em .5em .5em .7em;font-size:100%}.ui-accordion .ui-accordion-content{padding:1em 2.2em;border-top:0;overflow:auto}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:0;margin:0;display:block;outline:0}.ui-menu .ui-menu{position:absolute}.ui-menu .ui-menu-item{margin:0;cursor:pointer;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-item-wrapper{position:relative;padding:3px 1em 3px .4em}.ui-menu .ui-menu-divider{margin:5px 0;height:0;font-size:0;line-height:0;border-width:1px 0 0 0}.ui-menu .ui-state-focus,.ui-menu .ui-state-active{margin:-1px}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item-wrapper{padding-left:2em}.ui-menu .ui-icon{position:absolute;top:0;bottom:0;left:.2em;margin:auto 0}.ui-menu .ui-menu-icon{left:auto;right:0}.ui-button{padding:.4em 1em;display:inline-block;position:relative;line-height:normal;margin-right:.1em;cursor:pointer;vertical-align:middle;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:visible}.ui-button,.ui-button:link,.ui-button:visited,.ui-button:hover,.ui-button:active{text-decoration:none}.ui-button-icon-only{width:2em;box-sizing:border-box;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-button-icon-only{text-indent:0}.ui-button-icon-only .ui-icon{position:absolute;top:50%;left:50%;margin-top:-8px;margin-left:-8px}.ui-button.ui-icon-notext .ui-icon{padding:0;width:2.1em;height:2.1em;text-indent:-9999px;white-space:nowrap}input.ui-button.ui-icon-notext .ui-icon{width:auto;height:auto;text-indent:0;white-space:normal;padding:.4em 1em}input.ui-button::-moz-focus-inner,button.ui-button::-moz-focus-inner{border:0;padding:0}.ui-controlgroup{vertical-align:middle;display:inline-block}.ui-controlgroup > .ui-controlgroup-item{float:left;margin-left:0;margin-right:0}.ui-controlgroup > .ui-controlgroup-item:focus,.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus{z-index:9999}.ui-controlgroup-vertical > .ui-controlgroup-item{display:block;float:none;width:100%;margin-top:0;margin-bottom:0;text-align:left}.ui-controlgroup-vertical .ui-controlgroup-item{box-sizing:border-box}.ui-controlgroup .ui-controlgroup-label{padding:.4em 1em}.ui-controlgroup .ui-controlgroup-label span{font-size:80%}.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item{border-left:none}.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item{border-top:none}.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content{border-right:none}.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content{border-bottom:none}.ui-controlgroup-vertical .ui-spinner-input{width:75%;width:calc( 100% - 2.4em )}.ui-controlgroup-vertical .ui-spinner .ui-spinner-up{border-top-style:solid}.ui-checkboxradio-label .ui-icon-background{box-shadow:inset 1px 1px 1px #ccc;border-radius:.12em;border:none}.ui-checkboxradio-radio-label .ui-icon-background{width:16px;height:16px;border-radius:1em;overflow:visible;border:none}.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon{background-image:none;width:8px;height:8px;border-width:4px;border-style:solid}.ui-checkboxradio-disabled{pointer-events:none}.ui-datepicker{width:17em;padding:.2em .2em 0;display:none}.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0}.ui-datepicker .ui-datepicker-prev,.ui-datepicker .ui-datepicker-next{position:absolute;top:2px;width:1.8em;height:1.8em}.ui-datepicker .ui-datepicker-prev-hover,.ui-datepicker .ui-datepicker-next-hover{top:1px}.ui-datepicker .ui-datepicker-prev{left:2px}.ui-datepicker .ui-datepicker-next{right:2px}.ui-datepicker .ui-datepicker-prev-hover{left:1px}.ui-datepicker .ui-datepicker-next-hover{right:1px}.ui-datepicker .ui-datepicker-prev span,.ui-datepicker .ui-datepicker-next span{display:block;position:absolute;left:50%;margin-left:-8px;top:50%;margin-top:-8px}.ui-datepicker .ui-datepicker-title{margin:0 2.3em;line-height:1.8em;text-align:center}.ui-datepicker .ui-datepicker-title select{font-size:1em;margin:1px 0}.ui-datepicker select.ui-datepicker-month,.ui-datepicker select.ui-datepicker-year{width:45%}.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}.ui-datepicker td{border:0;padding:1px}.ui-datepicker td span,.ui-datepicker td a{display:block;padding:.2em;text-align:right;text-decoration:none}.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em .2em .4em;cursor:pointer;padding:.2em .6em .3em .6em;width:auto;overflow:visible}.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}.ui-datepicker.ui-datepicker-multi{width:auto}.ui-datepicker-multi .ui-datepicker-group{float:left}.ui-datepicker-multi .ui-datepicker-group table{width:95%;margin:0 auto .4em}.ui-datepicker-multi-2 .ui-datepicker-group{width:50%}.ui-datepicker-multi-3 .ui-datepicker-group{width:33.3%}.ui-datepicker-multi-4 .ui-datepicker-group{width:25%}.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header{border-left-width:0}.ui-datepicker-multi .ui-datepicker-buttonpane{clear:left}.ui-datepicker-row-break{clear:both;width:100%;font-size:0}.ui-datepicker-rtl{direction:rtl}.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,.ui-datepicker-rtl .ui-datepicker-group{float:right}.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px}.ui-datepicker .ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat;left:.5em;top:.3em}.ui-dialog{position:absolute;top:0;left:0;padding:.2em;outline:0}.ui-dialog .ui-dialog-titlebar{padding:.4em 1em;position:relative}.ui-dialog .ui-dialog-title{float:left;margin:.1em 0;white-space:nowrap;width:90%;overflow:hidden;text-overflow:ellipsis}.ui-dialog .ui-dialog-titlebar-close{position:absolute;right:.3em;top:50%;width:20px;margin:-10px 0 0 0;padding:1px;height:20px}.ui-dialog .ui-dialog-content{position:relative;border:0;padding:.5em 1em;background:none;overflow:auto}.ui-dialog .ui-dialog-buttonpane{text-align:left;border-width:1px 0 0 0;background-image:none;margin-top:.5em;padding:.3em 1em .5em .4em}.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset{float:right}.ui-dialog .ui-dialog-buttonpane button{margin:.5em .4em .5em 0;cursor:pointer}.ui-dialog .ui-resizable-n{height:2px;top:0}.ui-dialog .ui-resizable-e{width:2px;right:0}.ui-dialog .ui-resizable-s{height:2px;bottom:0}.ui-dialog .ui-resizable-w{width:2px;left:0}.ui-dialog .ui-resizable-se,.ui-dialog .ui-resizable-sw,.ui-dialog .ui-resizable-ne,.ui-dialog .ui-resizable-nw{width:7px;height:7px}.ui-dialog .ui-resizable-se{right:0;bottom:0}.ui-dialog .ui-resizable-sw{left:0;bottom:0}.ui-dialog .ui-resizable-ne{right:0;top:0}.ui-dialog .ui-resizable-nw{left:0;top:0}.ui-draggable .ui-dialog-titlebar{cursor:move}.ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url(data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==);height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none}.ui-selectmenu-menu{padding:0;margin:0;position:absolute;top:0;left:0;display:none}.ui-selectmenu-menu .ui-menu{overflow:auto;overflow-x:hidden;padding-bottom:1px}.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup{font-size:1em;font-weight:bold;line-height:1.5;padding:2px 0.4em;margin:0.5em 0 0 0;height:auto;border:0}.ui-selectmenu-open{display:block}.ui-selectmenu-text{display:block;margin-right:20px;overflow:hidden;text-overflow:ellipsis}.ui-selectmenu-button.ui-button{text-align:left;white-space:nowrap;width:14em}.ui-selectmenu-icon.ui-icon{float:right;margin-top:0}.ui-slider{position:relative;text-align:left}.ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1.2em;height:1.2em;cursor:default;-ms-touch-action:none;touch-action:none}.ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;background-position:0 0}.ui-slider.ui-state-disabled .ui-slider-handle,.ui-slider.ui-state-disabled .ui-slider-range{filter:inherit}.ui-slider-horizontal{height:.8em}.ui-slider-horizontal .ui-slider-handle{top:-.3em;margin-left:-.6em}.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.ui-slider-horizontal .ui-slider-range-min{left:0}.ui-slider-horizontal .ui-slider-range-max{right:0}.ui-slider-vertical{width:.8em;height:100px}.ui-slider-vertical .ui-slider-handle{left:-.3em;margin-left:0;margin-bottom:-.6em}.ui-slider-vertical .ui-slider-range{left:0;width:100%}.ui-slider-vertical .ui-slider-range-min{bottom:0}.ui-slider-vertical .ui-slider-range-max{top:0}.ui-spinner{position:relative;display:inline-block;overflow:hidden;padding:0;vertical-align:middle}.ui-spinner-input{border:none;background:none;color:inherit;padding:.222em 0;margin:.2em 0;vertical-align:middle;margin-left:.4em;margin-right:2em}.ui-spinner-button{width:1.6em;height:50%;font-size:.5em;padding:0;margin:0;text-align:center;position:absolute;cursor:default;display:block;overflow:hidden;right:0}.ui-spinner a.ui-spinner-button{border-top-style:none;border-bottom-style:none;border-right-style:none}.ui-spinner-up{top:0}.ui-spinner-down{bottom:0}.ui-tabs{position:relative;padding:.2em}.ui-tabs .ui-tabs-nav{margin:0;padding:.2em .2em 0}.ui-tabs .ui-tabs-nav li{list-style:none;float:left;position:relative;top:0;margin:1px .2em 0 0;border-bottom-width:0;padding:0;white-space:nowrap}.ui-tabs .ui-tabs-nav .ui-tabs-anchor{float:left;padding:.5em 1em;text-decoration:none}.ui-tabs .ui-tabs-nav li.ui-tabs-active{margin-bottom:-1px;padding-bottom:1px}.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor{cursor:text}.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor{cursor:pointer}.ui-tabs .ui-tabs-panel{display:block;border-width:0;padding:1em 1.4em;background:none}.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px}body .ui-tooltip{border-width:2px}.ui-widget{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Arial,Helvetica,sans-serif;font-size:1em}.ui-widget.ui-widget-content{border:1px solid #c5c5c5}.ui-widget-content{border:1px solid #ddd;background:#fff;color:#333}.ui-widget-content a{color:#333}.ui-widget-header{border:1px solid #ddd;background:#e9e9e9;color:#333;font-weight:bold}.ui-widget-header a{color:#333}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default,.ui-button,html .ui-button.ui-state-disabled:hover,html .ui-button.ui-state-disabled:active{border:1px solid #c5c5c5;background:#f6f6f6;font-weight:normal;color:#454545}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited,a.ui-button,a:link.ui-button,a:visited.ui-button,.ui-button{color:#454545;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus,.ui-button:hover,.ui-button:focus{border:1px solid #ccc;background:#ededed;font-weight:normal;color:#2b2b2b}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited,.ui-state-focus a,.ui-state-focus a:hover,.ui-state-focus a:link,.ui-state-focus a:visited,a.ui-button:hover,a.ui-button:focus{color:#2b2b2b;text-decoration:none}.ui-visual-focus{box-shadow:0 0 3px 1px rgb(94,158,214)}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active,a.ui-button:active,.ui-button:active,.ui-button.ui-state-active:hover{border:1px solid #003eff;background:#007fff;font-weight:normal;color:#fff}.ui-icon-background,.ui-state-active .ui-icon-background{border:#003eff;background-color:#fff}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#fff;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #dad55e;background:#fffa90;color:#777620}.ui-state-checked{border:1px solid #dad55e;background:#fffa90}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#777620}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #f1a899;background:#fddfdf;color:#5f3f3f}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#5f3f3f}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#5f3f3f}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:bold}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:normal}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/images/ui-icons_444444_256x240.png)}.ui-widget-header .ui-icon{background-image:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/images/ui-icons_444444_256x240.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon,.ui-button:hover .ui-icon,.ui-button:focus .ui-icon{background-image:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/images/ui-icons_555555_256x240.png)}.ui-state-active .ui-icon,.ui-button:active .ui-icon{background-image:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/images/ui-icons_ffffff_256x240.png)}.ui-state-highlight .ui-icon,.ui-button .ui-state-highlight.ui-icon{background-image:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/images/ui-icons_777620_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/images/ui-icons_cc0000_256x240.png)}.ui-button .ui-icon{background-image:url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/css/images/ui-icons_777777_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-caret-1-n{background-position:0 0}.ui-icon-caret-1-ne{background-position:-16px 0}.ui-icon-caret-1-e{background-position:-32px 0}.ui-icon-caret-1-se{background-position:-48px 0}.ui-icon-caret-1-s{background-position:-65px 0}.ui-icon-caret-1-sw{background-position:-80px 0}.ui-icon-caret-1-w{background-position:-96px 0}.ui-icon-caret-1-nw{background-position:-112px 0}.ui-icon-caret-2-n-s{background-position:-128px 0}.ui-icon-caret-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-65px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-65px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:1px -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:3px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:3px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:3px}.ui-widget-overlay{background:#aaa;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{-webkit-box-shadow:0 0 5px #666;box-shadow:0 0 5px #666}html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline; } article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block; }
ol, ul {
list-style: none; }
blockquote, q {
quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none; }
table {
border-collapse: collapse;
border-spacing: 0; }
html {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased; }
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
* {
-webkit-font-smoothing: antialiased; }
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal; }
a {
text-decoration: none; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
display: block; }
audio,
canvas,
video {
display: inline-block; }
[hidden] {
display: none; }
iframe {
border-style: none;
border: none;
display: block;
position: relative; }
a:focus {
outline: none; }
a:active,
a:hover {
outline: 0; }
blockquote {
margin: 0; }
code,
kbd,
pre,
samp {
font-family: monospace, serif; }
pre {
white-space: pre;
white-space: pre-wrap;
word-wrap: break-word; }
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline; }
dl,
menu,
ol,
ul {
margin: 0; }
dd {
margin: 0; }
menu,
ol,
ul {
padding: 0; }
nav ul,
nav ol {
list-style: none;
list-style-image: none; }
img {
border: 0;
-ms-interpolation-mode: bicubic;
max-width: 100%; }
form {
margin: 0; }
button,
input,
select,
textarea {
font-size: 100%;
vertical-align: baseline; }
button,
select {
text-transform: none; }
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
border-style: none;
-webkit-appearance: button;
cursor: pointer; }
button[disabled],
html input[disabled] {
cursor: default; }
input[type="checkbox"],
input[type="radio"] {
padding: 0; }
input[type="search"] {
-webkit-appearance: textfield;
-moz-box-sizing: content-box;
-webkit-box-sizing: content-box;
box-sizing: content-box; }
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0; }
textarea {
overflow: auto;
vertical-align: top; }
table {
border-collapse: collapse;
border-spacing: 0; }
audio,
canvas,
img,
video {
vertical-align: middle; }
textarea {
resize: vertical; }
.flex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
margin: 0 -1em 0 -1em; }
@media (max-width: 768px) {
.flex.reverse {
flex-direction: row-reverse; } }
.flex.two .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; }
@media (max-width: 640px) {
.flex.two .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.flex.three .col {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%; }
@media (max-width: 768px) {
.flex.three .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 640px) {
.flex.three .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.flex.four .col {
flex-basis: 25%;
max-width: 25%;
width: 25%; }
@media (max-width: 960px) {
.flex.four .col {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%; } }
@media (max-width: 768px) {
.flex.four .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 640px) {
.flex.four .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.flex .col {
order: 0;
flex-grow: 0;
flex-basis: 100%;
max-width: 100%;
width: 100%;
padding: 0 1em;
min-width: 0; }
.right {
float: right; }
.left {
float: left; }
.show {
display: block !important; }
.hide {
display: none; }
.table {
display: table;
height: 100%;
width: 100%; }
.table-cell {
display: table-cell;
vertical-align: middle; }
.ovh {
overflow: hidden; }
.alignleft {
display: inline;
float: left;
margin-right: 2em;
margin-bottom: 1.5em; }
.alignright {
display: inline;
float: right;
margin-left: 2em;
margin-top: 2em;
margin-bottom: 1.5em; }
.aligncenter {
clear: both;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 1em;
margin-bottom: 1em; }
@media (max-width: 768px) {
.alignleft, .alignright, .aligncenter {
float: none;
display: block;
margin-left: auto;
margin-right: auto;
margin-top: 1.5em;
margin-bottom: 1.5em; } } @font-face {
font-family: 'MarkPro';
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro.woff2) format("woff2"), url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro.woff) format("woff");
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro.eot);
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro.eot?#iefix) format("embedded-opentype"), url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro.ttf) format("truetype");
font-weight: normal;
font-style: normal;
font-display: fallback; }
@font-face {
font-family: 'MarkProMedium';
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro-Medium.woff2) format("woff2"), url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro-Medium.woff) format("woff");
font-weight: 500;
font-style: normal;
font-display: fallback; }
@font-face {
font-family: 'MarkProBold';
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro-Bold.woff2) format("woff2"), url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/MarkPro-Bold.woff) format("woff");
font-weight: bold;
font-style: normal;
font-display: fallback; } @font-face {
font-family: 'DIN Condensed';
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/DINCondensed-Bold.woff2) format("woff2"), url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/DINCondensed-Bold.woff) format("woff");
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/DINCondensed-Bold.eot);
src: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/DINCondensed-Bold.eot?#iefix) format("embedded-opentype"), url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/fonts/DINCondensed-Bold.ttf) format("truetype");
font-weight: bold;
font-style: normal;
font-display: fallback; }
body {
font-family: "MarkPro", Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #3F3D3D;
background: #fff; }
h1, h2, h3, h4, h5, h6 {
font-family: "MarkPro", Helvetica, Arial, sans-serif;
font-weight: 300;
color: #3F3D3D;
letter-spacing: .02em;
margin-bottom: 0.75em; }
@media (max-width: 768px) {
h1, h2, h3, h4, h5, h6 {
margin-bottom: 1em; } }
h1 {
font-size: 1.476em;
line-height: 1.3; }
h2 {
font-size: 1.383em;
line-height: 1.35;  }
h3 {
font-size: 1.296em;
line-height: 1.4; }
h4 {
font-size: 1.215em;
line-height: 1.4; }
h5 {
font-size: 1.138em; }
h6 {
font-size: 1em;
font-weight: 400;
letter-spacing: .01em; }
p {
margin: 0 0 1em;
letter-spacing: 0.005em; }
@media (max-width: 960px) {
p {
font-size: 1em; } }
label {
font-family: "MarkPro";
display: inline-block;
margin-bottom: .75em;
font-weight: 400; }
b,
strong {
font-family: "MarkPro";
font-weight: 700; }
a {
display: inline-block;
font-family: "MarkPro";
color: inherit; }
p p,
p a,
p span,
p label,
p strong,
p em,
a p,
a a,
a span,
a label,
a strong,
a em,
span p,
span a,
span span,
span label,
span strong,
span em,
label p,
label a,
label span,
label label,
label strong,
label em,
strong p,
strong a,
strong span,
strong label,
strong strong,
strong em,
em p,
em a,
em span,
em label,
em strong,
em em {
font-size: 100%;
margin: 0; }
blockquote {
font-family: "MarkPro";
font-weight: 400;
font-style: italic; }
@media (max-width: 768px) {
blockquote {
font-weight: 300; } }
hr {
display: block;
border-style: none;
height: 1px;
background: #fafafa; }
small {
font-size: 85%; }
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
textarea,
select {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
display: block;
font-family: "MarkPro", Helvetica, Arial, sans-serif;
font-size: 100%;
font-weight: 400;
color: #2e2e2e;
letter-spacing: .01em;
min-width: auto;
width: 100%;
min-height: 2.25em;
margin-bottom: .75em;
padding: .75em 1em;
background: #ffffff;
border-style: none;
vertical-align: middle;
outline: 0; }
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="week"]:focus,
input[type="month"]:focus,
textarea:focus,
select:focus {
border-color: #fff; }
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="number"]::placeholder,
input[type="date"]::placeholder,
input[type="time"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="week"]::placeholder,
input[type="month"]::placeholder,
textarea::placeholder,
select::placeholder {
color: #635c5c; }
@media (max-width: 768px) {
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
textarea,
select {
padding: 1em; } }
input[type="search"]::placeholder {
font-size: .875em; }
textarea {
min-width: 15em;
width: 100%;
min-height: 7em;
line-height: 1.4; }
select {
outline: none;
min-width: 5em;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px; }
.navigation-bottom {
display: block;
margin-top: 2em;
float: right;
position: relative; }
.navigation-bottom ul:before, .navigation-bottom ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.navigation-bottom ul:after {
clear: both; }
.navigation-bottom ul li {
float: left;
margin-left: 0.25em; }
.navigation-bottom ul li:first-child {
margin: 0; }
.navigation-bottom ul li a {
padding: .2em;
width: 2em;
text-align: center; }
.navigation-bottom ul li a.active {
border: 1px solid #cccccc; }
@media (max-width: 480px) {
.navigation-bottom ul li {
margin-bottom: 1em; } }
.navigation-bottom ul li:last-child {
margin-left: 0; }
.navigation-bottom ul li:last-child a {
width: 9em; }
.navigation-bottom .wp-pagenavi span,
.navigation-bottom .wp-pagenavi .first,
.navigation-bottom .wp-pagenavi .page,
.navigation-bottom .wp-pagenavi .nextpostslink,
.navigation-bottom .wp-pagenavi .previouspostslink {
padding: 0.5em; }
.navigation-bottom .wp-pagenavi span.current {
border: 1px solid #ccc;
display: inline; }
.btn-contact-product {
background: #ffd033;
color: #ffffff;
font-family: "MarkProBold", Helvetica, Arial, sans-serif;
font-size: 1.250em;
padding: .75em 2em;
width: 100%;
text-align: center; }
.btn-descopera {
text-transform: uppercase;
font-family: "MarkProBold", Helvetica, Arial, sans-serif;
font-size: 15px;
color: #ffffff;
border: 1px solid #ffffff;
padding: 1.3em 2.5em; }
.btn-descopera:hover {
color: #2e2e2e;
background: #ffd033;
border: 1px solid #ffd033;
outline: none;
transition: all 0.4s; }
.btn-outline {
display: inline-block;
width: 100%;
padding: 1em 2em;
background: transparent;
border: 1px solid #2e2e2e;
font-family: "MarkProBold"; }
.btn-outline:hover {
background: #2e2e2e !important;
color: #ffffff;
transition: all 0.4s; }
.btn-orders {
display: inline-block;
padding: 1em 2em;
background: transparent;
border: 1px solid #2e2e2e;
font-family: "MarkProBold"; }
.btn-orders:hover {
background: #2e2e2e;
color: #ffffff;
transition: all 0.4s; }
.order-again-container {
margin: 1em 0; }
.order-again-container .order-again {
text-align: right; }
.order-again-container .order-again .btn-orders {
display: inline-block;
padding: .5em 2em;
background: transparent;
border: 1px solid #2e2e2e;
font-family: "MarkProBold"; }
.order-again-container .order-again .btn-orders:hover {
background: #2e2e2e;
color: #ffffff;
transition: all 0.4s; }
.btn-link {
display: inline-block;
padding: 1em 2em;
background: none;
border: 1px solid #2e2e2e;
margin-top: 2em;
text-transform: capitalize;
font-family: "MarkProBold"; }
.btn-link:hover {
color: #ffffff;
background: #2e2e2e;
transition: all 0.4s; }
.btn-final {
background: #2e2e2e;
color: #ffffff;
font-family: "MarkProBold", Helvetica, Arial, sans-serif;
font-size: 1.250em;
padding: 1em;
display: inline-block;
width: 100%; }
@media (max-width: 960px) {
.btn-final {
font-size: 1.15em;
transition: all 0.4s; } }
.btn-adauga {
background: #ffd033;
color: #ffffff;
font-family: "MarkProBold";
font-size: 1.250em;
padding: 1em 2em;
width: 100%; }
.btn-login {
font-family: "MarkPro", Helvetica, Arial, sans-serif;
display: inline-block;
font-weight: 400;
color: white;
width: 100%;
padding: 1em 2em;
min-height: 2.25em;
vertical-align: middle;
text-transform: uppercase;
background: #1A9D59;
cursor: pointer;
letter-spacing: .13em;
border: 1px solid #1A9D59;
outline: 0; }
.continua-button {
background: transparent;
border: 1px solid #2e2e2e;
padding: 1em 2em;
color: #2e2e2e;
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
.finalizeaza-comanda {
background: #ffd033;
color: #ffffff;
padding: 1em 2em;
border: 1px solid #ffd033;
margin-left: 1em;
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
.continua {
background: #ffd033;
color: #ffffff;
padding: 1em 0;
border: 1px solid #ffd033;
width: 48%;
text-align: center;
margin-left: 1%;
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
.product-chosen {
background: #ffeeb4;
padding: 1em 2em;
border: 1px solid #ffeeb4;
width: 50%;
text-align: center;
padding: 1em 0;
height: 3.750em; }
.product-chosen i {
width: 15px;
height: 15px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/info_orange.svg);
background-size: 15px 15px;
display: inline-block;
vertical-align: middle; }
.product-chosen span.mc-cs {
vertical-align: middle;
margin-left: .5em;
font-size: 1em; }
.product-chosen span.mm-cs {
font-size: 0.8125em; }
.disponibil-comanda-btn {
background-color: #facf33;
font-family: "MarkProBold";
font-size: 1.250em;
color: #ffffff;
padding: 1em;
display: block;
width: 100%; }
header .container-huge {
position: relative;
padding: 1em 3.750em 1em 5.313em; }
@media (max-width: 1550px) {
header .container-huge {
padding: 1em;
transition: all 0.4s;
max-width: 1400px; } }
header .burger {
display: none;
width: 2em;
margin-top: .9em;
margin-right: .75em;
margin-left: 0; }
header .burger span {
display: block;
width: 100%;
height: 1px;
background: #2e2e2e;
margin-top: .5em; }
header .burger span:first-child {
margin-top: 0; }
@media (max-width: 1170px) {
header .burger {
display: inline-block; } }
header .logo-wrapper {
display: table;
float: left; }
header .logo-wrapper .logo,
header .logo-wrapper h6 {
display: table-cell;
vertical-align: middle;
padding-left: 1em;
font-size: 1.375em;
font-family: "DIN Condensed", Helvetica, Arial, sans-serif; }
@media (max-width: 550px) {
header .logo-wrapper h6 {
display: none; } }
header .logo-wrapper .logo {
width: 100px;
height: 50px;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/logo.svg);
background-size: 100px 50px;
background-repeat: no-repeat; }
@media (max-width: 380px) {
header .logo-wrapper .logo {
width: 80px;
height: 45px;
background-size: 80px 45px;
transition: all 0.4s; } }
header .header-form {
position: absolute;
top: 50%;
transform: translateY(-50%);
display: inline-block;
float: left;
padding-left: 3.125em; }
@media (max-width: 1400px) {
header .header-form {
padding-left: 1.5em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
header .header-form {
padding-left: 1em;
transition: all 0.4s; } }
@media (max-width: 960px) {
header .header-form {
display: none; } }
header .header-form input[type="search"] {
background: #f5f5f5;
min-width: 28vw;
border: 0;
margin-bottom: 0;
padding-left: 1em;
padding-right: 2.4em; }
header .header-form button {
position: absolute;
right: .5em;
top: .45em;
width: 30px;
height: 30px;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/search_white.svg);
background-size: 20px 20px;
background-repeat: no-repeat;
background-position: center;
background-color: #f0f0f0; }
header .mini-basket {
float: right;
top: .3em;
position: relative; }
header .mini-basket .mini-basket-trigger {
position: relative; }
header .mini-basket .mini-basket-trigger i {
width: 40px;
height: 40px;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/header_basket.svg);
background-size: 40px 40px;
display: inline-block;
vertical-align: middle; }
@media (max-width: 380px) {
header .mini-basket .mini-basket-trigger i {
width: 30px;
height: 30px;
background-size: 30px 30px; } }
header .mini-basket .mini-basket-trigger .mini-cart-count {
width: 30px;
height: 30px;
display: inline-flex;
align-items: center;
position: absolute;
right: 1em;
background: #ffd033;
border: 3px solid white;
border-radius: 50%;
padding: 3px 5px;
top: -.9em;
font-size: 10px;
font-family: "Sarabun Bold", Helvetica, Arial, sans-serif; }
header .mini-basket .mini-basket-trigger .mini-cart-count span {
width: 100%;
text-align: center; }
header .mini-basket .mini-basket-trigger span.caret-down {
display: inline-block;
width: 0;
height: 0;
vertical-align: middle;
border-top: 5px solid black;
border-right: 5px solid transparent;
border-left: 5px solid transparent;
border-bottom: 0 solid black;
margin-left: 1em; }
header .mini-basket .form-mini-cart {
display: none;
position: absolute;
top: calc(3em + .5em);
right: 0;
background: white;
text-align: center;
padding: .75em;
min-width: 400px;
z-index: 4;
-webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1); }
@media (max-width: 768px) {
header .mini-basket .form-mini-cart {
min-width: 280px;
transition: all 0.4s; } }
header .mini-basket .form-mini-cart .mini-cart-wrapper {
position: relative; }
header .mini-basket .form-mini-cart .mini-cart-wrapper .mc-link-refresh {
padding: 1em; }
header .mini-basket .form-mini-cart .mini-cart-wrapper .mc-link-refresh span {
margin-left: 0.5em; }
header .mini-basket .form-mini-cart .preloader-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffffff;
z-index: 1; }
header .mini-basket .form-mini-cart .preloader-overlay img {
position: absolute;
top: 50%;
left: 50%;
margin-top: -32px;
margin-left: -32px; }
header .mini-basket .form-mini-cart .mini-basket-empty {
text-align: center;
padding: 1em; }
header .mini-basket .form-mini-cart .mini-basket-empty span {
display: block;
margin: 1.5em 0 1em; }
header .mini-basket .form-mini-cart .mini-basket-empty a {
color: #56ba3e;
font-family: "MarkProBold"; }
header .mini-basket .form-mini-cart .mini-basket-product {
position: relative;
margin-top: 1em;
margin-bottom: 1em;
padding-left: calc(64px + 1.5em);
text-align: left; }
@media (max-width: 768px) {
header .mini-basket .form-mini-cart .mini-basket-product {
padding-left: calc(64px + .5em); } }
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-image {
position: absolute;
top: 0;
left: 0;
width: 64px;
height: 64px; }
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-title {
margin-bottom: 1em;
padding-right: 2.5em;
text-align: left; }
@media (max-width: 768px) {
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-title {
margin-bottom: 0;
transition: all 0.4s; } }
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-delete {
position: absolute;
top: 0;
right: 0;
width: 1.5em;
height: 1.5em; }
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-total {
overflow: hidden; }
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-total select {
float: left;
padding: .5em 1em;
width: 5em;
min-width: 5em;
border: 1px solid #ccc; }
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-total span {
float: right;
line-height: 2.25em; }
header .mini-basket .form-mini-cart .mini-basket-total {
background: #333;
color: #ffffff;
padding: .75em;
margin-bottom: .75em;
text-align: left; }
header .mini-basket .form-mini-cart .mini-basket-total span {
float: right; }
header .mini-basket .form-mini-cart .mc-place-order-btn {
display: block;
margin-bottom: 1em;
width: 100%;
display: inline-block;
font-size: 85%;
font-weight: 400;
color: #ffffff;
padding: 1.2em 2em;
min-height: 2.25em;
vertical-align: middle;
text-transform: uppercase;
background-color: #facf33;
font-family: "MarkProBold";
cursor: pointer;
letter-spacing: .13em;
outline: 0; }
header .mini-basket .form-mini-cart button[type="reset"] {
background: transparent;
font-size: 1.2em;
padding: 1em;
min-height: 2.25em; }
header .mini-basket .form-mini-cart button[type="reset"] i {
width: 22px;
height: 22px;
margin-left: 0;
margin-right: 1em;
float: left; }
header .header-search {
float: right;
padding-right: 1em;
top: .3em;
position: relative; }
header .header-search .header-search-trigger {
display: none;
vertical-align: middle;
width: 22px;
height: 22px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/search_gray.svg) no-repeat center;
background-size: auto;
background-size: 22px 22px;
margin-right: .75em; }
@media (max-width: 960px) {
header .header-search .header-search-trigger {
display: inline-block;
transition: all 0.4s; } }
@media (max-width: 1400px) {
header .header-search {
padding-right: 1em; } }
@media (max-width: 480px) {
header .header-search {
padding-right: .75em; } }
header .header-search .header-user {
position: relative;
display: inline-block; }
header .header-search .header-user .header-catalog {
display: inline-block;
margin-right: .5em;
vertical-align: middle; }
header .header-search .header-user .header-catalog i {
display: inline-block;
width: 35px;
height: 35px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/catalogue.svg) no-repeat center;
background-size: 35px 35px;
vertical-align: middle;
margin-right: .5em; }
@media (max-width: 1300px) {
header .header-search .header-user .header-catalog {
display: none; } }
header .header-search .header-user .header-search-phone {
display: inline-block;
padding-right: .5em; }
@media (max-width: 1400px) {
header .header-search .header-user .header-search-phone {
padding-right: 1em;
transition: all 0.4s; } }
@media (max-width: 1024px) {
header .header-search .header-user .header-search-phone {
display: none; } }
header .header-search .header-user .header-search-phone a {
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
@media (max-width: 1400px) {
header .header-search .header-user .header-search-phone a {
font-size: 0.875em; } }
header .header-search .header-user .header-search-phone .first-phone {
padding-left: .5em; }
@media (max-width: 1170px) {
header .header-search .header-user .header-search-phone .delimiter,
header .header-search .header-user .header-search-phone .second-phone {
display: none; } }
header .header-search .header-user .header-search-phone i {
display: inline-block;
width: 40px;
height: 40px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/header_phone.svg) no-repeat center;
background-size: 40px 40px;
vertical-align: middle; }
header .header-search .header-user .header-user-trigger {
display: inline-block; }
header .header-search .header-user .header-user-trigger .user-pic {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/header_user.svg) no-repeat center;
background-size: 40px 40px;
width: 40px;
height: 40px;
display: inline-block;
vertical-align: middle; }
@media (max-width: 380px) {
header .header-search .header-user .header-user-trigger .user-pic {
width: 30px;
height: 30px;
background-size: 30px 30px; } }
header .header-search .header-user .header-user-trigger span {
margin-left: .5em;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
width: 4.35em;
display: inline-block;
vertical-align: middle; }
@media (max-width: 1400px) {
header .header-search .header-user .header-user-trigger span {
font-size: 0.875em; } }
@media (max-width: 600px) {
header .header-search .header-user .header-user-trigger span {
display: none; } }
header .header-search .header-user .header-user-dropdown {
display: none;
position: absolute;
top: calc(2em + 1em);
right: 0;
background: white;
-webkit-box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
min-width: 12em;
z-index: 4; }
header .header-search .header-user .header-user-dropdown strong {
padding: 1em 1.5em;
background: #e6e6e6;
display: block; }
header .header-search .header-user .header-user-dropdown strong span {
vertical-align: top;
width: 10em;
overflow: hidden;
text-overflow: ellipsis; }
header .header-search .header-user .header-user-dropdown ul {
padding: 1em 1.5em; }
header .header-search .header-user .header-user-dropdown ul li {
position: relative;
border-top: 1px solid #e6e6e6;
padding-top: 0.5em;
padding-bottom: 0.5em; }
header .header-search .header-user .header-user-dropdown ul li:first-child {
border: 0; }
.header-menu {
background: #f5f5f5;
position: relative;
z-index: 3; }
@media (max-width: 1170px) {
.header-menu {
display: none; } }
.header-menu .header-left .categorii-link {
display: inline-block;
background-color: #e8e8e8;
padding: .5em 1.5em .5em 1.5em;
position: relative;
cursor: pointer; }
.header-menu .header-left .categorii-link .nav-menu-burger {
width: 2em; }
.header-menu .header-left .categorii-link .nav-menu-burger span {
display: block;
width: 100%;
height: 1px;
background: #2e2e2e;
margin-top: .5em; }
.header-menu .header-left .nav-menu {
position: relative;
top: -.22em; }
.header-menu .header-left .nav-menu span {
padding: 0 1.5em 0 1.5em; }
.header-menu .header-left .main-menu-links {
display: inline-block;
padding-left: 2.7em;
position: absolute;
top: 50%;
transform: translateY(-50%); }
@media (max-width: 1400px) {
.header-menu .header-left .main-menu-links {
padding-left: 1.5em;
transition: all 0.4s; } }
.header-menu .header-left .main-menu-links .main-links:before, .header-menu .header-left .main-menu-links .main-links:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.header-menu .header-left .main-menu-links .main-links:after {
clear: both; }
.header-menu .header-left .main-menu-links .main-links li {
float: left;
margin-left: 2.7em; }
.header-menu .header-left .main-menu-links .main-links li:first-child {
margin: 0; }
@media (max-width: 1400px) {
.header-menu .header-left .main-menu-links .main-links {
transition: all 0.4s; }
.header-menu .header-left .main-menu-links .main-links:before, .header-menu .header-left .main-menu-links .main-links:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.header-menu .header-left .main-menu-links .main-links:after {
clear: both; }
.header-menu .header-left .main-menu-links .main-links li {
float: left;
margin-left: 1em; }
.header-menu .header-left .main-menu-links .main-links li:first-child {
margin: 0; } }
@media (max-width: 1170px) {
.header-menu .header-left .main-menu-links .main-links {
display: none;
transition: all 0.4s; } }
.header-menu .header-left .main-menu-links .main-links li {
padding: .2em; }
.header-menu .header-left .main-menu-links .main-links li:last-child {
background: #ffffff; }
.header-menu .header-left .main-menu-links .main-links li:last-child a {
padding: 0 .2em; }
.header-menu .header-right {
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 1em; }
.header-menu .header-right .second-links li:first-child a:before {
content: "";
width: 20px;
height: 20px;
background-size: 20px 20px;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/header_help.svg);
display: inline-block;
margin-right: 1em;
vertical-align: middle; }
.header-menu .header-right .second-links:before, .header-menu .header-right .second-links:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.header-menu .header-right .second-links:after {
clear: both; }
.header-menu .header-right .second-links li {
float: left;
margin-left: 2.7em; }
.header-menu .header-right .second-links li:first-child {
margin: 0; }
@media (max-width: 1400px) {
.header-menu .header-right .second-links:before, .header-menu .header-right .second-links:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.header-menu .header-right .second-links:after {
clear: both; }
.header-menu .header-right .second-links li {
float: left;
margin-left: 1em; }
.header-menu .header-right .second-links li:first-child {
margin: 0; } }
@media (max-width: 480px) {
.header-menu .header-right {
display: none; } }
.header-menu .menu-container {
position: absolute;
top: 3.2em;
left: 0;
right: 0;
bottom: 0;
padding: 0 1em;
display: none; }
.header-menu .menu-container:before, .header-menu .menu-container:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.header-menu .menu-container:after {
clear: both; }
.header-menu .menu-container .flex {
margin: 0;
align-items: stretch; }
.header-menu .menu-container .col {
padding: 0; }
.header-menu .menu-container .col:nth-child(1) {
flex-basis: 25%;
max-width: 25%;
width: 25%; }
.header-menu .menu-container .col:nth-child(2) {
flex-basis: 75%;
max-width: 75%;
width: 75%; }
.header-menu .menu-container .menu-list {
background: #f5f5f5;
height: 100%; }
.header-menu .menu-container .menu-list li {
padding: .5em 1em .5em .5em; }
.header-menu .menu-container .menu-list li div.menu-cat {
width: 100%; }
.header-menu .menu-container .menu-list li div.menu-cat a {
width: 100%; }
.header-menu .menu-container .menu-list li div.menu-cat a i,
.header-menu .menu-container .menu-list li div.menu-cat a span {
vertical-align: middle; }
.header-menu .menu-container .menu-list li div.menu-cat a i:nth-child(1) {
width: 13px;
height: 20px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/cat_submeniu.svg);
background-size: 13px 20px;
background-repeat: no-repeat;
background-position: center center;
margin-right: .5em; }
@media (max-width: 1400px) {
.header-menu .menu-container .menu-list li div.menu-cat a i:nth-child(1) {
display: none; } }
.header-menu .menu-container .menu-list li div.menu-cat a i:nth-child(3) {
width: 6px;
height: 25px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/right_dark.svg);
background-size: 6px 13px;
background-repeat: no-repeat;
background-position: center center;
margin-left: 1em;
float: right; }
.header-menu .menu-container .menu-category-details:first-of-type {
display: block; }
.header-menu .menu-container .menu-category-details {
background: #fafafa;
padding: 2em;
height: 100%;
display: none; }
.header-menu .menu-container .menu-category-details .flex.six {
margin: 0 -1em; }
.header-menu .menu-container .menu-category-details .flex.six .col {
flex-basis: 16.66%;
max-width: 16.66%;
width: 16.66%;
padding: 0 1em; }
.header-menu .menu-container .menu-category-details .category-link {
display: block;
margin-bottom: 1em; }
.header-menu .menu-container .menu-category-details .category-link .category-box p {
margin-top: .5em;
line-height: 1.2;
font-size: 95%; }
.header-menu .menu-container .menu-category-details .youtube-link {
background: #eaeaea;
padding: 1.5em;
width: 100%; }
@media (max-width: 1400px) {
.header-menu .menu-container .menu-category-details .youtube-link {
font-size: 0.875em; } }
.header-menu .menu-container .menu-category-details .youtube-link .youtube-box {
text-align: center; }
.header-menu .menu-container .menu-category-details .youtube-link .youtube-box img {
margin-bottom: 1em; }
.header-menu .menu-container .menu-category-details .youtube-link .youtube-box span {
display: block;
font-family: "MarkProMedium";
font-size: 1em; }
.header-menu .menu-container .sub-sub-category {
padding-top: 1em;
margin-top: 1em;
border-top: 1px solid #2e2e2e;
display: none; }
.header-menu .menu-container .sub-sub-category .flex.four {
margin: 0 -2em 0 -2em; }
.header-menu .menu-container .sub-sub-category .flex.four .col {
padding: 0 2em;
margin-bottom: .5em; }
.header-menu .menu-container .sub-sub-category .flex.four .col:nth-child(2) {
flex-basis: 25%;
max-width: 25%;
width: 25%; }
footer {
background: #fbfbfb;
padding: 6.25em 0; }
@media (max-width: 960px) {
footer .intro-txt p {
font-size: 1em; } }
footer .info-help {
padding: 4.25em 0; }
footer .info-help .flex {
margin: 0 -.5em; }
footer .info-help .col {
padding: 0 .5em; }
@media (max-width: 1170px) {
footer .info-help .flex.three .col {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding-bottom: 1em; } }
@media (max-width: 768px) {
footer .info-help .flex.three .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
footer .info-help .flex.three .col:last-child {
margin: 0 auto; }
@media (max-width: 1170px) {
footer .info-help {
padding: 2em 0;
transition: all 0.4s; } }
footer .info-help a {
background: #ffffff;
width: 100%;
display: table; }
footer .info-help .info-help-box {
min-height: 100px;
position: relative; }
@media (max-width: 480px) {
footer .info-help .info-help-box {
min-height: 120px; } }
footer .info-help .info-help-box .info-help-box-wrapper {
position: absolute;
top: 50%;
transform: translateY(-50%);
padding-left: 2em; }
@media (max-width: 1400px) {
footer .info-help .info-help-box .info-help-box-wrapper {
padding-left: 1em;
transition: all 0.4s; } }
@media (max-width: 480px) {
footer .info-help .info-help-box .info-help-box-wrapper {
text-align: center;
padding-left: 0;
width: 100%; } }
footer .info-help .info-help-box .info-help-box-wrapper .ihb-img,
footer .info-help .info-help-box .info-help-box-wrapper .ihb-txt {
display: inline-block;
vertical-align: middle; }
footer .info-help .info-help-box .info-help-box-wrapper .ihb-img h6,
footer .info-help .info-help-box .info-help-box-wrapper .ihb-txt h6 {
font-family: "MarkProBold";
font-size: 1.25em;
font-weight: 700;
line-height: .75em;
padding: 0;
margin: 0; }
@media (max-width: 480px) {
footer .info-help .info-help-box .info-help-box-wrapper .ihb-img,
footer .info-help .info-help-box .info-help-box-wrapper .ihb-txt {
display: block; } }
footer .info-help .info-help-box .info-help-box-wrapper .img-1 i {
width: 25px;
height: 42px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/footer_phone.svg);
background-size: 25px 42px;
background-repeat: no-repeat;
background-position: center; }
footer .info-help .info-help-box .info-help-box-wrapper .img-2 i {
width: 41px;
height: 41px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/footer_chat.svg);
background-size: 41px 41px;
background-repeat: no-repeat;
background-position: center; }
footer .info-help .info-help-box .info-help-box-wrapper .img-3 i {
width: 52px;
height: 24px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/footer_mail.svg);
background-size: 52px 24px;
background-repeat: no-repeat;
background-position: center; }
footer .info-help .info-help-box .info-help-box-wrapper .ihb-txt {
padding-left: 2em; }
@media (max-width: 1400px) {
footer .info-help .info-help-box .info-help-box-wrapper .ihb-txt {
padding-left: .5em; } }
footer .footer-main {
padding-bottom: 4em; }
@media (max-width: 960px) {
footer .footer-main .flex.four .col {
padding-bottom: 2em; } }
@media (max-width: 640px) {
footer .footer-main .flex.four .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 480px) {
footer .footer-main .flex.four .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
footer .footer-main h5 {
padding-bottom: 2em; }
@media (max-width: 960px) {
footer .footer-main h5 {
padding-bottom: 0;
transition: all 0.4s; } }
@media (max-width: 960px) {
footer .footer-main {
padding-bottom: 0; } }
footer .footer-main .visa {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/visa.svg);
height: 25px; }
footer .footer-main .mastercard {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/mastercard.svg);
height: 55px;
margin-left: 1.25em; }
footer .footer-main .card-credit {
margin-top: 2.1875em; }
footer .footer-main .card-credit .visa,
footer .footer-main .card-credit .mastercard {
background-repeat: no-repeat;
display: inline-block;
width: 70px;
vertical-align: middle; }
@media (max-width: 960px) {
footer .footer-main .card-credit {
margin-top: 0; } }
@media (max-width: 960px) {
footer .footer-copyright .flex.two .flex.two {
text-align: center; } }
@media (max-width: 960px) {
footer .footer-copyright .flex.two .col {
flex-basis: 100%;
max-width: 100%;
width: 100%;
text-align: left; } }
@media (max-width: 960px) {
footer .footer-copyright .flex.two .col .txt-right {
text-align: left;
padding-top: 1em; } }
@media (max-width: 480px) {
footer .footer-copyright .flex.two .col .txt-right a {
display: block; }
footer .footer-copyright .flex.two .col .txt-right a:nth-child(1) {
margin-bottom: 1em; } }
footer .footer-copyright .fb-icon {
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/facebook.svg); }
footer .footer-copyright .yt-icon {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/youtube.svg); }
footer .footer-copyright .fb-icon,
footer .footer-copyright .yt-icon {
background-repeat: no-repeat;
background-position: center center;
width: 25px;
height: 25px;
display: inline-block;
vertical-align: middle; }
footer .footer-copyright a small {
margin-left: .5em; }
footer .footer-copyright a:last-child {
margin-left: 1em; }
@media (max-width: 480px) {
footer .footer-copyright a:last-child {
margin-left: 0; } }
@media (max-width: 1170px) {
footer {
padding: 0 0 3em 0; } } .footer-comanda {
background: #fbfbfb;
padding: 3em 0 3em 0; }
.footer-comanda .flex.four {
align-items: center;
margin: 0 -.25em 0 -.25em; }
.footer-comanda .flex.four .col {
padding: 0 .25em; }
@media (max-width: 1170px) {
.footer-comanda .flex.four .col {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding-bottom: 1em; } }
@media (max-width: 640px) {
.footer-comanda .flex.four .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.footer-comanda .first {
margin-bottom: 1em; }
.footer-comanda .first p {
font-size: 1.125em;
color: #747474;
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
.footer-comanda .first p a {
color: #747474;
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
@media (max-width: 640px) {
.footer-comanda .first p {
font-size: 1em;
transition: all 0.4s; } }
.footer-comanda .four p.first-p {
width: 100%; }
.footer-comanda .four p {
width: 75%;
line-height: 1.2em; }
@media (max-width: 640px) {
.footer-comanda .four p {
width: 100%; } }
.footer-comanda .cp-box {
display: block; }
.footer-comanda .cp-box .cp-img,
.footer-comanda .cp-box .cp-txt {
display: inline-block;
vertical-align: middle; }
.footer-comanda .cp-box .cp-txt {
padding-left: 5px; }
.footer-comanda .cp-box .cp-txt p {
margin: 0;
letter-spacing: -.1em;
font-size: 0.938em; }
@media (max-width: 640px) {
.footer-comanda .cp-box .cp-txt p {
font-size: 1em;
letter-spacing: inherit;
transition: all 0.4s; } }
@media (max-width: 480px) {
.footer-comanda .cp-box .cp-txt p {
font-size: 0.938em; } }
@media (max-width: 480px) {
.footer-comanda .cp-box .cp-txt {
width: 75%; } }
.footer-comanda .cp-box .cp-img-1 i {
width: 51px;
height: 29px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/car.svg);
background-size: 51px 29px;
background-repeat: no-repeat;
background-position: center;
display: inline-block;
vertical-align: middle; }
.footer-comanda .cp-box .cp-img-2 i {
width: 43px;
height: 43px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/circle_star.svg);
background-repeat: no-repeat;
background-position: center;
vertical-align: middle; }
.footer-comanda .cp-box .cp-img-3 i {
width: 43px;
height: 43px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/circle_star.svg);
background-repeat: no-repeat;
background-position: center;
vertical-align: middle; }
.footer-comanda .cp-box .cp-img-4 i {
width: 43px;
height: 43px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/cog.svg);
background-repeat: no-repeat;
background-position: center;
vertical-align: middle; }
.footer-comanda .txt-right {
width: 100%;
margin-top: 4em; }
.footer-comanda .txt-right p {
margin: 0; }
@media (max-width: 480px) {
.footer-comanda .txt-right p {
font-size: 0.875em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.footer-comanda .txt-right {
text-align: left;
margin-top: 2em;
transition: all 0.4s; } }
.full-search {
position: fixed;
top: -100vh;
left: 0;
right: 0;
bottom: 0;
width: 100vw;
height: 100vh;
z-index: 5;
background: #ffffff;
padding: 2em;
-webkit-transition: all .2s;
-o-transition: all .2s;
transition: all .2s; }
.full-search .close {
display: inline-block;
width: 20px;
height: 20px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/close.svg) no-repeat center;
background-size: auto;
background-size: 20px 20px;
position: absolute;
top: 2em;
right: 2em; }
.full-search form {
max-width: 70%;
font-size: 130%;
margin: 0 auto;
position: relative; }
.full-search form input[type="text"],
.full-search form input[type="text"]:focus,
.full-search form input[type="search"],
.full-search form input[type="search"]:focus {
border-bottom: 1px solid #ccc;
padding-left: 2em;
min-width: 1px;
width: 100%; }
@media (max-width: 480px) {
.full-search form input[type="text"],
.full-search form input[type="text"]:focus,
.full-search form input[type="search"],
.full-search form input[type="search"]:focus {
padding-left: 1.5em; } }
@media (max-width: 480px) {
.full-search form input[type="text"]::placeholder,
.full-search form input[type="text"]:focus::placeholder,
.full-search form input[type="search"]::placeholder,
.full-search form input[type="search"]:focus::placeholder {
font-size: 0.875em; } }
@media (max-width: 640px) {
.full-search form {
max-width: 90%; } }
.full-search button {
background: none;
background: transparent;
padding: 0;
margin: 0;
min-height: auto;
border: 0;
position: absolute;
top: 1em;
left: 0; }
.full-search button i {
display: inline-block;
width: 20px;
height: 20px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/search_gray.svg) no-repeat center;
background-size: auto;
background-size: 20px 20px;
margin: 0; }
.full-search.active {
top: 0; }
.container-huge {
max-width: 1920px; }
.container-huge:before, .container-huge:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.container-huge:after {
clear: both; }
.container {
position: relative;
padding: 0 1em;
max-width: 1400px;
margin: 0 auto; }
.container.desktop {
max-width: 1170px; }
.container.small {
max-width: 960px; }
.content,
.padding-footer {
padding-bottom: 3em; }
@media (max-width: 640px) {
.content,
.padding-footer {
padding-bottom: 0; } }
.content.dark,
.padding-footer.dark {
padding-bottom: 0; }
.product {
padding-bottom: 0; }
.heading-line {
position: relative;
padding-top: 1.5em; }
.heading-line:before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
width: 3em;
height: .25em;
background: #3F3D3D; }
footer .heading-line:before,
.home .hero .heading-line:before {
background: #fff; }
.gallery-background {
width: 100%;
height: 15em;
background: #2E2B2B url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/jpg/galerie-background.png) no-repeat center;
background-size: cover;
position: relative; }
@media (max-width: 640px) {
.gallery-background {
height: 20em; } }
@media (max-width: 768px) {
.gallery-background {
height: 25em; } }
@media (max-width: 960px) {
.gallery-background {
height: 30em; } }
@media (max-width: 1170px) {
.gallery-background {
height: 35em; } }
.gallery-background-transition {
position: absolute;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 10em;
background: #3f3d3d;
background: -moz-linear-gradient(0deg, #2e2b2b 0%, rgba(63, 61, 61, 0) 100%);
background: -webkit-linear-gradient(0deg, #2e2b2b 0%, rgba(63, 61, 61, 0) 100%);
background: linear-gradient(0deg, #2e2b2b 0%, rgba(63, 61, 61, 0) 100%); }
.gallery-background-hero {
position: absolute;
top: 0;
left: 0; }
.letter-holder {
position: relative; }
.letter-holder .container {
position: relative;
z-index: 2; }
.letter {
position: absolute;
display: block;
max-width: 15em;
z-index: 1; }
@media (max-width: 768px) {
.letter {
max-width: 20em; } }
@media (max-width: 1170px) {
.letter {
max-width: 30em; } }
@media (max-width: 1400px) {
.letter {
max-width: 35em; } }
@media (max-width: 1920px) {
.letter {
max-width: 40em; } }
.letter.shadow {
-webkit-opacity: .25;
-moz-opacity: .25;
-ms-opacity: .25;
-o-opacity: .25;
opacity: .25; }
.letter-right .letter {
right: 1em; }
@media (max-width: 480px) {
.letter-right .letter {
right: 2em; } }
@media (max-width: 640px) {
.letter-right .letter {
right: 3em; } }
@media (max-width: 768px) {
.letter-right .letter {
right: 4em; } }
.letter-left .letter {
left: 1em; }
@media (max-width: 480px) {
.letter-left .letter {
left: 2em; } }
@media (max-width: 640px) {
.letter-left .letter {
left: 3em; } }
@media (max-width: 768px) {
.letter-left .letter {
left: 4em; } }
@media (max-width: 960px) {
.letter-left .letter {
left: 5em; } }
.letter-top .letter {
top: 2em; }
@media (max-width: 480px) {
.letter-top .letter {
top: 3em; } }
@media (max-width: 768px) {
.letter-top.hero .letter, .letter-top.contact .letter, .letter-top.menu .letter, .letter-top.saloon .letter {
top: 7em; } }
@media (max-width: 960px) {
.letter-top.hero .letter, .letter-top.contact .letter, .letter-top.menu .letter, .letter-top.saloon .letter {
top: 9em; } }
.letter-bottom .letter {
bottom: 2em; }
@media (max-width: 480px) {
.letter-bottom .letter {
bottom: 3em; } }
.hero {
padding-top: 3em; }
@media (max-width: 1170px) {
.hero {
padding-top: 0; } }
.hero .flex {
margin: 0 -.25em; }
.hero .col {
padding: 0 .25em; }
.hero .first .col:nth-child(1) {
flex-basis: 65%;
max-width: 65%;
width: 65%; }
@media (max-width: 768px) {
.hero .first .col:nth-child(1) {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.hero .first .col:nth-child(2) {
flex-basis: 35%;
max-width: 35%;
width: 35%; }
@media (max-width: 768px) {
.hero .first .col:nth-child(2) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
padding-top: .5em; }
.hero .first .col:nth-child(2) .other-images {
width: 50%;
float: left; }
.hero .first .col:nth-child(2) .other-images:nth-child(2) {
width: 48%;
float: left;
margin-left: 2%;
margin-top: 0; } }
@media (max-width: 640px) {
.hero .first .col:nth-child(2) .other-images,
.hero .first .col:nth-child(2) .other-images:nth-child(2) {
width: 100%;
margin-left: 0;
float: none; }
.hero .first .col:nth-child(2) .other-images:nth-child(2) {
margin-top: .5em; } }
.hero .first .col:nth-child(3) {
flex-basis: 35%;
max-width: 35%;
width: 35%; }
.hero .first .col:nth-child(3) .other-images {
margin-top: .5em; }
.hero .first .other-images:last-child {
margin-top: .5em; }
.hero .second {
padding-top: .5em; }
@media (min-width: 480px) and (max-width: 768px) {
.hero .second {
padding-top: .5em; } }
.hero .second .col:nth-child(1) {
flex-basis: 32.5%;
max-width: 32.5%;
width: 32.5%; }
.hero .second .col:nth-child(2) {
flex-basis: 32.5%;
max-width: 32.5%;
width: 32.5%; }
.hero .second .col:nth-child(3) {
flex-basis: 35%;
max-width: 35%;
width: 35%; }
@media (max-width: 768px) {
.hero .three .col:nth-child(1) {
flex-basis: 100%;
max-width: 100%;
width: 100%; }
.hero .three .col:nth-child(2) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-top: .5em; }
.hero .three .col:nth-child(3) {
margin-top: .5em;
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.hero ul:before, .hero ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.hero ul:after {
clear: both; }
.hero ul li {
float: left;
margin-left: 0.5em; }
.hero ul li:first-child {
margin: 0; }
.hero .main-image {
position: relative;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/jpg/mobila-1.jpg);
background-size: cover;
background-repeat: no-repeat;
height: 538px; }
@media (min-width: 768px) and (max-width: 960px) {
.hero .main-image {
height: 450px;
transition: all 0.4s; } }
@media (max-width: 640px) {
.hero .main-image {
height: 400px;
transition: all 0.4s; } }
@media (max-width: 600px) {
.hero .main-image {
height: 380px;
transition: all 0.4s; } }
@media (max-width: 480px) {
.hero .main-image {
height: 300px;
transition: all 0.4s; } }
.hero .main-image .image-text {
position: relative;
z-index: 1; }
.hero .main-image .image-text h2 {
font-family: "MarkProBold";
font-size: 3em;
text-transform: uppercase;
color: #ffffff;
max-width: 12em;
margin: 0 auto;
padding-bottom: 1em; }
@media (max-width: 1170px) {
.hero .main-image .image-text h2 {
font-size: 2.5em;
transition: all 0.4s; } }
@media (max-width: 960px) {
.hero .main-image .image-text h2 {
font-size: 2em;
transition: all 0.4s; } }
.hero .main-image:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); }
.hero .other-images {
position: relative;
background-size: cover;
background-repeat: no-repeat;
height: 265px; }
@media (min-width: 768px) and (max-width: 960px) {
.hero .other-images {
height: 221px;
transition: all 0.4s; } }
.hero .other-images:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)); }
.hero .other-images .image-text {
width: 90%;
height: 90%;
position: relative;
box-sizing: border-box;
text-align: center;
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
border: 1px solid transparent;
position: relative;
z-index: 1; }
.hero .other-images .image-text:hover {
border: 1.3px solid #ffffff;
transition: all 0.4s; }
.hero .other-images .image-text .inner {
width: 100%;
position: absolute;
top: 50%;
transform: translateY(-50%); }
.hero .other-images .image-text .inner h6 {
font-size: 1.750em;
color: #ffffff;
text-transform: capitalize; }
@media (max-width: 1170px) {
.hero .other-images .image-text .inner h6 {
font-size: 1.5em;
transition: all 0.4s; } }
@media (max-width: 960px) {
.hero .other-images .image-text .inner h6 {
font-size: 1.25em;
transition: all 0.4s; } }
.hero .other-images .image-text .btn-descopera {
padding: .7em 1.5em;
font-family: "MarkPro", Helvetica, Arial, sans-serif; }
.hero .second .other-images .image-text .inner {
width: auto;
position: absolute;
bottom: 1em;
left: 1em;
text-align: left;
top: auto;
transform: none; }
.hero .second .other-images .image-text .inner h6 {
margin: 0;
line-height: 1em;
display: inline-block; }
@media (max-width: 960px) {
.hero .second .other-images .image-text .inner h6 {
font-size: 1.25em; } }
.hero .second .other-images .image-text .inner .arrow-right {
display: inline-block;
width: 26px;
height: 14px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/hero_arrow.svg);
background-size: 26px 14px;
background-repeat: no-repeat;
background-position: center; }
.hero .second .other-images .image-text .inner h6:hover + .arrow-right {
margin-left: 2em;
transition: all 0.4s; }
@media (max-width: 640px) {
.hero .second .other-images .image-text .inner {
bottom: 2em; } }
.recently-added {
padding-top: 3em; }
.recently-added .flex {
margin: 0 -.5em; }
.recently-added .col {
padding: 0 .5em; }
.recently-added .item a {
display: block; }
.recently-added .recently-added-title {
padding-bottom: 1em; }
.recently-added .recently-added-title span {
display: none;
font-size: 1.8em;
text-transform: uppercase; }
@media (max-width: 480px) {
.recently-added .recently-added-title span {
display: inline-block; } }
.recently-added .recently-added-title h2 {
font-size: 1.625em;
text-transform: uppercase; }
@media (max-width: 480px) {
.recently-added .recently-added-title h2 {
display: none; } }
.recently-added .product-box {
text-align: left; }
.recently-added .product-box img {
padding-bottom: 1.563em; }
.recently-added .product-box h6 {
font-size: 1.375em;
color: #2e2e2e;
line-height: 30px;
margin-bottom: 1em; }
@media (max-width: 1400px) {
.recently-added .product-box h6 {
font-size: 1.125em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.recently-added .product-box h6 {
font-size: 1em; } }
.recently-added .product-box small {
font-family: "MarkProBold";
color: #999999;
text-transform: uppercase; }
.recently-added .owl-nav {
position: absolute;
top: -5.5em;
right: 0; }
@media (max-width: 480px) {
.recently-added .owl-nav {
top: -4.25em;
transition: all 0.4s; } }
.mobilier-la-comanda {
margin-top: 3em;
padding: 7.188em 0;
background: #f8f8f8; }
.mobilier-la-comanda h2 {
font-size: 2.125em; }
@media (max-width: 768px) {
.mobilier-la-comanda h2 {
font-size: 1.625em;
transition: all 0.4s; } }
@media (max-width: 480px) {
.mobilier-la-comanda h2 {
font-size: 1.750em;
transition: all 0.4s; } }
.mobilier-la-comanda p {
max-width: 640px;
margin: 0 auto;
color: #9e9e9e; }
@media (max-width: 768px) {
.mobilier-la-comanda p {
padding: 0 1em;
font-size: 1em;
transition: all 0.4s; } }
.mobilier-la-comanda .video-slideshow {
margin-bottom: 4em;
max-width: 745px;
margin: 5em auto 3em auto; }
@media (max-width: 768px) {
.mobilier-la-comanda .video-slideshow {
margin: 1em auto;
transition: all 0.4s; } }
.mobilier-la-comanda .video-slideshow .item {
max-width: 450px;
margin: 0 auto; }
.mobilier-la-comanda .video-slideshow .item a .yt-box {
position: relative; }
.mobilier-la-comanda .video-slideshow .item a .yt-box img {
margin-bottom: 1.2em; }
.mobilier-la-comanda .video-slideshow .item a .yt-box .play-video-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%; }
.mobilier-la-comanda .video-slideshow .item a .yt-box .play-video-btn img {
margin: 0 auto;
width: 100%;
height: 100px; }
.mobilier-la-comanda .video-slideshow .item p {
color: #2e2e2e; }
.mobilier-la-comanda .video-slideshow .owl-prev {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
height: 50px;
left: 0;
display: block; }
.mobilier-la-comanda .video-slideshow .owl-next {
position: absolute;
top: 0;
bottom: 0;
right: 0;
margin: auto;
height: 50px; }
.mobilier-la-comanda .youtube-txt p {
color: #2e2e2e; }
.mobilier-la-comanda .youtube-txt p .yt-icon-yellow {
width: 50px;
height: 40px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/youtube_yellow.svg);
background-size: 50px 40px;
background-repeat: no-repeat;
display: inline-block;
vertical-align: middle;
margin-left: .5em; }
@media (max-width: 480px) {
.mobilier-la-comanda .youtube-txt p .yt-icon-yellow {
display: block;
margin: .5em auto 0 auto;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.mobilier-la-comanda {
padding: 3em 0;
margin: 1em 0 0 0; } }
@media (max-width: 768px) {
.mobilier-la-comanda {
padding: 2em 0;
transition: all 0.4s; } }
.categorii-produse {
padding-top: 3em; }
@media (max-width: 960px) {
.categorii-produse {
padding: 2em 0 0 0; } }
.categorii-produse .flex.three {
margin: 0 -.25em; }
.categorii-produse .flex.three .col {
padding: 0 .25em; }
@media (max-width: 960px) {
.categorii-produse .flex.three .col {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding-bottom: .5em; } }
@media (max-width: 768px) {
.categorii-produse .flex.three .col {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding-bottom: .5em; } }
@media (max-width: 640px) {
.categorii-produse .flex.three .col {
flex-basis: 100%;
max-width: 100%;
width: 100%;
padding-bottom: .5em; } }
.reclama {
padding: 5em 0 0 0;
text-align: center; }
@media (max-width: 960px) {
.reclama {
padding: 2em 0 0 0;
transition: all 0.4s; } }
.testimonials {
margin: 6.25em 0 0 0;
padding: 5.625em 0 0 0;
background: #f8f8f8; }
.testimonials .item {
max-width: 1024px;
margin: 0 auto; }
@media (max-width: 1200px) {
.testimonials .item {
width: 100%;
max-width: 100%; } }
.testimonials .item .testimonials-txt {
padding: 1em 0 2em 2em;
text-align: left; }
.testimonials .item .testimonials-txt h6 {
margin-bottom: 3em;
font-family: "MarkProMedium";
font-size: 1em;
text-transform: uppercase;
padding-right: 6em; }
@media (max-width: 1400px) {
.testimonials .item .testimonials-txt h6 {
margin-bottom: 1em; } }
@media (max-width: 960px) {
.testimonials .item .testimonials-txt h6 {
padding-right: 0;
transition: all 0.4s; } }
.testimonials .item .testimonials-txt p {
font-size: 1.375em;
color: #8a8a8a; }
@media (max-width: 1400px) {
.testimonials .item .testimonials-txt p {
font-size: 1em; } }
@media (max-width: 960px) {
.testimonials .item .testimonials-txt {
padding: 0;
transition: all 0.4s; } }
@media (max-width: 640px) {
.testimonials .item .testimonials-txt {
padding-top: 1em;
transition: all 0.4s; } }
.testimonials .owl-prev {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
height: 50px;
left: 0;
display: block; }
.testimonials .owl-next {
position: absolute;
top: 0;
bottom: 0;
right: 0;
margin: auto;
height: 50px; }
@media (max-width: 960px) {
.testimonials {
margin: 3em 0 0 0; } }
@media (max-width: 640px) {
.testimonials {
padding: 3em 0 0 0; } }
body footer {
padding: 3em 0; }
.ovh {
overflow: hidden; }
.txt-center {
text-align: center; }
.txt-right {
text-align: right; } .video-wrapper {
padding-bottom: 1em; }
@media (max-width: 640px) {
.video-wrapper {
position: relative;
padding-bottom: 56.25%; padding-top: 25px;
height: 0;
margin-bottom: 1em; }
.video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; } }
.other-images-second {
position: relative;
background-size: cover;
background-repeat: no-repeat;
height: 265px; }
.other-images-second:before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: -moz-linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
background: -webkit-linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)); }
.other-images-second .image-text {
width: 90%;
height: 90%;
position: relative;
box-sizing: border-box;
text-align: center;
margin: 0 auto;
top: 50%;
transform: translateY(-50%);
border: 1px solid transparent;
position: relative;
z-index: 1; }
.other-images-second .image-text:hover {
border: 1.3px solid #ffffff;
transition: all 0.4s; }
.other-images-second .image-text .inner {
width: auto;
position: absolute;
bottom: 1em;
left: 1em;
text-align: left;
top: unset;
transform: none; }
.other-images-second .image-text .inner h6 {
font-size: 1.750em;
color: #ffffff;
margin: 0;
line-height: 1em;
display: inline-block; }
@media (max-width: 960px) {
.other-images-second .image-text .inner h6 {
font-size: 1.250em;
transition: all 0.4s; } }
.other-images-second .image-text .inner .arrow-right {
display: inline-block;
width: 26px;
height: 14px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/hero_arrow.svg);
background-size: 26px 14px;
background-repeat: no-repeat;
vertical-align: bottom; }
.other-images-second .image-text .inner h6:hover + .arrow-right {
margin-left: 2em;
transition: all 0.4s; }
.other-images-second .image-text .btn-descopera {
padding: .7em 1.5em;
font-family: "MarkPro", Helvetica, Arial, sans-serif; }
.linkuri-utile {
padding: 6.25em 0; }
.linkuri-utile .lu-wrapper h2 {
padding-bottom: 2em;
text-transform: uppercase; }
@media (max-width: 960px) {
.linkuri-utile .lu-wrapper h2 {
padding-bottom: 0;
transition: all 0.4s; } }
.linkuri-utile .lu-wrapper .lu-list {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
margin: 0 -.5em 0 -.5em; }
.linkuri-utile .lu-wrapper .lu-list li {
order: 0;
flex-grow: 0;
flex-basis: 25%;
max-width: 100%;
width: 100%;
padding: .5em;
min-width: 0; }
@media (max-width: 960px) {
.linkuri-utile .lu-wrapper .lu-list li {
flex-basis: 33.33%; } }
@media (max-width: 640px) {
.linkuri-utile .lu-wrapper .lu-list li {
flex-basis: 50%; } }
@media (max-width: 380px) {
.linkuri-utile .lu-wrapper .lu-list li {
flex-basis: 100%; } }
.linkuri-utile .lu-wrapper .lu-list li a {
background: #f8f8f8;
display: block;
padding: 1em;
text-transform: lowercase;
border-radius: 3px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap; }
.linkuri-utile .lu-wrapper .lu-list li a::first-letter {
text-transform: uppercase; }
@media (max-width: 768px) {
.linkuri-utile .lu-wrapper .lu-list li a {
font-size: 0.875em; } }
@media (max-width: 640px) {
.linkuri-utile .lu-wrapper .lu-list li a {
font-size: 1em; } }
@media (max-width: 1170px) {
.linkuri-utile {
padding: 3em 0; } } .owl-prev-arrow,
.owl-next-arrow {
background-repeat: no-repeat;
width: 50px;
height: 50px;
display: inline-block; }
.owl-prev-arrow {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/circle_arrow_left.svg);
background-repeat: no-repeat; }
.owl-next-arrow {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/circle_arrow_right.svg);
background-repeat: no-repeat;
margin-left: 1.5em; }
button.owl-prev,
button.owl-next {
outline: none; }
.owl-prev-product-arrow,
.owl-next-product-arrow {
width: 25px;
height: 25px;
display: inline-block; }
.owl-prev-product-arrow {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/circle_arrow_left_small.svg);
background-repeat: no-repeat;
background-position: center;
background-size: 25px 25px; }
.owl-next-product-arrow {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/circle_arrow_right_small.svg);
background-repeat: no-repeat;
background-position: center;
background-size: 25px 25px; } .breadcrumbs {
padding: 3em 0; }
.breadcrumbs nav ul:before, .breadcrumbs nav ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.breadcrumbs nav ul:after {
clear: both; }
.breadcrumbs nav ul li {
float: left;
margin-left: 0.5em; }
.breadcrumbs nav ul li:first-child {
margin: 0; }
.breadcrumbs nav ul li {
margin-left: 0;
margin-right: 1em; }
@media (max-width: 640px) {
.breadcrumbs nav ul li a {
font-size: 0.875em;
transition: all 0.4s; } }
.breadcrumbs nav ul li:first-child:before {
background: 0 0;
width: 0;
height: 0;
margin-right: 0; }
.breadcrumbs nav ul li:before {
content: " ";
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/right_dark.svg);
background-repeat: no-repeat;
background-size: 6px 11px;
width: 16px;
height: 16px;
display: inline-block;
margin-right: 10px;
position: relative;
top: 6px; }
@media (max-width: 640px) {
.breadcrumbs nav ul li:last-child {
font-size: 0.875em; } }
.breadcrumbs nav ul li:first-child {
margin-right: 1em; }
@media (max-width: 1170px) {
.breadcrumbs {
padding: 1.5em 0;
transition: all 0.4s; } } .general-page {
background: #ffffff; }
@media (max-width: 1170px) {
.general-page .content-general .wrap-general {
padding-bottom: 3em; } }
.general-page .content-general .wrap-general h1 {
font-size: 2.125em;
font-family: "MarkProMedium";
margin-bottom: 2em; }
@media (max-width: 1170px) {
.general-page .content-general .wrap-general h1 {
margin-bottom: 1em;
transition: all 0.4s; } }
@media (max-width: 960px) {
.general-page .content-general .wrap-general h1 {
font-size: 1.750em;
transition: all 0.4s; } }
@media (max-width: 768px) {
.general-page .content-general .wrap-general h1 {
font-size: 1.375em;
transition: all 0.4s; } }
.general-page .content-general .wrap-general .flex .col:nth-child(1) {
flex-basis: 65%;
max-width: 65%;
width: 65%; }
@media (max-width: 960px) {
.general-page .content-general .wrap-general .flex .col:nth-child(1) {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.general-page .content-general .wrap-general .flex .col:nth-child(2) {
flex-basis: 35%;
max-width: 35%;
width: 35%; }
@media (max-width: 960px) {
.general-page .content-general .wrap-general .flex .col:nth-child(2) {
display: none; } }
.general-page .content-general .general-content {
color: #2e2e2e;
padding-right: 2.5em; }
@media (max-width: 1400px) {
.general-page .content-general .general-content {
padding-right: 0; } }
.general-page .content-general .general-content p {
margin: 0 0 1.5em; }
.general-page .content-general .general-content ol {
list-style: decimal; }
.general-page .content-general .general-content ul {
list-style: disc; }
.general-page .content-general .general-content ol,
.general-page .content-general .general-content ul {
margin: 0 0 1.5em;
padding-left: 4em; }
@media (max-width: 768px) {
.general-page .content-general .general-content ol,
.general-page .content-general .general-content ul {
padding-left: 1em;
transition: all 0.4s; } }
.general-page .content-general .general-aside-support {
background: #747474;
color: #ffffff;
padding: 2em; }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-support {
padding: 1em;
transition: all 0.4s; } }
.general-page .content-general .general-aside-support form {
position: relative;
margin-bottom: 2em; }
.general-page .content-general .general-aside-support form input[type="text"] {
background: #ffffff;
padding-left: 3.5em;
max-width: 100%;
border: 0;
min-width: 100%;
height: 50px; }
.general-page .content-general .general-aside-support form button {
background: none;
position: absolute;
top: .6em;
left: 1em; }
.general-page .content-general .general-aside-support form button i {
display: inline-block;
width: 24px;
height: 24px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/search_gray.svg) no-repeat center;
background-size: 24px 24px; }
.general-page .content-general .general-aside-support h3 {
color: #ffffff;
text-transform: inherit;
font-size: 1.500em; }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-support h3 {
margin: 0; } }
.general-page .content-general .general-aside-support span.links {
float: right; }
@media (max-width: 1400px) {
.general-page .content-general .general-aside-support span.links {
float: none;
transition: all 0.4s; } }
@media (max-width: 1024px) {
.general-page .content-general .general-aside-support span.links {
font-size: 0.875em;
transition: all 0.4s; } }
.general-page .content-general .general-aside-support span {
text-transform: capitalize; }
.general-page .content-general .general-aside-support span a {
text-transform: none; }
.general-page .content-general .general-aside-support .general-aside-support-icons {
margin-top: 1.3em; }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-support .general-aside-support-icons {
margin-top: 0; } }
.general-page .content-general .general-aside-support .general-aside-support-icons ul {
display: flex;
flex-wrap: wrap; }
.general-page .content-general .general-aside-support .general-aside-support-icons ul li {
position: relative;
padding-left: 2.5em;
padding-right: .5em; }
.general-page .content-general .general-aside-support .general-aside-support-icons ul li a {
line-height: 1.3em; }
@media (max-width: 1400px) {
.general-page .content-general .general-aside-support .general-aside-support-icons ul li {
padding-left: 2em;
transition: all 0.4s; } }
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(1) {
flex-basis: 47%;
max-width: 47%;
width: 47%; }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(1) {
display: none; } }
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(2) {
flex-basis: 47%;
max-width: 47%;
width: 47%; }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(2) {
display: none; } }
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(2) i {
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/info-consultant-white.svg); }
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(3) {
flex-basis: 6%;
max-width: 6%;
width: 6%;
padding-left: 0;
padding-right: 0;
text-align: right; }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(3) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
text-align: left; } }
.general-page .content-general .general-aside-support .general-aside-support-icons ul li:nth-child(3) a {
display: inline-block;
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/facebook_circle_white.svg) no-repeat center;
background-size: 30px 30px; }
@media (max-width: 1400px) {
.general-page .content-general .general-aside-support .general-aside-support-icons ul li small strong {
display: block; } }
.general-page .content-general .general-aside-support .general-aside-support-icons i {
display: inline-block;
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/info-phone-white.svg) no-repeat center;
background-size: 30px 30px;
vertical-align: middle;
position: absolute;
top: 0;
left: 0; }
@media (max-width: 1400px) {
.general-page .content-general .general-aside-support .general-aside-support-icons i {
width: 25px;
height: 25px;
background-size: 25px 25px; } }
.general-page .content-general .general-aside-links {
background: #f7f7f7;
padding: 2em;
margin-top: 2em; }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-links {
padding: 1em; } }
@media (max-width: 1170px) {
.general-page .content-general .general-aside-links h3 {
margin: 0; } }
.general-page .content-general .general-aside-links ul {
margin-bottom: -.5em; }
.general-page .content-general .general-aside-links .bordered-list li {
position: relative;
border-top: 1px solid #e6e6e6;
padding-top: 0.5em;
padding-bottom: 0.5em; }
.general-page .content-general .general-aside-links .bordered-list li:first-child {
border: 0; }
@media (max-width: 1024px) {
.general-page .content-general .general-aside-links .bordered-list a {
font-size: 0.875em;
transition: all 0.4s; } }
.general-page .content-general .general-aside-links i {
display: inline-block;
width: 16px;
height: 9px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/arrow_right_aside.svg) no-repeat center;
background-size: 16px 9px;
position: absolute;
top: 1em;
right: 0;
opacity: 0.4; }
.general-page .bordered-list {
padding-top: 0.5em;
padding-bottom: 0.5em; }
.general-page .bordered-list li {
position: relative;
border-top: 1px solid #ffffff;
border-top-color: rgba(255, 255, 255, 0.1);
padding-top: 0.5em;
padding-bottom: 0.5em; }
.general-page .bordered-list li:first-child {
border: 0; }
.general-page .bordered-list li:nth-child(3) span:nth-child(2) {
float: right; }
.general-page .linkuri-utile {
padding: 0 0 6.25em 0;
background: #ffffff; }
@media (max-width: 1170px) {
.general-page .linkuri-utile {
padding: 0 0 3em 0;
transition: all 0.4s; } }
.gray {
background: #f8f8f8; } .comanda-plasata {
background: #ffffff; }
.comanda-plasata .comanda-plasata-wrapper {
max-width: 575px;
margin: 0 auto;
padding: 4.5em 0 7.5em 0; }
.comanda-plasata .comanda-plasata-wrapper h3 {
font-size: 1.5em;
text-transform: none; }
@media (max-width: 768px) {
.comanda-plasata .comanda-plasata-wrapper h3 {
font-size: 1.25em;
transition: all 0.4s; } }
.comanda-plasata .comanda-plasata-wrapper h1 {
font-size: 2.625em; }
@media (max-width: 768px) {
.comanda-plasata .comanda-plasata-wrapper h1 {
font-size: 1.750em;
transition: all 0.4s; } }
.comanda-plasata .comanda-plasata-wrapper p {
font-size: 1em;
transition: all 0.4s; }
.comanda-plasata .comanda-plasata-wrapper .btn-continue {
margin-top: 5em;
color: #ffffff;
padding: .75em 2em;
background: #ffd033; }
@media (max-width: 1170px) {
.comanda-plasata .comanda-plasata-wrapper .btn-continue {
margin-top: 1em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.comanda-plasata .comanda-plasata-wrapper {
padding: 3em .75em 3em .75em; } } .mc-checkout-radio {
display: inline-block;
position: relative;
padding-left: 30px;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.mc-checkout-radio input {
position: absolute;
display: none;
cursor: pointer; }
.mc-checkout-radio .checkmark {
position: absolute;
top: 5px;
left: 0;
height: 15px;
width: 15px;
background-color: #ffffff;
border: 1px solid #ccc;
border-radius: 50%; }
.mc-checkout-radio input:checked ~ .checkmark {
background: #ffd033; } #id-shipping-form {
display: none; }
.mc-terms-and-conditions {
margin-top: -0.2em;
margin-bottom: 1.5em;
line-height: 1.3; }
.mc-terms-and-conditions #terms {
display: inline-block; }
.mc-terms-and-conditions #terms:before {
position: relative;
display: block;
width: 15px;
height: 15px;
content: "";
background: #ffffff; }
.mc-terms-and-conditions #terms:after {
position: relative;
display: block;
left: 0px;
top: -15px;
width: 15px;
height: 15px;
content: ""; }
.mc-terms-and-conditions #terms[type="checkbox"]:checked:after {
background: #56ba3e; }
.mc-terms-and-conditions .id-terms-text {
float: right;
width: 85%;
font-size: 1em; } .product-box .results-item {
text-align: left;
margin-bottom: 2em; }
.product-box .results-item .results-item-image {
display: block;
position: relative;
margin-bottom: 1.5em; }
@media (max-width: 1170px) {
.product-box .results-item .results-item-image {
margin-bottom: .75em;
transition: all 0.4s; } }
.product-box .results-item .results-item-image img {
display: block;
margin: 0 auto; }
.product-box .results-item .results-item-discount {
position: absolute;
top: 1em;
right: 1em;
background: #ffeeb4;
width: 60px;
height: 60px;
display: table;
color: white;
text-align: center;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
.product-box .results-item .results-item-discount span {
color: #2e2e2e;
font-size: 1.188em;
font-family: "MarkProBold";
display: table-cell;
vertical-align: middle; }
@media (max-width: 1170px) {
.product-box .results-item .results-item-discount span {
font-size: 1em;
transition: all 0.4s; } }
@media (max-width: 640px) {
.product-box .results-item .results-item-discount span {
font-size: .875em;
transition: all 0.4s; } }
.product-box .results-item .results-item-title {
text-align: left;
font-size: 1.188em;
line-height: 1.3em;
margin-bottom: 1em; }
@media (max-width: 1170px) {
.product-box .results-item .results-item-title {
font-size: 1em;
margin-bottom: 0;
transition: all 0.4s; } }
@media (max-width: 960px) {
.product-box .results-item .results-item-title {
font-size: 0.875em;
transition: all 0.4s; } }
.product-box .results-item .results-item-price {
display: block; }
.product-box .results-item .results-item-price .results-item-stock {
display: inline-block; }
@media (max-width: 1170px) {
.product-box .results-item .results-item-price .results-item-stock {
display: block; } }
.product-box .results-item .results-item-price .results-item-stock .status-in-stock {
color: #56ba3e; }
.product-box .results-item .results-item-price .results-item-stock .status-order {
color: #e69c25; }
.product-box .results-item .results-item-price .price {
float: right; }
@media (max-width: 1170px) {
.product-box .results-item .results-item-price .price {
float: none;
display: block;
transition: all 0.4s; } }
.product-box .results-item .results-item-price .price .sale-price,
.product-box .results-item .results-item-price .price .regular-price,
.product-box .results-item .results-item-price .price .sale-info {
font-family: "MarkProBold";
font-size: 0.875em;
color: #858585; }
.product-box .results-item .results-item-price .price .sale-price {
color: #a8a8a8; }
.product-box .results-item .results-item-price .price .sale-info {
color: #747474; }
@media (max-width: 960px) {
.product-box .results-item .results-item-price {
font-size: 0.875em;
transition: all 0.4s; } } .owl-stage-outer {
text-align: center; } .zoomContainer {
z-index: 2;
pointer-events: none; }
.zoomLens {
width: 50px !important;
height: 50px !important;
z-index: 0 !important; } .results-item {
text-align: left;
margin-bottom: 2em; }
.results-item .results-item-image {
display: block;
position: relative;
margin-bottom: 1.5em; }
.results-item .results-item-discount {
position: absolute;
top: 1em;
right: 1em;
background: #ffeeb4;
width: 70px;
height: 70px;
display: table;
color: white;
text-align: center;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
.results-item .results-item-discount span {
color: #2e2e2e;
font-size: 1.188em;
font-family: "MarkProBold";
display: table-cell;
vertical-align: middle; }
@media (max-width: 1170px) {
.results-item .results-item-discount span {
font-size: 1em;
transition: all 0.4s; } }
@media (max-width: 640px) {
.results-item .results-item-discount span {
font-size: .875em;
transition: all 0.4s; } }
.results-item .results-item-title {
text-align: left;
font-size: 1.188em;
line-height: 1.3em;
margin-bottom: 1em; }
.results-item .results-item-price {
display: block; }
.results-item .results-item-price .results-item-stock {
display: inline-block; }
.results-item .results-item-price .results-item-stock .status-in-stock {
color: #56ba3e; }
.results-item .results-item-price .results-item-stock .status-order {
color: #e69c25; }
.results-item .results-item-price .price {
float: right; }
.results-item .results-item-price .price .sale-price,
.results-item .results-item-price .price .regular-price {
font-family: "MarkProBold";
font-size: 0.875em;
color: #858585; }
.results-item .results-item-price .price .sale-price {
color: #a8a8a8; } .range {
width: 100%;
float: left; }
.range .range-value {
margin: 0; }
.range .range-value input {
width: 100%;
background: none;
color: #2e2e2e;
font-size: 16px;
font-weight: initial;
box-shadow: none;
border: none;
margin: 20px 0 20px 0; }
.range .range-bar {
border: none;
background: #e0e0e0;
height: 3px;
width: 96%;
margin-left: 8px; }
.range .range-bar .ui-slider-range {
background: #ffd033; }
.range .range-bar .ui-slider-handle {
border: none;
border-radius: 25px;
background: #2e2e2e;
height: 17px;
width: 17px;
top: -0.52em;
cursor: pointer; }
.range .range-bar .ui-slider-handle + span {
background: #2e2e2e; } .body_overlay {
position: fixed;
height: 100%;
width: 100%;
background: #000;
background: rgba(0, 0, 0, 0.65);
left: 0;
top: 0;
z-index: 4; }
.no-comments {
margin: 3em 0; } ul.tabs-product li {
float: left;
cursor: pointer;
color: #ccc;
overflow: hidden;
position: relative; }
ul.tabs-product li h2 {
font-size: 1.625em;
font-family: "MarkProMedium"; }
@media (max-width: 480px) {
ul.tabs-product li h2 {
font-size: 1.250em; } }
ul.tabs-product li:nth-child(2) {
margin-left: 2em; }
ul.tabs-product li.active {
border-bottom: 1px solid #2e2e2e;
display: block; }
.tab_container {
overflow: auto; }
.tab_content {
padding: 2em 0; }
.tab_content table {
width: 100%;
table-layout: fixed; }
.tab_content table td {
padding: 1em;
width: 50%;
border: 1px solid #ccc; }
.tab_content .info-delivery {
margin-top: 2em; }
.tab_drawer_heading {
display: none; }
@media screen and (max-width: 480px) {
.tab_drawer_heading {
background-color: #ccc;
color: #fff;
border-top: 1px solid #333;
margin: 0;
padding: 5px 20px;
display: block;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.d_active {
background-color: #666;
color: #fff; } } #popup-in-cos {
position: fixed;
max-width: 600px;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #ffffff;
padding: 2em;
z-index: 5; }
#popup-in-cos .product-added h2 {
font-family: "MarkProMedium";
color: #747474;
padding-right: 1em; }
#popup-in-cos .product-added .img,
#popup-in-cos .product-added .title,
#popup-in-cos .product-added .price-holder {
display: inline-block;
vertical-align: middle; }
#popup-in-cos .product-added .img {
width: 3.125em; }
#popup-in-cos .product-added .title {
padding-left: .75em;
width: 55%; }
#popup-in-cos .product-added .price-holder {
margin-left: .5em; }
#popup-in-cos .product-added .price-holder .pret,
#popup-in-cos .product-added .price-holder .pret-redus {
display: inline-block; }
#popup-in-cos .product-added .price-holder .pret-redus {
font-size: 1.375em; }
#popup-in-cos .product-added .continua-wrap {
clear: both;
text-align: right;
padding-top: 2em; }
#popup-in-cos .product-added .fancybox-close {
position: absolute;
top: 2.2em;
right: 2em;
width: 20px;
height: 20px; }
#popup-in-cos .product-added .fancybox-close i {
width: 20px;
height: 20px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/close.svg);
background-size: 20px 20px;
background-repeat: no-repeat;
background-position: center center; }
@media (max-width: 600px) {
#popup-in-cos .product-added {
text-align: center; }
#popup-in-cos .product-added h2 {
text-align: left;
font-size: 1.25em; }
#popup-in-cos .product-added .img,
#popup-in-cos .product-added .title,
#popup-in-cos .product-added .price-holder {
display: block;
margin-bottom: .5em;
padding-left: 0;
margin-left: 0; }
#popup-in-cos .product-added .title {
width: 100%; }
#popup-in-cos .product-added .continua-wrap a {
display: block;
width: 100%;
text-align: center;
margin-left: 0; }
#popup-in-cos .product-added .continua-wrap a:first-child {
margin-bottom: 1em; } } #popup-material,
#popup-culoare {
position: fixed;
max-width: 600px;
width: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: #ffffff;
padding: 2em;
z-index: 5; }
#popup-material .product-added h2,
#popup-culoare .product-added h2 {
font-family: "MarkProMedium";
color: #747474; }
#popup-material .product-added .img,
#popup-material .product-added .title,
#popup-material .product-added .price-holder,
#popup-culoare .product-added .img,
#popup-culoare .product-added .title,
#popup-culoare .product-added .price-holder {
display: inline-block;
vertical-align: middle; }
#popup-material .product-added .title,
#popup-culoare .product-added .title {
padding-left: .75em;
width: 55%; }
#popup-material .product-added .price-holder,
#popup-culoare .product-added .price-holder {
margin-left: .5em; }
#popup-material .product-added .price-holder .pret,
#popup-material .product-added .price-holder .pret-redus,
#popup-culoare .product-added .price-holder .pret,
#popup-culoare .product-added .price-holder .pret-redus {
display: inline-block; }
#popup-material .product-added .price-holder .pret-redus,
#popup-culoare .product-added .price-holder .pret-redus {
font-size: 1.375em; }
#popup-material .product-added .continua-wrap,
#popup-culoare .product-added .continua-wrap {
clear: both;
text-align: right;
padding-top: 2em; }
@media (max-width: 960px) {
#popup-material .product-added .continua-wrap,
#popup-culoare .product-added .continua-wrap {
padding-top: 0; } }
#popup-material .product-added .fancybox-close,
#popup-culoare .product-added .fancybox-close {
position: absolute;
top: 2.2em;
right: 2em;
width: 20px;
height: 20px; }
#popup-material .product-added .fancybox-close i,
#popup-culoare .product-added .fancybox-close i {
width: 20px;
height: 20px;
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/close.svg);
background-size: 20px 20px;
background-repeat: no-repeat;
background-position: center center; }
#popup-material .product-added .materials:before, #popup-material .product-added .materials:after,
#popup-culoare .product-added .materials:before,
#popup-culoare .product-added .materials:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
#popup-material .product-added .materials:after,
#popup-culoare .product-added .materials:after {
clear: both; }
#popup-material .product-added .materials li,
#popup-culoare .product-added .materials li {
float: left;
margin-right: 0.75em; }
#popup-material .product-added .materials li,
#popup-culoare .product-added .materials li {
margin-bottom: .75em; }
#popup-material .product-added .materials li a,
#popup-culoare .product-added .materials li a {
background: #f8f8f8;
padding: .5em 1em; }
#popup-material .product-added .materials li .active,
#popup-culoare .product-added .materials li .active {
background: #ffd033;
color: #2e2e2e; }
#popup-material .product-added .materials-options,
#popup-culoare .product-added .materials-options {
margin: 1.5em 0; }
@media (max-width: 960px) {
#popup-material .product-added .materials-options,
#popup-culoare .product-added .materials-options {
margin: 0; } }
#popup-material .product-added .materials-options .mc-list-materials,
#popup-culoare .product-added .materials-options .mc-list-materials {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
margin: 0 -.5em 0 -.5em;
max-height: 365px;
overflow-y: auto; }
#popup-material .product-added .materials-options .mc-list-materials li,
#popup-culoare .product-added .materials-options .mc-list-materials li {
float: none;
margin-left: 0;
order: 0;
flex-grow: 0;
flex-basis: 20%;
max-width: 20%;
width: 20%;
padding: 0 .5em;
min-width: 0;
text-align: center; }
@media (max-width: 480px) {
#popup-material .product-added .materials-options .mc-list-materials li,
#popup-culoare .product-added .materials-options .mc-list-materials li {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%; } }
#popup-material .product-added .materials-options .mc-list-materials li span.mc-cs,
#popup-culoare .product-added .materials-options .mc-list-materials li span.mc-cs {
font-size: 1em;
text-align: center;
display: block;
line-height: 1.3;
margin-top: .5em; }
#popup-material .product-added .materials-options .mc-list-materials li span.mm-cs,
#popup-culoare .product-added .materials-options .mc-list-materials li span.mm-cs {
font-size: 0.875em; }
#popup-material .product-added .materials-options .mc-list-materials,
#popup-culoare .product-added .materials-options .mc-list-materials {
display: none; }
#popup-material .product-added .materials-options ul,
#popup-culoare .product-added .materials-options ul {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
margin: 0 -.5em 0 -.5em;
max-height: 365px;
overflow-y: auto; }
#popup-material .product-added .materials-options ul li,
#popup-culoare .product-added .materials-options ul li {
float: none;
margin-left: 0;
order: 0;
flex-grow: 0;
flex-basis: 20%;
max-width: 20%;
width: 20%;
padding: 0 .5em;
min-width: 0;
text-align: center;
margin-bottom: .5em; }
@media (max-width: 480px) {
#popup-material .product-added .materials-options ul li,
#popup-culoare .product-added .materials-options ul li {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%; } }
#popup-material .product-added .materials-options ul li .mc-color-selected,
#popup-culoare .product-added .materials-options ul li .mc-color-selected {
width: 40px;
height: 40px;
margin: 0 auto .5em auto;
border: 1px solid #ededed;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
#popup-material .product-added .materials-options ul li .mc-color-selected.active,
#popup-culoare .product-added .materials-options ul li .mc-color-selected.active {
box-sizing: border-box;
border: 3px solid #ffd033; }
#popup-material .product-added .materials-options ul li img,
#popup-culoare .product-added .materials-options ul li img {
border-radius: 50%;
width: 50px;
height: 50px;
text-align: center;
margin: 0 auto;
display: block; }
#popup-material .product-added .materials-options ul li img.active,
#popup-culoare .product-added .materials-options ul li img.active {
box-sizing: border-box;
border: 3px solid #ffd033; }
#popup-material .product-added .materials-options ul li span,
#popup-culoare .product-added .materials-options ul li span {
font-size: 0.688em;
text-align: center;
display: block; }
@media (max-width: 600px) {
#popup-material .product-added,
#popup-culoare .product-added {
text-align: center; }
#popup-material .product-added h2,
#popup-culoare .product-added h2 {
text-align: left;
font-size: 1.25em; }
#popup-material .product-added .img,
#popup-material .product-added .title,
#popup-material .product-added .price-holder,
#popup-culoare .product-added .img,
#popup-culoare .product-added .title,
#popup-culoare .product-added .price-holder {
display: block;
margin-bottom: .5em;
padding-left: 0;
margin-left: 0; }
#popup-material .product-added .title,
#popup-culoare .product-added .title {
width: 100%; }
#popup-material .product-added .continua-wrap a,
#popup-culoare .product-added .continua-wrap a {
display: block;
width: 100%;
text-align: center;
margin-left: 0; }
#popup-material .product-added .continua-wrap a:first-child,
#popup-culoare .product-added .continua-wrap a:first-child {
margin-bottom: 1em; } } .body_overlay,
#popup-material,
#popup-culoare,
#popup-in-cos {
display: none; } .contact .wpcf7-form.gray .wpcf7-form-control-wrap .wpcf7-not-valid-tip,
.contact .wpcf7-form.gray .ajax-loader {
display: none; }
.contact form textarea {
height: 7em; }
.contact span .wpcf7-not-valid {
border: 1px solid #bc0000 !important; }
.contact .wpcf7-validation-errors,
.contact .wpcf7-mail-sent-ok {
display: block;
font-family: "Raleway";
width: 100%;
font-size: 90%;
letter-spacing: 0.02em;
padding: 0;
border: 0;
margin: 1em 0 0;
text-align: center; }
.contact .wpcf7-validation-errors {
color: #bc0000; }
.contact .wpcf7-mail-sent-ok {
color: #1a9d59; } .header-login.header-404 {
padding-top: 5em; }
@media (max-width: 960px) {
.header-login.header-404 {
padding-top: 1em; } }
.content.content-404 {
padding-bottom: 5em; }
@media (max-width: 960px) {
.content.content-404 {
padding-bottom: 2em; } }
.login h1 {
margin-bottom: 1em;
text-align: center; }
@media (max-width: 1400px) {
.login h1 {
font-size: 1.476em; } }
.login .container-404 {
max-width: 630px;
text-align: center; }
.login .container-404 .header-home-logo {
width: 100px;
height: 50px;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/logo.svg);
background-size: 100px 50px;
background-repeat: no-repeat; }
.login .container-404 .site-name {
display: block;
font-size: 135%;
margin-bottom: 2em; }
.login .broken-page p {
margin: 0 0 3em; }
@media (max-width: 960px) {
.login .broken-page p {
margin: 0 0 2em; } }
.login .broken-page .btn-adauga {
width: inherit;
display: inline-block; } .header-login {
text-align: center;
padding: 3em 0; }
@media (max-width: 640px) {
.header-login {
padding: 1.5em 0; } }
.header-login .logo {
width: 100px;
height: 50px;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/logo.svg);
background-size: 100px 50px;
background-repeat: no-repeat; }
.header-login .site-name {
display: block;
font-size: 135%; }
@media (max-width: 640px) {
.login {
padding-bottom: 1.5em; } }
.login .autentification-box {
background: white;
-webkit-box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.1);
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
-ms-border-radius: 3px;
-o-border-radius: 3px;
border-radius: 3px;
min-width: 280px;
max-width: 400px;
margin: 0 auto;
padding: 2em;
margin-top: 1em; }
.login .autentification-box p {
text-align: center; }
.login .autentification-box #lostpasswordform p {
text-align: center; }
.login .autentification-box .login-info {
background: #177a24;
color: #ffffff;
padding: .5em; }
.login .autentification-box h1 {
text-transform: uppercase; }
.login .autentification-box .register-succes {
background: #177a24;
color: #ffffff;
padding: .5em;
margin: 0 0 1em 0;
text-align: center; }
.login .autentification-box .register-succes .login-underline {
text-decoration: underline; }
.login .autentification-box .register-errors,
.login .autentification-box .login-errors {
padding: .5em;
margin-bottom: 1em;
text-align: center;
color: #ffffff;
background: #b70000; }
.login .autentification-box .register-errors p,
.login .autentification-box .login-errors p {
margin: 0; }
.login .autentification-box .reset-msg,
.login .autentification-box .login-msg {
text-align: center; }
.login .autentification-box .reset-msg p,
.login .autentification-box .login-msg p {
margin: 0; }
.login .autentification-box form input[type="email"],
.login .autentification-box form input[type="password"],
.login .autentification-box form input[type="text"] {
border: 1px solid #ccc; }
.login .autentification-box form .checkbox {
float: left; }
@media (max-width: 480px) {
.login .autentification-box form .checkbox {
float: none; } }
.login .autentification-box form .forgot-password {
float: right; }
@media (max-width: 480px) {
.login .autentification-box form .forgot-password {
float: none; } }
.login .autentification-box form .row {
margin-bottom: 1em;
overflow: auto; }
.login .autentification-box form .row-clearfix {
clear: both; }
@media (max-width: 480px) {
.login .autentification-box form .btn-login {
padding: 1em;
font-size: 0.938em; } } .woocommerce {
display: flex;
width: 100%; }
@media (max-width: 960px) {
.woocommerce {
display: block; } }
#my-orders {
display: inline-block; }
.sale-price,
.regular-price {
text-transform: uppercase; }
.status-out-stock {
color: #b70000; }
.thumb-product-cat,
.thumb-product-cat-default {
width: 100%;
min-height: 100px; }
.thumb-product-cat-default {
border: 1px solid #ccc;
padding: 1em; } .sale-info {
color: #2e2e2e; }
.results-item-price {
font-size: 0.938em; } .mobila-la-comanda-form input[type="text"],
.mobila-la-comanda-form input[type="email"],
.mobila-la-comanda-form input[type="tel"],
.mobila-la-comanda-form input[type="text"]:focus,
.mobila-la-comanda-form input[type="email"]:focus,
.mobila-la-comanda-form input[type="tel"]:focus,
.mobila-la-comanda-form textarea,
.mobila-la-comanda-form textarea:focus {
border: 1px solid #ccc; }
.mobila-la-comanda-form .wpcf7-validation-errors,
.mobila-la-comanda-form .wpcf7-mail-sent-ok {
margin: 0; }
.mobila-la-comanda-form h4 {
text-align: center; }
.product-details-review .wrapper {
border-bottom: 1px solid #ccc; }
.product-details-review .wrapper h2 {
font-family: "MarkProMedium", Helvetica, Arial, sans-serif;
font-size: 1.625em; }
.product-details-review form {
padding: 3em 0; }
.product-details-review form ul:before, .product-details-review form ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.product-details-review form ul:after {
clear: both; }
.product-details-review form ul li {
float: left;
margin-left: 0.5em; }
.product-details-review form ul li:first-child {
margin: 0; }
.product-details-review form ul li img {
width: 40px;
height: 40px; }
.product-details-review form .stars {
margin-bottom: 3em; }
.product-details-review form input[type="text"],
.product-details-review form input[type="email"],
.product-details-review form textarea {
border: 1px solid #ccc; }
.product-details-review form .row.two {
margin-left: -.5em;
margin-right: -.5em;
display: flex;
flex-wrap: wrap; }
.product-details-review form .row.two .column {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding: .5em .5em; }
.product-details-review form .row.one .column {
padding-bottom: .5em; } .menu-catalog-container {
position: absolute;
top: 3.2em;
left: 0;
right: 0;
bottom: 0;
padding: 0 1em;
display: none; }
.menu-catalog-container .catalog-img,
.menu-catalog-container .catalog-txt,
.menu-catalog-container .catalog-couch {
display: table-cell;
vertical-align: middle; }
.menu-catalog-container .catalog-txt {
padding-left: 2em; }
.menu-catalog-container .catalog-txt span {
display: block; }
.menu-catalog-container .flex.two {
align-items: stretch; }
.menu-catalog-container .flex.two .col:nth-child(1) {
flex-basis: 30%;
max-width: 30%;
width: 30%;
padding: 0 0 0 1em; }
.menu-catalog-container .flex.two .col:nth-child(2) {
flex-basis: 70%;
max-width: 70%;
width: 70%;
padding: 0 1em 0 0; }
.menu-catalog-container .catalog-wrapper {
background: #ffedb2;
padding: 2em 0 2em 2em;
display: table;
width: 100%;
height: 100%; }
.menu-catalog-container .catalog-slideshow {
background: #fafafa;
padding: 2em 4em;
height: 100%; }
.menu-catalog-container .catalog-img .catalog-img-wrapper {
border: 2px solid white;
padding: .5em 1em;
display: inline-block;
position: relative; }
.menu-catalog-container .catalog-img span {
background: white;
padding: .2em .4em;
position: absolute;
font-size: 12px;
border-radius: 5px;
margin: 0;
top: -1.3em;
right: -2.3em; }
.menu-catalog-container .catalog-couch {
text-align: right; }
.cataloage-owl {
text-align: center;
padding: 0 5em; }
.cataloage-owl .owl-prev,
.cataloage-owl .owl-next {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
display: block; }
.cataloage-owl .owl-prev {
left: 0; }
.cataloage-owl .owl-next {
right: 0; }
.owl-prev-catalog-arrow {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/right_dark.svg);
background-repeat: no-repeat;
background-position: center;
-webkit-transform: rotate(180deg);
transform: rotate(180deg); }
.owl-next-catalog-arrow {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/right_dark.svg);
background-repeat: no-repeat;
background-position: center; }
.owl-prev-catalog-arrow,
.owl-next-catalog-arrow {
display: block;
width: 12px;
height: 20px;
background-size: 12px 20px; }
.cataloage-owl .item {
display: inline-block; }
.catalog-box {
border: 1px solid #ccc;
padding: 1em;
display: inherit;
height: 100%;
min-height: 100px; }
.catalog-box img {
height: 100%; }
.cataloage-owl p {
margin-top: .5em; }
.contact-page .gray {
padding: 2em;
background: #f7f7f7; }
@media (max-width: 480px) {
.contact-page .gray {
padding: 1em; } }
@media (max-width: 1170px) {
.contact-page .contact .flex.three .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 768px) {
.contact-page .contact .flex.three .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
@media (max-width: 768px) {
.contact-page .contact .flex.three .col:nth-child(1) {
margin-bottom: 2em; } }
@media (max-width: 1170px) {
.contact-page .contact .flex.three .col:nth-child(3) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-top: 2em; } }
.contact-page .contact h1 {
font-size: 2.125em;
font-family: "MarkProMedium"; }
@media (max-width: 1170px) {
.contact-page .contact h1 {
font-size: 1.750em; } }
.contact-page .contact form input,
.contact-page .contact form textarea {
min-width: 1px;
max-width: 100%;
width: 100%;
border-bottom: none;
background: #ffffff;
position: relative;
margin-bottom: .90em; }
.contact-page .contact form input {
padding: 1em 1em 1em 3em; }
.contact-page .contact form input[type="submit"] {
padding: 1em 0;
margin: 0; }
.contact-page .contact form textarea {
padding: 1em; }
.contact-page .contact form ul li {
position: relative; }
.contact-page .contact form ul li i {
width: 25px;
height: 25px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/contact_user.svg);
background-repeat: no-repeat;
background-position: center center;
display: inline-block;
position: absolute;
z-index: 2;
top: .75em;
left: .75em; }
.contact-page .contact form ul li:nth-child(2) i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/contact_envelope.svg);
background-repeat: no-repeat;
background-position: center center; }
.contact-page .contact form ul li:nth-child(3) i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/contact_phone.svg);
background-repeat: no-repeat;
background-position: center center; }
.contact-page .contact .contact-info {
color: #ffffff;
background: #747474; }
.contact-page .contact .contact-info h3 {
color: #ffffff;
font-family: "MarkProMedium";
font-size: 1.500em; }
@media (max-width: 480px) {
.contact-page .contact .contact-info h3 {
margin-bottom: 0; } }
.contact-page .contact .contact-info .bordered-list {
padding-top: 0.5em;
padding-bottom: 0.5em; }
.contact-page .contact .contact-info .bordered-list li:first-child {
border: 0; }
.contact-page .contact .contact-info .bordered-list li {
position: relative;
border-top: 1px solid #e6e6e6;
padding-top: 0.5em;
padding-bottom: 0.5em;
border-color: rgba(255, 255, 255, 0.1); }
.contact-page .contact .contact-info .bordered-list li span:nth-child(2),
.contact-page .contact .contact-info .bordered-list li a {
float: right; }
@media (max-width: 1400px) {
.contact-page .contact .contact-info .bordered-list li span:nth-child(2),
.contact-page .contact .contact-info .bordered-list li a {
float: none; } }
@media (max-width: 480px) {
.contact-page .contact .contact-info .bordered-list li span:nth-child(2),
.contact-page .contact .contact-info .bordered-list li a {
font-size: 0.875em; } }
.contact-page .contact .contact-info .bordered-list li span:nth-child(2) a {
float: none; }
.contact-page .contact .contact-info ul:nth-of-type(2) {
margin: 0 0 2em;
display: flex;
flex-wrap: wrap; }
@media (max-width: 480px) {
.contact-page .contact .contact-info ul:nth-of-type(2) {
margin: 0 0 1em; } }
@media (max-width: 480px) {
.contact-page .contact .contact-info ul:nth-of-type(2) {
display: block; } }
.contact-page .contact .contact-info ul:nth-of-type(2) li {
position: relative;
padding-left: 2.5em;
padding-right: .5em; }
@media (max-width: 1400px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li small {
font-size: 100%; } }
@media (max-width: 1400px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li small a {
font-size: 0.750em; } }
@media (max-width: 768px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li small a {
font-size: 1em; } }
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(1) {
flex-basis: 45%;
max-width: 45%;
width: 45%; }
@media (max-width: 480px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(1) {
font-size: 1em;
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) {
flex-basis: 45%;
max-width: 45%;
width: 45%; }
@media (max-width: 480px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) {
font-size: 1em;
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) i {
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/info-consultant-white.svg); }
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) a {
line-height: 1.3em; }
@media (max-width: 1400px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) a {
font-size: 0.875em; } }
@media (max-width: 768px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) a {
font-size: 1em; } }
@media (max-width: 1400px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) a {
font-size: 0.750em; } }
@media (max-width: 768px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(2) a {
font-size: 1em; } }
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(3) {
padding-left: 0;
padding-right: 0;
text-align: right;
flex-basis: 10%;
max-width: 10%;
width: 10%; }
@media (max-width: 480px) {
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(3) {
text-align: left;
margin-top: 1.5em;
font-size: 1em;
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.contact-page .contact .contact-info ul:nth-of-type(2) li:nth-child(3) a {
display: inline-block;
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/facebook_circle_white.svg) no-repeat center;
background-size: 30px 30px; }
.contact-page .contact .contact-info ul:nth-of-type(2) i {
display: inline-block;
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/info-phone-white.svg) no-repeat center;
background-size: 30px 30px;
position: absolute;
top: 0;
left: 0; }
.contact-page .contact .contact-info p {
font-size: 0.938em; }
.contact-page .contact iframe {
width: 100%;
height: 443px; }
.contact-page .linkuri-utile {
background: #ffffff; }
.video-page .flex {
margin: 0 -.5em; }
.video-page .col {
padding: 0 .5em; }
@media (max-width: 640px) {
.video-page .col {
text-align: center; } }
.video-page .video-link {
display: block; }
.video-page .video-box {
padding-bottom: 3.750em; }
@media (max-width: 1170px) {
.video-page .video-box {
padding-bottom: 1.5em;
transition: all 0.4s; } }
@media (max-width: 480px) {
.video-page .video-box {
padding-bottom: 2em; } }
.video-page .video-box .video-box-wrapper {
position: relative;
margin-bottom: 1.5em; }
@media (max-width: 1400px) {
.video-page .video-box .video-box-wrapper {
margin-bottom: 1em;
transition: all 0.4s; } }
.video-page .video-box .video-box-wrapper .video-box-btn {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center; }
.video-page .video-box h6 {
font-size: 1.188em;
line-height: 1.625em; }
@media (max-width: 1400px) {
.video-page .video-box h6 {
font-size: 1em;
line-height: 1.5em;
transition: all 0.4s; } }
@media (max-width: 640px) {
.video-page .video-box h6 {
margin: 0; } }
.video-page .video-box p {
color: #a7a7a7; }
.video-page .load-more {
font-family: "MarkProBold";
color: #747474; }
.lu-videos .linkuri-utile {
background: #ffffff; }
.lu-videos .linkuri-utile .lu-list li {
background: #f8f8f8; }
.lu-videos .linkuri-utile .lu-list li a {
color: #2e2e2e; }
.footer-videos footer {
padding: 3em 0; } .blog-general .blog-wrapper .blog-item {
display: inline-block;
padding-bottom: 6.250em; }
.blog-general .blog-wrapper .blog-item img {
width: 35%;
float: left; }
@media (max-width: 640px) {
.blog-general .blog-wrapper .blog-item img {
width: 100%;
float: none; } }
.blog-general .blog-wrapper .blog-item .blog-item-text {
width: 55%;
margin-left: 5%;
float: left; }
@media (max-width: 640px) {
.blog-general .blog-wrapper .blog-item .blog-item-text {
width: 100%;
margin-left: 0;
float: none; } }
.blog-general .blog-wrapper .blog-item .blog-item-text h3 {
font-size: 1.625em;
font-family: "MarkProMedium", Helvetica, Arial, sans-serif; }
@media (max-width: 640px) {
.blog-general .blog-wrapper .blog-item .blog-item-text h3 {
font-size: 1.375em;
margin-top: 1em; } }
.blog-general .blog-wrapper .blog-item .blog-item-text p {
color: #2e2e2e; }
.blog-general .blog-wrapper .blog-item .blog-item-text a {
margin-top: 3em;
font-family: "MarkProBold", Helvetica, Arial, sans-serif;
color: #a8a8a8; }
@media (max-width: 1170px) {
.blog-general .blog-wrapper .blog-item .blog-item-text a {
margin-top: 0; } }
@media (max-width: 1170px) {
.blog-general .blog-wrapper .blog-item {
padding-bottom: 3em; } }
.blog-general .blog-load-more a {
color: #747474;
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
.blog-general .blog-linkuri-utile .linkuri-utile {
padding: 0 0 6.25em 0; }
.blog-general .blog-linkuri-utile .linkuri-utile .lu-list li {
background: none; }
.intrebari-generale {
background: #ffffff; }
.intrebari-generale .content-faq .col:nth-child(1) {
padding-right: 3em; }
.intrebari-generale .faq-content .faq-question:first-of-type {
border: 0;
padding-top: 0;
margin-top: 0; }
.intrebari-generale .faq-content .faq-question {
margin-top: 1.5em;
padding-top: 1.5em;
border-top: 1px solid #e6e6e6; }
.intrebari-generale .faq-content .faq-question .faq-question-trigger {
position: relative;
font-size: 150%;
font-weight: 300;
padding-left: 2em; }
@media (max-width: 1170px) {
.intrebari-generale .faq-content .faq-question .faq-question-trigger {
font-size: 115%;
transition: all 0.4s; } }
@media (max-width: 640px) {
.intrebari-generale .faq-content .faq-question .faq-question-trigger {
font-size: 100%;
transition: all 0.4s; } }
.intrebari-generale .faq-content .faq-question .faq-question-trigger i {
display: inline-block;
width: 24px;
height: 24px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/plus.svg) no-repeat center;
background-size: 24px 24px;
position: absolute;
left: 0;
top: .15em; }
.intrebari-generale .faq-content .faq-question .faq-question-trigger.active i {
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/minus.svg); }
.intrebari-generale .faq-content .faq-question .faq-question-answer {
padding: 1em 0 0 3em;
display: none; }
@media (max-width: 480px) {
.intrebari-generale .faq-content .faq-question .faq-question-answer p {
font-size: .875em;
transition: all 0.4s; } }
@media (max-width: 640px) {
.intrebari-generale .faq-content .faq-question .faq-question-answer {
padding: 1em 0 0 2em;
transition: all 0.4s; } }
.intrebari-generale .linkuri-utile {
background: #ffffff; }
.intrebari-generale .linkuri-utile .lu-list li {
background: #f8f8f8; }
.intrebari-generale .linkuri-utile .lu-list li a {
color: #2e2e2e; }
.article-page {
background: #ffffff; }
.article-page .linkuri-utile {
background: #ffffff; }
.article-page .article-page-link {
margin-top: 5.625em; }
.article-page .article-page-link a {
color: #a8a8a8;
font-family: "MarkProBold"; }
@media (max-width: 1170px) {
.article-page .article-page-link {
margin-top: 3em; } }
.article-page .content-general .general-aside-links i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/arrow_right_aside_dark.svg); }
.article-footer footer {
padding: 3em 0; } .contul-meu { }
.contul-meu .comenzile-mele {   }
.contul-meu .comenzile-mele h1 {
font-size: 2.125em;
text-transform: capitalize;
font-family: "MarkProMedium";
margin-bottom: 2em; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele h1 {
margin-bottom: 1em; } }
@media (max-width: 768px) {
.contul-meu .comenzile-mele h1 {
font-size: 1.750em;
transition: all 0.4s; } }
@media (max-width: 960px) {
.contul-meu .comenzile-mele .flex .col-account-content {
padding-top: 2em; } }
.contul-meu .comenzile-mele .flex .col:nth-child(1) {
flex-basis: 30%;
max-width: 30%;
width: 30%; }
@media (max-width: 960px) {
.contul-meu .comenzile-mele .flex .col:nth-child(1) {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.contul-meu .comenzile-mele .flex .col:nth-child(2) {
flex-basis: 70%;
max-width: 70%;
width: 70%;
padding-left: 2em; }
@media (max-width: 960px) {
.contul-meu .comenzile-mele .flex .col:nth-child(2) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
padding-left: 1em; } }
.contul-meu .comenzile-mele .aside-left {
padding: 2.5em;
position: relative;
background: #f8f8f8; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .aside-left {
padding: 2em;
transition: all 0.4s; } }
.contul-meu .comenzile-mele .aside-left .burger {
display: none;
right: 2em;
position: absolute;
top: 2.15em; }
.contul-meu .comenzile-mele .aside-left .burger span {
display: block;
width: 1.5em;
height: 1px;
margin-top: .5em;
background: #333333; }
.contul-meu .comenzile-mele .aside-left .burger span:first-child {
margin-top: 0; }
@media (max-width: 960px) {
.contul-meu .comenzile-mele .aside-left .burger {
display: block; } }
.contul-meu .comenzile-mele .aside-left h3 {
font-size: 1.375em;
padding-right: 2em;
font-family: "MarkProMedium";
margin-bottom: 0; }
@media (max-width: 480px) {
.contul-meu .comenzile-mele .aside-left h3 {
font-size: 1.250em;
transition: all 0.4s; } }
.contul-meu .comenzile-mele .aside-left .bordered-list {
margin-top: 1em; }
.contul-meu .comenzile-mele .aside-left .bordered-list li {
position: relative;
border-top: 1px solid #e6e6e6;
padding-top: 0.5em;
padding-bottom: 0.5em; }
.contul-meu .comenzile-mele .aside-left .bordered-list li:first-child {
border: 0; }
.contul-meu .comenzile-mele .aside-left .bordered-list li a:first-letter {
text-transform: capitalize; }
.contul-meu .comenzile-mele .aside-left .bordered-list li a:nth-of-type(1) {
position: absolute;
top: .6em;
left: 0; }
.contul-meu .comenzile-mele .aside-left .bordered-list li a:nth-of-type(1) i {
display: inline-block;
width: 17px;
height: 19px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/account_user.svg) no-repeat center;
background-size: 17px 17px; }
.contul-meu .comenzile-mele .aside-left .bordered-list li a:nth-of-type(2) {
padding-left: 2.2em;
display: block; }
.contul-meu .comenzile-mele .aside-left .bordered-list li a:nth-of-type(3) {
position: absolute;
top: .5em;
right: 0; }
.contul-meu .comenzile-mele .aside-left .bordered-list li a:nth-of-type(3) i {
display: inline-block;
width: 16px;
height: 9px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/arrow_right_aside.svg) no-repeat center;
background-size: 16px 9px; }
.contul-meu .comenzile-mele .aside-left .bordered-list .active a:nth-of-type(3) i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/arrow_right_aside_dark.svg) no-repeat center; }
.contul-meu .comenzile-mele .aside-left .bordered-list li:nth-child(2) a:nth-of-type(1) i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/account_orders.svg) no-repeat center; }
.contul-meu .comenzile-mele .aside-left .bordered-list li:nth-child(3) a:nth-of-type(1) i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/account_favorites.svg) no-repeat center; }
.contul-meu .comenzile-mele .aside-left .bordered-list li:nth-child(4) a:nth-of-type(1) i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/account_password.svg) no-repeat center; }
.contul-meu .comenzile-mele .aside-left .bordered-list li:nth-child(5) a:nth-of-type(1) i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/account_logout.svg) no-repeat center; }
.contul-meu .comenzile-mele .compressed-orders-controls {
padding-bottom: 1.5em;
margin-bottom: 2.5em;
border-bottom: 1px solid #e6e6e6; }
.contul-meu .comenzile-mele .compressed-orders-controls span {
padding: 0.5em;
display: inline-block;
margin-bottom: 0;
vertical-align: middle; }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .compressed-orders-controls span {
display: block;
padding: 1em 0;
text-transform: capitalize; } }
.contul-meu .comenzile-mele .compressed-orders-controls select {
width: 14em;
display: inline-block;
margin-bottom: 0;
border: 1px solid #ccc;
padding: 1em; }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .compressed-orders-controls select {
width: 100%;
display: block; } }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top {
display: block;
margin-top: 0;
float: right;
top: .5em;
position: relative; }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul:before, .contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul:after {
clear: both; }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul li {
float: left;
margin-left: 0.25em; }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul li:first-child {
margin: 0; }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul li a {
padding: .2em;
width: 2em;
text-align: center; }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul li a.active {
border: 1px solid #cccccc; }
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top ul li:last-child a {
width: 9em; }
@media (max-width: 1400px) {
.contul-meu .comenzile-mele .compressed-orders-controls .navigation-top {
display: none; } }
.contul-meu .comenzile-mele .compressed-orders-controls .wp-pagenavi span,
.contul-meu .comenzile-mele .compressed-orders-controls .wp-pagenavi .first,
.contul-meu .comenzile-mele .compressed-orders-controls .wp-pagenavi .page,
.contul-meu .comenzile-mele .compressed-orders-controls .wp-pagenavi .nextpostslink,
.contul-meu .comenzile-mele .compressed-orders-controls .wp-pagenavi .previouspostslink {
padding: 0.5em; }
.contul-meu .comenzile-mele .compressed-orders-controls .wp-pagenavi span.current {
border: 1px solid #ccc;
display: inline; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order {
background: #f8f8f8;
padding: 2em;
margin-top: 1.5em;
position: relative; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .compressed-order-info {
font-family: "MarkProBold"; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .compressed-order-info a:first-of-type {
font-size: 150%;
line-height: 1.35;
text-transform: capitalize; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .compressed-order-info .order-additional {
font-family: "MarkProBold";
margin: .75em 0 0; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .btn {
margin-top: 1.5em;
position: absolute;
top: .9em;
right: 2em; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .btn {
position: relative;
top: 0;
right: 0; } }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status {
position: absolute;
top: -15px;
right: 2em;
display: inline-block;
font-size: 90%;
background: white;
padding: .3em 1em; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status:before {
content: "";
display: inline-block;
width: 3px;
height: 3px;
background: #1A9D59;
margin-right: 1em;
vertical-align: middle; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status-pending {
color: orange; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status-pending:before {
background: orange; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status-success {
color: #1A9D59; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status-success:before {
background: #1A9D59; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status-error {
color: red; }
.contul-meu .comenzile-mele .compressed-order-list .compressed-order .status-error:before {
background: red; }
.contul-meu .comenzile-mele .account-order {
padding: 3em;
background: #f8f8f8; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order {
padding: 2em;
transition: all 0.4s; } }
.contul-meu .comenzile-mele .account-order h3 {
font-family: "MarkProMedium";
font-size: 1.375em;
display: inline-block; }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order h3 {
display: block;
margin-bottom: .5em; } }
.contul-meu .comenzile-mele .account-order .status {
float: right;
font-size: 0.875em; }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order .status {
display: inline-block;
float: none;
margin-bottom: 1em; } }
.contul-meu .comenzile-mele .account-order .status-pending {
color: orange;
border: 1px solid orange;
padding: .2em 1em; }
.contul-meu .comenzile-mele .account-order .status-pending:before {
content: "";
display: inline-block;
width: 4px;
height: 4px;
border-radius: 50%;
background: orange;
margin-right: .5em;
vertical-align: middle; }
.contul-meu .comenzile-mele .account-order .status-success {
color: #1A9D59;
border: 1px solid #1A9D59;
padding: .2em 1em; }
.contul-meu .comenzile-mele .account-order .status-success:before {
content: "";
display: inline-block;
width: 4px;
height: 4px;
border-radius: 50%;
background: #1A9D59;
margin-right: .5em;
vertical-align: middle; }
.contul-meu .comenzile-mele .account-order .status-error {
color: red;
border: 1px solid red;
padding: .2em 1em; }
.contul-meu .comenzile-mele .account-order .status-error:before {
content: "";
display: inline-block;
width: 4px;
height: 4px;
border-radius: 50%;
background: red;
margin-right: .5em;
vertical-align: middle; }
.contul-meu .comenzile-mele .account-order .order-address {
margin-top: 2em; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order .order-address .col {
margin-bottom: 1em; } }
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(1) {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(1) {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 768px) {
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(1) {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(2) {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(2) {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 768px) {
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(2) {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(3) {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(3) {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 768px) {
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(3) {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(3) strong {
display: block; }
.contul-meu .comenzile-mele .account-order .order-address .col:nth-child(3) i {
display: inline-block;
width: 25px;
height: 25px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/card.svg) no-repeat center;
background-size: 25px 25px;
vertical-align: middle;
margin-right: .5em; }
.contul-meu .comenzile-mele .account-order .order-address strong {
display: inline-block;
margin-bottom: 2em; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order .order-address strong {
margin-bottom: 1em;
transition: all 0.4s; } }
.contul-meu .comenzile-mele .account-order .item-purchased {
margin-top: 3em; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order .item-purchased {
margin-top: 0;
transition: all 0.4s; } }
.contul-meu .comenzile-mele .account-order .item-purchased ul li {
background: #ffffff;
padding-top: 0;
padding-left: 6em;
padding-right: 19em;
position: relative;
margin-top: 1em;
min-height: calc(56px + 2em); }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order .item-purchased ul li {
padding: 1em;
min-height: 100%;
height: 100%; } }
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-title {
position: absolute;
top: 50%;
transform: translateY(-50%);
padding-right: 18.5em; }
@media (max-width: 960px) {
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-title {
padding-right: 12em; } }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-title {
display: block;
margin-top: .5em;
padding-right: 0;
position: relative;
top: 0;
left: 0;
transform: none; } }
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-title small {
display: inline-block;
line-height: 1.2em; }
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-image {
position: absolute;
max-width: 3.5em;
top: 1em;
left: 1em; }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-image {
display: block;
position: relative;
width: 100%;
top: 0;
left: 0; } }
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-quantity {
position: absolute;
top: 2em;
right: 15em; }
@media (max-width: 1170px) {
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-quantity {
right: 8em; } }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-quantity {
position: relative;
top: 0;
right: 0; } }
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-price {
position: absolute;
top: 2em;
right: 2em; }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order .item-purchased ul li .checkout-basket-price {
position: relative;
top: 0;
right: 0; } }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal {
margin-top: 1em;
overflow: hidden; }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul {
float: right;
min-width: 20em;
background: #ffffff;
position: relative;
padding: 1em; }
@media (max-width: 640px) {
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul {
min-width: auto;
width: 100%;
float: none; } }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul li {
position: relative;
float: none;
margin-left: 0;
margin-top: 0.5em; }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul li span {
text-transform: capitalize; }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul li:nth-child(1) span:nth-child(2) {
float: right; }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul li:nth-child(2) span:nth-child(2) {
float: right; }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul li:nth-child(3) {
margin-top: 1.5em;
text-align: right; }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul li:nth-child(3) span:nth-child(1) {
display: inline-block; }
.contul-meu .comenzile-mele .account-order .item-purchased-subtotal ul li:nth-child(3) span:nth-child(2) {
display: block;
font-size: 200%; }
.contul-meu .comenzile-mele .account-change-password strong {
display: block;
margin-bottom: 2em; }
.contul-meu .comenzile-mele .account-change-password label {
display: inline-block;
padding: 1em 0;
margin: 0;
letter-spacing: .075em; }
.contul-meu .comenzile-mele .account-change-password input {
border: 1px solid #ccc;
min-width: 30em;
width: 30em;
background: #ffffff;
padding: 1em; }
@media (max-width: 960px) {
.contul-meu .comenzile-mele .account-change-password input {
min-width: 100%;
width: 100%; } }
.contul-meu .comenzile-mele .account-change-password .woocommerce-password-strength,
.contul-meu .comenzile-mele .account-change-password .woocommerce-password-hint {
min-width: 30em;
width: 30em; }
@media (max-width: 960px) {
.contul-meu .comenzile-mele .account-change-password .woocommerce-password-strength,
.contul-meu .comenzile-mele .account-change-password .woocommerce-password-hint {
min-width: 100%;
width: 100%; } }
.contul-meu .comenzile-mele .account-details .account-details-select {
margin-bottom: 2em; }
.contul-meu .comenzile-mele .account-details .account-details-select li {
display: inline-block; }
.contul-meu .comenzile-mele .account-details .account-details-select li:nth-child(2) {
margin-left: 2em; }
.contul-meu .comenzile-mele .account-details .account-details-delivery strong {
margin-bottom: 2em;
display: inline-block; }
.contul-meu .comenzile-mele .account-details input[type="text"],
.contul-meu .comenzile-mele .account-details input[type="email"],
.contul-meu .comenzile-mele .account-details input[type="tel"],
.contul-meu .comenzile-mele .account-details select,
.contul-meu .comenzile-mele .account-details textarea {
width: 100%;
border: 1px solid #ccc;
padding: 1em; }
.contul-meu .comenzile-mele .mc-address-delivery p {
margin: 0; }
.contul-meu .linkuri-utile {
background: #ffffff; }
.contul-meu .cont-date-personale {
background: #ffffff; } .schimba-parola {
background: #ffffff; }
.schimba-parola .linkuri-utile {
background: #ffffff; } .date-personale input[type="text"],
.date-personale input[type="email"],
.date-personale input[type="tel"],
.date-personale select,
.date-personale textarea {
background: #ffffff; }
.date-personale .linkuri-utile {
background: #ffffff; }
.cont-date-personale .flex.account-form .col:nth-child(1) {
flex-basis: 50%;
max-width: 50%;
width: 50%; }
@media (max-width: 768px) {
.cont-date-personale .flex.account-form .col:nth-child(1) {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.cont-date-personale .flex.account-form .col:nth-child(2) {
flex-basis: 50%;
max-width: 50%;
width: 50%; }
@media (max-width: 768px) {
.cont-date-personale .flex.account-form .col:nth-child(2) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-top: 2em; } }
.cont-date-personale .account-form .account-details-billing .account-details-billing-title strong {
display: inline-block;
margin-bottom: 4em; }
@media (max-width: 768px) {
.cont-date-personale .account-form .account-details-billing .account-details-billing-title strong {
margin-bottom: 1em; } }
.cont-date-personale .account-form .account-details-info {
margin-bottom: 2em; } .favorite {
background: #ffffff; }
.favorite .cont-favorite .flex.flex-favorites .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; }
@media (max-width: 480px) {
.favorite .cont-favorite .flex.flex-favorites .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.favorite .cont-favorite .flex.flex-favorites {
margin: 0 -.5em 0 -.5em; }
.favorite .cont-favorite .flex.flex-favorites .col {
padding: 0 .5em; }
.favorite .cont-favorite .account-favorites .product-results .results-item {
text-align: left;
margin-bottom: 2em; }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-image {
display: block;
position: relative;
margin-bottom: 1.5em; }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-image img {
width: 100%; }
@media (max-width: 1170px) {
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-image {
margin-bottom: 1em; } }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-discount {
position: absolute;
top: 1em;
right: 1em;
background: #ffeeb4;
width: 70px;
height: 70px;
display: table;
color: white;
text-align: center;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-discount span {
color: #2e2e2e;
font-size: 1.188em;
font-family: "MarkProBold";
display: table-cell;
vertical-align: middle; }
@media (max-width: 1170px) {
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-discount span {
font-size: 0.875em; } }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-title {
text-align: left;
font-size: 1.188em;
line-height: 1.3em;
margin-bottom: 1em; }
@media (max-width: 1170px) {
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-title {
font-size: 1em;
margin-bottom: 0; } }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price {
display: block; }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .results-item-stock {
display: inline-block; }
@media (max-width: 1170px) {
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .results-item-stock {
display: block; } }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .results-item-stock .status-in-stock {
color: #56ba3e; }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .results-item-stock .status-order {
color: #e69c25; }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .price {
float: right; }
@media (max-width: 1170px) {
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .price {
float: none; } }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .price .sale-price,
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .price .regular-price {
font-family: "MarkProBold";
font-size: 0.875em;
color: #858585; }
.favorite .cont-favorite .account-favorites .product-results .results-item .results-item-price .price .sale-price {
padding-right: 1em;
color: #a8a8a8; }
.favorite .linkuri-utile {
background: #ffffff; }
@media (max-width: 960px) {
.account-user-details {
display: none; } }
.footer-account footer {
padding: 3em 0; } .checkout {
background: #ffffff; }
.checkout .flex {
margin: 0 -2em; }
@media (max-width: 1400px) {
.checkout .flex {
margin: 0 -1em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.checkout .flex {
margin: 0 -.5em;
transition: all 0.4s; } }
.checkout .flex col {
padding: 0 2em; }
@media (max-width: 1400px) {
.checkout .flex col {
padding: 0 1em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.checkout .flex col {
padding: 0 .5em;
transition: all 0.4s; } }
.checkout .flex .col:nth-child(1) {
flex-basis: 70%;
max-width: 70%;
width: 70%;
padding: 0 2em; }
@media (max-width: 1400px) {
.checkout .flex .col:nth-child(1) {
padding: 0 1em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.checkout .flex .col:nth-child(1) {
padding: 0 .5em; } }
@media (max-width: 960px) {
.checkout .flex .col:nth-child(1) {
flex-basis: 60%;
max-width: 60%;
width: 60%;
transition: all 0.4s; } }
@media (max-width: 768px) {
.checkout .flex .col:nth-child(1) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
transition: all 0.4s; } }
.checkout .flex .col:nth-child(2) {
flex-basis: 30%;
max-width: 30%;
width: 30%; }
@media (max-width: 1400px) {
.checkout .flex .col:nth-child(2) {
padding: 0 1em;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.checkout .flex .col:nth-child(2) {
padding: 0 .5em; } }
@media (max-width: 960px) {
.checkout .flex .col:nth-child(2) {
flex-basis: 40%;
max-width: 40%;
width: 40%;
transition: all 0.4s; } }
@media (max-width: 768px) {
.checkout .flex .col:nth-child(2) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
transition: all 0.4s; } }
.checkout .gray {
margin-bottom: 2em;
padding: 2em; }
.checkout h1 {
font-size: 2.250em;
margin-bottom: 1.5em; }
@media (max-width: 1170px) {
.checkout h1 {
margin-bottom: .5em;
transition: all 0.4s; } }
.checkout h3 {
font-size: 1.375em; }
.checkout .checkout-login {
margin-bottom: 2em; }
.checkout .checkout-login .checkout-login-controls {
overflow: hidden; }
.checkout .checkout-login .checkout-login-controls span {
float: left; }
@media (max-width: 960px) {
.checkout .checkout-login .checkout-login-controls span {
float: none;
display: block;
margin-bottom: .5em; } }
@media (max-width: 768px) {
.checkout .checkout-login .checkout-login-controls span {
float: right; } }
@media (max-width: 480px) {
.checkout .checkout-login .checkout-login-controls span {
float: none;
display: block;
margin-bottom: .5em; } }
.checkout .checkout-login .checkout-login-controls .checkout-login-controls-shopping {
float: right; }
@media (max-width: 960px) {
.checkout .checkout-login .checkout-login-controls .checkout-login-controls-shopping {
float: none; } }
.checkout .checkout-fields .checkout-delivery {
padding: 2em; }
@media (max-width: 1170px) {
.checkout .checkout-fields .checkout-delivery {
padding: 1.5em;
transition: all 0.4s; } }
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select {
margin-bottom: 1em; }
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul {
overflow: hidden; }
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li {
float: left; }
@media (max-width: 960px) {
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li {
float: none; } }
@media (max-width: 768px) {
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li {
float: left; } }
@media (max-width: 480px) {
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li {
float: none; } }
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li:nth-child(2) {
padding-left: 2em; }
@media (max-width: 960px) {
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li:nth-child(2) {
padding-left: 0; } }
@media (max-width: 768px) {
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li:nth-child(2) {
padding-left: 1em; } }
@media (max-width: 480px) {
.checkout .checkout-fields .checkout-delivery .checkout-delivery-select ul li:nth-child(2) {
padding-left: 0; } }
.checkout .checkout-fields .checkout-delivery-fields .row.two {
margin-left: -1em;
margin-right: -1em;
display: flex;
flex-wrap: wrap; }
.checkout .checkout-fields .checkout-delivery-fields .row.two .column {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding: 0 1em; }
@media (max-width: 960px) {
.checkout .checkout-fields .checkout-delivery-fields .row.two .column {
flex-basis: 100%;
max-width: 100%;
width: 100%;
transition: all 0.4s; } }
.checkout .checkout-fields .checkout-delivery-fields .row.one .column {
flex-basis: 100%;
max-width: 100%;
width: 100%; }
.checkout .checkout-fields .checkout-delivery-fields .checkout-billing-select .mc-terms-and-conditions .checkout #terms_and_conditions {
margin: 0; }
.checkout .checkout-fields .checkout-delivery-fields .checkout-billing-select .mc-terms-and-conditions .checkout #terms_and_conditions:after {
border: 1px solid #ccc; }
.checkout .checkout-fields .checkout-delivery-fields .checkout-billing-select .mc-terms-and-conditions .checkout .mc-terms-text {
float: none;
width: auto;
font-size: 1em;
margin-left: .5em; }
.checkout .checkout-fields .checkout-billing-fields {
padding: 2em; }
.checkout .checkout-fields .checkout-billing-fields .row.two {
margin-left: -1em;
margin-right: -1em;
display: flex;
flex-wrap: wrap; }
.checkout .checkout-fields .checkout-billing-fields .row.two .column {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding: 0 1em; }
@media (max-width: 960px) {
.checkout .checkout-fields .checkout-billing-fields .row.two .column {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.checkout .checkout-fields .checkout-billing-fields .row.one .column {
flex-basis: 100%;
max-width: 100%;
width: 100%; }
.checkout .checkout-payment ul {
display: flex;
margin-bottom: 1em; }
@media (max-width: 960px) {
.checkout .checkout-payment ul {
display: block; } }
.checkout .checkout-payment ul li {
flex-basis: 50%;
max-width: 50%;
width: 50%; }
@media (max-width: 960px) {
.checkout .checkout-payment ul li {
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-bottom: 1em; } }
.checkout .checkout-payment ul li .payment_method_bacs,
.checkout .checkout-payment ul li .payment_method_mobilpay {
padding-left: 5em; }
.checkout .checkout-payment ul li .payment_method_bacs small,
.checkout .checkout-payment ul li .payment_method_mobilpay small {
display: block; }
.checkout .checkout-payment ul li:nth-child(1) input[type="radio"] {
float: left;
width: 15px;
height: 15px;
float: left; }
.checkout .checkout-payment ul li:nth-child(1) input[type="radio"]:after {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #ffffff;
content: '';
display: block;
box-sizing: border-box;
visibility: visible; }
.checkout .checkout-payment ul li:nth-child(1) input[type='radio']:checked:after {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #ffd033;
content: '';
display: block;
box-sizing: border-box;
visibility: visible; }
.checkout .checkout-payment ul li:nth-child(1) i {
display: inline-block;
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/ramburs.svg) no-repeat center;
background-size: 30px 30px;
margin-left: .5em;
margin-right: .5em;
vertical-align: middle;
float: left; }
.checkout .checkout-payment ul li:nth-child(2) input[type="radio"] {
float: left;
width: 15px;
height: 15px;
float: left; }
.checkout .checkout-payment ul li:nth-child(2) input[type="radio"]:after {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #ffffff;
content: '';
display: block;
box-sizing: border-box;
visibility: visible; }
.checkout .checkout-payment ul li:nth-child(2) input[type='radio']:checked:after {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: #ffd033;
content: '';
display: block;
box-sizing: border-box;
visibility: visible; }
.checkout .checkout-payment ul li:nth-child(2) i {
display: inline-block;
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/card.svg) no-repeat center;
background-size: 30px 30px;
margin-left: .5em;
margin-right: .5em;
vertical-align: middle;
float: left; }
@media (max-width: 1170px) {
.checkout .checkout-basket {
padding: 1.5em; } }
.checkout .checkout-basket ul {
margin-top: -1em; }
.checkout .checkout-basket ul li {
position: relative;
min-height: 3.5em;
margin-top: 1em;
padding-left: 5em;
padding-right: 15em;
padding-top: .5em; }
@media (max-width: 1170px) {
.checkout .checkout-basket ul li {
padding-top: 0;
padding-right: 9em;
padding-left: 4em; } }
@media (max-width: 640px) {
.checkout .checkout-basket ul li {
padding-right: 2.5em; } }
.checkout .checkout-basket ul li .checkout-basket-image {
max-width: 3.5em;
position: absolute;
top: 0;
left: 0; }
.checkout .checkout-basket ul li .checkout-basket-title {
line-height: 1.3; }
.checkout .checkout-basket ul li .checkout-basket-title small {
font-size: 1.125em; }
@media (max-width: 1170px) {
.checkout .checkout-basket ul li .checkout-basket-title small {
font-size: 0.875em; } }
.checkout .checkout-basket ul li .checkout-basket-price {
display: block;
width: 5em;
text-align: center;
position: absolute;
top: .5em;
right: 5em;
font-size: 1.125em; }
@media (max-width: 1170px) {
.checkout .checkout-basket ul li .checkout-basket-price {
font-size: 0.875em;
top: .75em; } }
@media (max-width: 640px) {
.checkout .checkout-basket ul li .checkout-basket-price {
position: relative;
top: 0;
right: 0;
width: auto;
text-align: left; } }
.checkout .checkout-basket ul li .checkout-basket-close {
display: inline-block;
width: 16px;
height: 16px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/close.svg) no-repeat center;
background-size: 16px 16px;
position: absolute;
top: .75em;
right: .5em; }
.checkout aside {
font-family: "MarkProMedium", Helvetica, Arial, sans-serif; }
.checkout aside .checkout-aside {
background: #ffd033;
padding: 2em; }
@media (max-width: 1170px) {
.checkout aside .checkout-aside {
padding: 1.5em;
transition: all 0.4s; } }
.checkout aside .checkout-aside h4 {
font-size: 1.500em;
font-family: "MarkProMedium"; }
.checkout aside .checkout-aside .checkout-aside-subtotal {
margin-bottom: 1em; }
.checkout aside .checkout-aside .checkout-aside-subtotal li {
overflow: hidden; }
.checkout aside .checkout-aside .checkout-aside-subtotal span {
text-transform: capitalize;
display: inline-block; }
.checkout aside .checkout-aside .checkout-aside-subtotal span:nth-child(2) {
float: right; }
.checkout aside .checkout-aside .checkout-aside-total {
margin-bottom: 1em; }
.checkout aside .checkout-aside .checkout-aside-total span {
display: block;
text-transform: capitalize; }
.checkout aside .checkout-aside .checkout-aside-total strong {
font-size: 250%; }
@media (max-width: 1400px) {
.checkout aside .checkout-aside .checkout-aside-total strong {
font-size: 225%;
transition: all 0.4s; } }
@media (max-width: 960px) {
.checkout aside .checkout-aside .checkout-aside-total strong {
font-size: 200%;
transition: all 0.4s; } } .checkbox-livrare input[type="checkbox"] {
margin: 0; }
.checkout-basket-close {
display: inline-block;
width: 16px;
height: 16px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/close.svg) no-repeat center;
background-size: 16px 16px; }
.mc-adresa-livrare {
margin-left: .5em;
font-size: 1em; } .category .search-results-info {
padding: 2em !important; }
@media (max-width: 960px) {
.category .search-results-info {
padding: 2em 1em !important; } }
.category .search-results-info .total-results {
position: absolute;
top: 50%;
transform: translateY(-50%); }
@media (max-width: 768px) {
.category .search-results-info .total-results {
position: relative;
top: 0;
transform: none;
width: 100%;
text-align: center; } }
.category .search-results-info .total-results .price-range-slider {
min-width: 16em;
padding: 34px 0; }
@media (max-width: 960px) {
.category .search-results-info .total-results .price-range-slider {
min-width: 10em; } }
@media (max-width: 768px) {
.category .search-results-info .total-results .price-range-slider {
padding: 10px 0;
float: none; } }
@media (max-width: 1400px) {
.category .search-results-info .product-pagination .navigation {
display: none !important; } } .search-page .linkuri-utile {
background: #ffffff;
padding: 3.25em 0; }
@media (max-width: 1170px) {
.search-page .linkuri-utile {
padding: 2em 0 2em 0;
transition: all 0.4s; } }
@media (max-width: 1170px) {
.search-page .linkuri-utile .lu-wrapper h2 {
padding-bottom: 1em;
transition: all 0.4s; } }
@media (max-width: 640px) {
.search-page .search-results .flex.three .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 480px) {
.search-page .search-results .flex.three .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
@media (max-width: 480px) {
.search-page .search-results .results-item-image {
display: block; } }
@media (max-width: 480px) {
.search-page .search-results .results-item-image img {
width: 100%; } }
.search-page .search-results-info {
padding: 1em;
background: #f8f8f8;
position: relative;
margin-bottom: 3em; }
@media (max-width: 1170px) {
.search-page .search-results-info {
margin-bottom: 2em;
transition: all 0.4s; } }
.search-page .search-results-info .total-results {
display: inline-block; }
.search-page .search-results-info .total-results p {
font-size: 1em;
font-family: "MarkProBold";
margin: 0;
color: #747474; }
.search-page .search-results-info .product-pagination {
margin-top: 0;
display: inline-block;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 1em; }
@media (max-width: 640px) {
.search-page .search-results-info .product-pagination {
margin-top: 1em;
display: block;
position: relative;
top: 0;
transform: none;
right: 0;
transition: all 0.4s; } }
.search-page .product-pagination {
margin-top: 3em;
text-align: right; }
@media (max-width: 1170px) {
.search-page .product-pagination {
margin-top: 0;
transition: all 0.4s; } }
.search-page .product-pagination nav ul:before, .search-page .product-pagination nav ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.search-page .product-pagination nav ul:after {
clear: both; }
.search-page .product-pagination nav ul li {
float: left;
margin-left: 0.5em; }
.search-page .product-pagination nav ul li:first-child {
margin: 0; }
.search-page .product-pagination nav ul li a {
padding: .15em .75em;
color: #747474;
border: 1px solid transparent; }
@media (max-width: 480px) {
.search-page .product-pagination nav ul li a {
font-size: .875em;
transition: all 0.4s; } }
.search-page .product-pagination nav ul li .active {
border: 1px solid #ccc;
padding: .15em .75em; }
@media (max-width: 480px) {
.search-page .product-pagination nav ul li:last-child {
margin-left: 0;
font-size: .875em;
margin-bottom: 0; } }
@media (max-width: 480px) {
.search-page .product-pagination nav ul li {
margin-bottom: .5em; } }
.search-page .wp-pagenavi span,
.search-page .wp-pagenavi .first,
.search-page .wp-pagenavi .page,
.search-page .wp-pagenavi .nextpostslink,
.search-page .wp-pagenavi .previouspostslink {
padding: 0.5em; }
.search-page .wp-pagenavi span.current {
border: 1px solid #ccc;
display: inline; }
@media (max-width: 1170px) {
.search-footer footer {
padding: 3em 0;
transition: all 0.4s; } } .product .product-details .product-details-main .flex {
margin: 0 -1em; }
@media (max-width: 1400px) {
.product .product-details .product-details-main .flex {
margin: 0 -1em; } }
@media (max-width: 1170px) {
.product .product-details .product-details-main .flex {
margin: 0 -.5em; } }
@media (max-width: 1024px) {
.product .product-details .product-details-main .flex {
margin: 0 -1em; } }
.product .product-details .product-details-main .col {
padding: 0 1em; }
@media (max-width: 1400px) {
.product .product-details .product-details-main .col {
padding: 0 1em;
transition: all 0.4s; } }
@media (max-width: 1024px) {
.product .product-details .product-details-main .three {
position: relative; } }
@media (max-width: 768px) {
.product .product-details .product-details-main .three {
padding-top: 0; } }
@media (max-width: 1170px) {
.product .product-details .product-details-main .three .col {
padding: 0 .5em; } }
@media (max-width: 1024px) {
.product .product-details .product-details-main .three .col {
padding: 0 1em; } }
.product .product-details .product-details-main .three .col:nth-child(1) {
flex-basis: 40%;
max-width: 40%;
width: 40%; }
@media (max-width: 1400px) {
.product .product-details .product-details-main .three .col:nth-child(1) {
flex-basis: 35%;
max-width: 35%;
width: 35%;
transition: all 0.4s; } }
@media (max-width: 1024px) {
.product .product-details .product-details-main .three .col:nth-child(1) {
flex-basis: 50%;
max-width: 50%;
width: 50%;
flex-basis: 30em;
width: 30em;
max-width: 30em;
margin: 0 auto 2em auto; } }
@media (max-width: 768px) {
.product .product-details .product-details-main .three .col:nth-child(1) {
position: relative;
top: 0;
left: 0;
margin-left: 0;
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-bottom: 2em; } }
.product .product-details .product-details-main .three .col:nth-child(2) {
flex-basis: 34%;
max-width: 34%;
width: 34%; }
@media (max-width: 1024px) {
.product .product-details .product-details-main .three .col:nth-child(2) {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 768px) {
.product .product-details .product-details-main .three .col:nth-child(2) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-bottom: 2em; } }
.product .product-details .product-details-main .three .col:nth-child(3) {
flex-basis: 26%;
max-width: 26%;
width: 26%; }
@media (max-width: 1400px) {
.product .product-details .product-details-main .three .col:nth-child(3) {
flex-basis: 30%;
max-width: 30%;
width: 30%;
transition: all 0.4s; } }
@media (max-width: 1024px) {
.product .product-details .product-details-main .three .col:nth-child(3) {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 768px) {
.product .product-details .product-details-main .three .col:nth-child(3) {
flex-basis: 100%;
max-width: 100%;
width: 100%;
margin-bottom: 2em; } }
.product .product-details .product-details-main .product-details-main-image {
position: relative; }
.product .product-details .product-details-main .product-details-main-image .owl-product {
padding: 0 2.5em;
margin: 0 auto; }
.product .product-details .product-details-main .product-details-main-image .owl-product .owl-prev {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
height: 25px;
left: 0;
display: block; }
.product .product-details .product-details-main .product-details-main-image .owl-product .owl-next {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
height: 25px;
right: 0;
display: block; }
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder {
margin-bottom: 2em; }
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item {
position: relative; }
@media (max-width: 960px) {
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item img {
pointer-events: none; } }
@media (max-width: 768px) {
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item img {
pointer-events: none;
width: 100%; } }
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item .product-details-main-image-holder-extend {
width: 40px;
height: 40px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/expand.svg) no-repeat center;
background-size: 40px 40px;
position: absolute;
bottom: 1.5em;
right: 1em; }
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item .sale-price {
display: table;
position: absolute;
top: 1em;
right: 1em;
width: 60px;
height: 60px;
color: #2e2e2e;
background: #ffeeb4;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
@media (max-width: 480px) {
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item .sale-price {
width: 50px;
height: 50px;
transition: all 0.4s; } }
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item .sale-price span {
display: table-cell;
vertical-align: middle;
font-size: 1.125em; }
@media (max-width: 480px) {
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item .sale-price span {
font-size: 0.875em;
transition: all 0.4s; } }
.product .product-details .product-details-main .product-details-main-image .zoom-info {
text-align: center;
margin-bottom: 2em; }
.product .product-details .product-details-main .product-details-main-image .zoom-info p {
margin: 0;
font-size: 0.875em;
color: #747474; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-title h1 {
font-size: 2.125em;
font-family: "MarkProMedium"; }
@media (max-width: 1400px) {
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-title h1 {
font-size: 1.750em;
transition: all 0.4s; } }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-number {
margin-bottom: 1em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-number .status-in-stock {
color: #56ba3e; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-number .status-order {
color: #e69c25; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-number .product-sku-code {
font-family: "MarkProBold", Helvetica, Arial, sans-serif;
float: right; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-rating {
margin-bottom: 1em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-rating .rating .rating-stars {
display: inline-block;
vertical-align: middle; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-rating .rating .rating-stars ul:before, .product .product-details .product-details-main .product-details-main-description .product-details-main-description-rating .rating .rating-stars ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-rating .rating .rating-stars ul:after {
clear: both; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-rating .rating .rating-stars ul li {
float: left;
margin-right: 0.5em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-rating .rating .rating-status {
display: inline-block;
vertical-align: middle; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-buttons {
margin-bottom: 2em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-buttons .btn-product {
border: 1px solid #ccc;
padding: .5em 1em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-buttons .btn-product:hover {
background: #2e2e2e;
color: #ffffff;
transition: all 0.4s; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-buttons .btn-product:nth-child(2) {
margin-left: 1em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-how {
margin-bottom: 2em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-info h6 {
font-size: 1em;
color: #747474;
text-transform: uppercase; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-info ul li {
display: flex;
justify-content: space-between;
border-top: 1px solid #ccc;
padding: .5em 0; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-info ul li:first-child {
border: 0; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-info ul li span {
font-size: 0.875em; }
.product .product-details .product-details-main .product-details-main-description .product-details-main-description-info ul li span:nth-child(2) {
float: right;
font-family: "MarkProBold";
text-align: right;
margin-left: .75em; }
.product .product-details .product-details-main .product-details-main-price {
border: 1px solid #ccc; }
.product .product-details .product-details-main .product-details-main-price .pret-informativ {
background: #ffeeb4;
padding: .5em 1em;
display: inline-block;
position: relative;
cursor: pointer; }
.product .product-details .product-details-main .product-details-main-price .pret-informativ .popup-info-box {
background-color: #2e2e2e;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
color: #ffffff;
display: block;
font-size: 13px;
line-height: 1.35;
position: absolute;
padding: 15px;
left: 0;
margin-bottom: 8px;
margin-left: 0;
z-index: 4;
display: none; }
.product .product-details .product-details-main .product-details-main-price .pret-informativ .popup-info-box:before {
width: 0px;
height: 0px;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid #2e2e2e;
bottom: -8px;
content: "";
display: block;
left: 15%;
margin-left: -17px;
position: absolute; }
@media (max-width: 960px) {
.product .product-details .product-details-main .product-details-main-price .pret-informativ .popup-info-box {
display: none; } }
.product .product-details .product-details-main .product-details-main-price .pret-informativ p {
margin: 0;
font-size: 0.875em; }
.product .product-details .product-details-main .product-details-main-price .pret-informativ p i {
width: 15px;
height: 15px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/info_orange.svg);
background-size: 15px 15px;
background-repeat: no-repeat;
display: inline-block;
margin-right: .5em;
vertical-align: middle; }
.product .product-details .product-details-main .product-details-main-price .pret-informativ:hover .popup-info-box {
display: block;
transition: 0.3s; }
.product .product-details .product-details-main .product-details-main-price .product-delivery {
background: #f7f7f7;
padding: 0.5em 1em;
position: relative;
cursor: pointer; }
.product .product-details .product-details-main .product-details-main-price .product-delivery:hover .popup-info-box {
display: block;
transition: 0.3s; }
@media (max-width: 960px) {
.product .product-details .product-details-main .product-details-main-price .product-delivery:hover .popup-info-box {
display: none; } }
.product .product-details .product-details-main .product-details-main-price .product-delivery .popup-info-box {
background-color: #2e2e2e;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
color: #ffffff;
display: block;
font-size: 13px;
line-height: 1.35;
position: absolute;
padding: 15px;
left: 0;
margin-bottom: 8px;
margin-left: 0;
bottom: 2.5em;
display: none;
z-index: 3; }
.product .product-details .product-details-main .product-details-main-price .product-delivery .popup-info-box::before {
width: 0px;
height: 0px;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-top: 8px solid #2e2e2e;
bottom: -8px;
content: "";
display: block;
left: 15%;
margin-left: -33px;
position: absolute; }
@media (max-width: 1024px) {
.product .product-details .product-details-main .product-details-main-price .product-delivery .popup-info-box::before {
margin-left: -31px; } }
.product .product-details .product-details-main .product-details-main-price .product-delivery .popup-info-box a {
text-decoration: underline; }
@media (max-width: 960px) {
.product .product-details .product-details-main .product-details-main-price .product-delivery .popup-info-box {
display: none; } }
.product .product-details .product-details-main .product-details-main-price .product-delivery p {
margin: 0;
font-size: 0.875em; }
.product .product-details .product-details-main .product-details-main-price .product-delivery p i {
display: inline-block;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/info.svg);
background-size: 13px 13px;
background-repeat: no-repeat;
background-position: center;
width: 13px;
height: 13px;
vertical-align: middle;
margin-right: .5em; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper {
padding: 1.5em 1em 0 1em; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper h6 {
margin: 0; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper h2 {
font-size: 2.125em;
margin: 0;
padding-bottom: .5em; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .sale-price {
margin-top: 1em;
margin-bottom: 2em;
position: relative; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .sale-price span:nth-child(2) {
right: 0;
width: 60px;
height: 60px;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%;
background: #ffeeb4;
position: absolute;
top: 50%;
transform: translateY(-50%); }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .sale-price span:nth-child(2) span {
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 100%;
text-align: center;
font-size: 1.188em;
font-family: "MarkProBold", Helvetica, Arial, sans-serif; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .product-options .product-options-btn {
padding: .5em 1em;
border: 1px solid #ccc; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .product-options .product-options-btn span {
vertical-align: middle;
margin-left: .5em; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .product-options .product-options-btn:nth-child(1) i {
vertical-align: middle;
display: inline-block;
width: 15px;
height: 15px;
background: #ccc;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .product-options .product-options-btn:nth-child(2) {
float: right; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .product-options .product-options-btn:nth-child(2) i {
vertical-align: middle;
display: inline-block;
width: 15px;
height: 15px;
background: #56ba3e;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
@media (max-width: 768px) {
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper .product-options .product-options-btn:nth-child(2) {
float: none; } }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper ul {
margin-top: 1em; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper ul li {
margin-top: 1.5em; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper ul li select {
border: 1px solid #ccc;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/down_dark.svg) no-repeat right;
background-position: right 1em center;
-webkit-appearance: none; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper ul li .product-details-main-price-favorites {
display: block;
text-align: center; }
.product .product-details .product-details-main .product-details-main-price .add-to-cart-wrapper ul li .product-details-main-price-favorites i {
display: inline-block;
width: 21px;
height: 19px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/heart.svg) no-repeat center;
background-size: 21px 19px;
vertical-align: middle;
margin-right: .5em; }
.product .product-details .product-details-main .help-chat {
overflow: hidden;
margin-top: 1em;
padding: 0.5em; }
.product .product-details .product-details-main .help-chat .left {
border: 1px solid #ccc;
position: relative;
padding: 5px 5px 5px 25px;
flex-basis: 55%;
max-width: 55%;
width: 55%; }
@media (max-width: 768px) {
.product .product-details .product-details-main .help-chat .left {
display: table-cell;
height: 100px;
vertical-align: middle; } }
@media (max-width: 768px) {
.product .product-details .product-details-main .help-chat .left .txt-info {
position: absolute;
top: 50%;
transform: translateY(-50%); } }
.product .product-details .product-details-main .help-chat .left .txt-info span {
font-size: 0.750em; }
@media (max-width: 768px) {
.product .product-details .product-details-main .help-chat .left .txt-info span {
font-size: 1em; } }
.product .product-details .product-details-main .help-chat .left .txt-info strong a {
font-size: 1.125em; }
.product .product-details .product-details-main .help-chat .left i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/phone_blue.svg);
background-color: #ffffff;
background-size: 20px 40px;
background-repeat: no-repeat;
background-position: center;
width: 20px;
height: 40px;
position: absolute;
top: 50%;
left: -9px;
margin-top: -17px;
padding: 5px 0; }
.product .product-details .product-details-main .help-chat .right {
padding: 1em;
font-size: 0.875em;
flex-basis: 45%;
max-width: 45%;
width: 45%; }
@media (max-width: 768px) {
.product .product-details .product-details-main .help-chat .right {
height: 100px;
display: table-cell;
vertical-align: middle;
position: relative; } }
@media (max-width: 768px) {
.product .product-details .product-details-main .help-chat .right a {
position: absolute;
top: 50%;
transform: translateY(-50%); } }
.product .product-details .product-details-main .help-chat .right a span {
line-height: 1.2em; }
.product .product-details .product-details-main .help-chat .right a span strong {
font-size: 1.250em; }
.product .product-details .product-details-main .share {
text-align: center;
margin-top: 1.5em; }
.product .product-details .product-details-main .share .share-btn {
font-size: 0.875em;
background: #3b5999;
color: white;
padding: .25em 1em;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px; }
.product .product-details .product-details-main .share .share-btn i {
margin-right: .5em; }
.product .product-details .product-details-technical {
margin-top: 3em; }
.product .product-details .product-details-technical .flex {
margin: 0 -2em; }
@media (max-width: 1024px) {
.product .product-details .product-details-technical .flex {
margin: 0 -1em; } }
.product .product-details .product-details-technical .col {
padding: 0 2em; }
@media (max-width: 1024px) {
.product .product-details .product-details-technical .col {
padding: 0 1em; } }
@media (max-width: 960px) {
.product .product-details .product-details-technical .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
.product .product-details .product-details-technical .product-details-technical-info .wrapper {
overflow: auto;
border-bottom: 1px solid #ccc; }
@media (max-width: 480px) {
.product .product-details .product-details-technical .product-details-technical-info .wrapper .tabs li h2 {
font-size: 1.3em;
transition: all 0.4s; } }
.product .product-details .product-reviews {
margin-top: 3em; }
@media (max-width: 1170px) {
.product .product-details .product-reviews {
margin-top: 0; } }
.product .product-details .product-reviews .wrapper {
border-bottom: 1px solid #ccc; }
.product .product-details .product-reviews .wrapper h2 {
font-family: "MarkProMedium", Helvetica, Arial, sans-serif;
font-size: 1.625em; }
.product .product-details .product-reviews .comment-list .comment {
margin: 2em 0; }
@media (max-width: 1024px) {
.product .product-details .product-reviews .comment-list .comment .flex.two {
margin: 0 -.5em 0 -.5em; } }
@media (max-width: 1024px) {
.product .product-details .product-reviews .comment-list .comment .flex.two .col {
padding: 0 .5em; } }
.product .product-details .product-reviews .comment-list .comment .left-side i {
width: 80px;
height: 80px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/user_white.svg);
background-color: #f2f2f2;
background-position: center center;
background-repeat: no-repeat;
display: table-cell;
border-radius: 50%;
-moz-border-radius: 50%;
-webkit-border-radius: 50%; }
@media (max-width: 640px) {
.product .product-details .product-reviews .comment-list .comment .left-side i {
width: 50px;
height: 50px; } }
@media (max-width: 480px) {
.product .product-details .product-reviews .comment-list .comment .left-side i {
display: none; } }
.product .product-details .product-reviews .comment-list .comment .left-side .user-info {
display: table-cell;
vertical-align: middle;
padding-left: 1em; }
.product .product-details .product-reviews .comment-list .comment .left-side .user-info span {
display: block; }
.product .product-details .product-reviews .comment-list .comment .left-side .user-info span:nth-child(1) {
font-family: "MarkProBold";
font-size: 1em; }
@media (max-width: 480px) {
.product .product-details .product-reviews .comment-list .comment .left-side .user-info {
padding-left: 0; } }
.product .product-details .product-reviews .comment-list .comment .right-side {
padding: 1.5em 0;
overflow: auto; }
@media (max-width: 640px) {
.product .product-details .product-reviews .comment-list .comment .right-side {
padding: 1em 0; } }
@media (max-width: 640px) {
.product .product-details .product-reviews .comment-list .comment .right-side .rating {
float: none; } }
.product .product-details .product-reviews .comment-list .comment .right-side ul:before, .product .product-details .product-reviews .comment-list .comment .right-side ul:after {
content: "";
visibility: hidden;
height: 0;
display: table; }
.product .product-details .product-reviews .comment-list .comment .right-side ul:after {
clear: both; }
.product .product-details .product-reviews .comment-list .comment .right-side ul li {
float: left;
margin-left: 0.5em; }
.product .product-details .product-reviews .comment-list .comment .right-side ul li:first-child {
margin: 0; }
.product .product-details .product-reviews .comment-list .comment .right-side ul li img {
width: 20px;
height: auto; }
.product .product-details .product-reviews .comment-list .comment .comment-txt {
clear: both;
padding: 1.5em 0 0 6em; }
@media (max-width: 640px) {
.product .product-details .product-reviews .comment-list .comment .comment-txt {
padding: 0; } }
.product .product-details .produse-similare {
margin-top: 5em; }
.product .product-details .produse-similare .wrapper {
border-bottom: 1px solid #ccc; }
.product .product-details .produse-similare .wrapper h2 {
font-family: "MarkProMedium", Helvetica, Arial, sans-serif;
font-size: 1.625em; }
.product .product-details .produse-similare .produse-similare-wrapper {
margin-top: 2.5em; }
@media (max-width: 768px) {
.product .product-details .produse-similare .produse-similare-wrapper .flex.three .col {
flex-basis: 50%;
max-width: 50%;
width: 50%; } }
@media (max-width: 480px) {
.product .product-details .produse-similare .produse-similare-wrapper .flex.three .col {
flex-basis: 100%;
max-width: 100%;
width: 100%; } }
@media (max-width: 1400px) {
.product .product-details .produse-similare .produse-similare-wrapper .results-item .results-item-title {
font-size: 1em; } }
@media (max-width: 1400px) {
.product .product-details .produse-similare .produse-similare-wrapper .results-item .results-item-price .results-item-stock {
display: block; } }
.product .product-details .produse-similare .produse-similare-wrapper .results-item .results-item-price .price {
font-size: 100%; }
@media (max-width: 1400px) {
.product .product-details .produse-similare .produse-similare-wrapper .results-item .results-item-price .price {
display: block;
float: none; } }
.product .linkuri-utile {
background: #ffffff; }
.product .linkuri-utile .container {
padding: 0; }
.product .linkuri-utile .lu-wrapper h2 {
text-transform: uppercase;
font-size: 1.625em; }
@media (max-width: 1170px) {
.product .linkuri-utile {
padding: 1em 0 3em 0; } }.container-huge {
margin: 0 auto;
}
.single-product .product .product-details .produse-similare {
margin-top: 1em;
}
.single-product .linkuri-utile {
padding: 2em 0 4em 0;
}
.single-product .linkuri-utile h2 {
padding: 0;
}
.page-template-blog .linkuri-utile {
padding: 2em 0 4em 0;
}
.page-template-default .linkuri-utile,
.page-template-intrebari-generale .linkuri-utile {
padding-top: 4em;
}
.intrebari-generale .linkuri-utile .lu-list li {
background: none;
}
.menu-list-items li:hover {
background: #fafafa;
transition: all 0.4s;
}
@media (min-width: 960px) and (max-width: 1024px) {
.product .product-details .product-details-main .three .col:nth-child(1),
.product .product-details .product-details-main .three .col:nth-child(2),
.product .product-details .product-details-main .three .col:nth-child(3) {
flex-basis: 33.33%;
width: 33.33%;
max-width: 33.33%;
}
}
@media (min-width: 768px) and (max-width: 960px) {
header .header-search .header-user .header-search-phone {
display: inline-block;
}
}
.tax-product_cat.woocommerce,
.single-product.woocommerce {
display: block;
}
.post-type-archive-product.woocommerce {
display: block;
} .woocommerce .star-rating span::before,
.comment-form p.stars a::before {
color: #ffd033;
} .comment-form p.stars a {
width: 1.563em;
height: 1.563em;
margin-right: .5em;
}
.comment-form .comment-notes {
display: none;
}
.comment-form p.stars a::before {
font-size: 1.563em;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
textarea {
border: 1px solid #ccc;
}
.comment-form .form-submit {
margin-top: 1em;
}
.comment-form .form-submit .btn-comment {
background: #b5b5b5;
color: #fff;
padding: 1em 1.5em;
font-family: "MarkPro";
}
#cantitate {
border: 1px solid #ccc;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/down_dark.svg) no-repeat right;
background-position-x: right;
background-position-y: center;
background-position-x: right;
background-position-y: center;
background-position: right 1em center;
-webkit-appearance: none;
}
div.wpcf7 .ajax-loader {
visibility: none;
display: none;
} .caret-clicked {
transform: rotate(180deg);
} .flex-favorites .results-item img,
.flex-favorites form {
width: 100%;
}
.flex-favorites form {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
align-items: flex-start;
margin: 0 -.5em 0 -.5em;
}
.flex-favorites .woocommerce-message,
.flex-favorites .tinv-wishlist .woocommerce-message {
width: 100%;
}
.tinvwl_add_to_wishlist_button {
margin: 2em auto 0 auto;
}
.remove-from-fav {
margin: 1em 0 2em 0;
text-align: center;
}
.remove-fav-btn {
padding: 1em 2em;
color: #000;
background: #ffd033;
}
.return-to-shop {
margin-top: 1em;
}
.return-to-shop a {
background: #ffd033;
color: #ffffff;
font-family: "MarkProBold";
padding: .35em 1em;
} .post-type-archive-product #mobila-comanda {
width: 100%;
} .product-details-main-price .product-options {
margin-bottom: 1em;
}
.optiuni-necesar {
color: #aa0000;
text-align: center;
margin-top: 1em;
margin-bottom: 0;
display: none;
} #product-addons-total {
display: none;
}
.product-addon {
display: none;
}
.product-addon.product-addon-dimensiuni {
display: block;
} .product .product-details .product-details-main .product-details-main-price form.wpcf7-form {
padding: 1.5em 1em;
} .woocommerce-notices-wrapper,
#woocommerce_billing_fields_ro,
.woocommerce-page #payment #place_order,
.place-order,
.optional,
#row-tip-persoana {
display: none;
} .page-template-checkout .woocommerce {
display: block;
}
.checkout-delivery-fields.individual p.form-row,
.checkout-billing p.form-row {
width: 100%;
float: none;
}
.flex-shipping-billing .select2-selection,
.flex-shipping-billing .select2-selection__arrow,
.flex-shipping-billing .select2-selection__rendered,
.flex-shipping-billing .select2-selection,
.flex-shipping-billing .select2-selection__arrow,
.flex-shipping-billing .select2-container--default .select2-selection--single .select2-selection__rendered,
.checkout-delivery-fields.individual .select2-selection,
.checkout-delivery-fields.individual .select2-selection__arrow,
.checkout-delivery-fields.individual .select2-selection__rendered,
.checkout-billing-fields .select2-selection,
.checkout-billing-fields .select2-selection__arrow,
.checkout-billing-fields .select2-container--default .select2-selection--single .select2-selection__rendered {
height: 3.125em;
min-height: 3.125em;
line-height: 3.125em;
}
.product-checkout-img {
width: 50px;
height: auto;
}
.page-template-checkout .woocommerce table.shop_table {
border: none;
margin: 0;
padding: 0;
}
.page-template-checkout .woocommerce table.shop_table td {
border: none;
}
.checkout-basket.gray.mc-shopping {
padding: 1em;
}
@media (max-width: 640px) {
.checkout-basket.gray.mc-shopping {
padding: 0;
}
}
.mc-checkout-product-img {
width: 80px;
display: block;
margin-right: 1em;
}
.checkout aside .checkout-aside .checkout-aside-total strong {
font-size: 225%;
}
.checkout aside .checkout-aside .checkout-aside-total strong span {
display: inline-block;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
background: #f8f8f8;
border-radius: 0;
}
.woocommerce-checkout #payment ul.payment_methods {
display: flex;
padding: 0;
border-bottom: none;
flex-wrap: wrap;
}
.woocommerce-checkout #payment ul.payment_methods li {
flex-basis: 50%;
max-width: 50%;
width: 50%;
}
@media (max-width: 640px) {
.woocommerce-checkout #payment ul.payment_methods {
display: block;
}
.woocommerce-checkout #payment ul.payment_methods li {
flex-basis: 100%;
max-width: 100%;
width: 100%;
}
}
@media (max-width: 640px) {
.mc-checkout-product-img {
display: none;
}
}
#payment {
padding: 2em;
}
.wc_payment_methods {
padding: 0;
}
.payment_method_cod input[type="radio"],
.payment_method_mobilpay input[type="radio"] {
float: left;
}
.woocommerce-checkout #payment ul.payment_methods li input {
margin: 0;
}
.payment_method_cod {
background: none;
border: none;
}
.woocommerce-checkout #payment div.payment_box {
background: none;
font-size: 90%;
}
.woocommerce-checkout #payment div.payment_box::before {
background: none;
border: none;
position: relative;
}
.payment_method_bacs {
display: table-cell;
line-height: 1.5;
}
.payment_method_cod i {
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/ramburs.svg) no-repeat center;
background-size: auto;
background-size: 30px 30px;
margin-left: .5em;
margin-right: .5em;
vertical-align: middle;
float: left;
}
.payment_method_mobilpay i {
width: 30px;
height: 30px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/card.svg) no-repeat center;
background-size: auto;
background-size: 30px 30px;
margin-left: .5em;
margin-right: .5em;
vertical-align: middle;
float: left;
}
@media (max-width: 768px) {
.checkout-aside.yellow {
margin-top: 2em;
}
}
#popup-material .product-added .materials-options ul li img {
width: 50px;
height: 50px;
} .flex-shipping-billing {
width: 100%;
max-width: 100%;
flex-basis: 100%;
}
.contul-meu .comenzile-mele .flex-shipping-billing .col:nth-child(1),
.contul-meu .comenzile-mele .flex-shipping-billing .col:nth-child(2) {
width: 50%;
max-width: 50%;
flex-basis: 50%;
}
.flex-shipping-billing .account-details-delivery .form-row {
width: 100%;
padding: 0;
margin: 0 0 1em 0;
float: none;
}
.cont-date-personale .account-form .account-details-billing .account-details-billing-title strong {
display: inline-block;
margin-bottom: 4em;
}
.account-details-billing-title strong {
display: inline-block;
margin-bottom: 4em;
}
.mc-shipping-fields li .form-row {
width: 100%;
display: block;
float: none;
}
.mc-form-shipping,
.pers_jurid,
.checkout-juridica,
#checkout-different-address {
display: none;
}
.label-different-address {
cursor: pointer;
}
.woocommerce .woocommerce-ordering {
margin: 0;
padding: 0;
}
.woocommerce .woocommerce-ordering select {
width: 13em;
background-color: transparent;
border: 1px solid #2e2e2e;
margin: 18px 0;
border: 1px solid #ccc;
font-size: 12px;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/down_dark.svg) no-repeat right;
background-position-x: right;
background-position-y: center;
background-position: right 1em center;
-webkit-appearance: none;
}
.checkout-basket.gray.mc-shopping .checkout-basket.gray.mc-shopping {
margin-bottom: 0;
}
#account_password,
#confirm_password {
border: 1px solid #ccc;
}
.create-account .row.two {
margin-left: -1em;
margin-right: -1em;
display: flex;
flex-wrap: wrap;
}
.create-account .row.two .column {
flex-basis: 50%;
max-width: 50%;
width: 50%;
padding: 0 1em;
}
@media (max-width: 960px) {
.create-account .row.two .column {
flex-basis: 100%;
max-width: 100%;
width: 100%;
padding: 0 1em;
}
}
.flex .col.col-full {
flex-basis: 100%;
max-width: 100%;
width: 100%;
}
.woocommerce-info {
border-top-color: #ffeeb4;
} .mc-product-price-filter .widget-title,
.mc-filter-by-price .woocommerce-result-count,
.berocket_aapf_widget-title_div {
display: none;
}
.btn-see-more {
display: block;
padding-top: 2em;
} .berocket_aapf_widget_loading_image {
display: none !important;
}
.category .search-results-info .total-results .berocket_aapf_widget li:last-child {
margin-left: 0;
}
.ui-slider-range {
background: #ffd033 !important;
}
.slide .ui-widget-content {
background: #aaa !important;
border: none !important;
}
ul.berocket_aapf_widget {
margin-bottom: 0 !important;
}
.berocket_aapf_widget .berocket_filter_price_slider.ui-widget-content .ui-slider-handle {
border: none;
border-radius: 25px;
background: #2e2e2e;
height: 17px;
width: 17px;
top: -0.52em;
cursor: pointer;
}
.mc-left-prs input,
.mc-right-prs input {
min-width: 3.5em;
width: 3.5em;
background: #f8f8f8;
display: inline-block;
vertical-align: middle;
margin: 0;
padding: 0;
}
ul.berocket_aapf_widget li > span.mc-currency {
display: inline-block;
top: .05em;
position: relative;
}
.category .search-results-info .total-results {
position: relative;
top: 0;
transform: none;
}
.category .search-results-info .total-results .total-results-pag,
.category .search-results-info .total-results .mc-product-price-filter,
.category .search-results-info .total-results .mc-filter-by-price {
display: inline-block;
vertical-align: middle;
}
.category .search-results-info .total-results .mc-product-price-filter {
margin-left: 2em;
width: 40em;
}
@media(max-width: 1100px) {
.category .search-results-info .total-results .mc-product-price-filter {
width: 30em;
}
}
.mc-slide-prs {
min-width: 10em;
}
.category .search-results-info .total-results .mc-product-price-filter ul li {
display: inline-block;
margin-left: 2em;
}
.category .search-results-info .total-results .mc-product-price-filter ul li:first-child {
margin-left: 0;
}
.category .search-results-info .total-results .mc-product-price-filter ul li:last-child {
margin-left: 2em;
}
.search-page .search-results-info {
padding: 0 1em !important;
}
@media (max-width: 960px) {
.category .search-results-info .total-results {
display: block;
padding: 2em 0;
}
.category .search-results-info .total-results .total-results-pag,
.category .search-results-info .total-results .mc-product-price-filter,
.category .search-results-info .total-results .mc-filter-by-price {
display: block;
vertical-align: middle;
}
.category .search-results-info .total-results .total-results-pag {
text-align: center;
overflow: auto;
}
.total-results-pag .woocommerce-result-count {
width: 100%;
}
.mc-product-price-filter {
margin: 0 auto;
width: 100% !important;
}
.berocket_aapf_widget {
padding: 0 1em !important;
margin-right: 0 !important;
}
.category .search-results-info .total-results .mc-product-price-filter ul li {
display: block;
text-align: center;
margin-left: 0;
}
.category .search-results-info .total-results .mc-product-price-filter ul li:last-child {
margin-left: 0;
}
.category .search-results-info .total-results .mc-product-price-filter {
margin-left: 0;
padding: 1em 0;
}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
float: none;
text-align: center;
}
.orderby {
margin-bottom: 0 !important;
margin: 0 auto !important;
}
.mc-left-prs {
padding-bottom: 1em !important;
}
.mc-right-prs {
padding-top: 1em !important;
}
}
.search-results .search-page .search-results-info {
padding: 1em !important;
}
.search-no-results .search-page .search-results-info {
padding: 1em !important;
}
.flex.three .col-no-results-found {
text-align: center;
width: 100%;
max-width: 100%;
flex-basis: 100%;
}
@media (max-width: 600px) {
.product-added .row-cos .img {
margin-left: auto !important;
margin-right: auto;
margin-top: 0;
margin-bottom: 0;
padding-bottom: 1em;
}
}
.cart {
text-align: center;
} .produse_publicate_abonare {
width: 400px;
max-width: 100%;
position: fixed;
bottom: 40px;
left: 0;
background: #fff;
z-index: 10;
} .produse_publicate_abonare {
display: none;
}
.produse_publicate_abonare .ppa_form {
border: 1px solid #eee;
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
background-color: #fff;
-moz-box-shadow: 1px 2px 5px rgba(0,0,0,.13);
-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,.13);
box-shadow: 1px 2px 5px rgba(0,0,0,.13);
padding: 1.2em;
}
.produse_publicate_abonare .ppa_form_inner {
position: relative;
}
.produse_publicate_abonare .ppa_form_inner h2 {
color: #414141;
font-size: 1em;
font-weight: 700;
line-height: 20px;
float: left;
width: 90%;
}
.produse_publicate_abonare .ppa_form_inner .close {
width: 17px;
height: 15px;
display: block;
position: absolute;
top: 0;
right: 0;
opacity: 1;
}
.produse_publicate_abonare .pp_input {
clear: both;
overflow: hidden;
padding-top: 1.2em;
}
.produse_publicate_abonare .pp_input input[type="email"] {
border: 1px solid #c9c9c9;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
width: 89%;
float: left;
height: 2.5em;
line-height: 2.5em;
font-size: 1em;
color: #414141;
line-height: 2.5em;
border-right: none;
padding-left: 1em;
}
.produse_publicate_abonare .pp_input button {
width: 11%;
height: 2.5em;
line-height: 2.5em;
text-align: center;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
background-color: #56ba3e;
border: none;
position: relative;
}
.produse_publicate_abonare button .fa {
color: #fff;
}
.produse_publicate_abonare .status.error,
.produse_publicate_abonare .status.success {
margin: 0;
}
.produse_publicate_abonare .status.error {
color: #ff0000;
}
.produse_publicate_abonare .status.success {
color: #00bb0d;
clear: both;
} .vezi_video {
text-align: center;
margin-top: 1.8em;
}
.vezi_video a {
display: inline-block;
border: 1px solid #ccc;
padding: .5em 0.8em;
border-radius: 2px;
}
.vezi_video a i {
display: inline-block;
vertical-align: bottom;
width: 1.5em;
height: 1.5em;
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/play_yellow.svg) no-repeat center;
background-size: 1.5em 1.5em;
margin-right: 0.7em;
}
.fancybox-yt-video .img-product-slideshow-thumb {
width: 100% !important;
} .required-product-addon {
text-align: left;
} @media (max-width: 960px) {
.info-delivery-desktop {
display: none;
}
.info-delivery-mobile {
display: block;
}
.info-delivery-mobile-link {
text-decoration: underline;
}
}
@media (min-width: 960px) {
.info-delivery-desktop {
display: block;
}
.info-delivery-mobile {
display: none;
}
}
header .mini-basket .form-mini-cart .mini-basket-product .mini-basket-product-title {
margin-bottom: 0;
}
.mycart-page .woocommerce {
display: block;
}
.mycart-page .wc-backward {
background: #ffd033 !important;
} .checkbox-custom {
opacity: 0;
position: absolute;
}
.checkbox-custom,
.checkbox-custom-label {
display: inline-block;
vertical-align: middle;
margin: 5px;
cursor: pointer;
}
.checkbox-custom-label {
position: relative;
}
.checkbox-custom + .checkbox-custom-label:before {
content: '';
background: #fff;
display: inline-block;
vertical-align: middle;
width: 15px;
height: 15px;
padding: 2px;
margin-right: 10px;
text-align: center;
}
.checkbox-custom:checked + .checkbox-custom-label:before {
background: #56ba3e;
}
.id-terms-text {
float: right;
width: 85%;
font-size: 1em;
}
#mc-phone-mmenu {
background: #dedede;
color: #6f6f6f;
padding: 1em;
text-align: center;
}
.mc-phone-mmenu-tel {
text-align: left;
margin-left: 1em;
}
.mc-phone-mmenu-tel span {
display: block;
margin-bottom: .3em;
}
.mc-phone-mmenu-tel a {
font-size: 1.500em;
}
.mc-phone-mmenu-img,
.mc-phone-mmenu-tel {
display: inline-block;
vertical-align: middle;
}
.mc-phone-icon {
width: 20px;
height: 35px;
display: block;
background-image: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/mobil.svg);
background-size: 20px 35px;
background-repeat: no-repeat;
}
.sicap-banner .sicap-banner-wrapper {
border: 1px solid #ccc;
padding: 1em 2em;
display: table;
width: 100%;
max-width: 768px;
margin: 0 auto 4em auto;
}
@media (min-width: 320px) and (max-width: 380px) {
.sicap-banner .sicap-banner-wrapper {
padding: 1em;
}
}
.sicap-banner .sicap-banner-wrapper .sicap-banner-left,
.sicap-banner .sicap-banner-wrapper .sicap-banner-right {
display: table-cell;
vertical-align: middle;
}
.sicap-banner .sicap-banner-wrapper .sicap-banner-right {
text-align: right;
}
.sicap-banner .sicap-banner-wrapper .sicap-banner-right .sicap-img {
display: inline-block;
margin: 0 1em;
}
@media (max-width: 960px) {
.sicap-banner .sicap-banner-wrapper {
margin: 0 auto 2em auto;
}
}
@media (max-width: 768px) {
.sicap-banner .sicap-banner-wrapper .sicap-banner-right .sicap-img {
margin: 0;
}
}
.sicap-banner .sicap-banner-wrapper .sicap-banner-left p {
margin: 0;
}
@media (max-width: 600px) {
.sicap-banner .sicap-banner-wrapper {
display: block;
text-align: center;
}
.sicap-banner .sicap-banner-wrapper .sicap-banner-left,
.sicap-banner .sicap-banner-wrapper .sicap-banner-right {
display: block;
text-align: center;
}
.sicap-banner .sicap-banner-wrapper .sicap-banner-left {
margin-bottom: 1em;
}
} .culori_produs {
display: block;
text-align: center;
margin-top: 1em;
}
.culori_produs .culori_produs_c {
display: inline-block;
position: relative;
border: 1px solid #d6d4d4;
width: 40px;
height: 40px;
}
.culori_produs .culori_produs_c a {
display: block;
width: 30px;
height: 30px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
border: 1px solid #d6d4d4;
}
.mc-materiale a:hover,
.mc-cataloage a:hover {
text-decoration: underline;
} .general-page .content-general .wrap-general .cm-available .flex.six .col,
.general-page .content-general .wrap-general .cm-catalog-available .flex.six .col {
flex-basis: 16.66%;
max-width: 16.66%;
width: 16.66%;
}
@media (max-width: 1400px) {
.general-page .content-general .wrap-general .cm-available .flex.six .col,
.general-page .content-general .wrap-general .cm-catalog-available .flex.six .col {
flex-basis: 20%;
max-width: 20%;
width: 20%;
}
}
@media (max-width: 1100px) {
.general-page .content-general .wrap-general .cm-available .flex.six .col,
.general-page .content-general .wrap-general .cm-catalog-available .flex.six .col {
flex-basis: 25%;
max-width: 25%;
width: 25%;
}
}
@media (max-width: 960px) {
.general-page .content-general .wrap-general .cm-available .flex.six .col,
.general-page .content-general .wrap-general .cm-catalog-available .flex.six .col {
flex-basis: 16.66%;
max-width: 16.66%;
width: 16.66%;
}
}
@media (max-width: 800px) {
.general-page .content-general .wrap-general .cm-available .flex.six .col,
.general-page .content-general .wrap-general .cm-catalog-available .flex.six .col {
flex-basis: 25%;
max-width: 25%;
width: 25%;
}
}
@media (max-width: 600px) {
.general-page .content-general .wrap-general .cm-available .flex.six .col,
.general-page .content-general .wrap-general .cm-catalog-available .flex.six .col {
flex-basis: 33.33%;
max-width: 33.33%;
width: 33.33%;
}
}
@media (max-width: 480px) {
.general-page .content-general .wrap-general .cm-available .flex.six .col,
.general-page .content-general .wrap-general .cm-catalog-available .flex.six .col {
flex-basis: 50%;
max-width: 50%;
width: 50%;
}
}
.cm-available {
padding-right: 2.5em;
}
@media (max-width: 960px) {
.cm-available {
padding-right: 0;
}
}
.cm-available .cm-box {
text-align: center;
margin-bottom: 1em;
}
.cm-available .cm-box .cm-box-link {
display: block;
}
.cm-available .cm-box-img {
border: 1px solid #ccc;
padding: .5em;
margin-bottom: .75em;
}
.cm-available .cm-box-image {
min-height: 125px;
}
.cm-available .cm-box-name {
font-size: 0.875em;
}
.cm-catalog-available {
margin-bottom: 2em;
padding-right: 2.5em;
}
@media(max-width: 960px) {
.cm-catalog-available {
padding-right: 0;
}
}
.cm-catalog-available .cm-c-box {
margin-bottom: .75em;
}
.cm-catalog-available .cm-c-box .cm-c-box-img {
border: 1px solid #ccc;
padding: .5em;
min-height: 125px;
}
.general-content a {
text-decoration: underline;
}
.mc-cataloage {
position: relative;
}
.mc-cataloage a.is-active:after {
display: block;
position: absolute;
top: 29px;
left: 32px;
text-align: center;
content: "";
width: 0px;
height: 0px;
border-left: 13px solid transparent;
border-right: 13px solid transparent;
border-bottom: 13px solid #fafafa;
}
.mc-materiale {
position: relative;
}
.mc-materiale a.is-active:after {
display: block;
position: absolute;
top: 29px;
left: 29px;
text-align: center;
content: "";
width: 0px;
height: 0px;
border-left: 13px solid transparent;
border-right: 13px solid transparent;
border-bottom: 13px solid #e8e8e8;
}
.menu-materiale-container {
position: absolute;
top: 3.2em;
left: 0;
right: 0;
bottom: 0;
padding: 0 1em;
text-align: center;
display: none;
}
.materiale-categories {
background-color: #e8e8e8;
padding: 1em;
text-align: left;
}
.materiale-list li {
display: inline-block;
margin-right: 1em;
}
.materiale-list li .materiale-list-item:hover {
text-decoration: underline;
}
.materiale-slideshow {
display: none;
background: #fafafa;
padding: 2em 6em;
}
.materiale-slideshow .item {
display: inline-flex;
padding: 0 1em;
} .materiale-company {
text-align: left;
}
.materiale-company-logo,
.materiale-company-text-wrapper {
display: block;
}
.materiale-company-logo {
float: left;
}
.materiale-company-text-wrapper {
padding-left: 1em;
}
.materiale-company-title {
margin-top: .75em;
}
.materiale-company-text-wrapper {
text-align: left;
display: block;
overflow: auto;
}
.materiale-text p {
font-size: 0.938em;
}
.materiale-company-title {
text-align: center;
}
.materiale-slideshow .owl-prev,
.materiale-slideshow .owl-next {
position: absolute;
top: 0;
bottom: 0;
margin: auto;
display: block;
}
.materiale-slideshow .owl-prev {
left: 3em;
}
.materiale-slideshow .owl-next {
right: 3em;
}
.materiale-slideshow-wrapper {
display: none;
}
.catalog-mc {
display: block;
height: 100%;
}
.stars {
display: inline-block;
}
@media (min-width: 1920px) {
header .header-form input[type="search"] {
min-width: 16vw;
}
}
#preview {
position: absolute;
border: 1px solid #ccc;
background: #333;
padding: 5px 5px 0 5px;
display: none;
color: #fff;
max-width: 300px;
z-index: 1;
}
.other-images-second .image-text .inner .arrow-right {
vertical-align: inherit;
}
.checkout-aside.yellow {
margin-bottom: 2em;
}
.single-producers .linkuri-utile {
padding: 4em 0 4em 0;
}
.cookie-notice-container a {
text-decoration: underline;
}
.product-details-review {
margin-top: 3em;
}
.culori_produs .culori_produs_c {
margin: 0 .15em;
}
.single-post .linkuri-utile {
padding: 4em 0;
}
.header-menu .menu-container .sub-sub-category {
margin-top: 0;
margin-bottom: 2em;
border-top: none;
border-bottom: 1px dotted #a9a9a9;
padding-bottom: 1em;
padding-top: 0;
}
.header-menu .menu-container .menu-list li div.menu-cat a i:nth-child(1) {
width: 20px;
height: 20px;
background-size: 20px 20px;
}
.owl-carousel .owl-item img.img-fancybox-hidden {
display: none;
}
.catalog-box {
border: none;
padding: 0;
min-height: auto;
} @media (max-width: 480px) {
.breadcrumbs nav ul li::before {
display: none;
}
.breadcrumbs nav ul li::after {
content: " ";
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/right_dark.svg);
background-repeat: repeat;
background-size: auto;
background-repeat: no-repeat;
background-size: 6px 11px;
width: 16px;
height: 16px;
display: inline-block;
margin-left: 10px;
position: relative;
top: 6px;
}
.breadcrumbs nav ul li:first-child,
.breadcrumbs nav ul li {
margin-right: 0;
}
.breadcrumbs nav ul li:last-child::after {
display: none;
}
} .search-page-footer {
overflow: auto;
padding: 1em 0;
}
.search-page-footer .product-pagination {
margin-top: 0;
margin-left: 1em;
display: block;
float: left;
}
.search-page-footer .mc-filter-by-price  {
float: left;
margin-top: .45em;
}
.search-page-footer .mc-filter-by-price select {
margin: 0;
} .category .search-results-info .total-results .mc-product-price-filter {
width: 35em;
}
.thumb-product-cat-svg {
border: 1px solid #ccc;
width: 132px;
height: 100px;
padding: .5em;
}
.header-menu .menu-container .menu-list li div.menu-cat a i:nth-child(1) {
width: 20px;
height: 20px;
background-size: 20px 20px;
}
.product-box .results-item .results-item-price,
.product-box .results-item .results-item-title,
.produse-similare .results-item-price {
font-size: 1.1em;
}
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder {
margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
.product .product-details .product-details-main .three .col:nth-child(1) {
flex-basis: 100%;
width: 100%;
max-width: 100%;
}
.product .product-details .product-details-main .three .col:nth-child(1) .product-details-main-image {
max-width: 30em;
margin: 0 auto;
}
}
@media screen and (max-width: 1400px) {
.header-menu .menu-container .menu-list li div.menu-cat a i:nth-child(1) {
display: inline-block;
}
}
@media screen and (min-width: 1170px) and (max-width: 1250px) {
.header-menu .menu-container .menu-list li div.menu-cat a span {
font-size: 0.938em;
}
} .mc-mmenu-icons {
display: inline-block;
width: 20px;
height: 20px;
vertical-align: middle;
background-size: 20px 20px;
}
.mc-mmenu-title {
vertical-align: middle;
margin-left: .3em;
}
.owl-carousel .owl-item img {
display: inline-block;
width: auto;
}
.produse-similare-wrapper .results-item-image {
text-align: center;
} .whatsapp-mc {
outline: none !important;
visibility: visible !important;
resize: none !important;
overflow: visible !important;
background: none transparent !important;
opacity: 1 !important;
position: fixed !important;
border: 0px !important;
padding: 0px !important;
transition-property: none !important;
z-index: 1000001 !important;
cursor: pointer !important;
float: none !important;
box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 10px 0px !important;
height: 60px !important;
min-height: 60px !important;
max-height: 60px !important;
width: 60px !important;
min-width: 60px !important;
max-width: 60px !important;
border-radius: 50% !important;
transform: rotate(0deg) translateZ(0px) !important;
transform-origin: 0px center !important;
margin: 0px !important;
top: auto !important;
bottom: 20px !important;
right: 20px !important;
left: auto !important;
display: block !important;
}
@media screen and (max-width: 640px) {
.whatsapp-mc {
right: 0 !important;
left: 20px !important;
}
}
.whatsapp-link {
display: block;
}
.whatsapp-tooltip {
display: none;
background: #fff;
color: #000;
border: 1px solid #000;
padding: 1em;
margin: 0;
top: auto;
position: fixed;
bottom: 6em;
right: 100px;
left: auto;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-align: center;
z-index: 1;
}
.whatsapp-tooltip::after {
content: "";
position: absolute;
top: 100%;
right: 1.5em;
margin-left: -5px;
border-width: 8px;
border-style: solid;
border-color: #000 transparent transparent;
}
.whatsapp-tooltip p {
margin: 0;
}
.whatsapp-mc:hover + .whatsapp-tooltip {
display: block;
}
@media (max-width: 640px) {
.whatsapp-mc:hover + .whatsapp-tooltip {
display: none;
}
}
.fancybox-container {
z-index: 9999999999 !important;
}
.grecaptcha-badge {
opacity: 0;
}
.product-box .price {
margin-right: 1em;
}
#cookie-notice {
background-color: rgba(0, 0, 0, .5) !important;
}
#cn-accept-cookie {
background: none;
background-color: #facf33;
border: none;
color: #fff;
padding: .5em 1.5em;
border-radius: 4px;
text-decoration: none;
}
#cn-more-info {
background: none;
border: none;
color: white;
text-decoration: underline;
line-height: auto;
font-family: "MarkPro", Arial, sans-serif;
}
.materiale-company-title p {
margin: 0;
}
@media (max-width: 768px) {
.product .product-details .product-details-main .product-details-main-image .product-details-main-image-holder .item img {
width: auto;
}
}
@media (max-width: 480px) {
.search-page .search-results .results-item-image img {
width: auto;
}
}
.product .product-details .product-details-technical .flex {
margin: 0;
}
.product .product-details .product-details-technical .col {
padding: 0;
}
.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
font-size: 1.2em;
color: #9c9c9c;
}
.search-page .wp-pagenavi span,
.search-page .wp-pagenavi .first,
.search-page .wp-pagenavi .page,
.search-page .wp-pagenavi .nextpostslink,
.search-page .wp-pagenavi .previouspostslink {
padding: .5em;
margin-left: .2em;
}
.search-page.search-page-footer {
display: block;
float: right;
}
.fancybox-yt-video {
vertical-align: middle;
height: 60px;
position: relative;
display: block;
}
.mc-owl-prod-thumb img {
height: 100%;
width: auto;
}
.fancybox-yt-video img {
display: block !important;
height: 100%;
width: auto;
position: absolute;
top: 50%;
transform: translateY(-50%);
}
@media screen and (min-width: 320px) and (max-width: 420px) {
.fancybox-yt-video {
background: #f7f7f7;
}
.fancybox-yt-video img {
display: none !important;
}
}
.fancybox-yt-video i {
background: url(//mobilacomandabacau.ro/wp-content/themes/mobila-comanda/img/svg/play_yellow.svg) no-repeat center center;
display: block;
width: 2em;
height: 2em;
background-size: 2em 2em;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.fancybox-yt-video .img-product-slideshow-thumb {
width: 100%;
}
.product .product-details .product-details-main .product-details-main-image .owl-product .owl-prev,
.product .product-details .product-details-main .product-details-main-image .owl-product .owl-next {
height: auto;
}
.linkuri-utile {
clear: both;
}
@media(min-width: 960px) and (max-width: 992px) {
.category .search-results-info .total-results .mc-product-price-filter {
width: 25em;
}
}
@media(max-width: 960px) {
.search-page.search-page-footer {
display: block;
text-align: center;
float: none;
}
.search-page-footer .mc-filter-by-price {
float: none;
margin-top: 0;
margin-bottom: 1em;
}
.search-page-footer .product-pagination {
float: none;
text-align: center;
margin-left: 0;
}
}
@media (max-width: 768px) {
.culori_produs {
text-align: left;
}
}
@media (max-width: 640px) {
.fancybox-thumbs.fancybox-thumbs-y {
display: none;
}
.fancybox-show-thumbs .fancybox-inner {
right: 0;
}
}
.search-page .product-pagination.product-pagination-mobile {
margin-top: 0;
margin-bottom: 2em;
text-align: center;
display: none;
}
@media (max-width: 960px) {
.search-page .product-pagination.product-pagination-mobile {
display: block;
}
}
.product-pagination .mc-filter-by-price,
.product-pagination .navigation {
display: inline-block;
vertical-align: middle;
}
.product-pagination .navigation {
margin-left: 1em;
}
.search-page .search-results-info {
padding: 1em !important;
}
@media (max-width: 960px) {
.category .search-results-info .total-results {
padding: 2em 0 0 0;
}
.search-page .search-results-info .product-pagination {
text-align: center;
margin-top: 0;
display: block;
position: relative;
top: 0;
transform: none;
right: unset;
padding-bottom: 2em;
}
}
.search-page-footer .product-pagination {
margin-left: 0;
}
.optiuni-necesar {
font-weight: bold;
font-size: .9em;
line-height: 1.3;
}
.warning-color {
background: #ffeeb4;
animation: crescendo 1.2s alternate 0s ease-in;
}
@keyframes crescendo {
0%   {transform: scale(1);}
50%  {transform: scale(1.1);}
100% {transform: scale(1);}
}
.menu-catalog-container .catalog-img .catalog-img-wrapper {
border: 0;
padding: 0;
}
.vezi_video a.fancybox-yt-hidden {
display: none;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table select {
margin: 0;
}
.checkout-basket.gray.mc-shopping .checkout-basket.gray.mc-shopping {
padding: 0 !important;
}
.woocommerce-checkout aside.is_stuck {
position: fixed !important;
top: 0 !important;
}
.menu-container .col-mc-etape {
width: 22% !important;
flex-basis: 22% !important;
max-width: 22% !important;
height: 152px;
}
.mc-mobil-video-icon {
width: 24px;
margin-right: 6px;
}
.mm-listitem strong {
opacity: 0.7;
}
.wpcf7-recaptcha {
margin-bottom: 0.9em;
}
#payment_method_bacs, #payment_method_tbiro {
float: left;
margin-right: 10px !important;
}
html, body {
overflow-x: hidden;
}
@media (min-width: 1280px) {
.product-box .results-item .results-item-image img {
height: 333px;
width: auto;
}
}
@media (max-width: 767px) {
.woocommerce-ordering select.orderby { font-size: 16px !important; }
}
[data-id="254"] {
display: none !important;
}
[data-id="126"] {
display: none !important;
}
[data-id="80"] {
display: none !important;
}
[data-id="79"] {
display: none !important;
}
[data-id="129"] {
display: none !important;
}
[data-id="134"] {
display: none !important;
}
[data-id="138"] {
display: none !important;
}
[data-id="139"] {
display: none !important;
}
[data-id="136"] {
display: none !important;
}
[data-id="137"] {
display: none !important;
}
[data-id="133"] {
display: none !important;
}
[data-id="82"] {
display: none !important;
}
[data-id="84"] {
display: none !important;
}
[data-id="292"] {
display: none !important;
}:root {
--clr-primary:      #1a1a1a;
--clr-accent:       #f0c040;
--clr-accent-dark:  #d4a820;
--clr-bg:           #ffffff;
--clr-bg-alt:       #f5f5f3;
--clr-text:         #1a1a1a;
--clr-text-muted:   #666666;
--clr-border:       #e8e8e6;
--radius-sm:  4px;
--radius:     6px;
--radius-lg:  12px;
--transition: 0.22s ease;
--shadow-sm:  0 1px 6px rgba(0,0,0,.08);
--shadow:     0 2px 16px rgba(0,0,0,.10);
--shadow-lg:  0 6px 28px rgba(0,0,0,.14); --space-xs:  clamp(8px,  1vw,  12px);
--space-sm:  clamp(12px, 2vw,  20px);
--space-md:  clamp(20px, 3vw,  32px);
--space-lg:  clamp(32px, 4vw,  56px);
--space-xl:  clamp(48px, 6vw,  80px); --container-pad: clamp(16px, 4vw, 48px);
} *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; } .container,
.hero-container {
width: 100%;
max-width: 1380px;
margin-inline: auto;
padding-inline: var(--container-pad);
} section { padding-block: var(--space-lg); } .section-title {
font-size: clamp(1.2rem, 3vw, 1.9rem);
font-weight: 800;
color: var(--clr-primary);
margin-bottom: var(--space-sm);
line-height: 1.2;
}
.section-header { margin-bottom: var(--space-sm); }
.section-label {
display: block;
font-size: clamp(.7rem, 1.2vw, .78rem);
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--clr-text-muted);
margin-bottom: 4px;
} .btn-descopera {
display: inline-block;
padding: clamp(8px, 1.2vw, 11px) clamp(18px, 2.5vw, 30px);
background: var(--clr-accent);
color: var(--clr-primary);
font-weight: 700;
font-size: clamp(.78rem, 1.2vw, .92rem);
letter-spacing: .05em;
text-transform: uppercase;
border-radius: var(--radius);
transition: background var(--transition), transform var(--transition);
white-space: nowrap;
}
.btn-descopera:hover,
.btn-descopera:focus-visible {
background: var(--clr-accent-dark);
transform: translateY(-2px);
outline: none;
}
.btn-descopera.btn-sm {
padding: 6px 16px;
font-size: .78rem;
}
.btn-vezi {
display: inline-block;
padding: 8px 20px;
background: var(--clr-accent);
color: var(--clr-primary);
font-weight: 700;
font-size: .82rem;
letter-spacing: .04em;
text-transform: uppercase;
border-radius: var(--radius);
transition: background var(--transition);
white-space: nowrap;
}
.btn-vezi:hover,
.btn-vezi:focus-visible {
background: var(--clr-accent-dark);
outline: none;
} .arrow-right {
display: inline-block;
width: 14px;
height: 14px;
border-top: 2px solid currentColor;
border-right: 2px solid currentColor;
transform: rotate(45deg);
flex-shrink: 0;
} .hero-section {
background: var(--clr-bg);
padding-block: 0;
} .hero-top {
display: grid;
grid-template-columns: 1fr;
gap: clamp(6px, 1vw, 10px);
margin-bottom: clamp(6px, 1vw, 10px);
}
@media (min-width: 768px) {
.hero-top { grid-template-columns: 1fr 1fr; }
} .hero-main { width: 100%; }
.hero-main-inner {
width: 100%;
height: clamp(200px, 42vw, 480px);
background-size: cover;
background-position: center;
border-radius: var(--radius);
position: relative;
overflow: hidden;
} .hero-secondary {
display: flex;
flex-direction: row;
gap: clamp(6px, 1vw, 10px);
}
@media (min-width: 768px) {
.hero-secondary { flex-direction: column; }
}
.hero-secondary-item {
flex: 1;
min-height: clamp(110px, 18vw, 230px);
background-size: cover;
background-position: center;
border-radius: var(--radius);
position: relative;
overflow: hidden;
} .hero-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,.62) 0%, transparent 65%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-end;
padding: clamp(12px, 2.5vw, 28px);
text-align: center;
}
.hero-overlay h2,
.hero-overlay h6 {
color: #fff;
margin-bottom: clamp(8px, 1.5vw, 14px);
text-shadow: 0 1px 6px rgba(0,0,0,.5);
line-height: 1.2;
}
.hero-overlay h2 { font-size: clamp(1rem, 3vw, 2.2rem); }
.hero-overlay h6 { font-size: clamp(.8rem, 1.8vw, 1.3rem); font-weight: 600; } .hero-bottom {
display: grid;
grid-template-columns: 1fr;
gap: clamp(6px, 1vw, 10px);
}
@media (min-width: 480px) {
.hero-bottom { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
.hero-bottom { grid-template-columns: repeat(3, 1fr); }
}
.hero-bottom-item {
height: clamp(130px, 18vw, 220px);
background-size: cover;
background-position: center;
border-radius: var(--radius);
position: relative;
overflow: hidden;
}
.hero-bottom-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top, rgba(0,0,0,.58) 0%, transparent 55%);
display: flex;
align-items: flex-end;
padding: clamp(10px, 2vw, 20px);
}
.hero-bottom-overlay a {
display: flex;
align-items: center;
gap: 8px;
color: #fff;
font-size: clamp(.78rem, 1.4vw, 1rem);
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
text-shadow: 0 1px 4px rgba(0,0,0,.5);
} .why-us {
background: var(--clr-primary);
padding-block: clamp(28px, 4vw, 48px);
color: #fff;
}
.why-us .section-title {
color: #fff;
text-align: center;
margin-bottom: var(--space-md);
}
.trust-badges-bar {
display: grid;
grid-template-columns: 1fr;
gap: clamp(10px, 2vw, 24px);
}
@media (min-width: 480px) {
.trust-badges-bar { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
.trust-badges-bar { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
display: flex;
align-items: center;
gap: clamp(10px, 1.5vw, 16px);
padding: clamp(10px, 1.5vw, 16px) clamp(12px, 2vw, 20px);
border-left: 3px solid var(--clr-accent);
border-radius: 0 var(--radius) var(--radius) 0;
background: rgba(255,255,255,.04);
}
.trust-icon {
width: clamp(28px, 4vw, 38px);
height: clamp(28px, 4vw, 38px);
background: var(--clr-accent);
border-radius: 50%;
flex-shrink: 0;
}
.trust-text strong {
display: block;
font-size: clamp(.72rem, 1.2vw, .88rem);
font-weight: 800;
letter-spacing: .06em;
text-transform: uppercase;
color: var(--clr-accent);
}
.trust-text small {
font-size: clamp(.66rem, 1vw, .76rem);
color: rgba(255,255,255,.6);
text-transform: uppercase;
line-height: 1.4;
} .product-card {
border-radius: var(--radius);
overflow: hidden;
background: #fff;
box-shadow: var(--shadow-sm);
transition: transform var(--transition), box-shadow var(--transition);
height: 100%;
}
@media (hover: hover) {
.product-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
}
.product-card__img {
width: 100%;
aspect-ratio: 4/3;
background-size: cover;
background-position: center;
}
.product-card__body {
padding: clamp(10px, 1.5vw, 14px) clamp(12px, 1.5vw, 16px);
}
.product-card__body h6 {
font-size: clamp(.8rem, 1.2vw, .92rem);
font-weight: 700;
color: var(--clr-primary);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} .product-card--row .product-card__img { aspect-ratio: 5/3; } .recently-added { background: var(--clr-bg-alt); } .mobilier-la-comanda { background: var(--clr-bg); }
.mlc-inner {
display: grid;
grid-template-columns: 1fr;
gap: var(--space-md);
align-items: center;
}
@media (min-width: 1024px) {
.mlc-inner {
grid-template-columns: 1fr 1fr;
gap: clamp(32px, 5vw, 60px);
}
}
.mlc-content h2 {
font-size: clamp(1.3rem, 3vw, 2.2rem);
font-weight: 800;
margin-bottom: clamp(10px, 1.8vw, 18px);
line-height: 1.2;
}
.mlc-content p {
color: var(--clr-text-muted);
line-height: 1.75;
font-size: clamp(.87rem, 1.3vw, 1rem);
margin-bottom: clamp(16px, 2.5vw, 28px);
}
.yt-channel-link a {
display: inline-flex;
align-items: center;
gap: 10px;
font-weight: 700;
font-size: clamp(.87rem, 1.3vw, .98rem);
color: var(--clr-primary);
transition: opacity var(--transition);
}
.yt-channel-link a:hover { opacity: .72; }
.yt-badge {
width: 36px;
height: 36px;
background: #ff0000;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
flex-shrink: 0;
}
.yt-badge svg { width: 20px; height: 20px; }
.yt-thumb {
position: relative;
border-radius: var(--radius);
overflow: hidden;
}
.yt-thumb img {
width: 100%;
aspect-ratio: 16/9;
object-fit: cover;
}
.yt-play {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0,0,0,.28);
transition: background var(--transition);
}
.yt-play:hover { background: rgba(0,0,0,.50); }
.yt-play img { width: clamp(32px, 6vw, 52px); } .categorii-importante { background: var(--clr-bg-alt); }
.cat-card {
border-radius: var(--radius);
overflow: hidden;
background: #fff;
box-shadow: var(--shadow-sm);
transition: transform var(--transition), box-shadow var(--transition);
height: 100%;
}
@media (hover: hover) {
.cat-card:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}
}
.cat-card__img {
width: 100%;
aspect-ratio: 16/9;
background-size: cover;
background-position: center;
}
.cat-card__footer {
padding: clamp(10px, 1.5vw, 14px);
text-align: center;
} .product-row-section {
background: var(--clr-bg);
padding-block: clamp(26px, 4vw, 44px);
border-bottom: 1px solid var(--clr-border);
}
.product-row-title {
font-size: clamp(1rem, 2.5vw, 1.6rem);
font-weight: 800;
color: var(--clr-primary);
margin-bottom: var(--space-sm);
line-height: 1.2;
} .reclama-banner {
padding-block: clamp(18px, 3vw, 36px);
background: var(--clr-bg-alt);
text-align: center;
}
.reclama-banner a { display: inline-block; }
.reclama-banner img {
display: inline-block;
border-radius: var(--radius);
box-shadow: var(--shadow);
max-width: min(100%, 720px);
width: 100%;
} .testimonials { background: var(--clr-bg-alt); }
.testimonial-card {
display: flex;
flex-direction: column;
gap: clamp(14px, 2.5vw, 28px);
background: #fff;
border-radius: var(--radius-lg);
padding: clamp(16px, 3vw, 32px);
box-shadow: var(--shadow);
}
@media (min-width: 600px) {
.testimonial-card {
flex-direction: row;
align-items: center;
}
}
.testimonial-card__text { flex: 1; min-width: 0; }
.testimonial-card__text h6 {
font-size: clamp(.9rem, 1.5vw, 1.1rem);
font-weight: 800;
margin-bottom: clamp(6px, 1.2vw, 12px);
}
.testimonial-card__text p {
color: var(--clr-text-muted);
font-style: italic;
line-height: 1.75;
font-size: clamp(.84rem, 1.2vw, .98rem);
margin-bottom: clamp(10px, 1.5vw, 16px);
}
.testimonial-card__img {
flex-shrink: 0;
width: 100%;
max-width: 240px;
margin-inline: auto;
}
@media (min-width: 600px) {
.testimonial-card__img {
width: clamp(140px, 22%, 230px);
margin-inline: 0;
}
}
.testimonial-card__img img {
border-radius: var(--radius);
width: 100%;
aspect-ratio: 4/3;
object-fit: cover;
}
.stars {
color: var(--clr-accent);
font-size: clamp(1.1rem, 2vw, 1.4rem);
letter-spacing: 2px;
}  .owl-theme .owl-dots { margin-top: clamp(8px, 1.5vw, 16px) !important; }
.owl-theme .owl-dots .owl-dot span {
background: #ccc !important;
width: 8px !important;
height: 8px !important;
transition: background var(--transition) !important;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
background: var(--clr-accent) !important;
} @media (max-width: 479px) {
.owl-theme .owl-nav { display: none !important; }
} .sr-only {
position: absolute;
width: 1px; height: 1px;
padding: 0; margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
white-space: nowrap;
border: 0;
} @media print {
.hero-overlay,
.owl-theme .owl-nav,
.owl-theme .owl-dots,
.why-us { display: none; }
section { padding-block: 16px; }
.hero-bottom, .hero-top { gap: 4px; }
.hero-main-inner,
.hero-secondary-item,
.hero-bottom-item,
.product-card__img,
.cat-card__img { print-color-adjust: exact; }
}