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

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
@keyframes bounce {
from,
20%,
53%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
40%,
43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0, -4px, 0);
transform: translate3d(0, -4px, 0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
@keyframes flash {
from,
50%,
to {
opacity: 1;
}
25%,
75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
} @-webkit-keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(0.95, 1.05, 1);
transform: scale3d(0.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, 0.95, 1);
transform: scale3d(1.05, 0.95, 1);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
from,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes headShake {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
6.5% {
-webkit-transform: translateX(-6px) rotateY(-9deg);
transform: translateX(-6px) rotateY(-9deg);
}
18.5% {
-webkit-transform: translateX(5px) rotateY(7deg);
transform: translateX(5px) rotateY(7deg);
}
31.5% {
-webkit-transform: translateX(-3px) rotateY(-5deg);
transform: translateX(-3px) rotateY(-5deg);
}
43.5% {
-webkit-transform: translateX(2px) rotateY(3deg);
transform: translateX(2px) rotateY(3deg);
}
50% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.headShake {
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
-webkit-animation-name: headShake;
animation-name: headShake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
to {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
from {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
to {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes wobble {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
@keyframes jello {
from,
11.1%,
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg);
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg);
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg);
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg);
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg);
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg);
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
}
}
.jello {
-webkit-animation-name: jello;
animation-name: jello;
-webkit-transform-origin: center;
transform-origin: center;
}
@-webkit-keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
from,
20%,
40%,
60%,
80%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(0.97, 0.97, 0.97);
transform: scale3d(0.97, 0.97, 0.97);
}
to {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInDown {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInLeft {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInRight {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
from,
60%,
75%,
90%,
to {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
from {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(0.9, 0.9, 0.9);
transform: scale3d(0.9, 0.9, 0.9);
}
50%,
55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
}
.bounceOut {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%,
45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDown {
from {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInDownBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeft {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInLeftBig {
from {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRight {
from {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInRightBig {
from {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes fadeInUpBig {
from {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes fadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
from {
-webkit-transform: perspective(400px) 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(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.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(0.95, 0.95, 0.95);
transform: perspective(400px) scale3d(0.95, 0.95, 0.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-duration: 0.75s;
animation-duration: 0.75s;
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
from {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
to {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
from {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
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: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateIn {
from {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes rotateInUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
from {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
to {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
from {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
to {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
from {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
to {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%,
60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%,
80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
to {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
-webkit-animation-name: hinge;
animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes jackInTheBox {
from {
opacity: 0;
-webkit-transform: scale(0.1) rotate(30deg);
transform: scale(0.1) rotate(30deg);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
50% {
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
}
70% {
-webkit-transform: rotate(3deg);
transform: rotate(3deg);
}
to {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
}
.jackInTheBox {
-webkit-animation-name: jackInTheBox;
animation-name: jackInTheBox;
} @-webkit-keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes rollIn {
from {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
to {
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
from {
opacity: 1;
}
to {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
from {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInDown {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInLeft {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInRight {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomInUp {
from {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
60% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
@keyframes zoomOut {
from {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(0.3, 0.3, 0.3);
transform: scale3d(0.3, 0.3, 0.3);
}
to {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
transform: scale(0.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
}
to {
opacity: 0;
-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
transform: scale(0.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
to {
opacity: 0;
-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
from {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
from {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
from {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
from {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
to {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}.wq_quizCtr.listquiz_quiz .wq-question-votes:after {
content: " ";
display: block;
height: 0;
visibility: hidden;
clear: both;
}
.wq-hidden {
display: none !important;
}
.wq-loading {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
display: none;
background-color: rgba(255, 255, 255, 0.5);
}
.wq-is-loading .wq-loading {
display: block;
}
.wq-loading .wq-spinner {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
z-index: 1010;
}
.wq-locker {
text-align: center;
}
.wq-locker ~ .wq-locker,
.wq-locker ~ .wq-quiz {
display: none;
}
.wq-error {
color: #c40000;
}
@font-face {
font-family: "wq-icon";
src: url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/fonts/wq-icon.eot?25224);
src: url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/fonts/wq-icon.eot?25224#iefix) format("embedded-opentype"),
url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/fonts/wq-icon.woff2?25224) format("woff2"),
url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/fonts/wq-icon.woff?25224) format("woff"),
url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/fonts/wq-icon.ttf?25224) format("truetype"),
url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/fonts/wq-icon.svg?25224#wq-icon) format("svg");
font-weight: normal;
font-style: normal;
}
[class^="wq-icon-"]:before,
[class*=" wq-icon-"]:before {
font-family: "wq-icon";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: 0.2em;
text-align: center;
font-variant: normal;
text-transform: none;
line-height: 1em;
margin-left: 0.2em;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.animate-spin {
-webkit-animation: spin 2s infinite linear;
animation: spin 2s infinite linear;
display: inline-block;
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
.wq-icon-undo:before {
content: "\e800";
}
.wq-icon-facebook:before {
content: "\f09a";
}
.wq-icon-spinner:before {
content: "\f110";
}
.wq-popup {
position: relative;
background: #fff;
padding: 20px;
width: auto;
max-width: 500px;
margin: 20px auto;
}
.mfp-bg {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1042;
overflow: hidden;
position: fixed;
background: #0b0b0b;
opacity: 0.8;
}
.mfp-wrap {
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1043;
position: fixed;
outline: none !important;
-webkit-backface-visibility: hidden;
}
.mfp-container {
text-align: center;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 8px;
box-sizing: border-box;
}
.mfp-container:before {
content: "";
display: inline-block;
height: 100%;
vertical-align: middle;
}
.mfp-align-top .mfp-container:before {
display: none;
}
.mfp-content {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 0 auto;
text-align: right;
z-index: 1045;
}
.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
width: 100%;
cursor: auto;
}
.mfp-ajax-cur {
cursor: progress;
}
.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
cursor: zoom-out;
}
.mfp-zoom {
cursor: pointer;
cursor: zoom-in;
}
.mfp-auto-cursor .mfp-content {
cursor: auto;
}
.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.mfp-loading.mfp-figure {
display: none;
}
.mfp-hide {
display: none !important;
}
.mfp-preloader {
color: #ccc;
position: absolute;
top: 50%;
width: auto;
text-align: center;
margin-top: -0.8em;
left: 8px;
right: 8px;
z-index: 1044;
}
.mfp-preloader a {
color: #ccc;
}
.mfp-preloader a:hover {
color: #fff;
}
.mfp-s-ready .mfp-preloader {
display: none;
}
.mfp-s-error .mfp-content {
display: none;
}
button.mfp-close,
button.mfp-arrow {
overflow: visible;
cursor: pointer;
background: transparent;
border: 0;
-webkit-appearance: none;
display: block;
outline: none;
padding: 0;
z-index: 1046;
box-shadow: none;
touch-action: manipulation;
}
button::-moz-focus-inner {
padding: 0;
border: 0;
}
.mfp-close {
width: 44px;
height: 44px;
line-height: 44px;
position: absolute;
left: 0;
top: 0;
text-decoration: none;
text-align: center;
opacity: 0.65;
padding: 0 0 18px 10px;
color: #fff;
font-style: normal;
font-size: 28px;
font-family: Arial, Baskerville, monospace;
}
.mfp-close:hover,
.mfp-close:focus {
opacity: 1;
}
.mfp-close:active {
top: 1px;
}
.mfp-close-btn-in .mfp-close {
color: #333;
}
.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
color: #fff;
right: -6px;
text-align: right;
padding-right: 6px;
width: 100%;
}
.mfp-counter {
position: absolute;
top: 0;
right: 0;
color: #ccc;
font-size: 12px;
line-height: 18px;
white-space: nowrap;
}
.mfp-arrow {
position: absolute;
opacity: 0.65;
margin: 0;
top: 50%;
margin-top: -55px;
padding: 0;
width: 90px;
height: 110px;
-webkit-tap-highlight-color: transparent;
}
.mfp-arrow:active {
margin-top: -54px;
}
.mfp-arrow:hover,
.mfp-arrow:focus {
opacity: 1;
}
.mfp-arrow:before,
.mfp-arrow:after {
content: "";
display: block;
width: 0;
height: 0;
position: absolute;
left: 0;
top: 0;
margin-top: 35px;
margin-left: 35px;
border: medium inset transparent;
}
.mfp-arrow:after {
border-top-width: 13px;
border-bottom-width: 13px;
top: 8px;
}
.mfp-arrow:before {
border-top-width: 21px;
border-bottom-width: 21px;
opacity: 0.7;
}
.mfp-arrow-left {
left: 0;
}
.mfp-arrow-left:after {
border-right: 17px solid #fff;
margin-left: 31px;
}
.mfp-arrow-left:before {
margin-left: 25px;
border-right: 27px solid #3f3f3f;
}
.mfp-arrow-right {
right: 0;
}
.mfp-arrow-right:after {
border-left: 17px solid #fff;
margin-left: 39px;
}
.mfp-arrow-right:before {
border-left: 27px solid #3f3f3f;
}
.mfp-iframe-holder {
padding-top: 40px;
padding-bottom: 40px;
}
.mfp-iframe-holder .mfp-content {
line-height: 0;
width: 100%;
max-width: 900px;
}
.mfp-iframe-holder .mfp-close {
top: -40px;
}
.mfp-iframe-scaler {
width: 100%;
height: 0;
overflow: hidden;
padding-top: 56.25%;
}
.mfp-iframe-scaler iframe {
position: absolute;
display: block;
top: 0;
left: 0;
width: 100%;
height: 100%;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #000;
}
img.mfp-img {
width: auto;
max-width: 100%;
height: auto;
display: block;
line-height: 0;
box-sizing: border-box;
padding: 40px 0 40px;
margin: 0 auto;
}
.mfp-figure {
line-height: 0;
}
.mfp-figure:after {
content: "";
position: absolute;
left: 0;
top: 40px;
bottom: 40px;
display: block;
right: 0;
width: auto;
height: auto;
z-index: -1;
box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
background: #444;
}
.mfp-figure small {
color: #bdbdbd;
display: block;
font-size: 12px;
line-height: 14px;
}
.mfp-figure figure {
margin: 0;
}
.mfp-bottom-bar {
margin-top: -36px;
position: absolute;
top: 100%;
left: 0;
width: 100%;
cursor: auto;
}
.mfp-title {
text-align: left;
line-height: 18px;
color: #f3f3f3;
word-wrap: break-word;
padding-right: 36px;
}
.mfp-image-holder .mfp-content {
max-width: 100%;
}
.mfp-gallery .mfp-image-holder .mfp-figure {
cursor: pointer;
}
@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
.mfp-img-mobile .mfp-image-holder {
padding-left: 0;
padding-right: 0;
}
.mfp-img-mobile img.mfp-img {
padding: 0;
}
.mfp-img-mobile .mfp-figure:after {
top: 0;
bottom: 0;
}
.mfp-img-mobile .mfp-figure small {
display: inline;
margin-left: 5px;
}
.mfp-img-mobile .mfp-bottom-bar {
background: rgba(0, 0, 0, 0.6);
bottom: 0;
margin: 0;
top: auto;
padding: 3px 5px;
position: fixed;
box-sizing: border-box;
}
.mfp-img-mobile .mfp-bottom-bar:empty {
padding: 0;
}
.mfp-img-mobile .mfp-counter {
right: 5px;
top: 3px;
}
.mfp-img-mobile .mfp-close {
top: 0;
right: 0;
width: 35px;
height: 35px;
line-height: 35px;
background: rgba(0, 0, 0, 0.6);
position: fixed;
text-align: center;
padding: 0;
}
}
@media all and (max-width: 900px) {
.mfp-arrow {
-webkit-transform: scale(0.75);
transform: scale(0.75);
}
.mfp-arrow-left {
-webkit-transform-origin: 0;
transform-origin: 0;
}
.mfp-arrow-right {
-webkit-transform-origin: 100%;
transform-origin: 100%;
}
.mfp-container {
padding-left: 6px;
padding-right: 6px;
}
}
.wq-embed {
position: relative;
max-width: 100%;
height: 0;
overflow: hidden;
background: #dcddde;
padding-bottom: 56.25%;
}
.wq-embed iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.wq-embed-placeholder,
.wq-embed-icon {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}
.wq-embed-placeholder {
z-index: 1000;
}
.wq-embed-icon {
z-index: 1010;
background-color: rgba(255, 255, 255, 0.1);
}
.wq-embed-icon:before {
content: " ";
display: block;
height: 82px;
width: 82px;
border: 3px solid #fff;
border-radius: 50%;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.wq-embed-icon:after {
content: " ";
display: block;
height: 0;
width: 0;
border-top: 15px solid transparent;
border-bottom: 15px solid transparent;
border-left: 30px solid #fff;
position: absolute;
top: 50%;
left: 50%;
margin-top: -15px;
margin-left: -10px;
}
.wq-embed.active .wq-embed-placeholder,
.wq-embed.active .wq-embed-icon {
display: none;
}
.wq-embed.active iframe {
display: block;
}
.wq-results {
font-size: 18px;
box-sizing: border-box;
width: 100%;
margin: 20px 0 15px;
padding: 25px 20px 20px 20px;
border: 1px solid #ececec;
background: #f9f9f9;
}
.wq-results .wq_resultScoreCtr {
font-weight: bold;
}
.wq-results .wq_quizTitle {
display: block;
margin-bottom: 10px;
font-weight: 700;
}
.wq-results .wq_shareCtr {
padding-top: 0;
}
.wq-results p {
margin-bottom: 0;
}
.wq-results img {
width: 100%;
}
.wq_singleResultRow .wq_resultExplanation,
.wq_resultExplanation .wq_resultExplanationLongDesc {
display: none;
}
img.wq_resultImg {
margin-bottom: 10px;
}
.show-played .wq-results,
.wq-result.chosen {
display: block;
}
.force-show {
display: block !important;
}
.wq-quiz.multiple .wq-question {
display: none;
}
.wq-quiz.multiple .wq-question:first-of-type {
display: block;
}
.wq-quiz.multiple .wq-is-ad .wq_continue {
display: block;
}
.wq-quiz.has-intro .wq-progress-bar-container,
.wq-quiz.has-intro .wq-questions,
.wq-quiz.has-intro .wq-embed-toggle,
.wq-quiz.has-intro .wq_promoteQuizCtr {
display: none;
}
.wq-question-hint {
display: block;
overflow: hidden;
margin-top: 15px;
}
.wq-question-hint a {
font-size: 12px;
float: right;
text-decoration: none;
outline: none;
box-shadow: none;
}
.wq-question-hint a:focus,
.wq-question-hint a:hover {
outline: none;
box-shadow: none;
}
.wq-question-hint-content {
display: none;
clear: both;
margin-bottom: 5px;
padding: 10px;
color: #333;
border: 1px solid #9cc6fb;
background: #ddecff;
}
.wq-share {
clear: both;
}
.wq_shareCtr button,
.wq_quizForceShareCtr button,
.wq_questionLogin button {
font-size: 14px;
font-weight: 700;
line-height: 40px;
overflow: hidden;
min-width: 40px;
height: 40px;
margin: 10px 7px 0 0;
padding: 0;
cursor: pointer;
text-transform: none;
color: #fff;
border: 0;
}
.wq_shareCtr button > i,
.wq_quizForceShareCtr button > i,
.wq_questionLogin button > i {
line-height: 40px;
display: inline-block;
width: 40px;
margin-top: 0;
}
.wq_shareCtr button > span,
.wq_quizForceShareCtr button > span,
.wq_questionLogin button > span {
display: inline-block;
box-sizing: border-box;
min-width: 94px;
padding-right: 14px;
padding-left: 12px;
text-align: left;
vertical-align: middle;
border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.wq_shareCtr .wq_shareFB,
.wq_quizForceShareCtr .wq_forceShareFB,
.wq_questionLogin .wq_loginFB,
.wq_questionLogin .wq_playFB {
background: #305c99;
}
.wq_shareCtr .wq_shareFB img,
.wq_quizForceShareCtr .wq_forceShareFB img,
.wq_questionLogin .wq_loginFB img,
.wq_questionLogin .wq_playFB img {
float: right;
width: 40px;
height: 40px;
}
.wq_shareCtr .wq_shareTwitter {
background: #00cdff;
}
.wq_shareCtr .wq_shareGP {
background: #d24228;
}
.wq_shareCtr .wq_shareVK {
margin-right: 0;
background: #567ca4;
}
.wq_quizProgressBarCtr {
margin-bottom: 30px;
}
.wq_quizProgressBar {
font-size: 11px;
line-height: 1.285;
position: relative;
box-sizing: initial;
width: 100%;
height: 18px;
margin: 0 1px;
text-align: center;
color: #fff;
border-radius: 10px;
background-color: #ebebeb;
box-shadow: inset 0 1px 1px rgba(100, 100, 100, 0.1);
}
.wq_quizProgressBar > span {
line-height: 16px;
position: relative;
display: block;
float: left;
overflow: hidden;
box-sizing: border-box;
width: 10px;
min-width: 30px;
height: 100%;
margin: 0 -1px;
padding: 0 3px;
text-align: right;
border: 1px solid;
border-color: rgba(0, 0, 0, 0.05) rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.3);
border-radius: 10px;
background-color: var(--wq-bar-color, #85c440);
box-shadow: inset 0 1px rgba(255, 255, 255, 0.3), 0 1px 2px rgba(0, 0, 0, 0.2);
}
.wq_singleAnswerCtr {
cursor: pointer;
}
.wq_singleAnswerCtr .wq_answerTxtCtr:before,
.wq_singleAnswerCtr.chosen .wq_answerTxtCtr:after {
content: "";
width: 18px;
height: 18px;
border: 2px solid;
position: absolute;
right: 0;
top: 1px;
border-radius: 2px;
box-sizing: border-box;
}
.wq_singleAnswerCtr.chosen .wq_answerTxtCtr:after {
content: "";
width: 0;
height: 0;
background: #fff;
border: 5px solid;
right: 4px;
top: 5px;
}
.wq_singleAnswerCtr .wq_answerTxtCtr {
font-size: 18px;
font-weight: 700;
line-height: 19px;
display: inline-block;
height: auto;
padding-left: 25px;
cursor: pointer;
vertical-align: middle;
color: inherit;
background-repeat: no-repeat;
margin-bottom: 0;
position: relative;
}
.wq_retakeQuizBtn,
.wq-force-login button,
.wq_singleQuestionWrapper .wq_continue button,
.wq_triviaQuizTimerInfoCtr button,
.wq-pay-locker button,
.wq_quizEmailCtr form button,
.wq-subscribe-locker button {
font-size: 18px;
font-weight: bold;
margin: 30px 0 10px 0;
padding: 12px;
cursor: pointer;
color: white;
border: 0;
border-radius: 4px;
background-color: var(--wq-bar-color, #8bc34a);
box-shadow: none;
}
.wq-pay-locker button,
.wq_quizEmailCtr form button {
margin: 0;
}
.wq_triviaQuizTimerCtr {
background-color: var(--wq-bar-color, #8bc34a);
}
.wq_retakeQuizCtr {
display: none;
clear: both;
text-align: center;
}
.wq-force-action-container,
.wq-results,
.wq_continue,
.wq-result {
display: none;
}
.wq_quizForceShareCtr {
text-align: center;
}
.wq_quizCtr {
width: 100%;
margin-bottom: 20px;
}
.wq_quizCtr.multiple .wq_singleQuestionWrapper {
margin-bottom: 0;
}
.wq_questionsCtr {
margin-bottom: 20px;
}
.wq_singleQuestionWrapper {
margin-bottom: 50px;
}
.wq_singleQuestionWrapper.wq_isAd {
text-align: center;
}
.wq_singleQuestionWrapper.wq_isAd img {
width: auto !important;
}
.wq_singleQuestionWrapper:last-of-type {
margin-bottom: 0;
}
.wq_singleQuestionWrapper .wq_continue {
text-align: center;
}
.mfp-content .wq-results {
margin-top: 0;
display: block;
}
.wq_quizForceShareCtr p {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}
.wq_quizForceShareCtr button {
margin-right: 0;
}
.wq_shareCtr p,
.wq_questionLogin p {
margin-bottom: 0;
}
body .wq_questionTextCtr {
float: right;
padding: 12px 20px;
background: #eee;
box-sizing: border-box;
}
body .wq_questionTextCtr h4 {
font-size: 28px;
line-height: 1;
margin: 0;
color: inherit;
}
.wq_singleQuestionCtr {
margin-bottom: 0;
}
.wq_questionTextDescCtr p {
font-size: 14px;
line-height: 15px;
margin-top: 10px;
}
.wq_quizCtr img {
margin: 15px 0 15px 0;
width: 100%;
max-width: 100%;
height: auto;
vertical-align: middle !important;
}
.wq-quiz-personality .row {
margin: 0;
margin-bottom: 10px;
}
.col-md-wq-6 {
float: left;
width: 49%;
}
.col-md-wq-6:last-child {
float: right;
}
.col-md-wq-6:first-child {
float: left;
}
.col-md-wq-4 {
float: right;
width: 32%;
margin-left: 1.3%;
}
.col-md-wq-4:last-child {
float: right;
margin-right: 0;
}
.col-md-wq-4:first-child,
.col-md-wq-4:nth-child(2),
.col-md-wq-4:nth-child(5) {
float: right;
}
.wq_answerImgCtr {
margin-bottom: 8px;
}
.wq_answersWrapper .row:before,
.wq_answersWrapper .row:after {
display: table;
content: " ";
}
.wq_answersWrapper .row:after {
clear: both;
}
p.wq_QuestionExplanationText {
margin: 10px 0;
}
.wq_quizEmailCtr form p:first-child {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
text-align: right;
}
.wq_quizEmailCtr form p:last-child {
margin-bottom: 0;
}
.wq_quizEmailCtr form input[type="text"],
.wq_quizEmailCtr form input[type="email"] {
font-size: 16px;
box-sizing: border-box;
width: 100%;
height: 50px;
margin: 0 auto;
margin-top: 5px;
border: 1px solid #ddd;
text-shadow: none;
}
.wq_quizEmailCtr form div {
margin-bottom: 20px;
}
.wq_quizEmailCtr form label {
display: block;
}
.wq_quizEmailCtr form .wq-consent-desc {
text-align: right;
}
.resultUpDownVote {
line-height: 1;
margin-bottom: 5px;
}
.wq-embed-toggle {
float: left;
}
.wq_embedToggleQuiz,
.wq_embedToggleQuiz input {
float: left;
box-sizing: border-box;
width: 100%;
}
.wq_embedToggleQuiz {
display: none;
clear: both;
margin: 15px 0;
}
.wq_promoteQuizCtr {
text-align: right;
}
.wq_questionMediaCtr {
width: 100%;
margin-bottom: 15px;
}
.wq_questionAnswersCtr {
width: 100%;
}
.wq_questionImage {
position: relative;
width: 100%;
height: 90%;
}
.wq_quizCtr.wq-quiz-personality .wq_singleAnswerCtr.wq_answerSelected {
opacity: 1;
}
.wq_questionImage > span,
.wq-question .credits {
font-size: 12px;
line-height: 20px;
position: absolute;
right: 0;
bottom: 0;
padding: 0 9px;
background: rgba(236, 240, 241, 0.65);
}
.quiz-pro-clearfix {
clear: both;
zoom: 1;
}
.quiz-pro-clearfix:before,
.quiz-pro-clearfix:after {
display: table;
content: " ";
}
.quiz-pro-clearfix:after {
clear: both;
}
i.icon.video.play {
font-style: normal;
}
i.icon.video.play:before {
position: absolute;
display: block;
width: 82px;
height: 82px;
content: "";
background-image: url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/images/spritesheet.png);
background-repeat: no-repeat;
background-position: -63px -3px;
background-size: 186px 87px;
}
.ui.embed .icon:hover:before {
color: #fff;
}
.ui.embed > .placeholder {
height: 100% !important;
}
.sprite {
position: relative;
display: inline-block;
}
.sprite:after {
position: absolute;
display: block;
content: "";
background-image: url(//tanasobefekri.net/wp-content/plugins/wp-quiz-pro/assets/frontend/images/spritesheet.png);
background-repeat: no-repeat;
background-size: 186px 87px;
}
.wq_shareCtr .sprite:after,
.wq_questionLogin .sprite:after {
top: -12px;
left: 13px;
width: 14px;
height: 14px;
}
.sprite-facebook:after {
background-position: -25px -3px;
}
.sprite-twitter:after {
background-position: -150px -31px;
}
.sprite-google-plus:after {
background-position: -44px -3px;
}
.sprite-vk:after {
background-position: -169px -31px;
}
@media screen and (max-width: 550px) {
.wq-quiz-flip .wq-question .desc > div {
font-size: 28px;
}
.col-md-wq-4 {
width: 100%;
}
}
@media screen and (max-width: 480px) {
.wq-quiz-flip .wq-question .desc > div {
font-size: 22px;
}
.wq_singleQuestionWrapper .wq_continue button,
.wq_triviaQuizTimerInfoCtr button {
font-size: 15px;
padding: 10px;
}
.wq-results {
font-size: 15px;
}
.wq-results .wq_shareCtr button,
.wq_quizForceShareCtr button {
font-size: 12px;
}
.wq_questionTextCtr h4 {
font-size: 20px;
}
.wq_retakeQuizBtn {
font-size: 17px;
}
}
@media screen and (max-width: 480px) {
.wq-quiz-flip .wq-question .desc > div {
font-size: 18px;
}
}
.wp-quiz-listing {
width: 100%;
clear: both;
}
.wp-quiz-listing .latestPost {
margin: 20px auto;
}
.wp-quiz-listing a {
text-decoration: none;
}
.wp-quiz-listing .thecategory {
color: #fff;
display: inline-block;
line-height: 1;
border-radius: 3px;
padding: 6px;
margin-right: 15px;
background: #f15a5a;
font-size: 12px;
}
.wq-force-login input:not([type="checkbox"]) {
width: 100%;
box-sizing: border-box;
padding: 0 10px;
line-height: 44px;
margin-top: 5px;
}
.wq-force-login__form--register {
display: none;
}
.wq-force-login button {
margin: 0;
}
.wq-force-login p:last-child {
margin-bottom: 0;
}
.wq-subscribe-locker {
background-color: #ecf0f1;
padding: 30px 20px;
margin-top: 30px;
border-radius: 3px;
text-align: right;
}
.wq-subscribe-locker__heading {
font-size: 1.5rem;
margin-bottom: 1.25rem;
font-weight: 700;
}
.wq-subscribe-locker__field {
margin-bottom: 1.25rem;
}
.wq-subscribe-locker__field input[type="text"],
.wq-subscribe-locker__field input[type="email"] {
border: 2px solid #d7dee0;
border-radius: 4px;
height: 50px;
margin-top: 0.625rem;
width: 100%;
}
.wq-quiz.wq-skin-flat .wq_questionTextCtr {
background-color: var(--wq-background-color, #ecf0f1);
color: var(--wq-font-color, #5f5f5f);
border-radius: 3px 3px 0 0;
width: 100%;
}
.wq-quiz.wq-skin-flat .wq_singleAnswerCtr {
background-color: var(--wq-background-color, #ecf0f1);
color: var(--wq-font-color, #5f5f5f);
border: 3px solid transparent;
padding: 5px 7px;
margin: 0 0 15px 0;
border-radius: 3px;
line-height: 30px;
}
.wq-quiz.wq-skin-flat .wq_singleAnswerCtr:last-child {
margin-bottom: 0;
}
.wq-quiz.wq-skin-flat .wq_singleAnswerCtr:hover,
.wq-quiz.wq-skin-flat .wq_singleAnswerCtr.chosen,
.wq-quiz.wq-skin-flat .wq_singleAnswerCtr.wq_answerSelected {
background: #fff38b;
color: #444;
border: 3px solid #f7e971;
transition: background 550ms ease-out;
cursor: pointer;
}
.wq-quiz.wq-skin-flat.wq-should-show-correct-answer
.wq_singleAnswerCtr.wq_correctAnswer {
background: #8bc34a;
border-color: #7bad40;
color: #fff;
opacity: 0.5;
}
.wq-quiz.wq-skin-flat.wq-should-show-correct-answer
.wq_singleAnswerCtr.wq_incorrectAnswer {
background: #ff5722;
border-color: #d4471b;
color: #fff;
opacity: 0.8;
}
.wq-quiz.wq-skin-flat .wq_questionAnswered .wq_singleAnswerCtr {
opacity: 0.5;
}
.wq-quiz.wq-skin-flat .wq_questionAnswered .wq_singleAnswerCtr.chosen {
opacity: 1;
}
.wq-quiz.wq-skin-flat .wq_singleAnswerCtr .wq_answerTxtCtr {
word-break: break-word;
}
.wq-quiz.wq-skin-flat .wq-results {
background: #ecf0f1;
border-color: #ecf0f1;
border-radius: 3px;
}
.wq-quiz.wq-skin-flat .wq_quizForceActionCtr {
background: #ecf0f1;
padding: 30px 20px;
float: left;
width: 100%;
box-sizing: border-box;
margin-top: 30px;
border-radius: 3px;
}
.wq-quiz.wq-skin-flat .wq_shareCtr button,
.wq-quiz.wq-skin-flat .wq-results .wq_shareCtr button,
.wq-quiz.wq-skin-flat .wq_quizForceShareCtr button,
.wq-quiz.wq-skin-flat .wq_questionLogin button,
.wq-quiz.wq-skin-flat .wq_retakeQuizBtn,
.wq-quiz.wq-skin-flat .wq_quizEmailCtr form button,
.wq-quiz.wq-skin-flat .wq_triviaQuestionExplanation {
border-radius: 3px;
}
.wq-quiz.wq-skin-flat .wq_quizEmailCtr form input[type="text"],
.wq-quiz.wq-skin-flat .wq_quizEmailCtr form input[type="email"] {
border: 2px solid #d7dee0;
border-radius: 4px;
}
.wq_triviaQuestionExplanation {
border-color: #d7dee0;
padding: 12px 12px 2px;
}
.wq_triviaQuestionExplanation .wq-explanation-head-correct {
color: #8bc34a;
}
.wq_triviaQuestionExplanation .wq-explanation-head-incorrect {
color: #ff5722;
}
.wq_triviaQuestionExplanation
.wq_correctExplanationHead
.wq-explanation-head-incorrect,
.wq_triviaQuestionExplanation
.wq_wrongExplanationHead
.wq-explanation-head-correct {
display: none;
}
.wq-skin-traditional .wq_IsSwiperResult h3 {
border-radius: 0;
background: #4caf50;
}
.wq-skin-traditional .wq_singleAnswerCtr {
background-color: var(--wq-background-color, #f2f2f2);
color: var(--wq-font-color);
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 7px 7px 8px;
margin: 0 0 15px 0;
line-height: 30px;
}
.wq-skin-traditional .wq_singleAnswerCtr:last-of-type {
margin-bottom: 0;
}
.wq-skin-traditional .wq_questionTextCtr {
background-color: var(--wq-background-color, #f2f2f2);
}
.wq_singleAnswerCtr:hover,
.wq_singleAnswerCtr.chosen,
.wq_singleAnswerCtr.wq_answerSelected {
background: #fff195;
color: #000;
transition: background 550ms ease-out;
cursor: pointer;
}
.wq-skin-traditional .wq_singleAnswerCtr.wq_answerSelected {
background: #4caf50;
color: #fff;
}
.wq-skin-traditional.wq-should-show-correct-answer
.wq_singleAnswerCtr.wq_correctAnswer {
background: #4caf50;
border-color: #409444;
color: #fff;
opacity: 0.5;
}
.wq-skin-traditional.wq-should-show-correct-answer
.wq_singleAnswerCtr.wq_incorrectAnswer {
background: #f44336;
border-color: #ce392e;
color: #fff;
opacity: 0.8;
}
.wq-skin-traditional .wq_questionAnswered .wq_singleAnswerCtr {
opacity: 0.5;
}
.wq-skin-traditional .wq_questionAnswered .wq_singleAnswerCtr.chosen {
opacity: 1;
}
.wq-skin-traditional .chosen .wq_answerTxtCtr:after,
.wq-skin-traditional .wq_answerSelected .wq_answerTxtCtr:after {
background: #fff;
}
.wq-skin-traditional .wq_correctExplanationHead {
color: #4caf50;
font-weight: bold;
font-size: 1.2em;
}
.wq-skin-traditional .wq_wrongExplanationHead {
color: #f44336;
font-weight: bold;
font-size: 1.2em;
}
.wq-skin-traditional .wq_quizForceActionCtr {
background: #f2f2f2;
padding: 30px 20px;
border: 1px solid #dddddd;
box-sizing: border-box;
margin: 30px 0 15px;
}
.wq-skin-traditional .wq_IsSwiperResult .wq_retakeSwiperWrapper,
.wq-skin-traditional .wq-results.wq_IsSwiperResult .wq_shareCtr {
background: #f2f2f2;
border-right: 1px solid #ddd;
border-left: 1px solid #ddd;
}
.wq-skin-traditional .wq_IsSwiperResult .resultImageWrapper .indexWrapper,
.wq-skin-traditional .wq_IsSwiperResult .userVote,
.wq-skin-traditional .wq_retakeSwiperBtn:hover {
background: #4caf50;
border-color: #4caf50;
border-radius: 0;
}
.wq-skin-traditional .wq_IsSwiperResult .userVote.negativeVote {
background: #f44336;
}
.wq-quiz-trivia .wq_questionTextCtr {
background-color: var(--wq-background-color);
color: var(--wq-font-color);
}
.wq-quiz-trivia .wq_triviaQuizTimerInfoCtr {
text-align: center;
font-weight: bold;
font-size: 18px;
}
.wq-quiz-trivia .wq_triviaQuizTimerInfoCtr p {
margin-bottom: 0;
}
.wq-quiz-trivia .wq_triviaQuizTimerCtr {
position: fixed;
z-index: 100;
top: 50px;
left: 50px;
text-align: center;
width: 50px;
line-height: 50px;
border-radius: 50%;
color: #fff;
background-color: var(--wq-bar-color, #ff5722);
display: none;
}
.wq-quiz-trivia .row {
margin: 0;
margin-bottom: 10px;
}
.wq_triviaQuestionExplanation {
padding: 10px 10px 0 10px;
border: 1px solid #dddddd;
display: none;
margin: 20px 0 0 0;
clear: both;
width: 100%;
box-sizing: border-box;
}
.wq_triviaQuestionExplanation span {
font-weight: 700;
font-size: 1.2em;
}
.wq_questionAnswered.is-incorrect .wq_triviaQuestionExplanation,
.wq_questionAnswered.is-correct .wq_triviaQuestionExplanation {
display: block;
}
.wq-quiz:not(.wq-should-show-correct-answer)
.wq_questionAnswered.is-incorrect
.wq_triviaQuestionExplanation,
.wq-quiz:not(.wq-should-show-correct-answer)
.wq_questionAnswered.is-correct
.wq_triviaQuestionExplanation {
display: none !important;
}
.is-correct .wq-explanation-head-incorrect,
.is-incorrect .wq-explanation-head-correct {
display: none;
}
.wq-checked-answers-list .is-correct {
color: #7bad40;
}
.wq-checked-answers-list .is-incorrect {
color: #ff5722;
}
.wq-checked-answers-list {
display: none;
margin-top: 15px;
}
.wq-checked-answers-list__question {
margin-bottom: 15px;
}
.wq-checked-answers-list__question-title {
font-weight: 700;
margin-bottom: 5px;
}
.wq-checked-answers-list__question-desc {
font-size: 85%;
color: #555;
margin-top: 5px;
}
.wq-checked-answers-list.must-show {
display: block;
}
.wq-end-answers.wq-layout-multiple .wq_triviaQuestionExplanation {
display: none !important;
}
.wq-end-answers.wq-layout-multiple .wq-checked-answers-list {
display: block;
}
.wq_quizCtr.flip_quiz .card {
position: relative;
color: #fff;
}
.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) {
-webkit-perspective: 1000px;
perspective: 1000px;
}
.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .card {
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
transition: 0.6s;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
display: grid;
grid-template-columns: 1fr;
grid-template-rows: 1fr;
}
.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .front,
.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .back {
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
cursor: pointer;
min-height: 200px;
grid-column-start: 1;
grid-column-end: 2;
grid-row-start: 1;
grid-row-end: 2;
height: 100%;
}
.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .front {
position: relative;
}
.wq_quizCtr.flip_quiz .wq-question:not(.no-flip) .back {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.wq_quizCtr.flip_quiz .wq-question:not(.no-flip).is-flipped .card {
transition: 0.6s;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.wq_quizCtr.flip_quiz .wq_questionTextCtr {
color: var(--wq-font-color);
background-color: transparent;
display: flex;
align-items: center;
padding: 0 0 12px;
width: 100%;
}
.wq_quizCtr.flip_quiz .wq-question-title {
flex: auto;
padding: 0;
}
.wq_quizCtr.flip_quiz.wq-skin-flat .wq-question-vote-btn {
background: transparent;
}
.wq_quizCtr.flip_quiz .wq-results .wq_shareCtr {
padding-top: 0;
}
.wq_quizCtr.flip_quiz .wq_singleQuestionWrapper {
text-align: center;
margin: 0 auto 30px;
position: relative;
clear: both;
overflow: hidden;
width: var(--wq-question-width);
height: var(--wq-question-height);
}
.wq_quizCtr.flip_quiz .wq_singleQuestionWrapper:first-of-type {
margin-top: 0;
}
.wq_quizCtr.flip_quiz .wq_singleQuestionWrapper:last-of-type {
margin-bottom: 0;
}
.wq_quizCtr.flip_quiz .item_top {
display: table;
width: 100%;
}
.wq_quizCtr.flip_quiz .title_container {
display: table-cell;
text-align: left;
}
.wq_quizCtr.flip_quiz img {
width: 100%;
height: auto;
top: 0;
left: 0;
vertical-align: middle;
}
.wq_quizCtr.flip_quiz .credits {
color: #111;
}
.wq_quizCtr.flip_quiz .card:not(.no-image) .desc,
.wq_quizCtr.flip_quiz .top-desc {
position: absolute;
left: 0;
bottom: 0;
top: 0;
right: 0;
}
.wq_quizCtr.flip_quiz .desc {
text-align: center;
width: 100%;
height: 100%;
font-size: 34px;
line-height: 1.4;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
}
.wq_quizCtr.flip_quiz .top-desc {
line-height: 36px;
height: 36px;
background: rgba(0, 0, 0, 0.45);
font-size: 18px;
}
.wq_quizCtr.flip_quiz .wq-share {
margin-top: 20px;
}
.wq-swiper {
overflow: hidden;
padding: 50px 0;
position: relative;
opacity: 0;
transition: opacity 0.1s ease-in-out;
margin: 0 auto;
}
.wq-swiper.loaded {
opacity: 1;
}
.wq-swiper.moving {
transition: none;
cursor: -webkit-grabbing;
cursor: grabbing;
}
.wq-swiper .wq-swiper-like-icon,
.wq-swiper .wq-swiper-dislike-icon {
position: absolute;
top: 25px;
right: 25px;
z-index: 4;
width: 40px;
height: 40px;
line-height: 40px;
font-size: 1em;
display: block;
background: #f44336;
color: #fff;
border-radius: 5em;
opacity: 0;
}
.wq-swiper .wq-swiper-like-icon:after,
.wq-swiper .wq-swiper-dislike-icon:after {
width: 18px;
height: 18px;
top: 10px;
left: 10px;
background-position: -31px -31px;
}
.wq-swiper .wq-swiper-like-icon {
background: #4caf50;
left: 25px;
right: auto;
}
.wq-swiper .wq-swiper-like-icon:after {
background-position: -3px -3px;
}
.wq-swiper .liked .wq-swiper-like-icon,
.wq-swiper .disliked .wq-swiper-dislike-icon {
opacity: 1;
-webkit-transform: scale(1);
transform: scale(1);
}
.wq-swiper-items {
text-align: center;
position: relative;
z-index: 1;
margin: auto;
}
.wq-swiper-item {
display: block;
overflow: hidden;
position: absolute;
will-change: transform;
cursor: -webkit-grab;
cursor: grab;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
text-align: center;
padding: 5px 5px 10px;
background: #f9f9f9;
color: #000;
border: 1px solid rgba(96, 96, 96, 0.2);
top: 40px;
left: 0;
box-sizing: border-box;
}
.wq-swiper-item:not(.moving) {
-webkit-transform-origin: center top;
transform-origin: center top;
transition: all 0.2s linear;
}
.wq-swiper-item-image {
position: relative;
}
.wq-swiper-item-image span {
position: absolute;
bottom: 0;
right: 0;
background: rgba(236, 240, 241, 0.65);
padding: 0 9px;
font-size: 12px;
line-height: 20px;
z-index: 5;
}
.wq-swiper-item-image img {
height: 100%;
width: 100%;
}
.wq-swiper-item-info {
font-size: 18px;
margin: 15px 0 5px;
line-height: 1;
}
.wq-swiper-item-info:after {
content: " ";
display: block;
height: 0;
visibility: hidden;
clear: both;
}
.wq-swiper-item-title {
float: left;
padding-left: 4px;
color: var(--wq-font-color);
}
.wq-swiper-item-index {
float: right;
padding-right: 4px;
}
.wq-swiper-actions {
text-align: center;
width: 304px;
padding-top: 20px;
margin: 0 auto;
overflow: hidden;
max-width: 100%;
}
.wq-swiper-actions button {
display: inline-block;
color: #a7a7a7;
margin: 10px;
width: 40px;
line-height: 40px;
position: relative;
text-align: center;
border-radius: 50%;
outline: none;
box-shadow: 0 1px 2px #aaa, inset 0 2px 3px #fff;
background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
text-decoration: none;
border-bottom: none;
font-size: 24px;
padding: 0;
}
.wq-swiper-actions button:hover,
.wq-swiper-actions button:focus {
background-image: -webkit-linear-gradient(top, #f7f7f7, #e7e7e7);
}
.wq-swiper-actions button i {
color: #4caf50;
}
.wq-swiper-actions button i.fa-thumbs-o-down {
color: #f44336;
}
.wq-swiper-actions button .sprite:after {
width: 24px;
height: 24px;
top: -22px;
left: -10px;
}
.wq-swiper-actions button .sprite.sprite-thumbs-down:after {
top: -20px;
}
.wq-swiper-actions button .sprite-thumbs-down:after {
background-position: -150px -3px;
}
.wq-swiper-actions button .sprite-thumbs-up:after {
background-position: -3px -31px;
}
.wq-quiz-swiper .wq_QuestionWrapperSwiper {
display: none;
}
.wq-quiz-swiper .wq_beginQuizSwiperCtr {
color: white;
background-color: var(--wq-font-color, #8bc34a);
padding: 12px;
margin: 30px 0 10px 0;
border-radius: 4px;
border: 0;
font-size: 18px;
box-shadow: none;
cursor: pointer;
font-weight: bold;
}
.wq-quiz-swiper .wq-results.wq_IsSwiperResult {
width: 360px;
margin: 0 auto;
padding: 0;
border: 0;
float: none;
background: transparent;
border-bottom: 1px solid #ddd;
}
.wq-quiz-swiper .wq-results.wq_IsSwiperResult .wq_shareCtr {
padding: 15px 0;
width: 100%;
box-sizing: border-box;
text-align: center;
}
.wq-quiz-swiper .wq-results.wq_IsSwiperResult .wq_shareCtr button {
float: none;
display: inline-block;
border-radius: 3px;
}
.wq-quiz-swiper .wq-results.wq_IsSwiperResult .wq_shareCtr button span {
display: none;
}
.wq-quiz-swiper .wq_retakeSwiperBtn {
color: #fff;
background: #9e9e9e;
cursor: pointer;
padding: 10px;
border: 1px solid #9e9e9e;
border-radius: 3px;
font-weight: bold;
margin-top: 15px;
}
.wq-quiz-swiper .wq_retakeSwiperBtn:hover {
background-color: #8bc34a;
color: #fff;
border-color: #8bc34a;
}
.wq-quiz-swiper .wq_IsSwiperResult .sprite-times:after {
width: 12px;
height: 12px;
background-position: -22px -63px;
position: inherit;
}
.wq-quiz-swiper .wq_IsSwiperResult .sprite-check:after {
width: 15px;
height: 15px;
background-position: -3px -60px;
position: inherit;
}
.wq-quiz-swiper .wq_IsSwiperResult .userVote .sprite-times:after {
width: 12px;
height: 12px;
background-position: -170px -61px;
position: inherit;
}
.wq-quiz-swiper .wq_IsSwiperResult .userVote .sprite-check:after {
width: 15px;
height: 15px;
background-position: -149px -59px;
position: inherit;
}
.wq-quiz-swiper .wq_IsSwiperResult h3 {
font-size: 16px;
padding: 12px;
margin: 0;
text-align: center;
background-color: #8bc34a;
border-radius: 4px 4px 0 0;
color: #fff;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultItem {
display: table;
width: 100%;
padding: 10px;
border-bottom: 1px solid #dbdbdb;
background-color: #fff;
box-sizing: border-box;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultItem:last-child {
border-bottom: 0;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultImageWrapper {
display: table-cell;
width: 35%;
position: relative;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultImageWrapper img {
width: 100%;
height: 100px;
vertical-align: middle;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultImageWrapper .indexWrapper {
width: 30px;
line-height: 30px;
text-align: center;
background-color: #8bc34a;
color: #ffffff;
position: absolute;
top: 0;
left: 0;
font-size: 14px;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultContent {
display: table-cell;
vertical-align: top;
padding: 0 5px 0 20px;
font-size: 15px;
position: relative;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultContent i {
color: #85c440;
margin-right: 4px;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultContent i.fa-times {
color: #f44336;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultContent > div:first-child {
margin-top: -5px;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultUpVote,
.wq-quiz-swiper .wq_IsSwiperResult .resultDownVote {
font-weight: bold;
margin-right: 14px;
}
.wq-quiz-swiper .wq_IsSwiperResult .wq_retakeSwiperWrapper {
text-align: center;
}
.wq-quiz-swiper .wq_IsSwiperResult .userVote {
color: #fff;
text-align: center;
bottom: 0;
padding: 0 12px;
border-radius: 20px;
margin-top: 10px;
float: left;
width: auto;
background: #8bc34a;
}
.wq-quiz-swiper .wq_IsSwiperResult .userVote.negativeVote {
background: #ff5722;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultList {
width: 100%;
max-height: 435px;
overflow: auto;
border: 1px solid #dbdbdb;
border-top: 0;
border-bottom: 0;
box-sizing: border-box;
}
.wq-quiz-swiper .wq_swiperQuizPreviewInfoCtr {
text-align: center;
font-size: 18px;
font-weight: bold;
}
.wq-quiz-swiper .wq_swiperQuizPreviewInfoCtr p {
margin-bottom: 0;
}
.wq-quiz-swiper .wq-retake-quiz {
display: block;
}
.wq-quiz-fb_quiz .wq_singleQuestionWrapper {
text-align: center;
}
.wq-quiz-fb_quiz .wq_questionTextDescCtr {
color: var(--wq-font-color);
}
.wq-quiz-fb_quiz .wq_questionsCtr {
margin-bottom: 0;
}
.wq-quiz-fb_quiz .wq-results {
margin-top: 0;
border: 0;
padding: 0;
background: transparent;
}
.wq-quiz-fb_quiz .wq-results .wq_shareCtr {
padding: 0 20px 20px;
}
.wq-quiz-fb_quiz .wq-results .wq_resultDesc {
padding: 0 20px;
}
.wq-quiz-fb_quiz .wq_singleQuestionWrapper {
position: relative;
}
.wq-quiz-fb_quiz .wq_loader-container {
position: absolute;
top: 0;
bottom: 0;
width: 100%;
height: 100%;
background: #fff;
z-index: 9999;
opacity: 0.9;
}
.wq-quiz-fb_quiz .wq_loader_text {
padding-top: 30%;
}
.wq-quiz-fb_quiz .wq_loader-container {
display: none;
}
.wq-quiz-fb_quiz .wq_loader-container img {
width: 64px;
}
.wq-quiz-fb_quiz .wq_questionMediaCtr {
margin: 25px auto;
}
.wq-quiz-fb_quiz .wq_questionImage {
height: inherit;
}
.wq_quizCtr.listquiz_quiz .card {
color: #fff;
}
.wq_quizCtr.listquiz_quiz .card:not(.no-image) {
position: relative;
}
.wq_quizCtr.listquiz_quiz .card:not(.no-image) .desc {
position: absolute;
left: 0;
bottom: 0;
top: 0;
right: 0;
}
.wq_quizCtr.listquiz_quiz .wq_questionTextCtr {
color: var(--wq-font-color);
background-color: transparent;
display: flex;
align-items: center;
padding: 0 0 12px;
width: 100%;
}
.wq_quizCtr.listquiz_quiz .wq-question-number {
color: #fff;
background-color: var(--wq-question-color);
height: 55px;
line-height: 55px;
flex-basis: 55px;
font-size: 32px;
margin-right: 15px;
text-align: center;
}
.wq_quizCtr.listquiz_quiz .wq-question-bullet {
width: 6px;
height: 18px;
margin-right: 15px;
background-color: var(--wq-question-color);
}
.wq_quizCtr.listquiz_quiz .wq-question-title {
flex: auto;
padding: 0;
}
.wq_quizCtr.listquiz_quiz .wq-question-votes {
flex: 0 0 auto;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-btn {
float: left;
height: 55px;
width: 55px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: rgba(0, 0, 0, 0.05);
padding: 3px 0 0;
color: #333;
border: 1px solid #dbdbdb;
border-radius: 4px;
line-height: 1;
transition: all 0.1s linear;
cursor: pointer;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-btn .icon {
height: 0;
width: 0;
border: 6px solid transparent;
display: block;
transition: all 0.1s linear;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-btn .number {
font-size: 15px;
font-weight: 700;
transition: all 0.1s linear;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-btn .text {
font-size: 11px;
font-weight: 400;
transition: all 0.1s linear;
}
.wq_quizCtr.listquiz_quiz.wq-skin-flat .wq-question-vote-btn {
background: transparent;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn .icon {
border-top-color: #f44336;
}
.wq_quizCtr.listquiz_quiz
.wq-question-vote-down-btn:not(.is-voted):not(:disabled):hover,
.wq_quizCtr.listquiz_quiz
.wq-question-vote-down-btn:not(.is-voted):not(:disabled):focus {
border-color: #f44336;
color: #f44336;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn.is-voted {
border-color: #f44336;
background-color: #f44336;
color: #fff;
cursor: unset;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn.is-voted .icon {
border-top-color: currentColor;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn.is-voted .text {
color: currentColor;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-down-btn:disabled {
cursor: unset;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn {
margin-left: 6px;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn .icon {
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
border-top-color: transparent;
border-bottom-color: var(--wq-question-color);
}
.wq_quizCtr.listquiz_quiz
.wq-question-vote-up-btn:not(.is-voted):not(:disabled):hover,
.wq_quizCtr.listquiz_quiz
.wq-question-vote-up-btn:not(.is-voted):not(:disabled):focus {
border-color: var(--wq-question-color);
color: var(--wq-question-color);
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn.is-voted {
border-color: var(--wq-question-color);
background-color: var(--wq-question-color);
color: #fff;
cursor: unset;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn.is-voted .icon {
border-bottom-color: currentColor;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn.is-voted .text {
color: currentColor;
}
.wq_quizCtr.listquiz_quiz .wq-question-vote-up-btn:disabled {
cursor: unset;
}
.wq_quizCtr.listquiz_quiz .wq-results .wq_shareCtr {
padding-top: 0;
}
.wq_quizCtr.listquiz_quiz .wq_singleQuestionWrapper {
text-align: center;
margin: 0 auto 30px;
position: relative;
clear: both;
overflow: hidden;
width: var(--wq-question-width);
height: var(--wq-question-height);
}
.wq_quizCtr.listquiz_quiz .wq_singleQuestionWrapper:first-of-type {
margin-top: 0;
}
.wq_quizCtr.listquiz_quiz .wq_singleQuestionWrapper:last-of-type {
margin-bottom: 0;
}
.wq_quizCtr.listquiz_quiz .item_top {
display: table;
width: 100%;
}
.wq_quizCtr.listquiz_quiz .title_container {
display: table-cell;
text-align: left;
}
.wq_quizCtr.listquiz_quiz img {
width: 100%;
height: auto;
top: 0;
left: 0;
vertical-align: middle;
}
.wq_quizCtr.listquiz_quiz .credits {
color: #111;
}
.wq_quizCtr.listquiz_quiz .desc {
text-align: center;
width: 100%;
height: 100%;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
font-size: 34px;
line-height: 1.4;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
}
.wq_quizCtr.listquiz_quiz .top-desc {
line-height: 36px;
height: 36px;
background: rgba(0, 0, 0, 0.45);
font-size: 18px;
}
.wq_quizCtr.listquiz_quiz .wq-share {
margin-top: 20px;
}body {
direction: rtl;
unicode-bidi: embed;
}
.wq_singleAnswerCtr .wq_answerTxtCtr {
padding-right: 31px;
padding-left: 0px;
background-position: right center;
}
.wq-quiz .wq_quizProgressBar > span {
float: right;
text-align: left;
}
.wq_questionImage > span,
.wq-question .credits,
.wq-swiper-item-image span {
left: 0;
right: auto;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultImageWrapper .indexWrapper {
left: auto;
right: 0;
}
.wq_questionTextCtr,
.wq-embed-toggle,
.wq_quizCtr.flip_quiz .wq-question-vote-btn,
.wq-quiz-swiper .wq_IsSwiperResult .userVote {
float: right;
}
.wq_promoteQuizCtr {
text-align: left;
}
.wq-quiz .wq_shareCtr button,
.wq-quiz .wq_quizForceShareCtr button,
.wq-quiz .wq_questionLogin button {
margin-right: 0;
margin-left: 7px;
}
.wq-quiz .wq_shareCtr button > span,
.wq-quiz .wq_quizForceShareCtr button > span,
.wq-quiz .wq_questionLogin button > span {
border-left: 0;
border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.wq_quizCtr.flip_quiz .wq-question-vote-up-btn {
margin-right: 6px;
margin-left: 0;
}
.wq_quizCtr.flip_quiz .wq-question-title {
text-align: right;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultUpVote,
.wq-quiz-swiper .wq_IsSwiperResult .resultDownVote {
margin-left: 14px;
margin-right: 0;
}
.wq-quiz-swiper .wq_IsSwiperResult .resultContent {
padding-left: 5px;
padding-right: 20px;
}
.wq-swiper-item-title {
float: right;
padding-right: 4px;
padding-left: 0;
}
.wq-swiper-item-index {
float: left;
padding-left: 4px;
padding-right: 0;
}@font-face{font-family:avans-icon;font-style:normal;font-weight:400;src:url(//tanasobefekri.net/wp-content/plugins/wp-score-gamification/assets/fonts/avans-icon.eot?97516955);src:url(//tanasobefekri.net/wp-content/plugins/wp-score-gamification/assets/fonts/avans-icon.eot?97516955#iefix) format("embedded-opentype"),url(//tanasobefekri.net/wp-content/plugins/wp-score-gamification/assets/fonts/avans-icon.woff?97516955) format("woff"),url(//tanasobefekri.net/wp-content/plugins/wp-score-gamification/assets/fonts/avans-icon.ttf?97516955) format("truetype"),url(//tanasobefekri.net/wp-content/plugins/wp-score-gamification/assets/fonts/avans-icon.svg?97516955#avans-icon) format("svg")}.avans-ic{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;font-family:avans-icon;font-style:normal;font-variant:normal;font-weight:400;line-height:1em;margin-left:.2em;margin-right:.2em;text-align:center;text-decoration:inherit;text-transform:none;width:1em}.avs-icon-gift:before{content:"\e800"}.avs-icon-gift-1:before{content:"\e801"}.avs-icon-medal-solid:before{content:"\e802"}.avs-icon-gifts-solid:before{content:"\e803"}.avs-icon-gift-solid:before{content:"\e804"}.avs-icon-list:before{content:"\e805"}.avs-icon-left-open:before{content:"\e806"}.avs-icon-money:before{content:"\e807"}.avs-icon-dollar-1:before{content:"\e808"}.avs-icon-dice-solid:before{content:"\e809"}.avs-icon-help:before{content:"\e80a"}.avs-icon-help-circled:before{content:"\e80b"}.avs-icon-dharmachakra-solid:before{content:"\e80c"}.avs-icon-cancel:before{content:"\e80d"}.avs-icon-cancel-1:before{content:"\e80e"}.avs-icon-ok-circled:before{content:"\e80f"}.avs-icon-check:before{content:"\e810"}.avs-icon-ok:before{content:"\e811"}.avs-icon-gem-solid:before{content:"\e812"}.avs-icon-gem-regular:before{content:"\e813"}.avs-icon-mail:before{content:"\e814"}.avs-icon-mail-1:before{content:"\e815"}.avs-icon-telegram-plane-brands:before{content:"\e816"}.avs-icon-wallet:before{content:"\e817"}.avs-icon-wallet-solid:before{content:"\e818"}.avs-icon-minus:before{content:"\e819"}.avs-icon-minus-1:before{content:"\e81a"}.avs-icon-plus:before{content:"\e81b"}.avs-icon-plus-1:before{content:"\e81c"}.avs-icon-flow-branch:before{content:"\e81d"}.avs-icon-download:before{content:"\e81e"}.avs-icon-download-1:before{content:"\e81f"}.avs-icon-user-check-solid:before{content:"\e820"}.avs-icon-user-astronaut-solid:before{content:"\e821"}.avs-icon-user-lock-solid:before{content:"\e822"}.avs-icon-user-tag-solid:before{content:"\e823"}.avs-icon-award:before{content:"\e824"}.avs-icon-trophy:before{content:"\e825"}.avs-icon-heart-empty:before{content:"\e826"}.avs-icon-heart:before{content:"\e827"}.avs-icon-link:before{content:"\e828"}.avs-icon-calendar:before{content:"\e829"}.avs-icon-crown:before{content:"\e844"}.avs-icon-link-ext:before{content:"\f08e"}.avs-icon-twitter:before{content:"\f099"}.avs-icon-facebook:before{content:"\f09a"}.avs-icon-linkedin:before{content:"\f0e1"}.avs-icon-exchange:before{content:"\f0ec"}.avs-icon-download-cloud:before{content:"\f0ed"}.avs-icon-angle-left:before{content:"\f104"}.avs-icon-minus-squared-alt:before{content:"\f147"}.avs-icon-dollar:before{content:"\f155"}.avs-icon-plus-squared-alt:before{content:"\f196"}.avs-icon-file-excel:before{content:"\f1c3"}.avs-icon-whatsapp:before{content:"\f232"}.avs-icon-question-circle-o:before{content:"\f29c"}
.avans-toast-wrapper{z-index:99999!important}
.avans-component.owl-carousel,.avans-component.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.avans-component.owl-carousel{display:none;width:100%;z-index:1}.avans-component.owl-carousel .owl-stage{-moz-backface-visibility:hidden;position:relative;touch-action:manipulation}.avans-component.owl-carousel .owl-stage:after{clear:both;content:".";display:block;height:0;line-height:0;visibility:hidden}.avans-component.owl-carousel .owl-stage-outer{overflow:hidden;position:relative;-webkit-transform:translateZ(0)}.avans-component.owl-carousel .owl-item,.avans-component.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0)}.avans-component.owl-carousel .owl-item{-webkit-touch-callout:none;-webkit-backface-visibility:hidden;float:left;min-height:1px}.avans-component.owl-carousel .owl-item img{display:block;width:100%}.avans-component.owl-carousel .owl-dots.disabled,.avans-component.owl-carousel .owl-nav.disabled{display:none}.avans-component.owl-carousel.owl-loaded,.no-js .avans-component.owl-carousel{display:block}.avans-component.owl-carousel .owl-dot,.avans-component.owl-carousel .owl-nav .owl-next,.avans-component.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.avans-component.owl-carousel .owl-nav button.owl-next,.avans-component.owl-carousel .owl-nav button.owl-prev,.avans-component.owl-carousel button.owl-dot{background:0 0;border:none;color:inherit;font:inherit;padding:0!important}.avans-component.owl-carousel.owl-loading{display:block;opacity:0}.avans-component.owl-carousel.owl-hidden{opacity:0}.avans-component.owl-carousel.owl-refresh .owl-item{visibility:hidden}.avans-component.owl-carousel.owl-drag .owl-item{touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;user-select:none}.avans-component.owl-carousel.owl-grab{cursor:move;cursor:grab}.avans-component.owl-carousel.owl-rtl{direction:rtl}.avans-component.owl-carousel.owl-rtl .owl-item{float:right}.avans-component.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.avans-component.owl-carousel .owl-animated-in{z-index:0}.avans-component.owl-carousel .owl-animated-out{z-index:1}.avans-component.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}to{opacity:0}}.owl-height{transition:height .5s ease-in-out}.avans-component.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.avans-component.owl-carousel .owl-item .owl-lazy:not([src]),.avans-component.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.avans-component.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.avans-component.owl-carousel .owl-video-wrapper{background:#000;height:100%;position:relative}.avans-component.owl-carousel .owl-video-play-icon{-webkit-backface-visibility:hidden;cursor:pointer;height:80px;left:50%;margin-left:-40px;margin-top:-40px;position:absolute;top:50%;transition:transform .1s ease;width:80px;z-index:1}.avans-component.owl-carousel .owl-video-play-icon:hover{transform:scale(1.3)}.avans-component.owl-carousel .owl-video-playing .owl-video-play-icon,.avans-component.owl-carousel .owl-video-playing .owl-video-tn{display:none}.avans-component.owl-carousel .owl-video-tn{background-position:50%;background-repeat:no-repeat;background-size:contain;height:100%;opacity:0;transition:opacity .4s ease}.avans-component.owl-carousel .owl-video-frame{height:100%;position:relative;width:100%;z-index:1}
.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;-moz-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;overflow:hidden;padding-left:8px;padding-right:20px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-left:20px;padding-right:8px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;-moz-user-select:none;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline;list-style:none;padding:0}.select2-container .select2-selection--multiple .select2-selection__clear{background-color:transparent;border:none;font-size:1em}.select2-container .select2-search--inline .select2-search__field{border:none;box-sizing:border-box;font-family:sans-serif;font-size:100%;height:18px;margin-left:5px;margin-top:5px;max-width:100%;overflow:hidden;padding:0;resize:none;vertical-align:bottom;word-break:keep-all}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:#fff;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;left:-100000px;position:absolute;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;-moz-user-select:none;user-select:none;-webkit-user-select:none}.select2-results__option--selectable{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{box-sizing:border-box;padding:4px;width:100%}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{background-color:#fff;border:0;display:block;filter:alpha(opacity=0);height:auto;left:0;margin:0;min-height:100%;min-width:100%;opacity:0;padding:0;position:fixed;top:0;width:auto;z-index:99}.select2-hidden-accessible{clip:rect(0 0 0 0)!important;border:0!important;clip-path:inset(50%)!important;height:1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;height:26px;margin-right:20px;padding-right:0}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;right:1px;top:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent;border-style:solid;border-width:5px 4px 0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888;border-width:0 4px 5px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;padding-bottom:5px;padding-right:5px;position:relative}.select2-container--default .select2-selection--multiple.select2-selection--clearable{padding-right:25px}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;font-weight:700;height:20px;margin-right:10px;margin-top:5px;padding:1px;position:absolute;right:0}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:inline-block;margin-left:5px;margin-top:5px;max-width:100%;overflow:hidden;padding:0 0 0 20px;position:relative;text-overflow:ellipsis;vertical-align:bottom;white-space:nowrap}.select2-container--default .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-bottom-left-radius:4px;border-right:1px solid #aaa;border-top-left-radius:4px;color:#999;cursor:pointer;font-size:1em;font-weight:700;left:0;padding:0 4px;position:absolute;top:0}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus,.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{background-color:#f1f1f1;color:#333;outline:none}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{border-bottom-left-radius:0;border-bottom-right-radius:4px;border-left:1px solid #aaa;border-right:none;border-top-left-radius:0;border-top-right-radius:4px}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear{float:left;margin-left:10px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:1px solid #000;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{-webkit-appearance:textfield;background:transparent;border:none;box-shadow:none;outline:0}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--group{padding:0}.select2-container--default .select2-results__option--disabled{color:#999}.select2-container--default .select2-results__option--selected{background-color:#ddd}.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:#5897fb;color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;background-image:linear-gradient(180deg,#fff 50%,#eee);background-repeat:repeat-x;border:1px solid #aaa;border-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEEEEEE",GradientType=0);outline:0}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;height:26px;margin-right:20px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;background-image:linear-gradient(180deg,#eee 50%,#ccc);background-repeat:repeat-x;border:none;border-bottom-right-radius:4px;border-left:1px solid #aaa;border-top-right-radius:4px;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE",endColorstr="#FFCCCCCC",GradientType=0);height:26px;position:absolute;right:1px;top:1px;width:20px}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent;border-style:solid;border-width:5px 4px 0;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-radius:0;border-bottom-left-radius:4px;border-right:1px solid #aaa;border-top-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888;border-width:0 4px 5px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{background-image:linear-gradient(180deg,#fff 0,#eee 50%);background-repeat:repeat-x;border-top:none;border-top-left-radius:0;border-top-right-radius:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF",endColorstr="#FFEEEEEE",GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{background-image:linear-gradient(180deg,#eee 50%,#fff);background-repeat:repeat-x;border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE",endColorstr="#FFFFFFFF",GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;padding-bottom:5px;padding-right:5px}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;display:inline-block;margin-left:5px;margin-top:5px;padding:0}.select2-container--classic .select2-selection--multiple .select2-selection__choice__display{cursor:default;padding-left:2px;padding-right:5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{background-color:transparent;border:none;border-bottom-left-radius:4px;border-top-left-radius:4px;color:#888;cursor:pointer;font-size:1em;font-weight:700;padding:0 4px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;outline:none}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display{padding-left:5px;padding-right:2px}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{border-bottom-left-radius:0;border-bottom-right-radius:4px;border-top-left-radius:0;border-top-right-radius:4px}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{box-shadow:none;outline:0}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option--group{padding:0}.select2-container--classic .select2-results__option--disabled{color:grey}.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
.avans_sound{background:#f1f3f4;border-radius:5px;max-width:100%;min-width:100%;outline:none;width:100%}.avans-toast-wrapper .swal2-icon{border:0!important}#avans_result_spin_wheel .coupon .details .item,.single-getted-wrapper .coupon .details .item{display:flex;justify-content:center}#avans_result_spin_wheel .coupon .details .item .label,.single-getted-wrapper .details .item .label{FONT-WEIGHT:500;flex-basis:50%;margin-left:24px;text-align:left}#avans_result_spin_wheel .coupon .details .item .value,.single-getted-wrapper .details .item .value{flex-basis:50%;text-align:right}#avans_result_spin_wheel .coupon .details,.single-getted-wrapper .details{margin-top:20px}#avans_result_spin_wheel .coupon .details .item,.single-getted-wrapper .details .item{border-bottom:1px solid #aaaaaa5a;margin:8px 0;padding:4px 0}#avans_result_spin_wheel .coupon .details .item .value a,.single-getted-wrapper .details .item .value a{background:#aaa;border-radius:4px;color:#fff;display:inline-flex;font-size:12px;padding:4px 8px}.avans_result_spin_wheel .coupon .details .item .value a:hover,.single-getted-wrapper .details .item .value a:hover{background:#747474}text{letter-spacing:0!important}.avans-user-panel{background:#fff;display:block;margin-bottom:16px;padding:16px}.avans-user-panel-gifts-wrapper .gift-item .divider{margin:0}.avans-user-panel-gifts-wrapper .gift-item .avs-footer{margin:0!important}.avans_wrapper_user_list .col.score img.score-icon{width:24px!important}.avans_wrapper_user_list .col.score{align-items:center;display:flex;justify-content:center}#avans_complete_user_info_form .avans_wrapper_field.avatar{align-items:center;display:flex;margin:24px 0}.avans_wrapper_lock_post{text-align:center}.avans_wrapper_lock_post i.avans-ic.avs-icon-user-lock-solid{color:#03a9f4;font-size:80px;margin:20px}.avans_condition_open_lock{display:flex;flex-wrap:wrap;justify-content:center;margin:auto;max-width:450px}.avans_condition_open_lock div{align-items:center;background:#fff;border:2px solid #aaaaaa24;border-radius:5px;display:flex;flex-basis:calc(50% - 10px);flex-direction:column;height:150px;justify-content:center;margin:5px;position:relative}.avans_condition_open_lock div i{font-size:46px}.avans_condition_open_lock div p .label{color:#aaa;display:block;font-size:13px;margin-bottom:3px}.avans_condition_open_lock div p{font-size:14px;margin-bottom:0;margin-top:4px}.avans_condition_open_lock .earned-1:after{background:#03a9f4;border-radius:7px 0 8px 0;color:#fff;content:"\e811";font-family:avans-icon;height:25px;left:-2px;position:absolute;top:-2px;width:25px}.avans_condition_open_lock .earned-{border-color:#aaa;border-style:dashed}.avans_condition_open_lock .earned-1{border-color:#aaa}i.avans-ic.avs-icon-user-check-solid{margin-left:13px!important}i.avans-ic.avs-icon-minus.decrease:before,i.avans-ic.avs-icon-plus-1.increase:before{align-items:center;background:#cfcfcf;border-radius:5px;color:#fff;display:flex;height:35px;justify-content:center;width:35px}.avans-content-panel .badges_wrapper .badge-item.active img{opacity:1}.avans-content-panel .badges_wrapper{display:flex;flex-wrap:wrap}.avans-content-panel .badges_wrapper .badge-item{cursor:pointer;margin:0 4px}.avans_wrapper_details_badge{align-items:center;background:#31313173;display:flex;height:100vh;justify-content:center;left:0;position:fixed;top:0;width:100%;z-index:9999}.avans_popup_details_badge{background:#fff;border-radius:3px;height:auto;max-height:calc(100vh - 100px);max-width:400px;min-height:200px;width:calc(100% - 40px)}.avans_popup_details_badge .avs-header{align-items:center;border-bottom:1px solid #eee;display:flex;height:56px;padding-right:14px}.avans_popup_details_badge .body ul.list-steps{height:auto;margin:20px 0 0;max-height:154px;overflow-y:auto}.avans_popup_details_badge .body ul.list-steps::-webkit-scrollbar{width:4px}.avans_return_to_home_wrapper a{background:#aaa;border-radius:0 5px 0 3px;bottom:0;color:#fff;font-size:13px;left:0;padding:9px;position:absolute;transition:.3s}.avans_return_to_home_wrapper a:hover{background:#666;color:#fff}.avans_popup_details_badge .body ul.list-steps::-webkit-scrollbar-track{background:transparent}.avans_popup_details_badge .body ul.list-steps::-webkit-scrollbar-thumb{background-color:rgba(61,116,199,.329);border-radius:20px}.equal_icon_box{text-align:center}.avans_wrapper_Date_select{display:flex;flex-basis:calc(33.33333% - 5px);flex-direction:column;margin-left:5px}.avans_wrapper_Date_select select{border:1px solid #aaaaaa5a;border-radius:4px;box-shadow:none;height:38px;width:100%}.avans_wrapper_Date_select label{color:#aaa;font-size:13px;font-weight:200;text-align:center}.avans_popup_details_badge .avs-header i.avans-ic.avs-icon-cancel-1{color:#aaa;cursor:pointer;font-size:24px;padding:10px}.avans_popup_details_badge .body img{max-width:100px}.avans_popup_details_badge .body .thumbnail{padding:16px;text-align:center}.avans_popup_details_badge .steps{font-size:13px;padding:14px}.avans_popup_details_badge .steps p{border-right:5px solid #00a9f6;font-size:14px;font-weight:700;margin:0;padding-right:8px}.avans-user-panel a{text-decoration:none!important}.avans_popup_details_badge .steps ul li{list-style:none}.avans_popup_details_badge .steps ul{padding:10px 0}.avans_popup_details_badge .steps ul li:before{background:#ffc107;border-radius:50%;content:"";display:inline-block;height:8px;margin-left:5px;vertical-align:middle;width:8px}.avans_popup_details_badge .avs-header .title{font-size:15px;font-weight:700;padding:8px}.avans_popup_details_badge .avs-header .is_getted i{padding-left:3px}.avans_popup_details_badge .avs-header .is_getted{background:#8bc34a;border-radius:5px;color:#fff;display:table;font-size:14px;padding:2px 4px}.avans-content-panel .badges_wrapper .badge-item:first-child{margin-right:0}.avans-content-panel .badges_wrapper .badge-item img{opacity:.3}.avans-user-root-item.full.missions .items a{font-size:14px;margin:5px;padding:2px;position:relative;z-index:9999}.avans-user-root-item.full.missions .items{background:#eee0;border:1px solid #aaaaaa5a;border-radius:5px;display:inline-block;padding:6px 0}.avans_show_product_score i{margin:0 0 0 6px}.avans_show_product_score{display:flex}.avans_error_field{border:1px solid #d06b6b!important}.avans_error_form{background:#f3f3f3;border-radius:3px;border-right:2px solid #f44336;color:#000;font-size:14px;margin:10px 0;padding:7px 15px}.avans_show_product_score .fulltext{font-size:14px;padding-top:2px}.video-js .vjs-control-bar{background-color:#353535a5!important;color:#fff;font-size:13px}.avans-user-root-wrapper{display:flex;flex-wrap:wrap}.avans-user-root-wrapper .avans-user-root-item .root-item-bg-icon{color:#0000007a;font-size:100px;opacity:.1;position:absolute;z-index:0}.avans-user-root-item.half{flex-basis:calc(50% - 8px)}.avans-user-root-item.full{width:100%}.avans-user-root-item{background-color:#fff;border:2px solid #eee;border-radius:8px;box-sizing:border-box;margin:8px 0;overflow:hidden;padding:16px 12px;position:relative}.avans_show_product_score .icon{align-items:center;display:flex}.avans-user-root-item.half:nth-child(2n){margin-right:16px}.avans-user-root-item h4{cursor:pointer;font-size:18px;margin:0}.avans-user-root-item p{font-size:14px}.avans_wrapper_user_list .me{background:#d4d4d4;font-size:14px}.avans_wrapper_user_list .row{position:relative}.avans_wrapper_user_list .row>.label{align-items:center;background:#969696;border-radius:8px 0 0 8px;color:#fff;display:flex;height:37px;justify-content:center;padding:2px 11px;position:absolute;right:0;top:50%;transform:translateY(-50%);width:0;writing-mode:vertical-rl}.avans_wrapper_user_list .me .col.user{align-items:center;display:flex;font-size:14px}.avans_wrapper_user_list .me .col.user .avans_avatar img{border-radius:50%;margin-left:8px}.avans_user_badges .badges_wrapper{display:flex}.avans_wrapper_user_list .avans_user_badges .badges_wrapper img{background:#fff;border-radius:50%;margin-bottom:1px;width:24px}.avans_wrapper_user_list .badges_wrapper>div{margin-bottom:-16px;margin-left:4px;position:relative}.avans_wrapper_user_list .wrapper_badges_level{display:flex;position:relative;top:5px}.avans_wrapper_user_list .wrapper_badges_level .avans_user_level{background:#aaa;border-radius:15px;color:#fff;font-size:10px;margin-left:8px;padding:5px 9px}.avans-user-root-item .root-item-main i.avs-icon-left-open{bottom:8px;cursor:pointer;left:8px;position:absolute}.avans-user-root-item.full.missions .items a .avans-ic{font-size:20px;margin-left:5px;vertical-align:middle}.avans-user-root-item p.avans_countdown_lottery{display:flex;margin:0;max-width:250px}.avans-user-root-item p.avans_countdown_lottery .col{align-items:center;display:flex;flex-direction:column;margin:0!important;padding:0!important}.avans-user-root-item p.avans_countdown_lottery .col .value{font-size:17px;font-weight:500}.avans-user-root-item p.avans_countdown_lottery .divider{align-items:center;display:flex;flex-direction:column;justify-content:center}.avans-user-root-item:not(.badges,.missions){cursor:pointer}.avnas-profile{background:#eee;border-radius:4px;display:flex;margin:8px 0 16px;overflow:hidden;padding:20px;position:relative}.avnas-profile i.avs-icon-medal-solid{font-size:100px;left:37px;opacity:.2;position:absolute;top:-5px}.avnas-profile .avans-avatar{flex-basis:96px}.avnas-profile .avans-avatar img{height:96px;width:96px}.avans-user-meta-wrapper p{font-size:14px;margin:0}.avans-user-meta-wrapper p .label{font-weight:500}.avans-user-meta-wrapper{display:flex;flex-basis:calc(100% - 96px);flex-direction:column;justify-content:center;padding:0 20px}.avans-avatar:after{background:#03a9f4;border:2px solid #fff;border-radius:50%;content:"";height:16px;left:0;position:absolute;top:14px;width:16px}.avans-avatar{position:relative}.avans-avatar img{border:2px solid #fff;border-radius:50%}p#avans_countdown_chances{display:flex}p#avans_countdown_chances .col{align-items:center;display:flex;flex-basis:51px;flex-direction:column;padding:0 3px}p#avans_countdown_chances .col .label{font-size:11px;opacity:.7}p#avans_countdown_chances .col .value{color:#000000c7;font-size:17px;font-weight:500}p#avans_countdown_chances .divider{color:#aaa;font-size:17px;font-weight:700}.avans-user-root-item.full.how-earn-score{background:#eee;border:0;color:#040404de}.avans-user-root-item.full.how-earn-score .root-item-bg-icon{color:#000;font-size:50px;left:14px;top:-12px;transform:rotate(-24deg);z-index:1}.avans-user-root-item a.item-title{text-decoration:none!important}.avans-user-root-item a{color:#525252!important}.avans-loader{background:#0000005a;height:100%;left:0;position:fixed;text-align:center;top:0;width:100%;z-index:99999}.avans-loader .lds-ripple{top:50%;transform:translateY(-50%)}.lds-ripple{display:inline-block;height:80px;position:relative;width:80px}.lds-ripple div{animation:lds-ripple 1s cubic-bezier(0,.2,.8,1) infinite;border:4px solid #fff;border-radius:50%;opacity:1;position:absolute}.avans_avatar_wrapper:after{background:#aaaaaa6b;border-radius:7px;content:"";height:100%;left:0;position:absolute;width:100%}.avans_avatar_wrapper{height:128px;overflow:hidden;position:relative;width:128px}.avans_avatar_wrapper img{width:100%}input#avans_submit_user_info{border:0}#avans_return_to_check_opt,.avans_return_to_edit_data,input#avans_submit_user_info{border-radius:5px;line-height:0;margin-top:20px;padding:20px}.avans_wrapper_field input{border:1px solid #cfcfcf!important;border-radius:5px!important;box-shadow:none!important;font-size:14px!important;height:2.507em!important;outline-color:#00a9f6;padding:0 .75em!important;vertical-align:middle!important;width:100%!important}.avans_wrapper_input_fields .avans_wrapper_field label{display:block;font-size:14px;font-weight:700;width:100%}div#avans_complete_user_check_validate_code .avans_wrapper_field{margin:50px 0 20px}.avans_wrapper_field.avatar img#avans_avatar_image{background:#d9d9d9;border:4px solid #fff;border-radius:50%;box-shadow:0 0 8px #2092ec38;box-sizing:content-box;cursor:pointer;height:90px;max-width:90px}.avans_wrapper_field input:focus{border:1px solid #2092ec!important}.avans_wrapper_field .avans_flex_wrapper{display:flex;flex-wrap:wrap}.avans_wrapper_field .avans_flex_wrapper input{flex-basis:calc(100% - 200px)}.avans_wrapper_field .avans_flex_wrapper button{font-size:14px;margin-right:10px;width:90px}.avans-button.outline{background:#fff;border:1px solid #2092ec;color:#2092ec}.avans-button.normal{background:#2092ec;color:#fff}.avans-button.outline:hover{background:#2092ec!important;color:#fff!important}.avans-button.normal:hover{background:#1d87d8}.avans-button{border-radius:5px;font-weight:500;height:39px;line-height:39px;margin:0;padding:0 8px;transition:.3s}.avans_voucher_form_wrapper input{margin:16px 0}.avans_wrapper_field p.avans_description{font-size:14px}.avans_wrapper_field.avatar button#avans_btn_change_avatar{background:#fff;border:1px solid #aaa;border-radius:50px;color:#aaa;font-size:12px;font-weight:500;margin:0 10px}.avans_wrapper_input_fields .avans_wrapper_field label{margin-bottom:8px;margin-top:12px}.avans_wrapper_input_fields .avans_wrapper_field{flex-basis:calc(50% - 10px);margin-right:20px}.avans_wrapper_input_fields{display:flex;flex-wrap:wrap}.avans_wrapper_input_fields .avans_wrapper_field:nth-child(2n-1){margin-right:0}.lds-ripple div:nth-child(2){animation-delay:-.5s}@keyframes lds-ripple{0%{height:0;left:36px;opacity:1;top:36px;width:0}to{height:72px;left:0;opacity:0;top:0;width:72px}}.avans-user-panel-log-table .header-tbl{display:flex}.avans-user-panel-log-table .main-tbl .row-log{display:flex;font-size:14px}.avans-user-panel-log-table .col.score{direction:ltr;flex-basis:15%}.avans_countdown_lottery .divider{display:flex;margin-top:5px}.avans_countdown_lottery .col{padding:0}.avans-user-panel-log-table .col.title{flex-basis:60%}.avans-user-panel-log-table .col.time{flex-basis:25%}.avans-user-panel-log-table .header-tbl{background:#eee;border-bottom:1px solid #eee;font-size:14px;font-weight:500}.avans-user-panel-log-table .col:not(.title){text-align:center}.avans-user-panel-log-table .col:not(.time){border-left:1px solid #aaaaaa54}.avans-user-panel-log-table .col{padding:8px}.avans-user-panel-log-table{background:#fff;border:1px solid #eee;border-radius:4px;color:#313131}.avans-user-panel-log-table .main-tbl .row-log:not(:last-child){border-bottom:1px solid #eee}.avans-user-panel-log-table .main-tbl .row-log:nth-child(2n){background:#eeeeee40}.avans-content-panel .avs-header .select2-container{font-size:14px}.avans-content-panel .avs-header.select2-results__option,span.select2-dropdown.select2-dropdown--below{font-size:12px}.pdp-default>div{line-height:0}.pagination_custom_scores{align-items:center;display:flex}.pagination_custom_scores .des{background:#efefef;padding:4px 8px}.pagination_custom_scores .current{background:#777!important}.pagination_custom_scores .page-numbers{background:#aaa;color:#fff;padding:10px;text-decoration:none;transition:.3s}.pagination_custom_scores input.page_input{border:1px solid #aaa;border-radius:8px;font-family:inherit;font-size:12px;padding:4px;text-align:center;width:50px}.pagination_custom_scores input.page_input:focus{outline:none}.pagination_custom_scores .page-numbers:hover{background:#777!important}.pagination_custom_scores,.pagination_custom_scores a{font-size:13px;line-height:1;text-decoration:none!important}.pagination_custom_scores{border-radius:5px;margin:16px 0}.avans-report-header{display:flex;flex-wrap:wrap;padding:10px 0;width:100%}.avans-report-header label{display:flex;flex-direction:column;font-size:12px;margin-left:8px}.avans-report-header label button,.avans-report-header label input,.avans-report-header label select{border:1px solid #d5d5d5;border-radius:4px;box-shadow:none;height:35px;line-height:35px;margin:0!important;width:100%!important}.avans-report-header label.date{flex-basis:24%}.avans-report-header span.label{margin:0 0 8px}.avans-report-header button#avans-btn-filter-log{border:0;padding:0 20px}.avans-report-header label.btn-filter{justify-content:flex-end}.avans-report-header label.action{flex-basis:35%}.avans-report-header label.action select{font-size:13px}.avans-user-panel-gifts-wrapper .gift-item{border-radius:5px!important;cursor:pointer;flex-basis:calc(33.33333% - 8px);margin:8px 0;overflow:hidden;position:relative}.avans-user-panel-gifts-wrapper{display:flex;flex-wrap:wrap;justify-content:space-between}.avans-user-panel-gifts-wrapper .gift-item .col.title{font-size:14px;font-weight:500;padding:8px;text-align:center}.avans-user-panel-gifts-wrapper .gift-item .col.col.description{font-size:11px;height:72px;opacity:.7;overflow:hidden;padding:0 10px;position:relative;text-align:justify}.avans-user-panel-gifts-wrapper .gift-item .col.col.description:after{background-image:linear-gradient(0deg,#fff,transparent);bottom:0;content:"";height:30px;left:0;position:absolute;width:100%}.avans-user-panel-gifts-wrapper .gift-item .avs-footer{font-size:12px;text-align:center}.avans-user-panel-gifts-wrapper .gift-item .col.image{border:1px solid #d6d6d6;border-bottom:0;overflow:hidden;padding-top:56%;position:relative;text-align:center}.avans-user-meta-wrapper p.username{direction:ltr;text-align:right}.avans-user-meta-wrapper p.fullname{color:#3b3b3b;font-size:15px;font-weight:500}.avans-user-meta-wrapper p.userscore{background:#fff;border:1px solid #aaaaaa5a;border-radius:50px;color:#3b3b41;font-size:13px;padding:4px 8px}.avans-user-root-item.full.badges i.avs-icon-medal-solid{color:#00000047;font-size:107px;left:40px;opacity:.1;position:absolute;top:-2px;z-index:0}.avnas-profile .score_details{align-items:center;display:flex;flex-wrap:wrap;position:relative;top:8px}.avnas-profile .score_details .level{background:#03a9f4;border-radius:50px;color:#fff;font-size:12px;margin-right:8px;padding:4px 8px}.avans-user-meta-wrapper p.userscore span{margin-right:4px}.avans-user-meta-wrapper p.userscore i{color:#03a9f4;font-size:16px;margin-left:3px;vertical-align:middle}.avans-user-panel-gifts-wrapper .gift-item .col.image img{height:auto;left:0;position:absolute;top:0;width:100%}.avans-user-panel-gifts-wrapper .gift-item .main{border:1px solid #d6d6d6;border-bottom:0;border-top:0}.avans-user-panel-gifts-wrapper .gift-item .avs-footer{border:1px solid #d6d6d6;border-radius:0 0 5px 5px;border-top-style:dashed;padding:5px 8px}.avans-user-panel-gifts-wrapper .gift-item .divider:before{right:0;transform:translate(50%,-50%)}.avans-user-panel-gifts-wrapper .gift-item .divider:after,.avans-user-panel-gifts-wrapper .gift-item .divider:before{background:#fff;border:1px solid #c2c2c2;border-radius:50%;content:"";height:15px;position:absolute;top:0;width:15px;z-index:999}.avans-user-panel-gifts-wrapper .gift-item .divider{position:relative}.avans-user-panel-gifts-wrapper .gift-item .divider:after{left:0;transform:translate(-50%,-50%)}.avans-user-panel-gifts-wrapper .gift-item:hover{box-shadow:0 0 10px #aaaaaa5a}.avans-user-panel-gifts-wrapper .gift-item .remain{color:#737373;font-size:11px;font-weight:500;margin:8px}.avans-user-panel-gifts-wrapper .gift-item .score i{color:#2196f3;font-size:12px;padding:0 2px;vertical-align:middle}.avans-user-panel-gifts-wrapper .gift-item .col.col.description p{line-height:23px;margin:0}select#select_gift_type{border:1px solid #d2d2d2;border-radius:5px;font-size:14px}.avans_tabs{display:flex}.avans_tabs .item{border-bottom:2px solid #eee;cursor:pointer;font-size:15px;margin:10px 0;padding:8px;text-align:center;transition:.3s;width:100%}.avans_tabs .item.active,.avans_tabs .item:hover{border-color:#2196f3;color:#2196f3;font-weight:500}.avans-gift-header .action{display:flex;justify-content:space-between}.avans-gift-header .action i{color:#aaa;cursor:pointer}.wrapper-single-gift .avs-header{border-bottom:2px dashed #eee;display:flex;justify-content:space-between;margin:20px 0 10px;padding-bottom:10px}.wrapper-single-gift .avs-header .title{font-size:18px;margin:0}.wrapper-single-gift .avs-header .score{align-items:center;display:flex;font-size:16px}.wrapper-single-gift .body{font-size:15px}.wrapper-single-gift .body .request{margin-top:40px;text-align:center}.wrapper-single-gift .body .request button{background:#2196f3;border-radius:50px;color:#fff;font-size:15px;line-height:unset;margin:10px 0;min-height:unset;padding:10px 20px}.wrapper-single-gift .avs-header .score i{color:#2196f3;padding:0 5px;vertical-align:middle}div#avans_result_spin_wheel{direction:rtl;font-size:15px}.single-getted-wrapper .avs-content .award-desc,.wrapper-single-gift .award-desc{background:#e0e0e0;border:2px solid #aaaaaa5a;border-radius:8px;margin:32px 0;padding:16px;text-align:right}#avans_result_spin_wheel .coupon,#avans_result_spin_wheel .score,.single-getted-wrapper .avs-content .coupon,.single-getted-wrapper .avs-content .score,.wrapper-single-gift .result .coupon,.wrapper-single-gift .result .score{background:#eee;margin:10px 0;padding:10px;text-align:center}#avans_result_spin_wheel .score .message,.single-getted-wrapper .avs-content .score .message,.wrapper-single-gift .result .score .message{font-size:16px;font-weight:500}#avans_result_spin_wheel .score .expire_date,.single-getted-wrapper .avs-content .score .expire_date,.wrapper-single-gift .result .score .expire_date{font-size:14px;margin:20px 0 0}#avans_result_spin_wheel .coupon .code,.single-getted-wrapper .avs-content .coupon .code,.wrapper-single-gift .result .coupon .code{font-size:25px;font-weight:500}#avans_result_spin_wheel .files .file,.single-getted-wrapper .avs-content .files .file,.wrapper-single-gift .files .file{background:#eee;border-radius:4px;display:flex;justify-content:space-between;margin:10px 0;padding:8px}#avans_result_spin_wheel .files .file .btn-dl-file,.single-getted-wrapper .avs-content .files .file .btn-dl-file,.wrapper-single-gift .files .file .btn-dl-file{background:#aaa;border-radius:50px;color:#fff;font-size:14px;padding:2px 10px;text-decoration:none}#avans_result_spin_wheel .files .file .title,.single-getted-wrapper .avs-content .files .file .title,.wrapper-single-gift .files .file .title{display:flex;flex-direction:column;font-size:13px;justify-content:center}#avans_result_spin_wheel .products,.single-getted-wrapper .avs-content .products,.wrapper-single-gift .products{background:#eee;margin:10px 0;padding:10px;text-align:center}#avans_result_spin_wheel .products .order-item .title,.single-getted-wrapper .avs-content .products .order-item .title,.wrapper-single-gift .products .order-item .title{background:#aaa;border-radius:5px;color:#fff;display:table;margin:10px auto;padding:5px 20px;text-decoration:none}#avans_result_spin_wheel .products>.title,.single-getted-wrapper .avs-content .products>.title,.wrapper-single-gift .products>.title{font-weight:700;padding:10px}.single-getted-wrapper .avs-content .full-content,.wrapper-single-gift .full-content{background:#eee;margin:10px 0;padding:10px}.getted-gift-table-wrapper .row{display:flex;font-size:14px}.getted-gift-table-wrapper .row .gift-order-id{flex-basis:15%}.getted-gift-table-wrapper .row .gift-title{flex-basis:55%}.getted-gift-table-wrapper .row .gift-date{flex-basis:30%}.getted-gift-table-wrapper .row .gift-date,.getted-gift-table-wrapper .row .gift-order-id{text-align:center}.getted-gift-table-wrapper .row>div{display:flex;flex-direction:column;justify-content:center;padding:12px 5px}.getted-gift-table-wrapper .body .row:nth-child(2n){background:#eee}.getted-gift-table-wrapper .body .row:nth-child(odd){background:#fdfdfd}.getted-gift-table-wrapper .avs-header .row{background:#eee;font-size:14px;font-weight:500}.getted-gift-table-wrapper .row .gift-order-id,.getted-gift-table-wrapper .row .gift-title{border-left:1px solid #aaaaaa3a}.getted-gift-table-wrapper .row{border-bottom:1px solid #d8d8d8}.getted-gift-table-wrapper .gift-title a{color:#000;cursor:pointer;text-decoration:none!important}.single-getted-wrapper>.title{border-bottom:1px dashed #aaaaaa5a;font-size:16px;font-weight:700;padding:10px}.single-getted-wrapper .meta{font-size:14px;padding:5px 0}.single-getted-wrapper .avs-content{font-size:14px}.avans-convert-score .description{font-size:16px}.avans_messege{background:#f6f6f6;border-radius:3px;border-right-style:solid;border-right-width:3px;color:#000;font-size:14px;margin:10px 0;padding:10px}.avans_messege.error{border-right-color:#f44336}.avans_messege.success{border-right-color:#4caf50}.avans_messege.warning{border-right-color:#ff9800}.avans_messege.notic{border-right-color:#2092ec}.avans-convert-score button#avans_convert_btn{border:0;display:table;font-size:14px;font-weight:400;margin:20px auto}.avans_wrapper_convert_icon{align-items:center;display:flex;justify-content:space-between;margin:40px auto;max-width:400px}.avans_messege.warning p{line-height:2;margin:0}.avans_wrapper_convert_icon .unit{font-size:12px;padding:0 3px}.avans_wrapper_convert_icon .value{font-size:16px;font-weight:500}.avans_wrapper_convert_icon>.score_box,.avans_wrapper_convert_icon>.wallet_box{background:#fff;box-shadow:0 0 3px #aaaaaa5a;color:#2c2c2c;flex-basis:40%;padding:16px 8px;text-align:center}.equal_icon_box p{font-size:12px!important}.avans_wrapper_convert_icon>div>i{color:#2092ec;font-size:38px;margin-bottom:14px}.avans_wrapper_convert_icon>div p{font-size:14px;margin:0}button#avans_convert_btn i{padding:0 0 0 8px}.avans_wrapper_convert_icon>.equal_icon_box i{color:#818181;font-size:34px}.avans-wrapper-referers .row{display:flex;text-align:center}.avans-wrapper-referers .row .code_col{align-items:center;display:flex;flex-basis:calc(30% - 5px);flex-direction:column;justify-content:center}.avans-wrapper-referers .row .share_col{flex-basis:calc(70% - 5px);margin-right:10px}.avans-wrapper-referers .row>div{border:1px solid #eee;border-radius:4px;font-size:14px;padding:8px}.avans-wrapper-referers .row>div .label{font-weight:700}.avans-wrapper-referers .reflink input{border:1px solid #d6d6d6;border-radius:5px;box-shadow:none;direction:ltr;margin:10px 0;outline:none;padding:2px 9px;width:250px}.avans-wrapper-referers .social{display:flex;justify-content:center}.avans-wrapper-referers .social span{background:#b9b9b9;border-radius:5px;color:#fff;cursor:pointer;flex-basis:35px;height:35px;line-height:35px;margin:0 4px;text-align:center;text-decoration:none;transition:.3s}.avans-wrapper-referers .social span i{font-size:20px;vertical-align:middle}.avans-wrapper-referers .social span:hover{background:#03a9f4}.avans-wrapper-referers .code_col i{color:#b3b3b3;font-size:50px;padding:10px}#avans_spin_wheel_holder{direction:rtl!important;position:relative;right:50%;transform:translate(50%);width:500px}button#avans_rotate_wheel{cursor:pointer;display:table;margin:auto;padding:7px 17px;position:relative;z-index:999}.avans_spin_wrapper button#avans_rotate_wheel{background:none;border:2px solid #43486a;color:#43486a;font-size:15px;line-height:0;padding:7px 15px;transition:.3s}.avans_spin_wrapper button#avans_rotate_wheel:hover{background:#43486a;color:#fff}.avans-ellipsis{display:table;height:40px;margin:auto;position:relative;width:80px}.avans-ellipsis div{animation-timing-function:cubic-bezier(0,1,1,0);background:#43486a;border-radius:50%;height:13px;position:absolute;top:5px;width:13px}.avans-ellipsis div:first-child{animation:avans-ellipsis1 .6s infinite;left:8px}.avans-ellipsis div:nth-child(2){animation:avans-ellipsis2 .6s infinite;left:8px}.avans-ellipsis div:nth-child(3){animation:avans-ellipsis2 .6s infinite;left:32px}.avans-ellipsis div:nth-child(4){animation:avans-ellipsis3 .6s infinite;left:56px}@keyframes avans-ellipsis1{0%{transform:scale(0)}to{transform:scale(1)}}@keyframes avans-ellipsis3{0%{transform:scale(1)}to{transform:scale(0)}}@keyframes avans-ellipsis2{0%{transform:translate(0)}to{transform:translate(24px)}}.avans-spin-wheel-loading{display:none}.avans_wrapper_lottery .lottery_header{align-items:center;display:flex;justify-content:space-between}.avans_wrapper_lottery .lottery_header .avans_countdown_lottery{display:flex;font-size:14px;padding:5px}.avans_wrapper_lottery .lottery_header .avans_countdown_lottery .col{align-items:center;display:flex;flex-direction:column;font-size:12px;margin:5px}.avans_wrapper_lottery .lottery_header .avans_countdown_lottery .col .value{font-size:15px}.avans_wrapper_lottery.lottery_header .col-title{border-right:8px solid #2196f3;font-size:17px;font-weight:700;padding-right:8px;position:relative;right:-12px}.avans_wrapper_lottery .lottery_description{font-size:14px}.avans_wrapper_lottery .lottery_form .ticket-counter{align-items:center;display:flex}.avans_wrapper_lottery .lottery_footer>div{flex-basis:33.33333%}.avans_wrapper_lottery .lottery_footer{align-items:center;font-size:14px;text-align:center}.avans_wrapper_lottery .lottery_footer>div:first-child,.lottery_footer>div:nth-child(2){border-left:1px solid #eee;flex-basis:25%}.avans_wrapper_lottery .lottery_footer>div:last-child{border:0}.avans_wrapper_lottery .lottery_footer>div:nth-child(3){flex-basis:50%}.avans_wrapper_lottery .lottery_form{align-items:center;flex-basis:30%;justify-content:center}.avans_wrapper_lottery .lottery_form .ticket-counter input{border-radius:5px;height:37px;margin:5px;text-align:center}.avans_wrapper_lottery .lottery_form button{padding:8px 16px}.avans_wrapper_lottery .wrapp_button{display:table}.avans_wrapper_lottery .lottery_form{display:flex}.avans_wrapper_lottery .wrapp_button{margin-right:8px}.avans_wrapper_lottery .lottery_footer{border-top:2px solid #eee;display:flex;padding:10px 0 0}.avans_wrapper_lottery{background-color:#fff;border:1px solid #aaaaaa5a;border-radius:8px;box-shadow:none;margin-bottom:24px;padding:10px}.avans-message{background:#fff;border:1px solid #eee;border-radius:5px;border-right:5px solid #e91e63;color:#000;font-size:14px;padding:12px}.avans_wrapper_lottery .lottery_description{padding:10px 0}.avans_wrapper_lottery .col-countdown{background:#eee;border-radius:8px 0 30px 0;left:-12px;padding:0 15px;position:relative;top:-12px}.avans_wrapper_lottery .lottery_score_text{color:#5f5f5f;font-size:12px;margin:5px 0 8px}.avans_wrapper_lottery .lottery_score_text i{color:#2196f3;padding-left:5px;vertical-align:middle}.avans_wrapper_lottery .lottery_form input::-webkit-inner-spin-button,.avans_wrapper_lottery .lottery_form input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.avans_wrapper_lottery .lottery_form input[type=number]{-moz-appearance:textfield}.avans_wrapper_lottery .lottery_form i{color:#d7d7d7;cursor:pointer;font-size:42px;transition:.3s}.avans_wrapper_lottery .lottery_form i:hover{color:#aaa}.avans_wrapper_lottery .lottery_form button{background:#2196f3;border:0;border-radius:6px;font-size:15px;line-height:0;margin:10px 16px 10px 0;outline:none;padding:10px;width:100%}.avans_wrapper_lottery .title_chance{font-size:13px;font-weight:500}.avans_wrapper_lottery .lottery_header .title{border-right:8px solid #2196f3;font-size:18px;font-weight:700;padding-right:8px;position:relative;right:-12px}ul.avans_rating_post{display:flex;justify-content:center;margin:0!important;padding:0!important}ul.avans_rating_post li{font-size:32px;line-height:0!important;list-style:none;margin:0;padding:0 4px}.avans_wrapper_user_list .user{flex-basis:60%}.avans_wrapper_user_list .avs-header,.avans_wrapper_user_list .row{align-items:center;border-bottom:1px solid #eee;display:flex;justify-content:space-between;margin:0!important}.avans_wrapper_user_list .col{padding:5px}.avans_wrapper_user_list .avs-header{background:#eee;font-size:16px;padding:4px 0}.avans_wrapper_user_list .body{font-size:14px}.avans_wrapper_user_list .rank,.avans_wrapper_user_list .score{flex-basis:20%;text-align:center}.avans_wrapper_user_list .body .user{align-items:center;display:flex}.avans_wrapper_user_list .body .avans_avatar{margin-left:5px}.avans_wrapper_user_list .body .avans_avatar img{border-radius:50%;height:60px;width:60px}.avans_wrapper_user_list.columnar .body{display:flex}.avans_wrapper_user_list.columnar .avans-col-users{margin:0 8px}.avans_wrapper_user_list.carousel .rank{display:none}.avans_wrapper_user_list.carousel .avs-header,.avans_wrapper_user_list.carousel .row{background:#eaeaea85;border:0;border-radius:4px;color:#434343;flex-direction:column;padding:8px}.avans_wrapper_user_list.carousel .owl-dots{margin:16px}.avans_wrapper_user_list.carousel .owl-dots button.owl-dot{background:#eee;border-radius:50%;display:inline-block;height:12px!important;margin:6px;min-height:0;padding:0!important;width:12px}.avans_wrapper_user_list.carousel .owl-dots button.owl-dot.active{background:#aaa}.avans_wrapper_user_list.carousel .owl-nav{display:none}.avans_wrapper_user_list.carousel .body .user{flex-direction:column;justify-content:center}.avans_wrapper_user_list.carousel .body .user .avans_avatar{margin:0 0 10px}.avans_wrapper_user_list.carousel .body.owl-carousel{display:block;float:none!important;margin:0!important;text-align:center}div.avans_post_rater{direction:ltr}.avans_post_ratting_wrapper p{font-size:12px;margin:10px 0 0}.avans_post_ratting_wrapper{margin:0;padding:0}.avans_post_ratting_wrapper,.avans_share_link_page_wrapper{align-items:center;display:flex;flex-direction:column}.avans_share_link_page_wrapper input{border-radius:50px!important;direction:ltr;font-size:14px;height:40px;margin:10px 0;width:260px}.avans_wrapper_wc_ref_code{display:flex}.avans-report-header label.action select{margin-bottom:0}.avans_wrapper_wc_ref_code .avans_field_wrapper:first-child{flex-basis:calc(100% - 120px)}.avans_wrapper_wc_ref_code .avans_field_wrapper:first-child input{width:100%}.avans_wrapper_wc_ref_code .avans_field_wrapper:last-child button{margin:0;width:100%}.avans_wrapper_wc_ref_code .avans_field_wrapper:last-child{width:120px}form.checkout_referer_form.woocommerce-form-referal-code{border:2px dashed #aaa;padding:16px 24px}.avans_share_link_page_wrapper .social{display:flex}.avans_share_link_page_wrapper .social a{background:#2196f3;border-radius:50px;color:#fff;cursor:pointer;font-size:20px;height:35px;margin:5px;padding:0;text-align:center;text-decoration:none;vertical-align:middle;width:35px}.avans_share_link_page_wrapper p.avans_title_share_link{font-size:15px;font-weight:500;margin:0}.title_user_info:before{background:#2092ec;border-radius:50%;content:"";display:table;height:20px;margin-left:10px;width:20px}.title_user_info{align-items:center;display:flex;font-size:14px;margin:16px 0 8px}.title_user_info h3{font-size:17px;font-weight:500;margin:0}div.avans_post_rater:before{display:none}.avans-user-panel .row{margin-left:0!important;margin-right:0!important}.avans_wrapper_select{display:flex;flex-wrap:wrap;width:100%}.avans_wrapper_Date_select .select2-selection{min-width:unset}.avans_wrapper_select select{margin-left:8px}.avans_wrapper_select select:last-child{margin-left:0}.avans_popup_lightbox_date_picker{background:#22222282;display:none;height:100vh;left:0;position:fixed;top:0;width:100%;z-index:999}.avans_popup_lightbox_date_picker .avans_popup_datepicker{background:#fff;border-radius:4px;margin:auto;max-width:340px;padding:16px;position:relative;top:50%;transform:translateY(-50%);width:90%}.avans_wrapper_select select{margin-bottom:0}button#avans-select-date-picker{background:#2196f3;border:0;border-radius:2px;color:#fff;height:38px;margin:10px 0;padding:0 25px}select.avans_select_date_picker{font-size:14px;margin:8px 0}.avans-content-panel button,.avans-content-panel input,.avans-content-panel optgroup,.avans-content-panel select,.avans-content-panel textarea{font-size:14px}.avans_header_date_picker{align-items:center;border-bottom:1px solid #aaaaaa5a;display:flex;margin-bottom:16px;padding-bottom:8px}.avans_header_date_picker i{color:#aaa;cursor:pointer;font-size:20px;margin-left:8px}.avans_header_date_picker p{font-size:14px;margin:0}.avans-user-root-item.full.badges .root-item-main{position:relative;z-index:1}.avans_popup_details_badge .steps ul li.getted{text-decoration:line-through}p.item-description{margin:12px 0}.avans-row-tb{display:flex;font-size:14px}.tbl-referer-user-log .avans-row-tb .order_id{flex-basis:10%;justify-content:center}.tbl-referer-user-log .avans-row-tb .registerd_at{flex-basis:20%;justify-content:center}.tbl-referer-user-log .avans-row-tb .user_details{flex-basis:70%}.tbl-referer-user-log .avans-row-tb .user_details>div{align-items:center;display:flex}.header-tbl-commisions-refs .avans-row-tb,.header-tbl-user-refs .avans-row-tb{background:#eee}.tbl-commision .avans-row-tb .order_id{flex-basis:15%}.tbl-commision .avans-row-tb .total_order{flex-basis:20%}.tbl-commision .avans-row-tb .commision_val{flex-basis:25%}.tbl-commision .avans-row-tb .status{flex-basis:15%}.tbl-commision .avans-row-tb .created_at{flex-basis:25%}.tbl-commision .avans-row-tb>div,.tbl-referer-user-log .avans-row-tb>div{align-items:center;border-bottom:1px solid #eee;border-left:1px solid #eee;display:flex;padding:10px}.tbl-commision,.tbl-referer-user-log{border:1px solid #eee}.tbl-referer-user-log .user_details .user-avatar img{border-radius:50%;margin-left:8px}.avans-shipping-form .avans_wrapper_fields{display:flex}.avans-shipping-form .avans_wrapper_fields .avs_wrapper_field{flex-basis:50%;margin:5px}.avans_wrapper_fields.address .avs_wrapper_field{flex-basis:100%!important}.avans-shipping-form .submit_form,.avans_wrapper_fields .avs_wrapper_field label{text-align:right}.avans_error_shipping{background:#f44336;border-radius:5px;color:#fff;padding:20px;text-align:center}.avs_wrapper_field input,.avs_wrapper_field select,.avs_wrapper_field textarea{width:100%}.avans-shipping-info ul li{align-items:center;color:#000;display:flex;list-style:none}.avans-shipping-form p.title-shipping-info,.avans-shipping-info p.title-shipping-info{color:#393939;font-weight:700}.avans-shipping-info ul li strong{background:#fff;border-radius:5px;color:#202020;font-size:13px;font-weight:500;margin:0 0 0 10px;padding:4px;text-align:center;width:100px}.avans-shipping-form,.avans-shipping-info{border:2px dashed #aaaaaa5a;border-radius:5px;padding:15px;text-align:right}.avans-shipping-form .title_and_edit,.avans-shipping-info .title_and_edit{align-items:center;display:flex;justify-content:space-between}.avans-shipping-form .title_and_edit button,.avans-shipping-info .title_and_edit button{background:#aaa;border-radius:5px;color:#fff;margin:0}.avans-shipping-form .title_and_edit p,.avans-shipping-info .title_and_edit p{margin:0}@media screen and (max-width:768px){.avans-wrapper-referers .row{flex-direction:column;margin-bottom:24px}.avans-user-root-item.full.missions .items{display:flex;flex-direction:column}div#avans_referer_log_content>div{width:900px}div#avans_referer_log_content{overflow-x:auto}.avans_popup_details_badge{max-height:calc(100vh - 20px)}.avans_wrapper_user_list.columnar .body{flex-wrap:wrap}.avans_wrapper_user_list.columnar .body .avans-col-users{flex-basis:100%!important}.avans_wrapper_input_fields .avans_wrapper_field{flex-basis:100%;margin:0!important}div#avans_spin_wheel_holder{right:50%!important;transform:translate(50%) scale(1.1)!important}}@media screen and (max-width:468px){div#avans_spin_wheel_holder{margin-bottom:-45%!important;margin-top:-38%!important;right:50%!important;transform:translate(50%) scale(.55)!important}.avans_spin_wrapper button#avans_rotate_wheel{margin-top:32px!important}.avans_wrapper_lottery .lottery_header{flex-direction:column-reverse}.avans_wrapper_lottery .lottery_header .col-title .title{border-right:0;margin:0 0 20px;padding:15px 0 0;right:0;top:-11px}.avans_wrapper_lottery .lottery_header .col-countdown{border-radius:0 0 16px 16px;left:0}.avans_wrapper_lottery .lottery_score_text{text-align:center}.avans_wrapper_lottery .lottery_footer{flex-wrap:wrap}.avans_wrapper_lottery .lottery_footer>div:nth-child(3){flex-basis:100%;margin-top:16px}.avans_wrapper_lottery .lottery_footer>div:first-child,.lottery_footer>div:nth-child(2){flex-basis:50%}.lottery_footer>div:nth-child(2){border:0}.avans_wrapper_lottery .lottery_form button{margin-right:8px}.avans-user-panel-log-table .main-tbl .row-log div{border:0;text-align:revert}.avans-user-panel-log-table .col.title{border:0;border-bottom:1px dashed #d8d8d8!important;flex-basis:100%;font-weight:500}.getted-gift-table-wrapper .row .gift-order-id{display:none}.getted-gift-table-wrapper .row .gift-date{flex-basis:100%}.avans-wrapper-referers .row .code_col,.avans-wrapper-referers .row .share_col{flex-basis:100%;margin:8px 0}.getted-gift-table-wrapper .row .gift-title{border-bottom:1px dashed #aaaaaa5a;border-left:0;flex-basis:100%}.avans-user-panel-log-table .col.score,.avans-user-panel-log-table .col.time{border:0;flex-basis:50%;text-align:center!important}.avans-user-panel-log-table .header-tbl,.avans-user-panel-log-table .main-tbl .row-log{flex-wrap:wrap}.avans-report-header label{margin:10px 0}.avans-report-header{flex-direction:column}.avans-report-header .label{margin:0 0 8px}.avans-report-header span.select2.select2-container.select2-container--default{width:100%!important}.avans-user-meta-wrapper{padding:0}.avnas-profile{align-items:center;flex-direction:column}.avans-user-panel-gifts-wrapper .gift-item{flex-basis:100%!important}.avnas-profile .avans-user-meta-wrapper p{text-align:center}.avans_return_to_home_wrapper a{border-radius:20px 20px 0 0;bottom:-12px;bottom:-20px;display:block;margin-top:14px;position:relative}}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;}:focus {outline: 0!important;}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;}input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {-webkit-appearance: none;-moz-appearance: none;}input[type=search] {-webkit-appearance: none;-moz-appearance: none;-webkit-box-sizing: content-box;-moz-box-sizing: content-box;box-sizing: content-box;}textarea {overflow: auto;vertical-align: top;resize: vertical;}audio, canvas, video {display: inline-block;*display: inline;*zoom: 1;max-width: 100%;}audio:not([controls]) {display: none;height: 0;}[hidden] {display: none;}html {font-size: 100%;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;}a:focus {outline: thin dotted;}a:active, a:hover {outline: 0;}img {border: 0;-ms-interpolation-mode: bicubic;}figure {margin: 0;}form {margin: 0;}fieldset {border: 1px solid #c0c0c0;margin: 0 2px;padding: 0.35em 0.625em 0.75em;}legend {border: 0;padding: 0;white-space: normal;*margin-left: -7px;}button, input, select, textarea {font-size: 100%;margin: 0;vertical-align: baseline;*vertical-align: middle;}button, input {line-height: normal;}button, select {text-transform: none;}button, html input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance: button;cursor: pointer;*overflow: visible;}button[disabled], html input[disabled] {cursor: default;}input[type="checkbox"], input[type="radio"] {box-sizing: border-box;padding: 0;*height: 13px;*width: 13px;}input[type="search"] {-webkit-appearance: textfield;-moz-box-sizing: content-box;-webkit-box-sizing: content-box;box-sizing: content-box;}input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}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;}html, button, input, select, textarea {color: #222;}::-moz-selection {background: #b3d4fc;text-shadow: none;}::selection {background: #b3d4fc;text-shadow: none;}img {vertical-align: middle;}fieldset {border: 0;margin: 0;padding: 0;}textarea {resize: vertical;}.chromeframe {margin: 0.2em 0;background: #ccc;color: #000;padding: 0.2em 0;}body {
line-height: 25px;
font-size: 14px;
color: #485460;
}
a {
text-decoration: none;
transition-duration: 0.2s;
}
img, object, embed {
max-width: 100%;
height: auto;
}
strong, b {
font-weight: 600;
}
em, i {
font-style: italic;
}
q, blockquote {
margin-bottom: 20px;
width: 100%;
display: block;
box-sizing: border-box;
padding: 5px 15px 5px 0;
border-right: 4px solid #000;
}
figure {
margin: 1em 0;
}
code, kbd {
background-color: #eaeaea;
font-size: 13px;
padding: 3px 5px;
color: #000;
font-family: Consolas, Monaco, monospace;
box-sizing: border-box;
max-height: 400px;
overflow-y: auto;
}
::selection {
color: #fff;
}
textarea, input, select {
line-height: 30px;
box-sizing: border-box;
border: 1px solid #e0e0e0;
border-radius: 4px;
font-size: 13px;
color: #485460;
box-shadow: 0 0 10px rgba(0, 0, 0, .06);
}
input[type=text], input[type=password], input[type=date], input[type=datetime-local], input[type=email], input[type=url], input[type=month], input[type=tel], input[type=search], input[type=time], input[type=week], input[type=number] {
padding: 5px 10px;
}
textarea {
line-height: 30px;
padding: 10px 15px;
box-sizing: border-box;
border: 1px solid #e0e0e0;
border-radius: 4px;
color: #485460;
box-shadow: 0 0 10px rgba(0, 0, 0, .06);
font-size: 13px;
}
button, [type=submit] {
line-height: 32px;
padding: 5px 10px;
box-sizing: border-box;
border-radius: 4px;
font-size: 14px;
color: #fff;
border: none;
}
select {
line-height: 30px;
padding: 5px 10px;
box-sizing: border-box;
border: 1px solid #e0e0e0;
border-radius: 4px;
color: #485460;
box-shadow: 0 0 10px rgba(0, 0, 0, .06);
font-size: 13px;
}
select option {
background-color: #eeeeee;
color: #7f8187;
}
table {
width: 100%;
border-spacing: 0;
border-collapse: collapse;
margin-top: 15px;
margin-bottom: 15px;
border: 1px solid rgba(0, 0, 0, 0.07);
}
table caption {
margin-bottom: 15px;
}
table tr:nth-child(2n) {
background-color: rgba(0, 0, 0, 0.03);
}
table thead th {
background: rgba(0, 0, 0, 0.03);
text-transform: uppercase;
}
table td, table th {
border: 1px solid rgba(0, 0, 0, 0.07);
vertical-align: middle;
padding: 0.8em 0.5em;
border-collapse: collapse
}
table td img, table th img {
display: block;
margin: 0 auto;
}
hr {
border: 0;
height: 1px;
background-color: #dfe6e9;
}
.gallery-item {
display: inline-block;
max-width: calc(33.33% - 6px);
box-sizing: border-box;
text-align: center;
vertical-align: top;
width: 100%;
margin: 0 3px;
}
.gallery-item a {
display: block;
}
.gallery-icon img {
margin: 0 auto;
border: 1px solid #cfcfcf !important;
}
.gallery-caption {
color: #686868;
display: block;
font-size: 13px;
font-style: italic;
padding-top: 10px;
}
.megawp-post-content .wp-caption {
margin: 1em 0;
}
.alignnone {
}
.aligncenter, div.aligncenter {
display: block;
margin: 10px auto;
text-align: center;
}
.alignright {
float: right;
margin: 5px 0 20px 20px;
text-align: right;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
text-align: left;
}
a img.alignnone {
}
a img.aligncenter {
display: block;
margin: 10px auto;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
.wp-caption {
background: #fff;
max-width: 100%;
padding: 5px 3px 10px;
text-align: center;
}
.wp-caption p.wp-caption-text {
font-size: 13px;
line-height: 20px;
margin: 0;
padding: 10px 5px;
color: #686868;
font-style: italic;
}
.wp-caption.alignnone, .wp-caption:not(.alignleft):not(.alignright) {
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
float: right;
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 100%;
padding: 0;
width: auto;
}
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}nav.wp-calendar-nav {
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 0 10px;
box-sizing: border-box;
border-radius: 50px;
line-height: 30px;
}
nav.wp-calendar-nav .wp-calendar-nav-prev {
float: left;
}
nav.wp-calendar-nav .wp-calendar-nav-next {
float: right;
}
#wp-calendar tr th, #wp-calendar tr td {
text-align: center;
}
.widget_categories li, .widget_product_categories li, .widget_layered_nav li, .widget_archive li, .widget_nav_menu li, .widget_meta li, .widget_pages li, .widget_recent_entries li, .widget_display_forums li, .widget_display_views li, .widget_rss li {
font-size: 11px;
width: 100%;
display: block;
float: left;
white-space: nowrap;
word-wrap: normal;
font-weight: 400;
margin-bottom: 5px;
}
.widget_categories li a, .widget_product_categories li a, .widget_layered_nav li a, .widget_archive li a, .widget_nav_menu li a, .widget_meta li a, .widget_pages li a, .widget_recent_entries li a, .widget_display_forums li a, .widget_display_views li a, .widget_rss li a, .widget_display_stats dt {
font-size: 14px;
color: #485460;
}
.widget_categories li a::before, .widget_product_categories li a::before, .widget_layered_nav li a::before, .widget_archive li a::before, .widget_nav_menu li a::before, .widget_meta li a::before, .widget_pages li a::before, .widget_recent_entries li a::before, .widget_display_forums li a::before, .widget_display_views li a::before, .widget_rss li a::before, .widget_display_stats dt::before {
color: #27ae60;
margin-right: 5px;
float: left;
font-weight: 600;
transition-duration: 0.2s;
}
.widget_categories select, .widget_archive select {
width: 100%;
}
.widget_text ul, .text-html ul {
list-style: inside disc;
}
.widget_text ol, .text-html ol {
list-style: inside decimal;
}
li.recentcomments {
margin-bottom: 10px;
}
.widget_search .megawp-search-form input[type=text] {
width: 80%;
float: left;
background-color: #fff;
}
.widget_search .megawp-search-form button {
width: 17%;
float: right;
background-color: #dfe6e9;
border-color: #dfe6e9;
color: #7f8187;
height: 42px;
}
.widget_search .megawp-search-form button i {
line-height: 30px;
}
.tagcloud a.tag-cloud-link:before {
margin: 0 5px;
}
.woocommerce ul.cart_list li, .woocommerce ul.product_list_widget li {
margin-bottom: 15px;
border: 1px dashed;
padding: 10px;
box-sizing: border-box;
font-size: 13px;
}
aside .woocommerce ul.cart_list li, aside .woocommerce ul.product_list_widget li {
border-color: rgba(0, 0, 0, .13);
}
.woocommerce ul.cart_list li:last-child, .woocommerce ul.product_list_widget li:last-child {
margin-bottom: 0;
}
.woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a {
margin-bottom: 10px;
}
.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
border-radius: 3px;
margin-right: 10px;
margin-left: 0;
width: 60px;
float: left;
}
.woocommerce ul.cart_list li .star-rating, .woocommerce ul.product_list_widget li .star-rating {
margin-bottom: 10px;
}
.woocommerce ul.cart_list li .woocommerce-Price-amount, .woocommerce ul.product_list_widget li .woocommerce-Price-amount {
font-size: 13px;
}
aside .woocommerce ul.cart_list li .woocommerce-Price-amount, aside .woocommerce ul.product_list_widget li .woocommerce-Price-amount {
color: #4CAF50;
}
aside .woocommerce ul.cart_list li del .woocommerce-Price-amount, aside .woocommerce ul.product_list_widget li del .woocommerce-Price-amount, aside .woocommerce ul.cart_list li del, aside .woocommerce ul.product_list_widget li del {
color: #FF4500;
}
.woocommerce ul.cart_list li ins, .woocommerce ul.product_list_widget li ins {
text-decoration: none;
}
.woocommerce ul.cart_list li .reviewer, .woocommerce ul.product_list_widget li .reviewer {
font-size: 13px;
}
aside .woocommerce ul.cart_list li .reviewer, .woocommerce ul.product_list_widget li .reviewer {
color: #9e9e9e;
}
.woocommerce-product-search input[type=search] {
box-sizing: border-box;
width: 70%;
}
.woocommerce-product-search button {
width: calc(30% - 5px);
box-sizing: border-box;
font-size: 13px;
}@font-face { font-display: swap;
font-family: 'LineIcons';
src: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/lineicons/LineIcons.eot);
src: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/lineicons/LineIcons.eot) format('embedded-opentype'), url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/lineicons/LineIcons.woff2) format('woff2'), url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/lineicons/LineIcons.woff) format('woff'), url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/lineicons/LineIcons.ttf) format('truetype'), url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/lineicons/LineIcons.svg) format('svg');
font-weight: normal;
font-style: normal;
} .lni {
display: inline-block;
font: normal normal normal 1em/1 'LineIcons';
speak: none;
text-transform: none; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}  .lni-sm {
font-size: 0.8em;
}
.lni-lg {
font-size: 1.2em;
} .lni-16 {
font-size: 16px;
}
.lni-32 {
font-size: 32px;
} .lni-bg-square,
.lni-bg-circle {
padding: 0.35em;
background-color: #eee;
}
.lni-bg-circle {
border-radius: 50%;
} .lni-ul {
padding-left: 0;
list-style-type: none;
}
.lni-ul > li {
display: flex;
align-items: flex-start;
line-height: 1.4;
}
.lni-ul > li > .lni {
margin-right: 0.4em;
line-height: inherit;
} .lni-is-spinning {
-webkit-animation: lni-spin 2s infinite linear;
-moz-animation: lni-spin 2s infinite linear;
animation: lni-spin 2s infinite linear;
}
@-webkit-keyframes lni-spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@-moz-keyframes lni-spin {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(360deg);
}
}
@keyframes lni-spin {
0% {
-webkit-transform: rotate(0deg);
-moz-transform: rotate(0deg);
-ms-transform: rotate(0deg);
-o-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg);
}
} .lni-rotate-90 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
-webkit-transform: rotate(90deg);
-moz-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-o-transform: rotate(90deg);
transform: rotate(90deg);
}
.lni-rotate-180 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
.lni-rotate-270 {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
}
.lni-flip-y {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
-webkit-transform: scale(-1, 1);
-moz-transform: scale(-1, 1);
-ms-transform: scale(-1, 1);
-o-transform: scale(-1, 1);
transform: scale(-1, 1);
}
.lni-flip-x {
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
-webkit-transform: scale(1, -1);
-moz-transform: scale(1, -1);
-ms-transform: scale(1, -1);
-o-transform: scale(1, -1);
transform: scale(1, -1);
} .lni-500px::before {
content: "\ea02";
}
.lni-add-files::before {
content: "\ea03";
}
.lni-alarm-clock::before {
content: "\ea04";
}
.lni-alarm::before {
content: "\ea05";
}
.lni-airbnb::before {
content: "\ea06";
}
.lni-adobe::before {
content: "\ea07";
}
.lni-amazon-pay::before {
content: "\ea08";
}
.lni-amazon::before {
content: "\ea09";
}
.lni-amex::before {
content: "\ea0a";
}
.lni-anchor::before {
content: "\ea0b";
}
.lni-amazon-original::before {
content: "\ea0c";
}
.lni-android-original::before {
content: "\ea0d";
}
.lni-android::before {
content: "\ea0e";
}
.lni-angellist::before {
content: "\ea0f";
}
.lni-angle-double-down::before {
content: "\ea10";
}
.lni-angle-double-left::before {
content: "\ea11";
}
.lni-angle-double-right::before {
content: "\ea12";
}
.lni-angle-double-up::before {
content: "\ea13";
}
.lni-angular::before {
content: "\ea14";
}
.lni-apartment::before {
content: "\ea15";
}
.lni-app-store::before {
content: "\ea16";
}
.lni-apple-pay::before {
content: "\ea17";
}
.lni-apple::before {
content: "\ea18";
}
.lni-archive::before {
content: "\ea19";
}
.lni-arrow-down-circle::before {
content: "\ea1a";
}
.lni-arrow-left-circle::before {
content: "\ea1b";
}
.lni-arrow-left::before {
content: "\ea1c";
}
.lni-arrow-right-circle::before {
content: "\ea1d";
}
.lni-arrow-right::before {
content: "\ea1e";
}
.lni-arrow-top-left::before {
content: "\ea1f";
}
.lni-arrow-top-right::before {
content: "\ea20";
}
.lni-arrow-up-circle::before {
content: "\ea21";
}
.lni-arrow-up::before {
content: "\ea22";
}
.lni-arrows-horizontal::before {
content: "\ea23";
}
.lni-arrows-vertical::before {
content: "\ea24";
}
.lni-atlassian::before {
content: "\ea25";
}
.lni-aws::before {
content: "\ea26";
}
.lni-arrow-down::before {
content: "\ea27";
}
.lni-ambulance::before {
content: "\ea28";
}
.lni-agenda::before {
content: "\ea29";
}
.lni-backward::before {
content: "\ea2a";
}
.lni-baloon::before {
content: "\ea2b";
}
.lni-ban::before {
content: "\ea2c";
}
.lni-bar-chart::before {
content: "\ea2d";
}
.lni-behance-original::before {
content: "\ea2e";
}
.lni-bitbucket::before {
content: "\ea2f";
}
.lni-bitcoin::before {
content: "\ea30";
}
.lni-blackboard::before {
content: "\ea31";
}
.lni-blogger::before {
content: "\ea32";
}
.lni-bluetooth::before {
content: "\ea33";
}
.lni-bold::before {
content: "\ea34";
}
.lni-bolt-alt::before {
content: "\ea35";
}
.lni-bolt::before {
content: "\ea36";
}
.lni-book::before {
content: "\ea37";
}
.lni-bookmark-alt::before {
content: "\ea38";
}
.lni-bookmark::before {
content: "\ea39";
}
.lni-bootstrap::before {
content: "\ea3a";
}
.lni-bricks::before {
content: "\ea3b";
}
.lni-bridge::before {
content: "\ea3c";
}
.lni-briefcase::before {
content: "\ea3d";
}
.lni-brush-alt::before {
content: "\ea3e";
}
.lni-brush::before {
content: "\ea3f";
}
.lni-bubble::before {
content: "\ea40";
}
.lni-bug::before {
content: "\ea41";
}
.lni-bulb::before {
content: "\ea42";
}
.lni-bullhorn::before {
content: "\ea43";
}
.lni-burger::before {
content: "\ea44";
}
.lni-bus::before {
content: "\ea45";
}
.lni-cake::before {
content: "\ea46";
}
.lni-calculator::before {
content: "\ea47";
}
.lni-calendar::before {
content: "\ea48";
}
.lni-camera::before {
content: "\ea49";
}
.lni-candy-cane::before {
content: "\ea4a";
}
.lni-candy::before {
content: "\ea4b";
}
.lni-capsule::before {
content: "\ea4c";
}
.lni-car-alt::before {
content: "\ea4d";
}
.lni-car::before {
content: "\ea4e";
}
.lni-caravan::before {
content: "\ea4f";
}
.lni-cart-full::before {
content: "\ea50";
}
.lni-cart::before {
content: "\ea51";
}
.lni-certificate::before {
content: "\ea52";
}
.lni-checkbox::before {
content: "\ea53";
}
.lni-checkmark-circle::before {
content: "\ea54";
}
.lni-checkmark::before {
content: "\ea55";
}
.lni-chef-hat::before {
content: "\ea56";
}
.lni-chevron-down-circle::before {
content: "\ea57";
}
.lni-chevron-down::before {
content: "\ea58";
}
.lni-chevron-left-circle::before {
content: "\ea59";
}
.lni-chevron-left::before {
content: "\ea5a";
}
.lni-chevron-right-circle::before {
content: "\ea5b";
}
.lni-chevron-right::before {
content: "\ea5c";
}
.lni-chevron-up-circle::before {
content: "\ea5d";
}
.lni-chevron-up::before {
content: "\ea5e";
}
.lni-chrome::before {
content: "\ea5f";
}
.lni-circle-minus::before {
content: "\ea60";
}
.lni-circle-plus::before {
content: "\ea61";
}
.lni-clipboard::before {
content: "\ea62";
}
.lni-close::before {
content: "\ea63";
}
.lni-cloud-check::before {
content: "\ea64";
}
.lni-cloud-download::before {
content: "\ea65";
}
.lni-cloud-network::before {
content: "\ea66";
}
.lni-cloud-sync::before {
content: "\ea67";
}
.lni-cloud-upload::before {
content: "\ea68";
}
.lni-cloud::before {
content: "\ea69";
}
.lni-cloudy-sun::before {
content: "\ea6a";
}
.lni-code-alt::before {
content: "\ea6b";
}
.lni-code::before {
content: "\ea6c";
}
.lni-codepen::before {
content: "\ea6d";
}
.lni-coffee-cup::before {
content: "\ea6e";
}
.lni-cog::before {
content: "\ea6f";
}
.lni-cogs::before {
content: "\ea70";
}
.lni-coin::before {
content: "\ea71";
}
.lni-comments-alt::before {
content: "\ea72";
}
.lni-comments-reply::before {
content: "\ea73";
}
.lni-comments::before {
content: "\ea74";
}
.lni-compass::before {
content: "\ea75";
}
.lni-construction-hammer::before {
content: "\ea76";
}
.lni-construction::before {
content: "\ea77";
}
.lni-consulting::before {
content: "\ea78";
}
.lni-control-panel::before {
content: "\ea79";
}
.lni-cpanel::before {
content: "\ea7a";
}
.lni-creative-commons::before {
content: "\ea7b";
}
.lni-credit-cards::before {
content: "\ea7c";
}
.lni-crop::before {
content: "\ea7d";
}
.lni-cross-circle::before {
content: "\ea7e";
}
.lni-crown::before {
content: "\ea7f";
}
.lni-css3::before {
content: "\ea80";
}
.lni-cup::before {
content: "\ea81";
}
.lni-customer::before {
content: "\ea82";
}
.lni-cut::before {
content: "\ea83";
}
.lni-dashboard::before {
content: "\ea84";
}
.lni-database::before {
content: "\ea85";
}
.lni-delivery::before {
content: "\ea86";
}
.lni-dev::before {
content: "\ea87";
}
.lni-diamond-alt::before {
content: "\ea88";
}
.lni-diamond::before {
content: "\ea89";
}
.lni-diners-club::before {
content: "\ea8a";
}
.lni-dinner::before {
content: "\ea8b";
}
.lni-direction-alt::before {
content: "\ea8c";
}
.lni-direction-ltr::before {
content: "\ea8d";
}
.lni-direction-rtl::before {
content: "\ea8e";
}
.lni-direction::before {
content: "\ea8f";
}
.lni-discord::before {
content: "\ea90";
}
.lni-discover::before {
content: "\ea91";
}
.lni-display-alt::before {
content: "\ea92";
}
.lni-display::before {
content: "\ea93";
}
.lni-docker::before {
content: "\ea94";
}
.lni-dollar::before {
content: "\ea95";
}
.lni-domain::before {
content: "\ea96";
}
.lni-download::before {
content: "\ea97";
}
.lni-dribbble::before {
content: "\ea98";
}
.lni-drop::before {
content: "\ea99";
}
.lni-dropbox-original::before {
content: "\ea9a";
}
.lni-dropbox::before {
content: "\ea9b";
}
.lni-drupal-original::before {
content: "\ea9c";
}
.lni-drupal::before {
content: "\ea9d";
}
.lni-dumbbell::before {
content: "\ea9e";
}
.lni-edge::before {
content: "\ea9f";
}
.lni-emoji-cool::before {
content: "\eaa0";
}
.lni-emoji-friendly::before {
content: "\eaa1";
}
.lni-emoji-happy::before {
content: "\eaa2";
}
.lni-emoji-sad::before {
content: "\eaa3";
}
.lni-emoji-smile::before {
content: "\eaa4";
}
.lni-emoji-speechless::before {
content: "\eaa5";
}
.lni-emoji-suspect::before {
content: "\eaa6";
}
.lni-emoji-tounge::before {
content: "\eaa7";
}
.lni-empty-file::before {
content: "\eaa8";
}
.lni-enter::before {
content: "\eaa9";
}
.lni-envato::before {
content: "\eaaa";
}
.lni-envelope::before {
content: "\eaab";
}
.lni-eraser::before {
content: "\eaac";
}
.lni-euro::before {
content: "\eaad";
}
.lni-exit-down::before {
content: "\eaae";
}
.lni-exit-up::before {
content: "\eaaf";
}
.lni-exit::before {
content: "\eab0";
}
.lni-eye::before {
content: "\eab1";
}
.lni-facebook-filled::before {
content: "\eab2";
}
.lni-facebook-messenger::before {
content: "\eab3";
}
.lni-facebook-original::before {
content: "\eab4";
}
.lni-facebook-oval::before {
content: "\eab5";
}
.lni-facebook::before {
content: "\eab6";
}
.lni-figma::before {
content: "\eab7";
}
.lni-files::before {
content: "\eab8";
}
.lni-firefox-original::before {
content: "\eab9";
}
.lni-firefox::before {
content: "\eaba";
}
.lni-fireworks::before {
content: "\eabb";
}
.lni-first-aid::before {
content: "\eabc";
}
.lni-flag-alt::before {
content: "\eabd";
}
.lni-flag::before {
content: "\eabe";
}
.lni-flags::before {
content: "\eabf";
}
.lni-flickr::before {
content: "\eac0";
}
.lni-basketball::before {
content: "\eac1";
}
.lni-behance::before {
content: "\eac2";
}
.lni-forward::before {
content: "\eac3";
}
.lni-frame-expand::before {
content: "\eac4";
}
.lni-flower::before {
content: "\eac5";
}
.lni-full-screen::before {
content: "\eac6";
}
.lni-funnel::before {
content: "\eac7";
}
.lni-gallery::before {
content: "\eac8";
}
.lni-game::before {
content: "\eac9";
}
.lni-gift::before {
content: "\eaca";
}
.lni-git::before {
content: "\eacb";
}
.lni-github-original::before {
content: "\eacc";
}
.lni-github::before {
content: "\eacd";
}
.lni-goodreads::before {
content: "\eace";
}
.lni-google-drive::before {
content: "\eacf";
}
.lni-google-pay::before {
content: "\ead0";
}
.lni-fresh-juice::before {
content: "\ead1";
}
.lni-folder::before {
content: "\ead2";
}
.lni-bi-cycle::before {
content: "\ead3";
}
.lni-graph::before {
content: "\ead4";
}
.lni-grid-alt::before {
content: "\ead5";
}
.lni-grid::before {
content: "\ead6";
}
.lni-google-wallet::before {
content: "\ead7";
}
.lni-grow::before {
content: "\ead8";
}
.lni-hammer::before {
content: "\ead9";
}
.lni-hand::before {
content: "\eada";
}
.lni-handshake::before {
content: "\eadb";
}
.lni-harddrive::before {
content: "\eadc";
}
.lni-headphone-alt::before {
content: "\eadd";
}
.lni-headphone::before {
content: "\eade";
}
.lni-heart-filled::before {
content: "\eadf";
}
.lni-heart-monitor::before {
content: "\eae0";
}
.lni-heart::before {
content: "\eae1";
}
.lni-helicopter::before {
content: "\eae2";
}
.lni-helmet::before {
content: "\eae3";
}
.lni-help::before {
content: "\eae4";
}
.lni-highlight-alt::before {
content: "\eae5";
}
.lni-highlight::before {
content: "\eae6";
}
.lni-home::before {
content: "\eae7";
}
.lni-hospital::before {
content: "\eae8";
}
.lni-hourglass::before {
content: "\eae9";
}
.lni-html5::before {
content: "\eaea";
}
.lni-image::before {
content: "\eaeb";
}
.lni-inbox::before {
content: "\eaec";
}
.lni-indent-decrease::before {
content: "\eaed";
}
.lni-indent-increase::before {
content: "\eaee";
}
.lni-infinite::before {
content: "\eaef";
}
.lni-information::before {
content: "\eaf0";
}
.lni-instagram-filled::before {
content: "\eaf1";
}
.lni-instagram-original::before {
content: "\eaf2";
}
.lni-instagram::before {
content: "\eaf3";
}
.lni-invention::before {
content: "\eaf4";
}
.lni-graduation::before {
content: "\eaf5";
}
.lni-invest-monitor::before {
content: "\eaf6";
}
.lni-island::before {
content: "\eaf7";
}
.lni-italic::before {
content: "\eaf8";
}
.lni-java::before {
content: "\eaf9";
}
.lni-javascript::before {
content: "\eafa";
}
.lni-jcb::before {
content: "\eafb";
}
.lni-joomla-original::before {
content: "\eafc";
}
.lni-joomla::before {
content: "\eafd";
}
.lni-jsfiddle::before {
content: "\eafe";
}
.lni-juice::before {
content: "\eaff";
}
.lni-key::before {
content: "\eb00";
}
.lni-keyboard::before {
content: "\eb01";
}
.lni-keyword-research::before {
content: "\eb02";
}
.lni-hacker-news::before {
content: "\eb03";
}
.lni-google::before {
content: "\eb04";
}
.lni-laravel::before {
content: "\eb05";
}
.lni-layers::before {
content: "\eb06";
}
.lni-layout::before {
content: "\eb07";
}
.lni-leaf::before {
content: "\eb08";
}
.lni-library::before {
content: "\eb09";
}
.lni-licencse::before {
content: "\eb0a";
}
.lni-life-ring::before {
content: "\eb0b";
}
.lni-line-dashed::before {
content: "\eb0c";
}
.lni-line-dotted::before {
content: "\eb0d";
}
.lni-line-double::before {
content: "\eb0e";
}
.lni-line-spacing::before {
content: "\eb0f";
}
.lni-line::before {
content: "\eb10";
}
.lni-lineicons-alt::before {
content: "\eb11";
}
.lni-lineicons::before {
content: "\eb12";
}
.lni-link::before {
content: "\eb13";
}
.lni-linkedin-original::before {
content: "\eb14";
}
.lni-linkedin::before {
content: "\eb15";
}
.lni-list::before {
content: "\eb16";
}
.lni-lock-alt::before {
content: "\eb17";
}
.lni-lock::before {
content: "\eb18";
}
.lni-magnet::before {
content: "\eb19";
}
.lni-magnifier::before {
content: "\eb1a";
}
.lni-mailchimp::before {
content: "\eb1b";
}
.lni-map-marker::before {
content: "\eb1c";
}
.lni-map::before {
content: "\eb1d";
}
.lni-mashroom::before {
content: "\eb1e";
}
.lni-mastercard::before {
content: "\eb1f";
}
.lni-medall-alt::before {
content: "\eb20";
}
.lni-medall::before {
content: "\eb21";
}
.lni-medium::before {
content: "\eb22";
}
.lni-laptop::before {
content: "\eb23";
}
.lni-investment::before {
content: "\eb24";
}
.lni-laptop-phone::before {
content: "\eb25";
}
.lni-megento::before {
content: "\eb26";
}
.lni-mic::before {
content: "\eb27";
}
.lni-microphone::before {
content: "\eb28";
}
.lni-menu::before {
content: "\eb29";
}
.lni-microscope::before {
content: "\eb2a";
}
.lni-money-location::before {
content: "\eb2b";
}
.lni-minus::before {
content: "\eb2c";
}
.lni-mobile::before {
content: "\eb2d";
}
.lni-more-alt::before {
content: "\eb2e";
}
.lni-mouse::before {
content: "\eb2f";
}
.lni-move::before {
content: "\eb30";
}
.lni-music::before {
content: "\eb31";
}
.lni-network::before {
content: "\eb32";
}
.lni-night::before {
content: "\eb33";
}
.lni-nodejs-alt::before {
content: "\eb34";
}
.lni-nodejs::before {
content: "\eb35";
}
.lni-notepad::before {
content: "\eb36";
}
.lni-npm::before {
content: "\eb37";
}
.lni-offer::before {
content: "\eb38";
}
.lni-opera::before {
content: "\eb39";
}
.lni-package::before {
content: "\eb3a";
}
.lni-page-break::before {
content: "\eb3b";
}
.lni-pagination::before {
content: "\eb3c";
}
.lni-paint-bucket::before {
content: "\eb3d";
}
.lni-paint-roller::before {
content: "\eb3e";
}
.lni-pallet::before {
content: "\eb3f";
}
.lni-paperclip::before {
content: "\eb40";
}
.lni-more::before {
content: "\eb41";
}
.lni-pause::before {
content: "\eb42";
}
.lni-paypal-original::before {
content: "\eb43";
}
.lni-microsoft::before {
content: "\eb44";
}
.lni-money-protection::before {
content: "\eb45";
}
.lni-pencil::before {
content: "\eb46";
}
.lni-paypal::before {
content: "\eb47";
}
.lni-pencil-alt::before {
content: "\eb48";
}
.lni-patreon::before {
content: "\eb49";
}
.lni-phone-set::before {
content: "\eb4a";
}
.lni-phone::before {
content: "\eb4b";
}
.lni-pin::before {
content: "\eb4c";
}
.lni-pinterest::before {
content: "\eb4d";
}
.lni-pie-chart::before {
content: "\eb4e";
}
.lni-pilcrow::before {
content: "\eb4f";
}
.lni-plane::before {
content: "\eb50";
}
.lni-play::before {
content: "\eb51";
}
.lni-plug::before {
content: "\eb52";
}
.lni-plus::before {
content: "\eb53";
}
.lni-pointer-down::before {
content: "\eb54";
}
.lni-pointer-left::before {
content: "\eb55";
}
.lni-pointer-right::before {
content: "\eb56";
}
.lni-pointer-up::before {
content: "\eb57";
}
.lni-play-store::before {
content: "\eb58";
}
.lni-pizza::before {
content: "\eb59";
}
.lni-postcard::before {
content: "\eb5a";
}
.lni-pound::before {
content: "\eb5b";
}
.lni-power-switch::before {
content: "\eb5c";
}
.lni-printer::before {
content: "\eb5d";
}
.lni-producthunt::before {
content: "\eb5e";
}
.lni-protection::before {
content: "\eb5f";
}
.lni-pulse::before {
content: "\eb60";
}
.lni-pyramids::before {
content: "\eb61";
}
.lni-python::before {
content: "\eb62";
}
.lni-pointer::before {
content: "\eb63";
}
.lni-popup::before {
content: "\eb64";
}
.lni-quotation::before {
content: "\eb65";
}
.lni-radio-button::before {
content: "\eb66";
}
.lni-rain::before {
content: "\eb67";
}
.lni-quora::before {
content: "\eb68";
}
.lni-react::before {
content: "\eb69";
}
.lni-question-circle::before {
content: "\eb6a";
}
.lni-php::before {
content: "\eb6b";
}
.lni-reddit::before {
content: "\eb6c";
}
.lni-reload::before {
content: "\eb6d";
}
.lni-restaurant::before {
content: "\eb6e";
}
.lni-road::before {
content: "\eb6f";
}
.lni-rocket::before {
content: "\eb70";
}
.lni-rss-feed::before {
content: "\eb71";
}
.lni-ruler-alt::before {
content: "\eb72";
}
.lni-ruler-pencil::before {
content: "\eb73";
}
.lni-ruler::before {
content: "\eb74";
}
.lni-rupee::before {
content: "\eb75";
}
.lni-save::before {
content: "\eb76";
}
.lni-school-bench-alt::before {
content: "\eb77";
}
.lni-school-bench::before {
content: "\eb78";
}
.lni-scooter::before {
content: "\eb79";
}
.lni-scroll-down::before {
content: "\eb7a";
}
.lni-search-alt::before {
content: "\eb7b";
}
.lni-search::before {
content: "\eb7c";
}
.lni-select::before {
content: "\eb7d";
}
.lni-seo::before {
content: "\eb7e";
}
.lni-service::before {
content: "\eb7f";
}
.lni-share-alt::before {
content: "\eb80";
}
.lni-share::before {
content: "\eb81";
}
.lni-shield::before {
content: "\eb82";
}
.lni-shift-left::before {
content: "\eb83";
}
.lni-shift-right::before {
content: "\eb84";
}
.lni-ship::before {
content: "\eb85";
}
.lni-shopify::before {
content: "\eb86";
}
.lni-shopping-basket::before {
content: "\eb87";
}
.lni-shortcode::before {
content: "\eb88";
}
.lni-shovel::before {
content: "\eb89";
}
.lni-shuffle::before {
content: "\eb8a";
}
.lni-signal::before {
content: "\eb8b";
}
.lni-sketch::before {
content: "\eb8c";
}
.lni-skipping-rope::before {
content: "\eb8d";
}
.lni-skype::before {
content: "\eb8e";
}
.lni-slack::before {
content: "\eb8f";
}
.lni-slice::before {
content: "\eb90";
}
.lni-slideshare::before {
content: "\eb91";
}
.lni-slim::before {
content: "\eb92";
}
.lni-reply::before {
content: "\eb93";
}
.lni-sort-alpha-asc::before {
content: "\eb94";
}
.lni-remove-file::before {
content: "\eb95";
}
.lni-sort-amount-dsc::before {
content: "\eb96";
}
.lni-sort-amount-asc::before {
content: "\eb97";
}
.lni-soundcloud::before {
content: "\eb98";
}
.lni-souncloud-original::before {
content: "\eb99";
}
.lni-spiner-solid::before {
content: "\eb9a";
}
.lni-revenue::before {
content: "\eb9b";
}
.lni-spinner::before {
content: "\eb9c";
}
.lni-spellcheck::before {
content: "\eb9d";
}
.lni-spotify::before {
content: "\eb9e";
}
.lni-spray::before {
content: "\eb9f";
}
.lni-sprout::before {
content: "\eba0";
}
.lni-snapchat::before {
content: "\eba1";
}
.lni-stamp::before {
content: "\eba2";
}
.lni-star-empty::before {
content: "\eba3";
}
.lni-star-filled::before {
content: "\eba4";
}
.lni-star-half::before {
content: "\eba5";
}
.lni-star::before {
content: "\eba6";
}
.lni-stats-down::before {
content: "\eba7";
}
.lni-spinner-arrow::before {
content: "\eba8";
}
.lni-steam::before {
content: "\eba9";
}
.lni-stackoverflow::before {
content: "\ebaa";
}
.lni-stop::before {
content: "\ebab";
}
.lni-strikethrough::before {
content: "\ebac";
}
.lni-sthethoscope::before {
content: "\ebad";
}
.lni-stumbleupon::before {
content: "\ebae";
}
.lni-sun::before {
content: "\ebaf";
}
.lni-support::before {
content: "\ebb0";
}
.lni-surf-board::before {
content: "\ebb1";
}
.lni-swift::before {
content: "\ebb2";
}
.lni-syringe::before {
content: "\ebb3";
}
.lni-tab::before {
content: "\ebb4";
}
.lni-tag::before {
content: "\ebb5";
}
.lni-target-customer::before {
content: "\ebb6";
}
.lni-target-revenue::before {
content: "\ebb7";
}
.lni-target::before {
content: "\ebb8";
}
.lni-taxi::before {
content: "\ebb9";
}
.lni-stats-up::before {
content: "\ebba";
}
.lni-telegram-original::before {
content: "\ebbb";
}
.lni-telegram::before {
content: "\ebbc";
}
.lni-text-align-center::before {
content: "\ebbd";
}
.lni-text-align-justify::before {
content: "\ebbe";
}
.lni-text-align-left::before {
content: "\ebbf";
}
.lni-text-format-remove::before {
content: "\ebc0";
}
.lni-text-align-right::before {
content: "\ebc1";
}
.lni-text-format::before {
content: "\ebc2";
}
.lni-thought::before {
content: "\ebc3";
}
.lni-thumbs-down::before {
content: "\ebc4";
}
.lni-thumbs-up::before {
content: "\ebc5";
}
.lni-thunder-alt::before {
content: "\ebc6";
}
.lni-thunder::before {
content: "\ebc7";
}
.lni-ticket-alt::before {
content: "\ebc8";
}
.lni-ticket::before {
content: "\ebc9";
}
.lni-timer::before {
content: "\ebca";
}
.lni-train-alt::before {
content: "\ebcb";
}
.lni-train::before {
content: "\ebcc";
}
.lni-trash::before {
content: "\ebcd";
}
.lni-travel::before {
content: "\ebce";
}
.lni-tree::before {
content: "\ebcf";
}
.lni-trees::before {
content: "\ebd0";
}
.lni-trello::before {
content: "\ebd1";
}
.lni-trowel::before {
content: "\ebd2";
}
.lni-tshirt::before {
content: "\ebd3";
}
.lni-tumblr::before {
content: "\ebd4";
}
.lni-twitch::before {
content: "\ebd5";
}
.lni-twitter-filled::before {
content: "\ebd6";
}
.lni-twitter-original::before {
content: "\ebd7";
}
.lni-twitter::before {
content: "\ebd8";
}
.lni-ubuntu::before {
content: "\ebd9";
}
.lni-underline::before {
content: "\ebda";
}
.lni-unlink::before {
content: "\ebdb";
}
.lni-unlock::before {
content: "\ebdc";
}
.lni-upload::before {
content: "\ebdd";
}
.lni-user::before {
content: "\ebde";
}
.lni-users::before {
content: "\ebdf";
}
.lni-ux::before {
content: "\ebe0";
}
.lni-vector::before {
content: "\ebe1";
}
.lni-video::before {
content: "\ebe2";
}
.lni-vimeo::before {
content: "\ebe3";
}
.lni-visa::before {
content: "\ebe4";
}
.lni-vk::before {
content: "\ebe5";
}
.lni-volume-high::before {
content: "\ebe6";
}
.lni-volume-low::before {
content: "\ebe7";
}
.lni-volume-medium::before {
content: "\ebe8";
}
.lni-volume-mute::before {
content: "\ebe9";
}
.lni-volume::before {
content: "\ebea";
}
.lni-wallet::before {
content: "\ebeb";
}
.lni-warning::before {
content: "\ebec";
}
.lni-website-alt::before {
content: "\ebed";
}
.lni-website::before {
content: "\ebee";
}
.lni-wechat::before {
content: "\ebef";
}
.lni-weight::before {
content: "\ebf0";
}
.lni-whatsapp::before {
content: "\ebf1";
}
.lni-wheelbarrow::before {
content: "\ebf2";
}
.lni-wheelchair::before {
content: "\ebf3";
}
.lni-windows::before {
content: "\ebf4";
}
.lni-wordpress-filled::before {
content: "\ebf5";
}
.lni-wordpress::before {
content: "\ebf6";
}
.lni-world-alt::before {
content: "\ebf7";
}
.lni-world::before {
content: "\ebf8";
}
.lni-write::before {
content: "\ebf9";
}
.lni-yahoo::before {
content: "\ebfa";
}
.lni-ycombinator::before {
content: "\ebfb";
}
.lni-yen::before {
content: "\ebfc";
}
.lni-youtube::before {
content: "\ebfd";
}
.lni-zip::before {
content: "\ebfe";
}
.lni-zoom-in::before {
content: "\ebff";
}
.lni-zoom-out::before {
content: "\ec00";
}
.lni-teabag::before {
content: "\ec01";
}
.lni-stripe::before {
content: "\ec02";
}
.lni-spotify-original::before {
content: "\ec03";
}body,
h1,
h2,
h3,
h4,
h5,
h6,
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="email"],
input[type="url"],
input[type="month"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="time"],
input[type="week"],
[type="submit"],
button,
textarea,
select,
.html5tooltip-box,
.sl-icon,
.sl-count {
font-family: IRANSansX, tahoma;
}
@supports (font-variation-settings: normal) {
body,
h1,
h2,
h3,
h4,
h5,
h6,
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="email"],
input[type="url"],
input[type="month"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type="time"],
input[type="week"],
[type="submit"],
button,
textarea,
select,
.html5tooltip-box,
.sl-icon,
.sl-count {
font-family: IRANSansXV, tahoma;
-moz-font-feature-settings: "ss02";
-webkit-font-feature-settings: "ss02";
font-feature-settings: "ss02";
}
}
h1 {
font-size: 22px;
}
h2 {
font-size: 22px;
}
h3 {
font-size: 17px;
}
h4 {
font-size: 15px;
}
h5 {
font-size: 14px;
}
h6 {
font-size: 13px;
}
.clear {
clear: both;
display: block;
width: 100%;
}
.megawp-site-center {
display: block;
margin: 0 auto;
word-wrap: break-word;
padding: 0 25px;
box-sizing: border-box;
}
.megawp-general-box {
background-color: #fff;
border: solid #dfe6e9;
width: 100%;
border-radius: 5px;
box-sizing: border-box;
word-wrap: break-word;
display: block;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.megawp-single-pages-boxes-title {
border-bottom: 1px solid #dfe6e9;
padding: 10px 20px;
line-height: 2em;
box-sizing: border-box;
margin-bottom: 20px;
display: block;
width: 100%;
}
.megawp-single-pages-boxes-title-wm {
margin-bottom: 0;
}
.megawp-main-content {
word-wrap: break-word;
margin-top: 30px;
margin-bottom: 50px;
}
.megawp-search-form button::before {
line-height: 35px;
}
.html5tooltip-box {
line-height: 10px;
font-size: 10px !important;
background-color: #000;
}
body #megawp-load {
display: block;
height: 100%;
overflow: hidden;
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 30000;
opacity: 1;
background-color: #ffffff;
visibility: visible;
-webkit-transition: all 0.35s ease-out;
transition: all 0.35s ease-out;
}
body #megawp-load.loader-removed {
opacity: 0;
visibility: hidden;
}
.megawp-load .load-wrap {
background-position: center center;
background-repeat: no-repeat;
text-align: center;
background-color: #ffffff;
width: 100%;
height: 100%;
}
header.megawp-header-wrapper {
display: block;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
border-bottom: 1px solid #f3f3f3;
width: 100%;
}
.searchwp-live-search-results {
padding: 15px;
}
.searchwp-live-search-results .megawp-ajax-search-result-item {
width: 100%;
padding: 15px 0;
box-sizing: border-box;
border-bottom: 1px solid #dfe6e9;
display: grid;
grid-template-columns: 70px auto;
grid-column-gap: 10px;
}
.searchwp-live-search-results .megawp-ajax-search-result-item:first-child {
padding-top: 0;
}
.searchwp-live-search-results .megawp-ajax-search-result-item:last-child {
border-bottom: 0;
}
.searchwp-live-search-results .megawp-ajax-search-result-item h4 {
color: #485460;
transition-duration: 0.2s;
}
.searchwp-live-search-results
.megawp-ajax-search-result-item
.megawp-ajax-search-result-thumbnail {
width: 70px;
height: 70px;
border-radius: 5px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.searchwp-live-search-no-results i {
display: block;
width: 100%;
font-size: 25px;
margin-bottom: 10px;
color: #718093;
}
.searchwp-live-search-no-results em {
font-size: 13px;
color: #718093;
}
.searchwp-live-search-no-min-chars::after {
font-size: 13px;
color: #718093;
}
header.megawp-header-wrapper {
background-color: #fff;
}
.header-top-area {
background-color: #3e297c;
padding: 13px 0;
}
.header-logo-area a {
float: right;
height: 40px;
width: auto;
}
.header-logo-area img {
height: 100%;
}
header.megawp-header-wrapper .header-logo-area a {
color: #485460;
}
.header-btns {
float: left;
}
.header-btns > a,
.header-user-button {
padding: 7px 15px;
border-radius: 4px;
line-height: 26px;
font-weight: 600;
color: #000;
float: left;
font-size: 13px;
margin-right: 13px;
}
.header-btns a:hover {
color: #000;
opacity: 0.9;
}
.header-user-button-wrapper {
position: relative;
float: left;
}
.header-user-button {
background-color: #f6f6f6;
}
.header-cart-button {
background-color: #ffc000;
}
.header-user-button .notification-icon {
float: right;
margin-left: 5px;
width: 26px;
height: 26px;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/bell.svg);
background-repeat: no-repeat;
background-size: 20px;
background-position: center;
}
.header-user-button i {
float: left;
transition-duration: 0.2s;
margin-right: 5px;
line-height: 26px;
font-size: 0.8em;
}
.header-user-button.open i {
transform: rotate(180deg);
}
.header-account-menu {
position: absolute;
z-index: 1000;
top: calc(100% + 5px);
left: 0;
display: none;
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
box-sizing: border-box;
border-radius: 4px;
width: 230px;
padding: 5px;
background-color: #fff;
}
.header-account-menu ul {
}
.header-account-menu ul li a {
display: block;
transition-duration: 0s;
box-sizing: border-box;
border-bottom: 1px solid rgba(0, 0, 0, 0.09);
border-radius: 3px;
width: 100%;
padding: 10px 15px;
color: #000;
}
.header-account-menu ul li:last-child a {
border-bottom: 0;
}
.header-account-menu ul li a:hover {
background-color: #f4d03f;
background-image: linear-gradient(132deg, #f4d03f 0%, #16a085 100%);
color: #fff;
}
.header-btns a.header-surprise-makers-button {
background-color: #ff5722;
color: #fff;
}
.header-btns a.header-surprise-makers-button:hover {
color: #fff;
}
header.megawp-header-wrapper .megawp-search-form {
float: left;
background-color: #fff;
height: 40px;
border-radius: 4px;
min-width: 290px;
position: relative;
margin-right: 20px;
}
header.megawp-header-wrapper .megawp-search-form input,
header.megawp-header-wrapper .megawp-search-form button {
background-color: transparent;
border-radius: 0;
border: none;
line-height: 40px;
box-shadow: none;
padding: 0;
}
header.megawp-header-wrapper .megawp-search-form input {
float: right;
width: 100%;
padding: 0 13px;
}
header.megawp-header-wrapper .megawp-search-form button {
color: #a3a3a3;
position: absolute;
left: 0;
top: 0;
height: 40px;
width: 40px;
text-align: center;
}
header.megawp-header-wrapper .megawp-search-form button i {
float: left;
line-height: 40px;
width: 100%;
}
.header-links {
float: left;
}
.header-links a {
float: left;
color: #fff;
margin-right: 20px;
font-size: 15px;
line-height: 30px;
padding: 5px 0;
font-weight: 600;
}
.header-links a:hover {
color: #fff;
}
header.megawp-header-wrapper .megawp-header-menu ul li {
float: left;
position: relative;
}
header.megawp-header-wrapper .megawp-header-menu ul li::before {
float: right;
}
header.megawp-header-wrapper .megawp-header-menu ul li a {
float: left;
transition-duration: 0.3s;
line-height: 42px;
color: #000000;
font-size: 14px;
font-weight: 600;
border-left: 2px solid #f3f3f3;
padding: 0 15px;
}
header.megawp-header-wrapper .megawp-header-menu ul li:first-child a {
padding-right: 0;
}
header.megawp-header-wrapper .megawp-header-menu ul li li:first-child a {
padding-right: 10px;
}
header.megawp-header-wrapper
.megawp-header-menu
ul
> li.has-children
> a:after {
font-family: lineicons;
content: "\ea58";
font-size: 0.66em;
margin-left: 5px;
float: right;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul {
background-color: #fff;
visibility: hidden;
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
border-radius: 4px;
left: 0;
width: 200px;
line-height: 40px;
opacity: 0;
top: 100%;
word-wrap: break-word;
z-index: 1000;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li {
position: relative;
margin: 0 !important;
display: block;
width: 100%;
float: left;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li ul {
top: 0;
left: 100%;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li a {
padding: 0 10px;
box-sizing: border-box;
line-height: 40px !important;
display: block;
width: 100%;
border-bottom: 1px solid #e9ecef;
transition-duration: 0.2s;
font-size: 13px !important;
text-align: left;
font-weight: 400 !important;
border-left: none;
}
header.megawp-header-wrapper .megawp-header-menu ul li:hover > ul {
visibility: visible;
opacity: 1;
transition-duration: 0.3s;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li:first-child > a {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li:last-child > a {
border-bottom: none;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li:hover > a {
background-color: #f7f7f7;
}
header.megawp-header-wrapper
.megawp-header-menu
ul
li
ul
li.has-children
> a:after {
font-family: lineicons;
content: "\ea5c" !important;
margin: 0 !important;
line-height: 40px !important;
font-size: 9px;
}
.megawp-sticky-header-wrapper
.megawp-sticky-header
.megawp-sticky-header-menu
ul
li
a {
font-size: 15px;
font-weight: 600;
}
header.megawp-header-wrapper .megawp-header-menu ul li:hover > a {
color: #3498db;
}
header.megawp-header-wrapper .megawp-header-menu ul .current-menu-ancestor > a,
header.megawp-header-wrapper .megawp-header-menu ul .current-menu-item > a {
color: #ff4500;
}
header.megawp-header-wrapper
.megawp-header-menu
ul
.current-menu-ancestor:hover
> a,
header.megawp-header-wrapper
.megawp-header-menu
ul
.current-menu-item:hover
> a {
color: #ff4500;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li a {
color: #000000;
}
header.megawp-header-wrapper .megawp-header-menu ul li ul li:hover > a {
color: #485460;
}
header.megawp-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-ancestor
> a,
header.megawp-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-item
> a {
color: #ff4500;
}
header.megawp-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-ancestor:hover
> a,
header.megawp-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-item:hover
> a {
color: #ff4500;
}
header.megawp-header-wrapper .header-separator {
width: 100%;
display: block;
height: 1px;
}
.megawp-sticky-header-wrapper {
display: none;
position: fixed;
left: 20px;
width: calc(100% - 40px);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 9999;
border-radius: 5px;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li {
float: left;
position: relative;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li a {
float: left;
transition-duration: 0.3s;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li.has-children > a:after {
font-family: lineicons;
content: "\ea58" !important;
font-size: 0.55em;
margin-left: 5px;
float: right;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul {
background-color: #fff;
visibility: hidden;
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
border-radius: 4px;
left: 0;
width: 200px;
line-height: 40px;
opacity: 0;
top: 100%;
word-wrap: break-word;
z-index: 1000;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li {
position: relative;
margin: 0 !important;
display: block;
width: 100%;
float: left;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li ul {
top: 0;
left: 100%;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li a {
padding: 0 10px;
box-sizing: border-box;
line-height: 40px !important;
display: block;
width: 100%;
border-bottom: 1px solid #e9ecef;
transition-duration: 0.2s;
font-size: 13px !important;
text-align: left;
font-weight: 400 !important;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li:hover > ul {
visibility: visible;
opacity: 1;
transition-duration: 0.3s;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li:first-child > a {
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li:last-child > a {
border-bottom: none;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li:hover > a {
background-color: #f7f7f7;
}
.megawp-sticky-header-wrapper
.megawp-header-menu
ul
li
ul
li.has-children
> a:after {
font-family: lineicons;
content: "\ea5c" !important;
margin: 0 !important;
font-size: 9px;
line-height: 40px !important;
}
.megawp-sticky-header-wrapper .megawp-sticky-header {
padding: 10px 20px;
}
.megawp-sticky-header-wrapper .megawp-sticky-header .header-logo-area {
float: left;
margin-left: 5px !important;
height: 40px;
}
.megawp-sticky-header-wrapper .megawp-sticky-header .header-logo-area a {
line-height: 40px;
font-weight: 700;
font-size: 20px;
transition-duration: 0.2s;
float: left;
}
.megawp-sticky-header-wrapper .megawp-sticky-header .header-logo-area a:hover {
opacity: 0.85;
}
.megawp-sticky-header-wrapper .megawp-sticky-header .header-logo-area img {
height: 40px;
width: auto;
float: left;
}
.megawp-desktop-header .tf-technical-news-btn {
float: left;
margin-top: 3px;
margin-right: 10px;
border: 1px solid rgba(0, 0, 0, 0.1);
width: 34px;
height: 34px;
background-color: #2196f3;
background-size: 23px;
}
.megawp-sticky-header-wrapper .tf-technical-news-btn {
float: right;
margin-left: 30px;
border: 1px solid rgba(0, 0, 0, 0.1);
width: 40px;
height: 40px;
background-size: 27px;
}
.tf-technical-news-btn {
border-radius: 100%;
background-color: rgba(255, 255, 255, 0.3);
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/bulb-off.png);
background-repeat: no-repeat;
background-position: center center;
}
.tf-technical-news-btn.active {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/bulb-on.png);
animation: tf-light-bulb 2s ease-in-out infinite;
}
@keyframes tf-light-bulb {
0% {
opacity: 0.7;
transform: scale(0.95);
}
50% {
opacity: 1;
transform: scale(1.05);
}
100% {
opacity: 0.7;
transform: scale(0.95);
}
}
.megawp-desktop-header .wp-dark-mode-switch {
float: left !important;
z-index: 999;
margin-top: 3px;
}
.megawp-desktop-header .wp-dark-mode-switch label {
border-radius: 100%;
width: 36px;
height: 36px;
}
.megawp-desktop-header .wp-dark-mode-switch label img {
width: 17px;
}
.megawp-desktop-header .wp-dark-mode-switch .wp-dark-mode-ignore {
width: 36px !important;
height: 36px !important;
}
.header3-bottom-area {
padding: 5px 0;
}
.megawp-sticky-header-wrapper .megawp-sticky-header .megawp-sticky-header-menu {
float: left;
}
.megawp-sticky-header-wrapper
.megawp-sticky-header
.megawp-sticky-header-menu
ul
li
a {
line-height: 40px;
}
.megawp-sticky-header-wrapper
.megawp-sticky-header
.megawp-sticky-header-menu
ul
li.has-children
> a:after {
line-height: 40px;
}
.header-social-media {
float: left;
}
.header-social-media a {
float: left;
color: #fff;
line-height: 40px;
width: 40px;
height: 40px;
text-align: center;
font-size: 17px;
margin-right: 10px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 100%;
}
.header-social-media a:hover {
background-color: #fff;
color: #f12711;
}
.header-social-media a i {
line-height: 40px;
}
.header-social-media .wp-dark-mode-switch {
float: left;
}
.header-social-media .wp-dark-mode-switch .wp-dark-mode-ignore {
width: 36px !important;
height: 36px !important;
}
.header-social-media .wp-dark-mode-switch label {
border-radius: 100%;
width: 40px;
height: 40px;
}
.header-social-media .wp-dark-mode-switch label img {
width: 17px;
}
.megawp-sticky-header-wrapper .megawp-progress-container {
width: 100%;
height: 4px;
background: #ccc;
border-radius: 0 0 5px 5px;
overflow: hidden;
}
.megawp-sticky-header-wrapper .megawp-progress-container .megawp-progress-bar {
height: 4px;
width: 0;
}
.megawp-content .megawp-breadcrumbs {
padding: 2px 15px;
margin-bottom: 20px;
line-height: 40px;
}
.megawp-breadcrumbs li {
display: initial;
}
.megawp-breadcrumbs li a i {
float: left;
margin-right: 5px;
line-height: 40px;
}
.megawp-content .megawp-breadcrumbs .breadcrumbs_separator i {
color: #7f8c8d;
margin: 0 10px;
font-size: 10px;
line-height: 40px;
}
.megawp-single-cat-title-classic {
display: block;
margin-bottom: 20px;
padding: 0 10px;
width: 100%;
box-sizing: border-box;
color: #485460;
font-size: 18px;
font-weight: 600;
line-height: 30px;
}
.megawp-single-cat-title-classic i {
float: left;
margin-right: 0.4em;
color: #fff;
background-image: linear-gradient(45deg, #5efce8, #736efe);
font-size: 13px;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 3px;
text-align: center;
font-weight: 500;
}
.megawp-category-description {
padding: 15px;
margin-bottom: 20px;
color: #485460;
line-height: 30px;
}
.megawp-category-description ul {
list-style: inside disc;
}
.megawp-category-description ol {
list-style: inside decimal;
}
aside.megawp-left-sidebar {
float: left;
}
aside.megawp-right-sidebar {
float: right;
}
aside.megawp-sidebar {
width: 25%;
}
aside .megawp-sidebar-widget-box {
margin-bottom: 20px;
padding: 20px;
}
aside h4.megawp-widget-title {
width: 100%;
border-bottom: 1px solid #dfe6e9;
margin-bottom: 15px;
padding-bottom: 10px;
}
.megawp-content {
width: 73%;
margin-bottom: 20px;
}
.megawp-content.megawp-left-sidebar {
float: right;
}
.megawp-content.megawp-right-sidebar {
float: left;
}
.megawp-content.megawp-without-sidebar {
width: 100% !important;
float: left;
}
.megawp-content .megawp-page-password-box {
background-color: #f06461;
padding: 30px;
margin-bottom: 20px;
display: block;
color: #fff;
box-sizing: border-box;
text-align: center;
font-size: 16px;
line-height: 30px;
border-radius: 5px;
}
.megawp-content .megawp-page-password-box i {
display: block;
font-size: 70px;
text-align: center;
margin-bottom: 15px;
}
.megawp-content .megawp-page-password-box p:first-child {
display: block;
width: 100%;
margin-bottom: 15px;
}
.megawp-content .megawp-page-password-box form label {
line-height: 40px;
display: block;
width: 70%;
}
.megawp-content .megawp-page-password-box form input[type="password"] {
display: block;
width: 60%;
padding: 5px 10px;
margin: 0 auto 15px;
}
.megawp-content .megawp-page-password-box form input[type="submit"] {
display: block;
width: 60%;
padding: 5px 10px;
margin: 0 auto;
transition-duration: 0.2s;
}
.megawp-content .megawp-page-password-box form input[type="submit"]:hover {
opacity: 0.85;
}
.megawp-content .megawp-page-password-box form label {
display: block;
width: 100%;
}
.megawp-content .megawp-video-post {
width: 100%;
margin-bottom: 20px;
float: left;
display: block;
overflow: hidden;
border: solid #dfe6e9;
box-sizing: border-box;
}
.megawp-content .megawp-video-post .wp-video {
width: 100% !important;
}
.megawp-content .megawp-audio-podcasts-box {
margin-bottom: 20px;
padding: 20px;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
border: none;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.megawp-content .megawp-audio-podcasts-box .megawp-audio-podcasts-item {
margin-bottom: 15px;
width: 100%;
height: auto;
padding: 10px;
box-sizing: border-box;
background-color: rgba(0, 0, 0, 0.35);
border-radius: 5px;
}
.megawp-content
.megawp-audio-podcasts-box
.megawp-audio-podcasts-item
.audio-podcasts-title {
color: #fff;
margin-bottom: 5px;
padding: 0 5px;
box-sizing: border-box;
float: left;
}
.megawp-content
.megawp-audio-podcasts-box
.megawp-audio-podcasts-item
.audio-podcasts-download {
color: #fff;
margin-bottom: 5px;
padding: 0 5px;
box-sizing: border-box;
float: right;
}
.megawp-content
.megawp-audio-podcasts-box
.megawp-audio-podcasts-item:last-child {
margin-bottom: 0;
}
.megawp-content .megawp-single-page-box {
margin-bottom: 20px;
}
.megawp-content .megawp-single-page-box .megawp-single-post-title {
border-bottom: 1px solid #dfe6e9;
padding: 10px 20px;
line-height: 2em;
box-sizing: border-box;
margin-bottom: 10px;
display: block;
width: 100%;
}
.megawp-content .megawp-single-page-box .megawp-single-post-title h1 {
float: left;
}
.megawp-content
.megawp-single-page-box
.megawp-single-post-title
span.megawp-single-post-view {
float: right;
font-size: 12px;
font-weight: 500;
line-height: 30px;
padding: 0 10px;
border-radius: 55px;
color: #fff;
box-sizing: border-box;
text-align: center;
}
.megawp-content .megawp-single-page-box .megawp-top-postmeta {
padding: 0 20px;
width: 100%;
display: block;
box-sizing: border-box;
}
.megawp-content .megawp-single-page-box .megawp-top-postmeta span {
float: left;
margin-right: 25px;
padding-left: 23px;
background-repeat: no-repeat;
background-size: 18px;
background-position: center left;
font-size: 13px;
line-height: 40px;
}
.megawp-content
.megawp-single-page-box
.megawp-top-postmeta
.megawp-post-category {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/category.svg);
}
.megawp-content
.megawp-single-page-box
.megawp-top-postmeta
.megawp-post-publish-date {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/publish-date.svg);
}
.megawp-content
.megawp-single-page-box
.megawp-top-postmeta
.megawp-post-author-name {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/author.svg);
}
.megawp-content
.megawp-single-page-box
.megawp-top-postmeta
.megawp-post-reading-time {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/reading-time.svg);
}
.megawp-content
.megawp-single-page-box
.megawp-top-postmeta
.megawp-post-comment-number {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/comment.svg);
}
.megawp-content
.megawp-single-page-box
.megawp-top-postmeta
.megawp-post-update-date {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/update.svg);
}
.megawp-content .megawp-single-page-box .megawp-single-thumbnail {
width: calc(100% - 40px);
display: block;
margin: 20px auto 0;
}
.megawp-content .megawp-single-page-box .megawp-single-thumbnail img {
width: 100%;
max-width: 100%;
height: auto;
float: left;
}
.tf-post-font-controller {
display: block;
margin: 30px 20px 20px;
float: left;
}
.tf-post-font-controller * {
float: right;
}
.tf-post-font-controller span {
margin-left: 10px;
line-height: 25px;
font-size: 15px;
}
.tf-post-font-controller i {
cursor: pointer;
background-color: #6d48e5;
width: 25px;
text-align: center;
line-height: 25px;
font-size: 12px;
color: #fff;
border-radius: 3px;
box-shadow: 0 6px 12px -2px rgba(34, 50, 84, 0.15);
transition-duration: 0.2s;
}
.tf-post-font-controller i:hover {
opacity: 0.85;
}
.tf-post-font-controller i:first-child {
margin-left: 7px;
}
.megawp-post-content {
padding: 20px;
float: left;
display: block;
width: 100%;
box-sizing: border-box;
line-height: 2em;
text-align: justify;
transition-duration: 0.2s;
}
.megawp-content .megawp-single-post-box .megawp-post-content {
}
.megawp-post-content p {
margin-bottom: 23px;
}
.megawp-post-content p:last-child {
margin-bottom: 0;
}
.megawp-post-content ol,
.megawp-post-content ul,
.comment-content ol,
.comment-content ul {
margin-bottom: 23px;
}
.megawp-post-content h1,
.megawp-post-content h2,
.megawp-post-content h3,
.megawp-post-content h4,
.megawp-post-content h5,
.megawp-post-content h6 {
margin-bottom: 0.5em;
font-weight: 800;
}
.megawp-post-content ul {
list-style: inside disc;
}
.megawp-post-content ol {
list-style: inside decimal;
}
.megawp-post-content code {
width: 100%;
display: block;
border: 1px solid rgba(0, 0, 0, 0.2);
padding: 15px !important;
margin-bottom: 23px;
}
.megawp-post-content-bottom {
margin-bottom: 20px;
width: 100%;
display: block;
box-sizing: border-box;
padding: 0 15px;
border-radius: 5px;
border: 1px solid rgba(0, 0, 0, 0.1);
background-color: #ecf0f1;
float: left;
}
.megawp-post-content-bottom .megawp-post-like-area {
float: left;
background-color: #fff;
width: 280px;
padding: 15px;
box-sizing: border-box;
border-radius: 4px;
font-size: 14px;
line-height: 25px;
min-height: 40px;
margin: 15px 0;
}
.megawp-post-content-bottom .megawp-post-like-area .megawp-like-icon {
float: right;
}
.megawp-post-content-bottom .megawp-post-like-area .sl-icon {
float: left;
height: 40px;
}
.megawp-post-content-bottom .megawp-post-like-area .sl-icon svg {
width: 14px;
height: 14px;
padding: 13px 0;
}
.megawp-post-content-bottom .megawp-post-like-area .sl-count {
font-size: 15px;
line-height: 40px;
float: left;
margin: 0 5px;
height: 40px;
}
.megawp-post-content-bottom .megawp-post-like-area #sl-loader {
float: left;
}
.megawp-post-content-bottom .megawp-post-short-link {
float: right;
border-radius: 4px;
background-color: #fff;
margin: 15px 0;
cursor: help;
}
.megawp-post-content-bottom .megawp-post-short-link span.short-link-text {
line-height: 30px;
border: none;
padding: 5px 10px;
box-sizing: border-box;
float: right;
}
.megawp-post-content-bottom
.megawp-post-short-link
span.short-link-copy-button {
cursor: pointer;
float: right;
border-left: 1px solid #dfe6e9;
line-height: 40px;
padding: 0 10px;
box-sizing: border-box;
}
.megawp-popup-title {
text-align: center;
display: block;
}
.megawp-popup-message {
text-align: center;
display: block;
}
.megawp-popup-message i {
font-size: 70px;
display: block;
margin-bottom: 15px;
}
.megawp-popup-message span {
display: block;
}
.megawp-content .megawp-share-box {
padding: 20px;
line-height: 40px;
margin-bottom: 20px;
}
.megawp-content .megawp-share-box span.megawp-share-title {
float: left;
margin-right: 5px;
}
.megawp-content .megawp-share-box a {
float: left;
margin: 5px 3px;
padding: 0 10px;
color: #fff;
line-height: 30px;
text-align: center;
transition-duration: 0.2s;
font-size: 12px;
}
.megawp-content .megawp-share-box a:hover {
opacity: 0.85;
}
.megawp-content .megawp-share-box .megawp-share-buttons a {
border-radius: 55px;
}
.megawp-content .megawp-share-box .share-button-icon-radius {
width: 30px;
font-size: 16px;
border-radius: 4px;
}
.megawp-content .megawp-share-box a.megawp-telegram-share-button {
background-color: #0084c6;
}
.megawp-content .megawp-share-box a.megawp-whatsapp-share-button {
background-color: #2ab200;
}
.megawp-content .megawp-share-box a.megawp-twitter-share-button {
background-color: #5eaade;
}
.megawp-content .megawp-share-box a.megawp-facebook-share-button {
background-color: #3c599d;
}
.megawp-content .megawp-share-box a.megawp-pinterest-share-button {
background-color: #d32f2f;
}
.megawp-content .megawp-share-box a.megawp-linkedin-share-button {
background-color: #2caae1;
}
.megawp-content .megawp-tags-box {
padding: 20px;
margin-bottom: 20px;
}
.megawp-tags-box span.megawp-tags-title {
padding-left: 23px;
background-repeat: no-repeat;
background-size: 18px;
background-position: center left;
line-height: 34px;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/hashtag.svg);
float: left;
margin-right: 5px;
}
.megawp-tags-box a {
background-color: #dfe6e9;
line-height: 24px;
margin: 5px;
border-radius: 55px;
padding: 0 15px;
color: #485460;
font-size: 12px;
font-weight: 300;
float: left;
text-align: center;
transition-duration: 0.2s;
}
.megawp-tags-box a:hover {
opacity: 0.85;
color: #485460;
}
.megawp-download-box {
margin-bottom: 20px;
}
.megawp-download-box .megawp-download-box-title {
}
.megawp-download-box .megawp-download-box-title h3 {
float: left;
}
.megawp-download-box .megawp-download-box-title span {
float: right;
font-size: 12px !important;
line-height: 26px !important;
margin: 5px 0;
padding: 0 10px;
font-weight: 500;
box-sizing: border-box;
border: 2px solid;
cursor: pointer;
border-radius: 3px;
transition-duration: 0.2s;
box-sizing: border-box;
text-align: center;
user-select: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
}
.megawp-download-box .megawp-download-box-title span:hover {
color: #fff;
}
.megawp-download-box .megawp-download-box-content {
padding: 0 20px 20px;
}
.wpcf7-form label {
display: block;
line-height: 40px;
margin-bottom: 20px;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="password"],
.wpcf7-form input[type="date"],
.wpcf7-form input[type="datetime-local"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="month"],
.mwpcf7-form input[type="tel"],
.wpcf7-form input[type="search"],
.wpcf7-form input[type="time"],
.wpcf7-form input[type="week"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea {
width: 100%;
display: block;
background-color: #fff;
}
.wpcf7-form textarea {
min-height: 70px;
height: 120px;
max-width: 100%;
min-width: 100%;
}
.wpcf7-form select,
.wpcf7-form input[type="file"] {
margin-bottom: 20px;
width: 100%;
display: block;
box-sizing: border-box;
background-color: #fff;
}
.wpcf7-form button,
.wpcf7-form [type="submit"] {
padding: 0 15px;
display: block;
margin: 0 auto;
width: 100%;
transition-duration: 0.2s;
}
.wpcf7-form button:hover,
.wpcf7-form [type="submit"]:hover {
opacity: 0.85;
}
.megawp-download-box .megawp-download-box-links-area {
width: 100%;
display: block;
background-color: #ecf0f1;
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 10px 15px;
box-sizing: border-box;
border-radius: 5px;
line-height: 35px;
color: #718093;
}
.megawp-download-box .megawp-download-box-links-area {
width: 100%;
display: block;
background-color: #ecf0f1;
border: 1px solid rgba(0, 0, 0, 0.1);
padding: 10px 15px;
box-sizing: border-box;
border-radius: 5px;
line-height: 35px;
color: #718093;
}
.megawp-download-box .megawp-download-box-links-area .download-link-item {
width: 100%;
display: block;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 10px 0;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item:first-child {
padding-top: 0;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item:last-child {
border-bottom: 0;
padding-bottom: 0;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item
.download-link-title {
float: left;
font-size: 15px;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item
.download-link-title
span {
float: left;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item
.download-link-title
i {
font-size: 12px;
border-radius: 55px;
padding: 0 15px;
margin-left: 10px;
color: #fff;
text-align: center;
float: right;
line-height: 23px;
margin-top: 6px;
margin-bottom: 6px;
box-sizing: border-box;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item
a.download-button {
float: right;
padding: 0 15px;
color: #fff;
border-radius: 5px;
transition-duration: 0.2s;
box-sizing: border-box;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item
a.download-button:hover {
opacity: 0.85;
}
.megawp-download-box-must-login {
background-color: #f06461;
padding: 30px;
margin: 20px 0;
display: block;
color: #ffffff;
box-sizing: border-box;
text-align: center;
font-size: 16px;
line-height: 30px;
border-radius: 5px;
}
.megawp-download-box-must-login i {
display: block;
font-size: 70px;
text-align: center;
margin-bottom: 15px;
}
.megawp-download-box-must-login span {
display: block;
width: 100%;
margin-bottom: 15px;
}
.megawp-download-box-must-login a {
color: #ffffff;
padding: 2px 0;
font-size: 14px;
width: 50%;
display: block;
margin: 0 auto;
border-radius: 3px;
transition-duration: 0.2s;
background-color: transparent;
border: 2px solid #fff;
}
.megawp-download-box-must-login a:hover {
color: #ffffff;
background-color: rgba(0, 0, 0, 0.05);
}
.megawp-download-box .megawp-download-box-help {
margin-top: 15px;
width: 100%;
display: block;
border: 1px solid #6ab04c;
padding: 0 15px 10px;
background-color: rgba(106, 176, 76, 0.3);
box-sizing: border-box;
border-radius: 5px;
line-height: 30px;
}
.megawp-download-box .megawp-download-box-help .download-box-help-title {
width: 100%;
display: block;
line-height: 40px;
border-bottom: 1px solid #6ab04c;
margin-bottom: 15px;
color: #6ab04c;
}
.megawp-download-box .megawp-download-box-help p {
margin-bottom: 15px;
}
.megawp-download-box .megawp-download-box-help p:last-child {
margin-bottom: 0;
}
.megawp-download-box .megawp-download-box-help ol,
.megawp-download-box .megawp-download-box-help ul,
.megawp-download-box .megawp-download-box-help ul {
margin-bottom: 15px;
}
.megawp-download-box .megawp-download-box-help h1,
.megawp-download-box .megawp-download-box-help h2,
.megawp-download-box .megawp-download-box-help h3,
.megawp-download-box .megawp-download-box-help h4,
.megawp-download-box .megawp-download-box-help h5,
.megawp-download-box .megawp-download-box-help h6 {
margin-bottom: 0.5em;
}
.megawp-download-box .megawp-download-box-help ul li {
}
.megawp-download-box .megawp-download-box-help ul li:before {
font-family: lineicons;
content: "\eb6a";
margin: 0 5px;
}
.megawp-download-box .megawp-download-box-help ol li {
list-style: inside decimal;
}
.megawp-download-files-password {
margin-top: 15px;
line-height: 40px;
width: 100%;
display: block;
border-radius: 5px;
padding: 10px 20px;
color: #fff;
box-sizing: border-box;
text-align: center;
}
.megawp-related-posts {
width: 100%;
margin-bottom: 20px;
padding-bottom: 30px;
}
.megawp-related-posts .related-posts-items {
padding: 0 20px;
box-sizing: border-box;
}
.megawp-related-posts article {
margin-top: 50px;
padding: 10px;
}
.megawp-related-posts .megawp-post-item {
transition-duration: 0.2s;
position: relative;
box-sizing: border-box;
width: 100%;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
border-radius: 10px;
}
.megawp-related-posts .megawp-post-item:hover {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.megawp-related-posts .megawp-post-item .megawp-related-posts-thumbnail {
position: relative;
overflow: hidden;
width: 90%;
margin: 0 auto 15px;
display: block;
top: -40px;
height: 230px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
border-radius: 10px;
}
.megawp-related-posts .megawp-post-item .megawp-related-posts-thumbnail img {
width: 100%;
height: auto;
transition-duration: 0.2s;
}
.megawp-related-posts .megawp-post-item .megawp-related-posts-content {
margin-top: -40px;
padding: 0 5%;
}
.megawp-related-posts .megawp-post-item .megawp-related-posts-title a {
float: left;
width: 100%;
display: block;
text-align: center;
margin-bottom: 15px;
color: #485460;
font-size: 14px;
}
.megawp-related-posts .megawp-post-item .megawp-related-posts-excerpt {
float: left;
width: 100%;
display: block;
}
.megawp-related-posts .megawp-post-item .megawp-related-posts-read-more-button {
width: 90%;
display: block;
text-align: center;
padding: 0 10px;
box-sizing: border-box;
position: absolute;
bottom: 15px;
right: 5%;
left: 5%;
line-height: 35px;
background-color: #eeeeee;
border-radius: 3px;
color: #485460;
font-size: 12px;
}
.megawp-related-posts
.megawp-post-item:hover
.megawp-related-posts-read-more-button {
color: #fff;
}
.megawp-related-posts .megawp-post-item .megawp-related-posts-bottom-space {
width: 100%;
display: block;
float: left;
opacity: 0;
visibility: hidden;
padding-bottom: 15px;
line-height: 35px;
}
.related-posts-items .owl-nav {
visibility: hidden;
opacity: 0;
transition-duration: 0.2s;
}
.related-posts-items:hover .owl-nav {
visibility: visible;
opacity: 1;
}
.related-posts-items .owl-nav .owl-next {
left: 12px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.related-posts-items .owl-nav .owl-prev {
right: 12px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.related-posts-items .owl-nav .owl-next span,
.related-posts-items .owl-nav .owl-prev span {
font-size: 36px;
width: 36px;
height: 36px;
display: inline-block;
line-height: 36px;
text-align: center;
border-radius: 3px;
transition-duration: 0.2s;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.15);
}
.related-posts-items .owl-nav .owl-next span:hover,
.related-posts-items .owl-nav .owl-prev span:hover {
opacity: 0.85;
}
.related-posts-items .owl-dots {
width: 100%;
justify-content: center;
display: flex;
margin: 30px 0 0;
flex-wrap: wrap;
}
.related-posts-items .owl-dots .owl-dot {
width: 10px;
height: 10px;
border-radius: 100%;
margin: 0 8px;
transition-duration: 0.2s;
background-color: #485460;
}
.related-posts-items .owl-dots .owl-dot.active {
width: 19px;
border-radius: 50px;
}
.megawp-comments-box {
margin-bottom: 20px;
width: 100%;
display: block;
}
.megawp-comments-box-title h3 {
float: left;
}
.megawp-comments-box-title h3 i {
float: left;
line-height: 2em;
margin-right: 5px;
}
.megawp-comments-box .megawp-comments-box-content {
padding: 0 20px 35px;
}
.megawp-comments-box .megawp-comments-box-content .comment-number {
margin-bottom: 20px;
display: block;
box-sizing: border-box;
padding: 0 20px;
border-radius: 55px;
line-height: 30px;
float: left;
font-size: 12px;
color: #fff;
}
.megawp-comments-box .megawp-comments-box-content .comment-number span {
font-size: 16px;
font-weight: 700;
}
.comment-respond .comment-reply-title {
line-height: 2.33em;
}
.comment-respond .comment-reply-title a {
color: #fff;
padding: 2px 10px;
font-size: 11px;
transition-duration: 0.2s;
border-radius: 3px;
margin-left: 10px;
}
.comment-respond .comment-reply-title a:hover {
opacity: 0.85;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-respond
.logged-in-as,
.megawp-comments-box
.megawp-comments-box-content
.comment-respond
.comment-notes,
.megawp-comments-box
.megawp-comments-box-content
.comment-respond
label[for="comment"] {
line-height: 35px;
}
.megawp-comments-box .megawp-comments-box-content .comment-form textarea {
width: 100%;
display: block;
height: 260px;
max-width: 100%;
min-height: 70px;
border: 1px solid #ddd;
box-shadow: 0 5px 7px rgba(45, 52, 54, 0.15);
background-color: #fff;
margin-bottom: 20px;
font-size: 15px;
border-radius: 5px;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-author,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-email,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-url {
float: left;
width: calc(33.3% - 10px);
margin: 0 5px;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-author
label,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-email
label,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-url
label {
float: left;
display: block;
line-height: 35px;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-author
input,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-email
input,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-url
input {
max-width: 100%;
padding: 2px 10px;
border: 1px solid #ddd;
box-shadow: 0 5px 7px rgba(45, 52, 54, 0.15);
background-color: #fff;
margin-bottom: 20px;
font-size: 15px;
box-sizing: border-box;
float: left;
display: block;
width: 100%;
line-height: 35px;
}
.megawp-comments-box .megawp-comments-box-content .comment-form textarea:focus,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-author
input:focus,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-email
input:focus,
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-url
input:focus {
border-color: #6ab04c;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.comment-form-cookies-consent {
display: block;
width: 100%;
margin: 20px 0;
float: left;
}
.comment-form .form-submit {
margin: 20px 0;
display: block;
width: 100%;
float: left;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-list
.comment-form
.form-submit {
}
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.form-submit
input[type="submit"],
.woocommerce .megawp-content #respond input#submit {
line-height: 45px;
display: block;
margin: 0 auto;
text-align: center;
border-radius: 55px;
font-size: 15px;
padding: 0 30px;
box-shadow: 0 5px 7px rgba(45, 52, 54, 0.15);
transition-duration: 0.2s;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-form
.form-submit
input[type="submit"]:hover,
.woocommerce .megawp-content #respond input#submit {
opacity: 0.85;
}
.megawp-comments-box .megawp-comments-box-content .comment-form .must-log-in,
.megawp-comments-box .megawp-comments-box-content .no-comments {
background-color: #dfe6e9;
display: block;
width: 100%;
box-sizing: border-box;
padding: 30px 20px;
border-radius: 5px;
color: #485460;
margin-bottom: 20px;
}
.megawp-comments-box .megawp-comments-box-content .no-comments-yet {
border: 1px dashed #bdbdbd;
display: block;
width: 100%;
box-sizing: border-box;
padding: 15px 20px;
border-radius: 5px;
color: #485460;
}
.megawp-comments-box .comment-list {
display: block;
width: 100%;
float: left;
}
.megawp-comments-box .megawp-comments-box-content .megawp-comment-pagination {
display: block;
text-align: center;
margin: 20px auto 0;
min-height: 34px;
font-size: 14px;
}
.megawp-comments-box .megawp-comment-pagination .page-numbers {
padding: 0 17px;
text-align: center;
line-height: 34px;
box-sizing: border-box;
display: inline-block;
border-radius: 5px;
color: #fff;
transition-duration: 0.2s;
margin: 0 2px 10px;
box-shadow: 0 7px 15px rgba(53, 73, 92, 0.3);
}
.megawp-comments-box .megawp-comment-pagination .page-numbers:hover {
opacity: 0.85;
}
.megawp-classic-posts {
width: 100%;
}
.megawp-classic-posts .megawp-post-item {
overflow: hidden;
transition-duration: 0.2s;
position: relative;
box-sizing: border-box;
width: 100%;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-thumbnail {
width: 100%;
float: left;
position: relative;
overflow: hidden;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-thumbnail img {
width: 100%;
height: auto;
transition-duration: 0.2s;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-category {
position: absolute;
top: 10px;
left: 10px;
line-height: 25px;
padding: 0 10px;
border-radius: 55px;
font-size: 11px;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-type-icon {
position: absolute;
font-size: 13px;
right: 10px;
top: 10px;
background-color: rgba(0, 0, 0, 0.4);
width: 30px;
height: 30px;
text-align: center;
border-radius: 3px;
color: #fff;
line-height: 30px;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-type-icon i {
line-height: 30px;
text-align: center;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-view {
position: absolute;
background-color: rgba(0, 0, 0, 0.55);
width: 100%;
line-height: 30px;
font-size: 12px;
padding: 0 10px;
box-sizing: border-box;
bottom: -25px;
left: 0;
color: #fff;
visibility: hidden;
transition-duration: 0.3s;
}
.megawp-classic-posts .megawp-post-item:hover .megawp-classic-posts-view {
bottom: 0;
visibility: visible;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-meta {
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-meta span:before {
content: " | ";
}
.megawp-classic-posts
.megawp-post-item
.megawp-classic-posts-meta
span:first-child:before {
content: "";
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-title a {
display: block;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-excerpt {
float: left;
width: 100%;
display: block;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-bottom-space {
width: 100%;
display: block;
float: left;
opacity: 0;
visibility: hidden;
}
.megawp-classic-posts .megawp-post-item .megawp-classic-posts-read-more-button {
width: 100%;
text-align: center;
position: absolute;
bottom: 0;
left: 0;
transition: background-image 0.2s;
}
.megawp-list-posts {
width: 100%;
}
.megawp-list-posts .megawp-post-item {
overflow: hidden;
transition-duration: 0.2s;
position: relative;
box-sizing: border-box;
width: 100%;
height: 100%;
display: grid;
grid-template-columns: 1fr 2fr;
}
.megawp-list-posts .megawp-post-item .megawp-list-posts-thumbnail {
position: relative;
overflow: hidden;
height: 100%;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
.megawp-list-posts .megawp-post-item .megawp-list-posts-content {
padding: 15px 20px;
box-sizing: border-box;
}
.megawp-list-posts .megawp-post-item .megawp-list-posts-title a {
float: left;
width: 100%;
}
.megawp-list-posts .megawp-post-item .megawp-list-posts-excerpt {
float: left;
width: 100%;
display: block;
}
.megawp-list-posts .megawp-post-item .megawp-list-posts-meta {
border-top: 1px solid;
padding-top: 5px;
line-height: 40px;
}
.megawp-list-posts .megawp-post-item .megawp-list-posts-meta span {
float: left;
margin-right: 15px;
}
.megawp-archive-posts,
.megawp-el-classic-posts-default,
.megawp-archive-products,
.megawp-el-modern1-products-default,
.megawp-el-modern2-products-default {
position: relative;
}
.megawp-no-post-found {
width: 100%;
padding: 15px;
text-align: center;
font-size: 14px;
box-sizing: border-box;
display: block;
background-color: #dfe6e9;
color: #718093;
border-radius: 5px;
}
.megawp-archive-pagination {
display: block;
width: 100%;
margin: 50px 0 20px;
}
.megawp-archive-pagination ul {
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.megawp-archive-pagination ul li {
display: inherit;
}
.megawp-archive-pagination ul li a,
.megawp-archive-pagination ul li span {
margin: 0 5px 10px;
background-color: #fff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
border-radius: 5px;
color: #485460;
padding: 10px 15px;
transition-duration: 0.2s;
}
.megawp-archive-pagination-points {
margin: 0 5px;
background-color: #fff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
border-radius: 5px;
color: #485460;
padding: 10px 15px;
transition-duration: 0.2s;
}
.megawp-archive-pagination ul li a:hover {
opacity: 0.85;
}
.megawp-archive-pagination ul li.megawp-pagination-active a,
.megawp-archive-pagination ul li span.current {
color: #fff;
}
.megawp-archive-posts {
box-sizing: border-box;
width: 100%;
display: grid;
}
.megawp-archive-classic-posts .megawp-post-item,
.megawp-archive-list-posts .megawp-post-item,
.megawp-archive-modern-posts .megawp-post-item {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.09);
transition-duration: 0.2s;
}
.megawp-archive-classic-posts .megawp-post-item:hover,
.megawp-archive-list-posts .megawp-post-item:hover,
.megawp-archive-modern-posts .megawp-post-item:hover {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}
.megawp-archive-cards-posts
.megawp-post-item
.megawp-cards-posts-background-cover {
opacity: 0.4;
}
.megawp-archive-cards-posts
.megawp-post-item:hover
> .megawp-cards-posts-background-cover {
opacity: 0.3;
}
.megawp-user-area-widget {
width: 100%;
padding: 30px 15px 20px;
margin-bottom: 20px;
box-sizing: border-box;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
position: relative;
overflow: hidden;
}
footer.megawp-footer {
padding-top: 80px;
}
footer.megawp-footer .megawp-user-area-widget {
margin-bottom: 40px;
}
.megawp-user-area-widget .user-area-widget-background-area {
width: 100%;
height: 90px;
left: 0;
top: 0;
position: absolute;
background-position: center center;
background-size: cover;
}
.megawp-user-area-widget .megawp-user-area-widget-avatar {
width: 100%;
display: block;
margin-bottom: 15px;
position: relative;
z-index: 100;
}
.megawp-user-area-widget .megawp-user-area-widget-avatar img {
display: block;
margin: 0 auto;
border-radius: 100%;
width: 100px;
height: 100px;
border: 3px solid rgba(0, 0, 0, 0.4);
}
.megawp-user-area-widget .megawp-user-area-widget-title {
text-align: center;
display: block;
margin-bottom: 15px;
font-size: 13px;
}
.megawp-user-area-widget .megawp-user-area-widget-buttons a {
width: 100%;
display: block;
line-height: 30px;
border-radius: 4px;
transition-duration: 0s;
box-sizing: border-box;
padding: 8px 10px;
margin-bottom: 10px;
}
.megawp-user-area-widget .megawp-user-area-widget-buttons a:last-child {
margin-bottom: 0;
}
.megawp-user-area-widget .megawp-user-area-widget-buttons a:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.megawp-user-area-widget .megawp-user-area-widget-buttons a i {
float: right;
line-height: 30px;
font-size: 17px;
}
.megawp-categories-list-widget {
width: 100%;
display: block;
}
aside .megawp-categories-list-widget {
margin-bottom: 20px;
}
footer .megawp-categories-list-widget {
margin-bottom: 40px;
}
.megawp-categories-list-widget ul li {
}
.megawp-categories-list-widget ul li a {
margin-bottom: 10px;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
display: block;
box-sizing: border-box;
position: relative;
overflow: hidden;
color: #fff;
height: 70px;
padding: 15px;
}
.megawp-categories-list-widget ul li a:last-child {
margin-bottom: 0;
}
.megawp-categories-list-widget ul li a span.megawp-categories-list-title {
position: absolute;
line-height: 40px;
left: 15px;
}
.megawp-categories-list-widget ul li a span.megawp-categories-list-count {
position: absolute;
line-height: 30px;
margin: 5px 0;
right: 15px;
width: 30px;
height: 30px;
text-align: center;
border-radius: 100%;
font-size: 13px;
background-color: #f5f5f5;
color: #485460;
font-weight: 600;
}
.megawp-categories-list-widget ul li a .megawp-categories-list-cover {
position: absolute;
width: 100%;
height: 100%;
bottom: 0;
left: 0;
transition-duration: 0.2s;
opacity: 0.4;
}
.megawp-categories-list-widget ul li a:hover .megawp-categories-list-cover {
opacity: 0.3;
}
.megawp-posts-widget .megawp-posts-widget-item {
width: 100%;
padding: 15px 0;
box-sizing: border-box;
border-bottom: 1px solid #dfe6e9;
display: grid;
grid-template-columns: 70px auto;
grid-column-gap: 10px;
}
.megawp-posts-widget .megawp-posts-widget-item:first-child {
padding-top: 0;
}
.megawp-posts-widget .megawp-posts-widget-item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.megawp-posts-widget .megawp-posts-widget-thumbnail {
width: 70px;
height: 70px;
border-radius: 5px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.megawp-posts-widget .megawp-posts-widget-item h5 {
font-size: 13px;
color: #485460;
display: block;
line-height: 1.9em;
transition-duration: 0.2s;
}
.megawp-posts-widget .megawp-posts-widget-item span {
font-size: 11px;
line-height: 1.7em;
color: #9e9e9e;
}
.megawp-social-networks-widget .megawp-social-network-widget-item {
display: block;
color: #fff;
padding: 5px 15px;
box-sizing: border-box;
font-size: 18px;
line-height: 40px;
font-weight: 600;
transition-duration: 0.2s;
}
aside .megawp-social-networks-widget .megawp-social-network-widget-item {
width: 100%;
margin-bottom: 10px;
}
aside
.megawp-social-networks-widget
.megawp-social-network-widget-item:last-of-type {
margin-bottom: 20px;
}
footer .megawp-social-networks-widget .megawp-social-network-widget-item {
padding: 15px;
text-align: center;
font-weight: 300;
font-size: 15px;
border-radius: 10px;
line-height: unset !important;
}
footer .megawp-social-networks-widget {
display: grid;
grid-template-columns: 1fr 1fr;
grid-row-gap: 10px;
grid-column-gap: 10px;
margin-bottom: 40px;
}
.megawp-social-networks-widget .megawp-social-network-widget-item:hover {
opacity: 0.85;
}
.megawp-social-networks-widget .megawp-social-network-widget-item i {
font-size: 30px;
line-height: 40px;
float: left;
margin-right: 10px;
}
.social-network-widget-aparat svg {
font-size: 30px;
line-height: 40px;
float: left;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
width: 30px;
height: 30px;
}
footer .megawp-social-networks-widget .megawp-social-network-widget-item i {
display: block;
float: unset !important;
width: 100%;
text-align: center;
font-size: 35px;
margin: 0 0 5px 0 !important;
}
footer .megawp-social-networks-widget .megawp-social-network-widget-item svg {
display: block;
float: unset !important;
width: 35px;
height: 35px;
margin: 0 auto 10px;
font-size: 35px;
}
.social-network-widget-instagram {
background-image: linear-gradient(25deg, #f6d371, #d02872, #912eb9, #4d58cf);
}
.social-network-widget-telegram {
background-color: #0084c6;
}
.megawp-image-widget {
margin-bottom: 20px;
display: block;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.megawp-image-widget img {
width: 100%;
max-width: 100%;
height: auto;
transition-duration: 0.2s;
}
.megawp-image-widget img:hover {
opacity: 0.85;
}
footer.megawp-footer {
width: 100%;
display: block;
float: left;
}
footer.megawp-footer .megawp-footer-items-area {
display: grid;
grid-column-gap: 35px;
}
footer.megawp-footer .megawp-footer-widget-box {
margin-bottom: 40px;
}
footer.megawp-footer h4.megawp-widget-title {
margin-bottom: 25px;
box-sizing: border-box;
display: inline-block;
}
footer.megawp-footer h4.megawp-widget-title-style1 {
border-bottom: 1px solid;
width: 100%;
display: block !important;
}
footer.megawp-footer h4.megawp-widget-title-style2 {
padding: 5px 10px;
}
footer.megawp-footer h4.megawp-widget-title-style3 {
padding-left: 10px;
border-left: 4px solid red;
}
footer.megawp-footer h4.megawp-widget-title-style4 {
padding: 5px 15px;
background-color: red;
border-radius: 55px;
border-bottom-left-radius: 0;
}
footer.megawp-footer .megawp-footer-menu ul li a {
transition-duration: 0.2s;
}
footer.megawp-footer .megawp-footer-menu ul li a:hover {
background-color: rgba(255, 255, 255, 0.2);
}
footer.megawp-footer .megawp-footer-menu ul li ul {
display: none;
}
footer.megawp-footer .megawp-footer-middle-info-area {
border-top: 1px solid;
width: 100%;
box-sizing: border-box;
}
footer.megawp-footer .megawp-footer-bottom-area {
display: block;
}
footer.megawp-footer .megawp-footer-bottom-area .megawp-copyright {
float: left;
line-height: 30px;
}
footer.megawp-footer .megawp-footer-bottom-area .megawp-footer-social-networks {
float: right;
line-height: 30px;
font-size: 18px;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a {
margin-left: 10px;
float: right;
width: 35px;
height: 34px;
line-height: 35px;
text-align: center;
border-radius: 3px;
color: #fff;
transition-duration: 0s;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a:hover {
color: #fff;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-instagram-logo:hover {
background-image: linear-gradient(25deg, #f6d371, #d02872, #912eb9, #4d58cf);
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-telegram-logo:hover {
background-color: #0084c6;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-aparat-logo:hover {
background-color: #df0f50;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-whatsapp-logo:hover {
background-color: #2ab200;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-twitter-logo:hover {
background-color: #5eaade;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-youtube-logo:hover {
background-color: #f70000;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-facebook-logo:hover {
background-color: #3c599d;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-linkedin-logo:hover {
background-color: #2caae1;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-pinterest-logo:hover {
background-color: #d32f2f;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a.megawp-email-logo:hover {
background-color: #485460;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a
i {
line-height: 34px;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
svg {
width: 18px;
height: 18px;
margin: 8px 0;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a:hover
svg
path {
fill: #fff !important;
}
footer.megawp-footer-v2 .megawp-footer-bottom-area .megawp-copyright {
line-height: 35px;
font-size: 13px;
}
footer.megawp-footer-v2 h4.megawp-widget-title {
padding-bottom: 5px;
}
footer.megawp-footer-v2 .megawp-footer-bottom-area {
background-color: rgba(0, 0, 0, 0.2);
padding: 20px 0;
}
.megawp-footer-wave .main-wave {
position: absolute;
top: 0;
width: 100%;
transform: scaleX(-1);
}
.megawp-footer-wave .behind-wave svg path {
fill: rgba(0, 0, 0, 0.12);
}
.megawp-footer-top-area {
width: 100%;
display: block;
padding: 40px 0;
font-size: 17px;
line-height: 40px;
}
.megawp-footer-top-area span {
float: left;
font-weight: 300;
}
.megawp-footer-top-area a {
float: right;
padding: 0 15px;
font-size: 13px;
transition-duration: 0.2s;
border-radius: 3px;
text-align: center;
box-sizing: border-box;
}
.megawp-footer-top-area a:hover {
opacity: 0.85;
color: unset;
}
footer.megawp-footer-v4 .megawp-footer-v4-main-content {
display: block;
margin-bottom: 40px;
}
footer.megawp-footer-v4 .megawp-footer-v4-main-content .megawp-footer-v4-about {
float: left;
width: 80%;
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-about
img {
width: 150px;
margin-right: 20px;
height: auto;
float: left;
border-radius: 5px;
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-about
.megawp-footer-v4-about-text {
float: left;
width: calc(100% - 170px);
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-about
.megawp-footer-v4-about-text
ul {
list-style: inside disc;
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-about
.megawp-footer-v4-about-text
ol {
list-style: inside decimal;
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-certificates {
float: right;
width: 13%;
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-certificates
.owl-dots {
width: 100%;
justify-content: center;
display: flex;
flex-wrap: wrap;
margin-top: 30px;
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-certificates
.owl-dots
.owl-dot {
width: 10px;
height: 10px;
border-radius: 100%;
margin: 0 5px;
transition-duration: 0.2s;
border: 1px solid rgba(0, 0, 0, 0.5);
}
footer.megawp-footer-v4
.megawp-footer-v4-main-content
.megawp-footer-v4-certificates
.owl-dots
.owl-dot.active {
border-radius: 50px;
}
footer.megawp-footer-v4 .megawp-footer-middle-info-area {
padding: 30px 0;
}
footer.megawp-footer-v4 .megawp-footer-middle-info-area .megawp-footer-menu {
float: left;
}
footer.megawp-footer-v4
.megawp-footer-middle-info-area
.megawp-footer-menu
ul
li {
float: left;
}
footer.megawp-footer-v4
.megawp-footer-middle-info-area
.megawp-footer-menu
ul
li
a {
margin-right: 20px;
padding: 0 10px;
float: left;
line-height: 35px;
border-radius: 3px;
}
footer.megawp-footer-v4 .megawp-footer-middle-info-area .footer-address {
float: right;
line-height: 35px;
font-size: 13px;
}
footer.megawp-footer-v4 .megawp-footer-bottom-area {
padding: 30px 0;
}
.megawp-back-to-top {
position: fixed;
z-index: 1000;
bottom: 20px;
padding: 15px;
color: #fff;
cursor: pointer;
display: none;
transition-duration: 0.2s;
left: 20px;
}
.megawp-back-to-top:hover {
color: #fff;
opacity: 0.85;
}
.megawp-must-login {
background-color: #f06461;
padding: 30px;
margin-bottom: 20px;
display: block;
color: #ffffff;
box-sizing: border-box;
text-align: center;
font-size: 16px;
line-height: 30px;
border-radius: 5px;
}
.megawp-must-login-shortcode {
margin: 20px 0;
}
.megawp-must-login i {
display: block;
font-size: 70px;
text-align: center;
margin-bottom: 15px;
}
.megawp-must-login span {
display: block;
width: 100%;
margin-bottom: 15px;
}
.megawp-must-login a {
color: #ffffff;
padding: 2px 0;
font-size: 14px;
width: 50%;
display: block;
margin: 0 auto;
border-radius: 3px;
transition-duration: 0.2s;
background-color: transparent;
border: 2px solid #fff;
}
.megawp-must-login a:hover {
color: #ffffff;
background-color: rgba(0, 0, 0, 0.05);
}
.megawp-custom-404-image {
display: block;
margin: 0 auto 40px;
max-width: 100%;
height: auto;
}
.megawp-custom-404-message {
font-size: 18px;
display: block;
margin-bottom: 40px;
}
.megawp-custom-404-button {
display: block;
margin: 0 auto;
padding: 5px 10px;
line-height: 30px;
color: #fff;
width: 180px;
text-align: center;
border-radius: 4px;
transition-duration: 0.2s;
}
.megawp-custom-404-button:hover {
opacity: 0.8;
color: #fff;
}
.megawp-search-result-posts {
box-sizing: border-box;
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 20px;
grid-row-gap: 30px;
}
.megawp-search-result-posts article {
margin-top: 50px;
}
.megawp-search-result-posts .megawp-post-item {
transition-duration: 0.2s;
position: relative;
box-sizing: border-box;
width: 100%;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
border-radius: 10px;
display: table;
height: 100%;
}
.megawp-search-result-posts .megawp-post-item:hover {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-thumbnail {
position: relative;
overflow: hidden;
width: 90%;
margin: 0 auto 15px;
display: block;
top: -40px;
height: 230px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
border-radius: 10px;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-thumbnail
img {
width: 100%;
height: auto;
transition-duration: 0.2s;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-thumbnail
i {
position: absolute;
font-size: 13px;
left: 10px;
top: 10px;
background-color: rgba(0, 0, 0, 0.45);
width: 30px;
height: 30px;
text-align: center;
border-radius: 3px;
color: #fff;
line-height: 30px;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-content {
margin-top: -40px;
padding: 0 5%;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-title
a {
float: left;
width: 100%;
display: block;
text-align: center;
margin-bottom: 15px;
color: #485460;
font-size: 14px;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-price {
text-align: center;
display: block;
margin-bottom: 15px;
color: #4caf50;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-price
ins {
text-decoration: none;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-price
del {
color: #ff4500;
font-size: 12px;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-excerpt {
float: left;
width: 100%;
display: block;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-read-more-button {
width: 90%;
display: block;
text-align: center;
padding: 0 10px;
box-sizing: border-box;
position: absolute;
bottom: 15px;
right: 5%;
left: 5%;
line-height: 35px;
background-color: #eaeaea;
border-radius: 3px;
color: #485460;
font-size: 12px;
}
.megawp-search-result-posts
.megawp-post-item:hover
.megawp-search-result-posts-read-more-button {
color: #fff;
}
.megawp-search-result-posts
.megawp-post-item
.megawp-search-result-posts-bottom-space {
width: 100%;
display: block;
float: left;
opacity: 0;
visibility: hidden;
padding-bottom: 15px;
line-height: 35px;
}
.megawp-search-page-no-results {
overflow: hidden;
padding: 20px;
}
.megawp-search-page-no-results img {
width: 750px;
max-width: 100%;
margin: 0 auto;
display: block;
height: auto;
}
.megawp-search-page-no-results h2 {
text-align: center;
display: block;
margin-bottom: 0.8em;
}
.megawp-search-page-no-results form {
position: relative;
overflow: hidden;
}
.megawp-search-page-no-results input {
width: 100%;
border-radius: 0;
border-color: #dfe6e9;
}
.megawp-search-page-no-results button {
position: absolute;
right: 0;
border-radius: 0;
background-color: #dfe6e9;
color: #7f8187;
width: 42px;
padding: 0;
}
.megawp-search-page-no-results button i {
line-height: 42px;
height: 42px;
}
.select2-container--default .select2-selection--single {
border-color: #e0e0e0;
min-height: 42px;
line-height: 40px;
}
.select2-container--default
.select2-selection--single
.select2-selection__rendered {
line-height: 30px;
padding: 5px 10px;
}
.select2-container--default
.select2-selection--single
.select2-selection__arrow {
top: 7px;
right: 10px !important;
}
body.megawp-body .select2-search--dropdown .select2-search__field {
border-color: #e0e0e0;
padding: 5px 10px;
}
.select2-container--open .select2-dropdown {
border-color: #e0e0e0;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}
.select2-container--default
.select2-results__option--highlighted[aria-selected],
.select2-container--default
.select2-results__option--highlighted[data-selected] {
background-color: #ecf0f1;
color: #485460;
transition-duration: 0.2s;
}
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] {
background-color: #ecf0f1;
color: #485460;
}
.select2-results__message {
font-size: 12px;
}
.megawp-ads-box {
margin-bottom: 20px;
display: block;
width: 100%;
overflow: hidden;
}
.wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
margin-bottom: 0;
padding: 25px;
background-color: #dfe6e9;
}
.megawp-comments-box .megawp-comments-box-content .comment-form textarea,
.woocommerce .megawp-product-comments #review_form #respond textarea {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/comment-form-line.png);
background-size: 30px 30px;
background-repeat: repeat;
}
.comments-area {
background-color: #fff;
border: 1px solid #dfe6e9;
width: 100%;
border-radius: 5px;
box-sizing: border-box;
word-wrap: break-word;
display: block;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
font-family: IRANSansX, tahoma;
}
@supports (font-variation-settings: normal) {
.comments-area {
font-family: IRANSansXV, tahoma;
-moz-font-feature-settings: "ss02";
-webkit-font-feature-settings: "ss02";
font-feature-settings: "ss02";
}
}
#wpdcom .wpdiscuz-subscribe-bar #wpdiscuz_subscription_button,
#wpdcom .ql-container,
.ql-editor.ql-blank::before,
.megawp-content #wpdcom .ql-editor > *,
#wpdcom .wc-field-submit input[type="submit"],
#wpdcom .wpd-thread-filter .wpdf-sorting {
font-family: inherit !important;
letter-spacing: 0 !important;
}
#wpdcom .wpdiscuz-subscribe-bar #wpdiscuz_subscription_button {
padding: 0 20px !important;
font-size: 12px !important;
font-weight: 400 !important;
}
#wpdcom {
padding: 5px 20px !important;
max-width: 100% !important;
box-sizing: border-box;
}
#wpdcom .ql-container {
font-size: 14px !important;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/comment-form-line.png);
background-size: 30px 30px;
background-repeat: repeat;
}
#wpdcom .ql-editor {
min-height: 130px !important;
padding: 10px 15px !important;
}
.ql-editor.ql-blank::before,
.megawp-content #wpdcom .ql-editor > * {
line-height: 30px !important;
}
.ql-editor.ql-blank::before {
font-style: normal !important;
}
body .megawp-content .wpd-thread-list .wpd-comment p {
line-height: 2.3em !important;
}
.edit-comment-admin-links {
margin-top: 30px;
}
.tn-top-comment {
margin-bottom: 10px;
background: #fff9c4;
padding: 0 10px 10px 10px;
border-radius: 5px;
border: 2px solid rgba(0, 0, 0, 0.1);
}
.user-reset-course-sessions {
text-align: center;
width: 100%;
display: block;
margin-bottom: 20px;
}
.megawp-modern2-products
.megawp-product-item
.megawp-modern2-products-bottom-area
.megawp-modern2-products-price {
font-size: 18px;
}
.megawp-content .megawp-single-page-box .megawp-single-thumbnail img {
width: 50% !important;
float: unset !important;
display: block;
margin: 0 auto;
}
.megawp-download-box .megawp-download-box-links-area {
line-height: 35px;
color: #416615;
}
.megawp-content .megawp-audio-podcasts-box {
background-color: #bfd598;
}
.megawp-content .megawp-audio-podcasts-box {
background-color: #8fd783;
}
aside #widget-comments-container.widget-comments-container {
margin: 0 !important;
} .comment-form-comment .ck-editor__editable_inline,
.tf-comment-edit-area .ck-editor__editable_inline {
min-height: 194px;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/comment-form-line.png) !important;
background-size: 28px 28px !important;
background-repeat: repeat !important;
}
.comment-form-comment .ck-editor__editable_inline p:first-child,
.tf-comment-edit-area .ck-editor__editable_inline p:first-child {
margin-top: 9px;
}
.comment-form-comment .ck-editor__editable_inline p,
.tf-comment-edit-area .ck-editor__editable_inline p {
margin: 0;
line-height: 28px;
}
.comment-form-comment .ck-editor__editable_inline ul,
.tf-comment-edit-area .ck-editor__editable_inline ul {
list-style: inside disc;
}
.comment-form-comment .ck-editor__editable_inline ol,
.tf-comment-edit-area .ck-editor__editable_inline ol {
list-style: inside decimal;
}
.comment-form-comment .ck-editor__editable_inline ul,
.comment-form-comment .ck-editor__editable_inline ol,
.tf-comment-edit-area .ck-editor__editable_inline ul,
.tf-comment-edit-area .ck-editor__editable_inline ol {
margin-top: 0 !important;
margin-bottom: 0 !important;
line-height: 28px;
}
.comment-form-comment .ck-editor__editable_inline blockquote,
.tf-comment-edit-area .ck-editor__editable_inline blockquote {
margin-bottom: 20px;
width: 100%;
display: block;
box-sizing: border-box;
padding: 5px 15px 5px 0;
border-right: 4px solid #000;
}
.tf-comment-form-word-count {
background-color: #fafafa;
border: 1px solid #c4c4c4;
border-top: 0;
padding: 3px 10px;
display: block;
width: 100%;
box-sizing: border-box;
}
.tf-draft-comment-message-area {
margin: 0 0 20px;
height: 30px;
width: 100%;
}
.tf-draft-comment-message {
display: none;
line-height: 30px;
border: 1px solid #c4c4c4;
border-top: 0;
padding: 3px 10px;
background-color: #d7f2e1;
color: #2aba5f;
width: 100%;
letter-spacing: -0.8px;
font-size: 13px;
box-sizing: border-box;
}
.tf-comments-editor-font-controller {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
}
.tf-comments-editor-font-controller span {
line-height: 29px;
}
.tf-comments-editor-font-controller a {
background-color: #4caf50;
color: #fff;
float: right;
margin-left: 10px;
border-radius: 55px;
padding: 2px 10px;
font-size: 12px;
margin-bottom: 15px;
}
.tf-comments-editor-font-controller a:hover {
color: #fff;
opacity: 0.85;
}
.tf-comments-editor-font-controller a.active-filter {
background-color: #6d48e5;
}
.tf-comments-editor-font-controller * {
float: right;
}
.tf-comments-editor-font-controller span {
line-height: 25px;
font-size: 13px;
}
.tf-comments-editor-font-controller i {
cursor: pointer;
background-color: #6d48e5;
width: 25px;
text-align: center;
line-height: 25px;
font-size: 10px;
color: #fff;
border-radius: 3px;
box-shadow: 0 6px 12px -2px rgba(34, 50, 84, 0.15);
transition-duration: 0.2s;
}
.tf-comments-editor-font-controller i:hover {
opacity: 0.85;
}
.tf-comments-editor-font-controller i:first-child {
margin-left: 7px;
}
.tf-comments-font-controller {
float: right;
margin-bottom: 15px;
}
.tf-comments-font-controller * {
float: right;
}
.tf-comments-font-controller span {
margin-left: 10px;
line-height: 25px;
font-size: 13px;
}
.tf-comments-font-controller i {
cursor: pointer;
background-color: #6d48e5;
width: 25px;
text-align: center;
line-height: 25px;
font-size: 10px;
color: #fff;
border-radius: 3px;
box-shadow: 0 6px 12px -2px rgba(34, 50, 84, 0.15);
transition-duration: 0.2s;
}
.tf-comments-font-controller i:hover {
opacity: 0.85;
}
.tf-comments-font-controller i:first-child {
margin-left: 7px;
}
.tf-comment-item {
display: block;
margin-right: 39px;
padding-bottom: 20px;
border-right: 1px solid #d1d1d1;
position: relative;
}
.tf-comment-item.tf-read-comment {
background-color: #fff9c4;
}
.comment-list > .tf-comment-item {
border-bottom: 1px solid #d1d1d1;
margin-top: 50px;
border-bottom-right-radius: 10px;
} .comment-list > .children {
display: none;
padding-right: 50px;
margin-top: 35px;
}
.comment-list .children .tf-comment-item {
margin-top: 0;
border-color: #00b38f;
}
.comment-list .comment-respond {
margin-top: 40px !important;
}
.comment-list .children .comment-respond {
margin-top: 20px !important;
} .tf-comment-item-avatar {
width: 70px;
height: 70px;
border-radius: 100%;
overflow: hidden;
border: 1px solid #d1d1d1;
padding: 3px;
float: right;
top: 0;
right: -39px;
background-color: #fff;
position: absolute;
}
.children .tf-comment-item-avatar {
border-color: #00b38f;
}
.tf-comment-item-avatar img {
width: 100%;
height: 100%;
border-radius: 100%;
}
.tf-comment-item-info {
float: right;
width: 100%;
}
.tf-comment-item-info-row-1,
.tf-comment-item-info-row-2 {
width: 100%;
display: block;
float: right;
padding: 9px 49px 9px 10px;
box-sizing: border-box;
}
.tf-comment-item-info-row-1 {
background-color: #f7f7f7;
line-height: 30px;
}
.tf-comment-item-info-row-2 {
border-top: 1px dashed #00b38f;
line-height: 25px;
}
.tf-comment-item-author-name {
letter-spacing: -0.8px;
font-weight: 400;
float: right;
margin-left: 10px;
}
.tf-comment-item-author-name a {
color: #00b38f;
}
.tf-comment-icons {
float: right;
}
.tf-comment-buyer-badge {
float: right;
color: #fff;
background-color: #00b38f;
line-height: 30px;
width: 30px;
border-radius: 100%;
text-align: center;
margin-left: 10px;
}
.tf-comment-link-copy-btn {
float: left;
color: #fff;
background-color: #000;
line-height: 30px;
width: 30px;
border-radius: 100%;
text-align: center;
margin-left: 10px;
}
@media screen and (max-width: 768px) {
.tf-comment-link-copy-btn {
float: right;
}
}
@media screen and (max-width: 500px) {
.tf-comment-item-follow-btn {
display: block;
width: 100%;
margin-top: 15px;
text-align: center;
}
}
.tf-comment-link-copy-btn:hover {
color: #fff;
}
.tf-comment-link-copy-btn i {
line-height: 30px;
}
.tf-comment-filter-author {
float: right;
color: #fff;
background-color: #ff6a00;
line-height: 30px;
width: 30px;
border-radius: 100%;
text-align: center;
margin-left: 10px;
}
.tf-comment-filter-author:hover {
color: #fff;
}
.tf-comment-filter-author i {
line-height: 30px;
}
.tf-comment-item-follow-btn {
border: 1px solid #0090ee;
background-color: #0090ee;
color: #fff;
float: left;
border-radius: 3px;
padding: 0 10px;
line-height: 28px;
font-size: 11px;
letter-spacing: -0.8px;
}
.tf-comment-item-follow-btn:hover {
color: #fff;
opacity: 0.85;
}
.tf-comment-item-follow-btn.unfollow {
border: 1px solid #0090ee;
background-color: #fff;
color: #0090ee;
}
.tf-comment-item-follow-btn.unfollow:hover {
color: #0090ee;
}
.tf-comment-item-date {
color: #999;
float: right;
margin-left: 15px;
font-size: 12px;
margin-bottom: 16px;
}
.tf-comment-item-user-registered {
float: right;
color: #f44336;
font-size: 12px;
border-radius: 3px;
margin-left: 15px;
margin-bottom: 16px;
font-weight: 500;
}
.tf-comment-item-user-registered i {
font-style: normal;
}
.tf-comment-item-content {
padding: 0 49px 0 20px;
}
.tf-comment-item-badges {
display: block;
width: 100%;
margin-bottom: 10px;
float: right;
}
.tf-comment-item-badges > div {
float: right;
margin-left: 25px;
margin-bottom: 10px;
display: block;
}
.tf-comment-item-badges div div {
width: 50px;
height: 50px;
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
display: block;
margin: 0 auto;
}
.tf-comment-item-badges .golden-medal div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/golden-medal.svg);
}
.tf-comment-item-badges .technical-comment div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/technical-comment.svg);
}
.tf-comment-item-badges .hamyar-laghari div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/hamyar-laghari.svg);
}
.tf-comment-item-badges span {
display: block;
font-size: 12px;
margin-top: 5px;
text-align: center;
}
.tf-comment-text-word-count {
background-color: #00b38f;
color: #fff;
padding: 0 12px;
float: right;
font-size: 13px;
border-radius: 55px;
margin-bottom: 10px;
text-align: center;
}
.tf-comment-item-text {
text-align: justify;
display: block;
margin-bottom: 25px;
font-size: 14px;
line-height: 2em;
transition-duration: 0.2s;
}
.tf-comment-item-text p {
margin-bottom: 15px;
}
.tf-comment-item-text p:last-child {
margin-bottom: 0;
}
.tf-comment-item-text ul {
list-style: inside disc;
margin-bottom: 15px;
}
.tf-comment-item-text ol {
list-style: inside decimal;
margin-bottom: 15px;
}
.tf-comment-awaiting-moderation {
margin-bottom: 25px;
background-color: #f44336;
color: #fff;
padding: 3px 15px;
font-size: 12px;
display: block;
text-align: center;
border-radius: 50px 50px 0 50px;
float: right;
}
.tf-comment-star-rating-area {
margin-bottom: 25px;
display: block;
}
.tf-comment-vote-submit {
background-color: #f44336;
color: #fff;
padding: 1px 15px;
border-radius: 3px;
margin-top: 15px;
font-size: 12px;
float: right;
display: none;
}
.tf-comment-vote-submit:hover {
color: #fff;
}
.tf-comment-vote-title {
font-size: 13px;
letter-spacing: -0.8px;
margin-bottom: 7px;
display: block;
}
.tf-comment-vote-title i {
color: #f44336;
font-size: 11px;
}
.tf-comment-vote-numbers {
font-size: 14px;
letter-spacing: -0.8px;
margin-top: 7px;
display: block;
color: #6d48e5;
}
.tf-comment-item .comment-reply-link,
.tf-comment-item .comments-reply-link,
.tf-comment-favorites-btn,
.tf-comment-read-btn {
font-size: 13px;
padding: 1px 15px;
border-radius: 3px;
float: right;
letter-spacing: -0.8px;
}
.tf-comment-item .comment-reply-link,
.tf-comment-item .comments-reply-link {
background-color: #dfefda;
color: #6ac847;
margin-left: 10px;
margin-bottom: 15px;
}
.tf-comment-item .comment-reply-link:hover,
.tf-comment-item .comments-reply-link:hover {
background-color: #6ac847;
color: #fff;
}
.tf-comment-favorites-btn {
background-color: #ffe3cf;
color: #ff6a00;
margin-left: 10px;
margin-bottom: 15px;
}
.tf-comment-favorites-btn:hover {
background-color: #ff6a00;
color: #fff;
}
.tf-comment-read-btn {
background-color: #ceebff;
color: #3498db;
margin-bottom: 15px;
}
.tf-comment-read-btn:hover {
background-color: #3498db;
color: #fff;
}
.tf-comment-show-replies-btn {
line-height: 26px;
padding: 0 15px;
color: grey;
border: 2px solid #d1d1d1;
background-color: #fff;
position: absolute;
left: 40px;
bottom: -15px;
font-size: 12px;
border-radius: 50px;
z-index: 100;
}
.tf-comment-show-replies-btn:hover {
color: grey;
}
.tf-comment-show-replies-btn i {
font-size: 9px;
transition-duration: 0.2s;
}
.tf-comment-show-replies-btn i.up {
transform: rotate(180deg);
}
.tf-message {
border-radius: 5px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
text-align: center;
line-height: 30px;
padding: 10px;
margin: 0 0 20px;
display: block;
width: 100%;
letter-spacing: -0.8px;
box-sizing: border-box;
}
.tf-message.success {
background-color: #d7f2e1;
color: #2aba5f;
} .tf-user-followings-list {
list-style: none !important;
margin: 0 !important;
}
.tf-user-followings-list li {
display: flex;
justify-content: space-between;
margin-bottom: 15px;
border-radius: 5px;
box-sizing: border-box;
width: 100%;
padding: 20px;
background-color: #f5f5f5;
}
.tf-user-followings-list li:last-child {
margin-bottom: 0;
}
.tf-user-followings-list li div:first-child {
display: flex;
align-items: center;
}
.tf-user-followings-list li div:last-child {
display: flex;
justify-content: left;
align-items: center;
}
.tf-user-followings-list li img {
width: 70px;
height: 70px;
border-radius: 100%;
margin-left: 15px;
}
.tf-user-followings-list li h3 {
line-height: 30px;
margin-bottom: 0;
}
.tf-user-followings-list button {
line-height: 30px;
padding: 0 15px;
border: 2px solid #0090ee;
background-color: transparent;
color: #0090ee;
border-radius: 3px;
font-size: 12px;
letter-spacing: -0.8px;
}
.tf-user-followings-list a {
margin-left: 10px;
line-height: 30px;
padding: 0 15px;
border: 2px solid #ff5722;
background-color: transparent;
color: #ff5722;
border-radius: 3px;
font-size: 12px;
letter-spacing: -0.8px;
}
.tf-user-followings-list a:hover {
color: #ff5722;
}
.tf-user-no-followings {
display: block;
text-align: center;
background-color: #fbe9e7;
padding: 20px;
letter-spacing: -0.8px;
border-radius: 5px;
color: #d84315;
}
@media screen and (max-width: 768px) {
.tf-user-followings-list li {
display: block;
}
.tf-user-followings-list li div {
display: block;
}
.tf-user-followings-list li div:first-child {
display: block !important;
margin-bottom: 10px;
width: 100%;
}
.tf-user-followings-list li div img {
display: block;
margin: 0 auto 5px;
}
.tf-user-followings-list li div h3 {
display: block;
margin-bottom: 20px;
text-align: center;
}
.tf-user-followings-list li div:last-child {
justify-content: center !important;
width: 100%;
}
} .tf-user-wishlist-comments {
list-style: none !important;
margin: 0 !important;
display: block;
}
.tf-user-wishlist-comments li {
display: block;
width: 100%;
box-sizing: border-box; box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
border-radius: 10px;
margin-bottom: 15px;
border: 1px solid #dfe6e9;
}
.tf-user-wishlist-comments li:last-child {
margin-bottom: 0;
}
.tf-user-wishlist-comment-head {
display: block;
width: 100%;
border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
box-sizing: border-box;
padding: 10px 15px;
}
.tf-user-wishlist-comment-head img {
float: right;
border-radius: 100%;
width: 46px;
height: 46px;
margin-left: 10px;
border: 2px solid #6d48e5;
}
.tf-user-wishlist-comment-head h3 {
line-height: 30px;
float: right;
padding: 10px 0;
margin: 0;
font-size: 14px;
}
.tf-user-wishlist-comment-head h3 a:hover {
color: #000000;
}
.tf-user-wishlist-comment-excerpt {
font-size: 13px;
letter-spacing: -0.8px;
padding: 10px 15px;
text-align: justify;
margin: 0 !important;
}
.tf-user-wishlist-comment-footer {
width: 100%;
background-color: #f5f5f5;
display: block;
padding: 10px 15px;
box-sizing: border-box;
}
.tf-user-wishlist-comment-footer a,
.tf-user-wishlist-comment-footer button {
float: right;
line-height: 30px;
padding: 0 15px;
border-radius: 3px;
font-size: 12px;
letter-spacing: -0.8px;
}
.tf-user-wishlist-comment-footer a {
background-color: #dfefda;
color: #6ac847;
margin-left: 10px;
}
.tf-user-wishlist-comment-footer a:hover {
background-color: #6ac847;
color: #fff;
}
.tf-user-wishlist-comment-footer button {
background-color: #ffe3cf;
color: #ff6a00;
margin-left: 10px;
transition-duration: 0.2s;
}
.tf-user-wishlist-comment-footer button:hover {
background-color: #ff6a00;
color: #fff;
}
.tf-user-no-wihslist-comments {
display: block;
text-align: center;
background-color: #fbe9e7;
padding: 20px;
letter-spacing: -0.8px;
border-radius: 5px;
color: #d84315;
}
.tf-avatar-change-btn {
background-color: #fff;
display: block;
margin: 10px auto;
border: 1px solid #eeeeee;
color: #000;
text-align: center;
line-height: 25px;
letter-spacing: -0.8px;
font-size: 13px;
border-radius: 3px;
}
.tf-avatar-change-btn:hover {
color: #000;
}
.tf-go-profile {
display: block;
margin-top: 10px;
border-radius: 3px;
padding: 5px 15px;
background-color: #e44d26;
font-size: 13px;
line-height: 25px;
text-align: center;
letter-spacing: -0.8px;
color: #fff;
}
.tf-go-profile:hover {
color: #fff;
}
.session-practice {
width: 100%;
border-color: #a5d6a7;
box-sizing: border-box;
display: block;
margin-bottom: 20px;
border-radius: 5px;
}
.session-practice-title {
padding: 15px;
letter-spacing: -0.8px;
cursor: pointer;
}
.session-practice-title h2 {
float: right;
line-height: 27px;
}
.session-practice-title i {
float: left;
line-height: 27px;
color: #f44336;
font-size: 16px;
}
.session-practice-content {
display: none;
transition-duration: 0s;
border-top: 1px solid #dfe6e9;
padding: 15px;
}
.tf-comment-edit-area {
padding: 15px;
border: 1px dashed #bdbdbd;
background-color: #fafafa;
margin-bottom: 25px;
}
.tf-comment-edit-area h4 {
font-size: 14px;
}
.tf-comment-timer-title {
font-size: 13px;
margin-top: 15px;
margin-bottom: 5px;
display: block;
}
.tf-comment-timer {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 10px;
direction: ltr;
margin-bottom: 25px;
float: right;
}
.tf-comment-timer:after {
content: "";
display: block;
clear: both;
width: 100%;
}
.tf-comment-timer div {
background-color: #e53935;
color: #fff;
padding: 3px 7px;
border-radius: 4px;
}
.tf-comment-timer span {
display: block;
text-align: center;
}
.tf-comment-timer span:last-child {
font-size: 11px;
border-top: 2px solid rgba(0, 0, 0, 0.08);
}
.tf-comment-edit-btns {
display: block;
}
.tf-comment-edit-btns a {
border-radius: 50px;
padding: 5px 15px;
color: #fff;
letter-spacing: -0.8px;
margin-bottom: 10px;
float: right;
}
.tf-comment-edit-btns a:hover {
opacity: 0.85;
color: #fff;
}
.tf-comment-edit-btn {
background-color: #3f51b5;
margin-left: 5px;
}
.tf-comment-remove-btn {
background-color: #ff9800;
}
.tf-comment-edit-action-btns {
display: grid;
grid-template-columns: 1fr 1fr;
}
.tf-comment-edit-action-btns a {
text-align: center;
line-height: 30px;
padding: 3px 0;
letter-spacing: -0.8px;
color: #fff;
}
.tf-comment-edit-action-btns a:hover {
color: #fff;
opacity: 0.85;
}
.comment-edit-field-area {
margin-top: 10px;
display: none;
}
.tf-comment-edit-btn-submit {
background-color: #4caf50;
}
.tf-comment-edit-btn-cancel {
background-color: #f44336;
}
.tf-fix-btns {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 1000;
display: none;
}
.tf-fix-btns a {
color: #fff;
border-radius: 100%;
width: 52px;
height: 52px;
line-height: 52px;
font-size: 19px;
text-align: center;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
display: block;
}
.tf-fix-btns a:hover {
color: #fff;
opacity: 0.85;
}
.tf-whatsapp-fix-btn {
background-color: #43a047;
margin-bottom: 10px;
}
.tf-phone-fix-btn {
background-color: #3f51b5;
}
.tf-report-box-title {
text-align: center;
display: block;
margin-bottom: 5px;
font-weight: 600;
color: #2b8f20;
}
.tf-report-box-subtitle {
margin-bottom: 20px;
text-align: center;
display: block;
font-size: 13px;
letter-spacing: -0.8px;
}
.tf-report-box {
background-color: #fff;
width: 100%;
display: block;
border: 1px solid #e0e0e0;
border-radius: 5px;
overflow: hidden;
}
.tf-report-box ul {
display: grid;
grid-template-columns: 1fr 1fr;
border-bottom: 1px solid #e0e0e0;
}
.tf-report-box ul li {
text-align: center;
cursor: pointer;
padding: 5px 8px 8px;
border-top: 3px solid #fff;
}
.tf-report-box ul li.active {
border-top-color: #9c27b0;
background-color: rgba(0, 0, 0, 0.045);
font-weight: 600;
}
.tf-report-box ul li:first-child {
border-left: 1px solid #e0e0e0;
}
.tf-report-box-list {
padding: 15px;
}
.tf-report-tab2-content {
display: none;
}
.tf-report-box ol li {
padding: 15px;
margin-bottom: 15px; box-shadow: 0 0 15px rgba(0, 0, 0, 0.13);
border-radius: 5px;
display: block;
}
.tf-report-box ol li:last-child {
margin: 0; border: none;
}
.tf-report-box ol li span,
.tf-report-box ol li .tf-report-box-item-avatar,
.tf-report-box ol li h4 {
float: right;
}
.tf-report-box ol li span {
margin-left: 10px;
line-height: 36px;
padding: 7px 0;
}
.tf-report-box-item-avatar {
margin-left: 10px;
width: 50px;
height: 50px;
}
.tf-report-box ol li img {
border-radius: 100%;
}
.tf-report-box ol li h4 {
line-height: 36px;
padding: 7px 0;
font-size: 14px;
}
.tf-report-not-found {
text-align: center;
display: block;
margin: 15px 0;
}
.comment-rules-btn {
float: right;
margin-right: 5px;
letter-spacing: -0.8px;
font-size: 15px;
}
.course-session-comments-number {
background-color: #e8eaf6;
color: #3949ab;
border: 2px solid #3949ab;
display: block;
border-radius: 5px;
width: 100%;
margin-bottom: 20px;
padding: 10px;
box-sizing: border-box;
text-align: center;
font-weight: 600;
font-size: 15px;
}
.aiowps-captcha-equation {
margin-top: 5px;
margin-bottom: 20px;
} .home-slider {
overflow: hidden;
margin-bottom: 30px;
width: 100%;
}
.home-slider a.home-slider-item {
display: block;
width: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.home-slider .owl-nav {
visibility: hidden;
opacity: 0;
transition-duration: 0.2s;
}
.home-slider:hover .owl-nav {
visibility: visible;
opacity: 1;
}
.home-slider .owl-nav button {
position: absolute;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.home-slider .owl-nav button span {
display: block;
width: 40px;
height: 40px;
background-color: rgba(0, 0, 0, 0.5);
font-size: 40px;
line-height: 40px;
color: #fff;
border-radius: 4px;
}
.home-slider .owl-nav button:first-child {
right: 20px;
}
.home-slider .owl-nav button:last-child {
left: 20px;
}
.home-about {
display: grid;
grid-template-columns: 5fr 1fr;
grid-column-gap: 25px;
align-items: end;
}
.home-about h2 {
margin-bottom: 15px;
font-weight: 900;
letter-spacing: -0.8px;
}
.home-about p {
font-size: 15px;
line-height: 28px;
text-align: justify;
}
.home-about-btns {
display: flex;
justify-content: right;
}
.home-about-btns a {
display: block;
color: #fff;
border-radius: 3px;
line-height: 40px;
text-align: center;
margin-top: 25px;
margin-bottom: 25px;
margin-left: 15px;
width: 140px;
max-width: 100%;
}
.home-about-btns a:hover {
color: #fff;
opacity: 0.85;
}
.home-about-btns a:first-child {
background-color: #f48c06;
}
.home-about-btns a:last-child {
display: none;
background-color: #3e297c;
}
.home-about img {
margin: 0 auto;
display: block;
}
.home-sentence-bar {
background: #184e77 repeat scroll 0% 0% / cover;
padding: 30px;
color: #fff;
text-align: center;
font-size: 30px;
font-weight: 700;
letter-spacing: -0.8px;
text-shadow: 0 0 15px #000;
margin-bottom: 50px;
line-height: 40px;
}
.home-course-boxes {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 25px;
grid-row-gap: 25px;
margin-bottom: 60px;
}
.home-course-box {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 20px;
background-color: #fff;
padding: 20px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 10px;
}
.home-course-box-thumbnail {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
border-radius: 5px;
position: relative;
}
.home-course-box-thumbnail a {
background-color: #21d4fd;
background-image: linear-gradient(19deg, #21d4fd 0%, #b721ff 100%);
letter-spacing: -0.8px;
line-height: 35px;
border-radius: 4px;
color: #fff;
text-align: center;
position: absolute;
width: calc(100% - 20px);
left: 10px;
bottom: 10px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.home-course-box-thumbnail a:hover {
color: #fff;
}
.home-course-box h3 {
font-size: 17px;
font-weight: 700;
margin-bottom: 10px;
}
.home-course-box p {
font-size: 13px;
text-align: justify;
letter-spacing: -0.8px;
}
.home-main-heading {
font-size: 20px;
display: block;
margin-bottom: 15px;
font-weight: 800;
color: #181522;
}
.home-heading {
font-size: 25px;
text-align: center;
display: block;
margin-bottom: 30px;
font-weight: 800;
color: #181522;
}
.home-last-posts-container {
background-color: #f9eace;
padding: 40px 0;
}
.home-last-posts {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.last-posts-item {
background-color: #fff;
padding: 10px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 15px;
}
.last-posts-item img {
margin-bottom: 20px;
border-radius: 10px;
width: 100%;
height: auto;
}
.last-posts-item h3 {
text-align: center;
display: block;
font-weight: 600;
letter-spacing: -0.8px;
margin-bottom: 20px;
}
.last-posts-item h3 a {
color: #181522;
}
.last-posts-item-btn {
display: block;
width: 100%;
line-height: 35px;
text-align: center;
letter-spacing: -0.8px;
background-color: #f4d03f;
background-image: linear-gradient(132deg, #f4d03f 0%, #16a085 100%);
color: #fff;
border-radius: 3px;
}
.last-posts-item-btn:hover {
color: #fff;
}
.home-archive-posts {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 20px;
margin-bottom: 70px;
}
.home-archive-posts h2 {
text-align: center;
font-size: 19px;
margin-bottom: 20px;
font-weight: 600;
letter-spacing: -0.8px;
color: #6d48e5;
}
.home-archive-posts-item {
display: grid;
grid-template-columns: 1fr 2fr;
grid-column-gap: 15px;
background-color: #fff;
padding: 10px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
margin-bottom: 15px;
border: 1px solid rgba(0, 0, 0, 0.2);
}
.home-archive-posts-item-thumbnail {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
min-height: 130px;
}
.home-archive-posts-item h3 {
font-size: 14px;
margin-bottom: 5px;
display: block;
}
.home-archive-posts-item h3 a {
color: #181522;
letter-spacing: -0.8px;
}
.home-archive-posts-item p {
font-size: 13px;
margin-bottom: 10px;
letter-spacing: -0.8px;
color: #8f8c8c;
font-weight: 300;
text-align: justify;
}
.home-archive-posts-item span {
padding-top: 5px;
border-top: 1px solid rgba(0, 0, 0, 0.1);
display: block;
}
.home-archive-posts-cat-btn {
background-color: #6d48e5;
color: #fff;
text-align: center;
display: block;
line-height: 35px;
}
.home-archive-posts-cat-btn:hover {
color: #fff;
opacity: 0.85;
}
.home-products {
margin-bottom: 70px;
}
.home-products h2 {
font-size: 25px;
text-align: center;
display: block;
margin-bottom: 30px;
font-weight: 800;
color: #181522;
}
.home-products-list {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-column-gap: 20px;
grid-row-gap: 20px;
}
.home-product-item {
background-color: #fff;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 15px;
}
.home-product-item img {
margin-bottom: 15px;
}
.home-product-item h3 {
text-align: center;
font-weight: 600;
letter-spacing: -0.8px;
margin-bottom: 10px;
font-size: 17px;
}
.home-product-item h3 a {
color: #181522;
}
.home-product-item-price {
text-align: center;
color: #00c178;
font-size: 16px;
margin-bottom: 20px;
text-decoration: none;
}
.home-product-item-price del {
color: #ff5c58;
margin-left: 5px;
}
.home-product-item-price ins {
text-decoration: none;
}
.home-product-item-btn {
width: 100%;
line-height: 40px;
text-align: center;
display: block;
color: #fff;
background-color: #76b947;
}
.home-product-item-btn:hover {
color: #fff;
}
.home-shop-btn {
display: block;
background-color: #f48c06;
color: #fff;
font-size: 16px;
border-radius: 3px;
line-height: 40px;
text-align: center;
margin: 30px auto;
width: 150px;
max-width: 100%;
}
.home-shop-btn:hover {
color: #fff;
opacity: 0.85;
}
.home-report-users {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-column-gap: 20px;
grid-row-gap: 20px;
margin-bottom: 50px;
padding: 0 25px;
width: 100%;
box-sizing: border-box;
}
.user-comment-list {
list-style: none !important;
margin: 0 !important;
display: block;
}
.user-comment-list li {
display: block;
width: 100%;
box-sizing: border-box;
background-color: #f5f5f5;
margin-bottom: 25px;
border: 1px solid #dfe6e9;
}
.user-comment-list li:last-child {
margin-bottom: 0;
}
.user-comment-list li.user-comment-item-hold {
background-color: #fcf9e8;
}
.user-comment-list li h3 {
display: block;
box-sizing: border-box;
margin-bottom: 0;
width: 100%;
padding: 12px 20px;
background-color: rgba(0, 0, 0, 0.06);
}
.user-comment-item-hold-badge {
margin-right: 5px;
border-radius: 55px;
padding: 3px 15px;
background-color: #ffc000;
color: #000;
font-size: 13px;
}
.user-comment-item-content {
padding: 15px 20px;
}
.user-comment-item-content .comment-date {
display: block;
margin-bottom: 20px;
color: #ff5722;
}
.user-comment-item-badges {
display: block;
width: 100%;
float: right;
}
.user-comment-item-badges > div {
float: right;
margin-left: 25px;
margin-bottom: 10px;
display: block;
}
.user-comment-item-badges div div {
width: 50px;
height: 50px;
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
display: block;
margin: 0 auto;
}
.user-comment-item-badges .golden-medal div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/golden-medal.svg);
}
.user-comment-item-badges .technical-comment div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/technical-comment.svg);
}
.user-comment-item-badges .hamyar-laghari div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/hamyar-laghari.svg);
}
.user-comment-item-badges span {
display: block;
font-size: 12px;
text-align: center;
}
.user-comment-item-content .user-comment-item-text {
display: block;
margin-bottom: 20px;
text-align: justify;
letter-spacing: -0.8px;
}
.user-comment-item-content .user-comment-item-text p {
margin-bottom: 5px;
}
.user-comment-item-content a {
padding: 0 15px;
line-height: 35px;
border-radius: 50px;
text-align: center;
display: block;
color: #fff;
background-color: #76b947;
float: right;
font-size: 13px;
}
.user-comment-item-content a:hover {
color: #fff;
}
.user-comment-list-paginate {
display: block;
text-align: center;
margin: 40px auto 0;
min-height: 34px;
font-size: 14px;
}
.user-comment-list-paginate .page-numbers {
padding: 0 17px;
text-align: center;
line-height: 40px;
box-sizing: border-box;
display: inline-block;
border-radius: 5px;
color: #fff;
transition-duration: 0.2s;
margin: 0 2px 10px;
box-shadow: 0 7px 15px rgba(53, 73, 92, 0.3);
background-color: #485460;
}
.user-comment-list-paginate .page-numbers:hover {
opacity: 0.85;
}
.user-comment-list-paginate .page-numbers.current {
background-color: #3498db;
}
.user-comment-list-empty {
display: block;
text-align: center;
background-color: #fbe9e7;
padding: 20px;
letter-spacing: -0.8px;
border-radius: 5px;
color: #d84315;
}
.user-medal-number {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 20px;
}
.user-medal-number div {
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
border-radius: 5px;
padding: 20px;
background-size: 60px auto;
background-repeat: no-repeat;
background-position: 20px center;
}
.user-medal-number .user-golden-medal-number {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/golden-medal.svg);
}
.user-medal-number .user-technical-medal-number {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/technical-comment.svg);
}
.user-medal-number .user-hamyar-laghari-medal-number {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/hamyar-laghari.svg);
}
.user-medal-number div h3 {
margin-bottom: 10px;
font-size: 20px;
font-weight: 800;
}
.user-medal-number span {
font-size: 15px;
font-weight: 600;
color: #ff5722;
}
.megawp-user-courses {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 30px;
grid-row-gap: 30px;
}
.megawp-user-courses .megawp-user-course-item {
position: relative;
box-sizing: border-box;
transition-duration: 0.2s;
width: 100%;
height: 100%;
box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.33);
border: 1px solid #000;
border-radius: 10px;
overflow: hidden;
background-color: #fff;
}
.megawp-user-courses .megawp-user-course-item .megawp-user-courses-thumbnail {
width: 100%;
height: 280px;
display: block;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
margin-bottom: 15px;
}
.megawp-user-courses
.megawp-user-course-item
.megawp-user-courses-thumbnail
img {
width: 100%;
max-width: 100%;
height: auto;
}
.megawp-user-courses .megawp-user-course-item .megawp-user-courses-content {
padding: 0 15px;
}
.megawp-user-courses
.megawp-user-course-item
.megawp-user-courses-content
.megawp-user-courses-title {
width: 100%;
display: block;
float: left;
font-weight: bold;
text-align: center;
margin-bottom: 15px;
}
.megawp-user-courses
.megawp-user-course-item
.megawp-user-courses-content
.megawp-user-courses-title
a,
.megawp-user-courses
.megawp-user-course-item
.megawp-user-courses-content
.megawp-user-courses-title
a:hover {
color: #9e3b0b;
}
.megawp-user-courses
.megawp-user-course-item
.megawp-products-bottom-empty-area {
visibility: hidden;
width: 100%;
display: block;
font-size: 15px;
font-weight: bold;
line-height: 3em;
}
.megawp-user-courses
.megawp-user-course-item
.megawp-user-courses-read-more-button {
width: 100%;
display: block;
position: absolute;
bottom: 0;
text-align: center;
transition: background-image 0.2s;
left: 0;
box-sizing: border-box;
color: #116219;
background-color: #c2ecc6;
font-size: 15px;
font-weight: bold;
line-height: 3em;
}
.megawp-user-no-courses {
background-color: #ecf0f1;
padding: 30px;
display: block;
color: #485460;
box-sizing: border-box;
text-align: center;
font-size: 16px;
line-height: 30px;
border-radius: 5px;
border: 1px solid rgba(0, 0, 0, 0.1);
}
.megawp-user-no-courses i {
display: block;
font-size: 70px;
text-align: center;
margin-bottom: 15px;
}
.megawp-user-no-courses span {
display: block;
width: 100%;
margin-bottom: 15px;
}
.megawp-user-no-courses a {
color: #485460;
padding: 2px 0;
font-size: 14px;
width: 40%;
display: block;
margin: 0 auto;
border-radius: 3px;
transition-duration: 0.2s;
background-color: rgba(0, 0, 0, 0.05);
}
.megawp-user-no-courses a:hover {
color: #485460;
}
@media screen and (max-width: 1100px) {
.home-report-users {
padding-right: 9px !important;
padding-left: 9px !important;
}
}
@media screen and (max-width: 991px) {
.home-about {
grid-template-columns: 1fr;
grid-row-gap: 20px;
}
.home-about-btns {
justify-content: center;
}
.home-about-btns a {
width: 120px;
font-size: 13px;
}
.home-about-btns a:last-child {
display: block;
}
.home-course-boxes,
.home-last-posts,
.home-archive-posts,
.home-products-list,
.home-report-users {
grid-template-columns: 1fr;
}
.megawp-user-courses {
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 850px) {
.user-medal-number {
grid-template-columns: 1fr;
grid-row-gap: 20px;
}
}
@media screen and (min-width: 768px) {
.session-sidebar-content {
max-height: 1300px;
overflow-y: auto;
}
}
@media screen and (max-width: 768px) {
.home-slider a.home-slider-item {
height: 300px;
}
.home-slider a.home-slider-item img {
display: none;
}
.tf-comment-item {
margin-right: 29px;
}
.comment-list > .children {
padding-right: 0;
}
.tf-comment-item-avatar {
width: 50px;
height: 50px;
right: -29px;
}
.tf-comment-item-info-row-1,
.tf-comment-item-info-row-2 {
padding-right: 39px;
}
.tf-comment-item-user-registered i,
.tf-comment-item-font-controller span {
display: none;
}
.tf-comment-item-font-controller {
float: right;
}
.tf-comment-item-content {
padding-right: 20px;
}
.tf-comment-item-content .reply {
width: 100%;
display: block;
}
.tf-comment-item .comment-reply-link,
.tf-comment-item .comments-reply-link,
.tf-comment-favorites-btn,
.tf-comment-read-btn {
display: block;
margin: 0 0 15px 0 !important;
float: left;
min-width: 50%;
text-align: center;
}
.tf-fix-btns {
display: block;
}
.home-archive-posts {
display: none;
}
.megawp-user-courses {
grid-template-columns: 1fr;
}
}
.woocommerce-products-header-info {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.woocommerce-products-header .megawp-single-cat-title-classic {
float: unset;
margin-bottom: 0;
width: auto;
}
.comment-form-rating {
border: 1px dashed #00b38f;
border-radius: 5px;
padding: 15px 30px;
background-color: #f7f7f7;
text-align: center;
}
.comment-form-rating label {
display: block;
margin-bottom: 10px;
font-size: 16px;
font-weight: 600;
}
.woocommerce .megawp-product-comments p.stars {
font-size: 20px !important;
}
.tf-404-content {
padding: 100px 0;
text-align: center;
}
.tf-404-content h1 {
display: block;
margin-bottom: 20px;
font-size: 35px;
font-weight: 800;
line-height: 45px;
color: #00396a;
}
.tf-404-content h2 {
display: block;
margin-bottom: 50px;
font-size: 17px;
font-weight: 700;
}
.tf-404-content img {
display: block;
margin: 0 auto 50px;
}
.tf-404-content p {
display: block;
margin-bottom: 50px;
font-size: 17px;
line-height: 35px;
}
.tf-404-content a {
border-radius: 5px;
padding: 12px 20px;
background-color: #00396a;
color: #fff;
}
.tf-404-content a:hover {
color: #fff;
opacity: 0.9;
}
.single-session .megawp-single-pages-boxes-title {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
gap: 15px;
}
.single-session .tf-sessions-nav {
display: flex;
align-items: center;
gap: 15px;
}
.tf-sessions-nav a {
border-radius: 5px;
border: 2px solid #00396a;
padding: 0 13px;
background-color: #00396a;
font-size: 13px;
font-weight: 600;
color: #fff;
}
.tf-sessions-nav a:hover {
background-color: transparent;
color: #00396a;
}
.tf-complete-profile {
color: #fff;
background: #3e297c;
text-align: center;
display: block;
padding: 10px;
font-size: 13px;
border-radius: 5px;
margin: 20px 0;
letter-spacing: -0.8px;
}
.tf-complete-profile:hover {
color: #fff;
}
.megawp-single-post-box .tf-single-post-content-bottom {
border-top: 1px solid #dfe6e9;
padding-top: 25px;
text-align: center;
}
.tf-single-post-rate {
float: right;
width: 50%;
}
.tf-single-post-rate > span {
display: block;
margin-bottom: 10px;
font-size: 15px;
font-weight: 500;
}
.tf-single-post-share {
float: left;
width: 50%;
}
@media screen and (max-width: 768px) {
.tf-single-post-rate,
.tf-single-post-share {
display: block;
float: unset;
margin: 0 auto;
}
.tf-single-post-rate {
margin-bottom: 30px;
}
}
.megawp-single-post-box .avans_share_link_page_wrapper .social {
justify-content: center;
}
.megawp-single-post-box .avans_share_link_page_wrapper .social a .avans-ic {
line-height: 35px;
}
.tf-comment-user-score-details {
padding: 15px;
border: 1px dashed #bdbdbd;
background-color: #fafafa;
margin-bottom: 25px;
}
.tf-comment-user-score-details .tf-user-score {
position: relative;
z-index: 2;
display: inline-block;
border-radius: 60px;
padding: 5px 15px;
background-color: #13c400;
text-align: center;
color: #fff;
}
.tf-comment-user-score-details .level {
position: relative;
z-index: 1;
right: -30px;
display: inline-block;
border-radius: 60px;
padding: 5px 35px 5px 15px;
background-color: #ef233c;
text-align: center;
color: #fff;
}
.tf-comment-user-score-details > h4 {
display: block;
margin-top: 15px;
margin-bottom: 10px;
font-size: 16px;
font-weight: 800;
}
@media screen and (max-width: 500px) {
.tf-comment-user-score-details .tf-user-score {
display: block;
}
.tf-comment-user-score-details .level {
display: block;
right: 0;
margin-top: 10px;
padding-right: 15px;
}
.tf-comment-user-score-details > h4 {
text-align: center;
}
.tf-comment-user-score-details .avans-content-panel .badges_wrapper {
justify-content: center;
}
}
.tf-top-comments-features {
display: flex;
justify-content: space-between;
margin-top: 50px;
}
.tf-comments-filters {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 10px;
}
.tf-comments-filters a {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.06);
border-width: 3px;
border-style: solid;
border-radius: 10px;
padding: 5px 10px;
color: #fff;
}
.tf-comments-filters a:hover {
opacity: 0.85;
color: #fff;
}
.tf-comments-filters a.active-filter {
border-color: #000 !important;
}
.tf-comments-filters a:nth-child(2) {
border-color: #ff4d4d;
background-color: #ff4d4d;
}
.tf-comments-filters a:nth-child(3) {
border-color: #4caf50;
background-color: #4caf50;
}
.tf-comments-filters a:nth-child(4) {
border-color: #2196f3;
background-color: #2196f3;
}
.tf-comments-filters a:nth-child(5) {
border-color: #ff9800;
background-color: #ff9800;
}
.tf-comments-filters a:nth-child(6) {
border-color: #9c27b0;
background-color: #9c27b0;
}
@media screen and (max-width: 850px) {
.tf-top-comments-features,
.tf-comments-font-controller {
display: block;
}
.tf-comments-font-controller {
margin-top: 30px;
}
}
.tf-post-nav {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 15px;
margin-top: 50px;
margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
.tf-post-nav {
grid-template-columns: 1fr;
grid-row-gap: 15px;
}
}
.tf-post-nav a {
position: relative;
display: block;
box-sizing: border-box;
border-radius: 5px;
width: 100%;
padding: 0 15px;
background-color: #47ad35;
font-size: 14px;
font-weight: 600;
line-height: 45px;
text-align: center;
color: #fff;
}
.tf-post-nav a:hover {
opacity: 0.85;
color: #fff;
}
.tf-post-previous-step-link::before {
content: "\ea5c";
position: absolute;
top: 0;
right: 0;
width: 45px;
background-color: rgba(255, 255, 255, 0.15);
font-family: lineicons;
text-align: center;
line-height: 45px;
}
.tf-post-next-step-link::after {
content: "\ea5a";
position: absolute;
top: 0;
left: 0;
width: 45px;
background-color: rgba(255, 255, 255, 0.15);
font-family: lineicons;
text-align: center;
line-height: 45px;
}
.avans-user-meta-wrapper p.userscore {
margin-bottom: 0;
}
.tf-user-send-mail-config,
.tf-user-new-post-notice {
display: block;
margin-top: 15px !important;
}
.tf-user-send-mail-config > label,
.tf-user-new-post-notice > label {
font-weight: 700;
}
.tf-user-send-mail-config div {
display: flex;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding: 10px 0;
}
.tf-user-new-post-notice div {
display: flex;
padding: 10px 0;
}
.tf-user-send-mail-config div:last-child {
border-bottom: 0;
}
.tf-user-send-mail-config div label {
font-size: 14px;
}
.tf-user-send-mail-config input,
.tf-user-new-post-notice input {
margin-left: 10px;
}
.tf-comment-search-comment-authors {
display: block;
margin: 20px 0;
}
.tf-comment-search-comment-authors label {
display: block;
margin-bottom: 10px;
}
.tf-comment-search-comment-authors div {
position: relative;
display: block;
overflow: hidden;
border-radius: 4px;
}
.tf-comment-search-comment-authors input {
width: 100%;
}
.tf-comment-search-comment-authors button {
position: absolute;
top: 0;
left: 0;
border-radius: 0;
width: 42px;
background-color: #13c400;
}
.tf-last-read-comment {
display: block;
margin: 20px 0 30px;
}
.tf-last-read-comment-btn {
float: right;
border-radius: 5px;
padding: 7px 10px;
background-color: #ff5722;
font-size: 13px;
color: #fff;
}
.tf-last-read-comment-btn:hover {
color: #fff;
}
.avans-post-rater-numbers {
display: flex;
justify-content: space-between;
direction: ltr;
text-align: center;
}
.avans-post-rater-numbers span {
width: 20%;
}
.wp-dark-mode-active .ck.ck-toolbar,
.wp-dark-mode-active .ck.ck-editor__main > .ck-editor__editable {
background-color: #292b2b;
}
.wp-dark-mode-active .ck.ck-reset_all,
.wp-dark-mode-active .ck.ck-reset_all * {
color: #fff;
}
.wp-dark-mode-active .ck.ck-editor__main > .ck-editor__editable {
color: #f6a92a !important;
}
.wp-dark-mode-active .ck.ck-editor__main > .ck-editor__editable.ck-focused {
border-color: #f6a92a !important;
}
.wp-dark-mode-active .comment-form-comment .ck-editor__editable_inline,
.wp-dark-mode-active .tf-comment-edit-area .ck-editor__editable_inline {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/comment-form-line-dark.png) !important;
}
@font-face { 
font-family: Tanha;
src: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/tanha/Tanha-FD.ttf);
font-display: swap;
}
.tf-profile { }
.tf-profile-header {
position: relative;
padding: 50px 0;
background-color: #ebf6fa;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/profile/profile-header-background.jpg);
background-repeat: no-repeat;
background-position: center bottom;
background-size: cover;
}
.tf-profile-header-content > div {
position: relative;
z-index: 2;
display: flex;
justify-content: space-between;
align-items: center;
}
.tf-profile-user-info {
display: flex;
align-items: center;
}
.tf-profile-user-info img {
margin-left: 15px;
border-radius: 100%;
width: 110px;
height: 110px;
padding: 3px;
background: #8e2de2; background: -webkit-linear-gradient(
to right,
#4a00e0,
#8e2de2
); background: linear-gradient(
to right,
#4a00e0,
#8e2de2
); }
.tf-profile-user-info div {
}
.tf-profile-user-info h3 {
display: block;
margin-bottom: 10px;
font-size: 20px;
line-height: 40px;
font-weight: 700;
color: #fff;
}
.tf-profile-user-info span {
display: inline-block;
border-radius: 5px;
padding: 0 10px;
background-color: #ffc000;
font-size: 11px;
line-height: 30px;
color: #000;
}
.tf-profile-user-score-details {
display: grid;
grid-template-rows: 1fr 1fr;
grid-row-gap: 10px;
}
.tf-profile-user-score-details div {
border-radius: 5px;
box-sizing: border-box;
padding: 5px 5px 5px 15px;
background-color: rgba(0, 0, 0, 0.3);
}
.tf-profile-user-score-details div img {
margin-left: 7px;
border-radius: 5px;
width: 35px;
height: 35px;
padding: 5px;
background-color: rgba(255, 255, 255, 0.4);
}
.tf-profile-user-score-details div span {
color: #fff;
}
.tf-profile-header-overlay {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.3);
}
.tf-profile-menu {
padding: 15px 0;
background-color: rgba(173, 188, 200, 0.1);
}
.tf-profile-menu ul {
display: flex;
align-items: center;
text-align: center;
}
.tf-profile-menu li {
margin-left: 7px;
}
.tf-profile-menu li.active {
box-shadow: 0 3px 6px rgba(173, 188, 200, 0.23);
-webkit-box-shadow: rgba(173, 188, 200, 0.23) 0 3px 6px;
border-radius: 4px;
background-color: #fff;
font-weight: 500;
}
.tf-profile-menu li a {
display: flex;
justify-content: center;
align-items: center;
border-radius: 10px;
padding: 10px;
font-size: 12px;
color: #8e939b;
}
.tf-profile-menu li.active a {
color: #4d535b;
}
.tf-profile-menu li a i {
display: inline-block;
margin-left: 7px;
width: 22px;
height: 22px;
background-size: 22px 22px;
background-repeat: no-repeat;
background-position: center center;
}
.tf-profile-menu li a span {
display: inline-block;
margin-right: 5px;
border-radius: 4px;
height: 18px;
padding: 0 5px;
background-color: rgba(119, 132, 157, 0.45);
line-height: 18px;
color: #fff;
}
.tf-profile-menu li.active a span {
background-color: #3e297c;
}
.tf-profile-menu-toggle {
display: none;
border-radius: 5px;
padding: 7px 15px;
background-color: #184e77;
text-align: center;
color: #fff;
}
.tf-profile-menu-toggle:hover {
color: #fff;
}
.tf-profile-content {
margin-top: 40px;
}
.tf-profile-content > h1 {
display: none;
margin-bottom: 30px;
font-weight: 800;
text-align: center;
}
.tf-profile-about {
position: relative;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
min-height: 150px;
padding: 20px 50px 50px 20px;
font-family: Tanha;
}
.tf-profile-about::before {
content: "";
position: absolute;
z-index: 1;
top: 44px;
right: 0;
bottom: 65px;
left: 0;
background-image: linear-gradient(#cfe7ff 1px, transparent 1px);
background-size: 100% 40px;
}
.tf-profile-about:after {
content: "";
position: absolute;
z-index: 1;
top: 0;
right: 20px;
bottom: 0;
border-left: 1px solid #fbd0d0;
border-right: 1px solid #fbd0d0;
width: 8px;
}
.wp-dark-mode-active .tf-profile-about::before,
.wp-dark-mode-active .tf-profile-symptoms::before {
background-image: linear-gradient(
rgba(255, 255, 255, 0.2) 1px,
transparent 1px
);
}
.wp-dark-mode-active .tf-profile-about,
.wp-dark-mode-active .tf-profile-symptoms {
color: #fff;
}
.tf-profile-about-content {
position: relative;
z-index: 2;
font-size: 17px;
line-height: 40px;
}
.tf-profile-about-content ul {
padding-right: 20px;
font-size: 16px;
list-style: disc inside;
}
.tf-profile-about-content ul li {
line-height: 37.5px;
}
.tf-profile-about-content ol {
padding-right: 20px;
font-size: 16px;
list-style: decimal inside;
}
.tf-profile-about-content ol li {
}
.tf-profile-about-editor-wrapper > p {
font-size: 17px;
line-height: 40px;
}
.tf-profile-about-editor-wrapper {
position: relative;
z-index: 3;
display: none;
}
.tf-profile-about .ck-editor .ck-editor__editable[role="textbox"] {
min-height: 200px;
font-size: 16px;
}
.tf-profile-about .ck-editor .ck-editor__editable[role="textbox"] ul {
margin: 10px 0;
padding-right: 10px;
list-style: disc inside;
}
.tf-profile-about .ck-editor .ck-editor__editable[role="textbox"] ol {
margin: 10px 0;
padding-right: 10px;
list-style: decimal inside;
}
.tf-profile-save-about-btn {
display: inline-block;
margin-top: 15px;
border-radius: 5px;
padding: 0 15px;
background-color: #fbd0d0;
line-height: 35px;
color: #485460;
}
.tf-profile-user-courses {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-column-gap: 30px;
grid-row-gap: 30px;
}
.tf-profile-user-course-item {
overflow: hidden;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 10px;
}
.tf-profile-user-course-thumbnail {
display: block;
overflow: hidden;
}
.tf-profile-user-course-thumbnail img {
width: 100%;
transition-duration: 0.2s;
}
.tf-profile-user-course-thumbnail:hover img {
transform: scale(1.1);
}
.tf-profile-user-course-content {
padding: 20px;
}
.tf-profile-user-course-content h4 {
display: block;
margin-bottom: 10px;
font-size: 17px;
font-weight: 700;
}
.tf-profile-user-course-content h4 a {
color: #485460;
}
.tf-profile-user-course-content p {
display: block;
margin-bottom: 20px;
font-size: 13px;
text-align: justify;
}
.tf-profile-user-course-read-more {
display: block;
border-radius: 5px;
padding: 7px 10px;
background-color: #47ad35;
text-align: center;
color: #fff;
}
.tf-profile-user-course-read-more:hover {
background-color: #43a232;
color: #fff;
}
.tf-profile-user-comments {
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 30px;
grid-row-gap: 30px;
}
.tf-profile-comment-item {
position: relative;
display: block;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
border: 1px solid #dfe6e9;
border-radius: 10px;
box-sizing: border-box;
width: 100%;
padding-bottom: 50px;
background-color: #f5f5f5;
}
.tf-profile-comment-item-header {
display: block;
border-bottom: 1px dashed rgba(0, 0, 0, 0.25);
box-sizing: border-box;
width: 100%;
padding: 10px 15px;
}
.tf-profile-comment-item-head span {
margin-left: 5px;
}
.tf-profile-comment-item-excerpt {
margin: 0 !important;
padding: 15px;
font-size: 14px;
text-align: justify;
letter-spacing: -0.8px;
}
.tf-profile-comment-item-footer {
position: absolute;
right: 0;
bottom: 0;
width: 100%;
background-color: #ebedf2;
display: block;
padding: 10px 15px;
box-sizing: border-box;
}
.tf-profile-comment-item-footer a {
display: inline-block;
border-radius: 3px;
padding: 0 15px;
background-color: #6ac847;
font-size: 12px;
line-height: 30px;
letter-spacing: -0.8px;
color: #fff;
}
.tf-profile-comment-item-footer a:hover {
background-color: #5eb23f;
color: #fff;
}
.tf-profile-content ul.page-numbers {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
margin-top: 60px;
list-style: none;
}
.tf-profile-content ul.page-numbers a:not(.next, .prev),
.tf-profile-content ul.page-numbers span {
display: block;
border-radius: 7px;
width: 40px;
background-color: #ffc000;
line-height: 40px;
text-align: center;
color: #000;
}
.tf-profile-content ul.page-numbers a {
margin: 8px;
}
.tf-profile-content ul.page-numbers a.next,
.tf-profile-content ul.page-numbers a.prev {
font-weight: 700;
color: #000;
}
.tf-profile-content ul.page-numbers span.current {
background-color: #ff4500;
color: #fff;
}
.tf-profile-load-more-comments,
.tf-profile-load-more-questions {
display: flex;
justify-content: center;
}
.tf-profile-load-more-comments-btn,
.tf-profile-load-more-questions-btn {
margin-top: 60px;
border-radius: 5px;
padding: 7px 15px;
background-color: #ff5722;
color: #fff;
}
.tf-profile-load-more-questions-btn {
margin-top: 30px;
}
.tf-profile-load-more-comments-btn:hover,
.tf-profile-load-more-questions-btn:hover {
background-color: #e35020;
color: #fff;
}
.tf-profile-user-medals {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 30px;
grid-row-gap: 15px;
}
.tf-profile-user-medals > div {
display: block;
margin-top: 60px;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 10px;
padding: 30px;
background-color: #fff;
}
.tf-profile-user-medals div div {
display: block;
margin-top: -60px;
margin-bottom: 20px;
box-sizing: border-box;
border-radius: 10px;
padding: 20px;
width: 100%;
min-height: 110px;
background-size: 60px auto;
background-repeat: no-repeat;
background-position: center center;
}
.tf-profile-user-medals .golden-medal div {
background-color: #fff5e9;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/golden-medal.svg);
}
.tf-profile-user-medals .technical-comment div {
background-color: #ffe9e9;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/technical-comment.svg);
}
.tf-profile-user-medals .hamyar-laghari div {
background-color: #e9f0ff;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/hamyar-laghari.svg);
}
.tf-profile-user-medals div h3 {
text-align: center;
}
.tf-profile-user-medals div h3 span {
font-size: 1.4em;
font-weight: 800;
color: #ff5722;
}
.tf-profile-user-no-result {
display: block;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
border-radius: 10px;
padding: 30px;
background-color: #fff;
}
.tf-profile-user-no-result img {
display: block;
margin: 0 auto 30px;
max-width: 100%;
}
.tf-profile-user-no-result h3 {
display: block;
font-size: 20px;
font-weight: 600;
text-align: center;
}
.tf-profile-symptoms {
position: relative;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
min-height: 150px;
padding: 20px 50px 50px 20px;
font-family: Tanha;
}
.tf-profile-symptoms::before {
content: "";
position: absolute;
z-index: 1;
top: 44px;
right: 0;
bottom: 65px;
left: 0;
background-image: linear-gradient(#cfe7ff 1px, transparent 1px);
background-size: 100% 40px;
}
.tf-profile-symptoms:after {
content: "";
position: absolute;
z-index: 1;
top: 0;
right: 20px;
bottom: 0;
border-left: 1px solid #fbd0d0;
border-right: 1px solid #fbd0d0;
width: 8px;
}
.tf-profile-symptoms-content {
position: relative;
z-index: 2;
font-size: 17px;
line-height: 40px;
}
.tf-profile-symptoms-content ul {
padding-right: 20px;
font-size: 16px;
list-style: disc inside;
}
.tf-profile-symptoms-content ul li {
line-height: 37.5px;
}
.tf-profile-symptoms-content ol {
padding-right: 20px;
font-size: 16px;
list-style: decimal inside;
}
.tf-profile-symptoms-content ol li {
}
.tf-profile-symptoms-editor-wrapper > p {
font-size: 17px;
line-height: 40px;
}
.tf-profile-symptoms-editor-wrapper {
position: relative;
z-index: 3;
display: none;
}
.tf-profile-symptoms .ck-editor .ck-editor__editable[role="textbox"] {
min-height: 200px;
font-size: 16px;
}
.tf-profile-symptoms .ck-editor .ck-editor__editable[role="textbox"] ul {
margin: 10px 0;
padding-right: 10px;
list-style: disc inside;
}
.tf-profile-symptoms .ck-editor .ck-editor__editable[role="textbox"] ol {
margin: 10px 0;
padding-right: 10px;
list-style: decimal inside;
}
.tf-profile-save-symptoms-btn {
display: inline-block;
margin-top: 15px;
border-radius: 5px;
padding: 0 15px;
background-color: #fbd0d0;
line-height: 35px;
color: #485460;
}
.tf-profile-content .dwqa-questions-list {
margin-top: 0 !important;
}
@media screen and (min-width: 1200px) {
.tf-profile-menu .megawp-site-center {
display: flex;
justify-content: center;
width: 100% !important;
padding: 0 15px;
}
}
@media screen and (max-width: 1200px) {
.tf-profile-menu {
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
padding: 20px 0;
}
.tf-profile-menu ul {
display: none;
margin-top: 20px;
}
.tf-profile-menu ul li {
display: block;
margin-left: 0;
margin-bottom: 15px;
}
.tf-profile-menu ul li:last-child {
margin-bottom: 0;
}
.tf-profile-menu-toggle {
display: block;
}
.tf-profile-content > h1 {
display: block;
}
}
@media screen and (max-width: 991px) {
.tf-profile-header-content > div {
display: block;
}
.tf-profile-user-info,
.tf-profile-user-score-details {
justify-content: center;
width: 100%;
}
.tf-profile-user-info {
margin-bottom: 30px;
}
.tf-profile-about-content,
.tf-profile-symptoms-content {
font-size: 16px;
}
.tf-profile-user-courses {
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 768px) {
.tf-profile-user-comments,
.tf-profile-user-medals {
grid-template-columns: 1fr;
}
}
@media screen and (max-width: 550px) {
.tf-profile-user-info {
display: block;
}
.tf-profile-user-info img {
display: block;
margin: 0 auto 10px;
}
.tf-profile-user-info div {
text-align: center;
}
.tf-profile-user-courses {
grid-template-columns: 1fr;
}
}
.tf-notice-new-post-overlay {
position: fixed;
z-index: 999;
top: 0;
left: 0;
display: none;
width: 100%;
height: 100%;
background-color: rgba(109, 72, 229, 0.4);
}
.tf-notice-new-post {
position: fixed;
z-index: 1000;
top: 50%;
right: 50%;
display: none;
transform: translate(50%, -50%);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
border-radius: 20px;
padding: 20px;
box-sizing: border-box;
width: 450px;
max-width: calc(100% - 30px);
background-color: #fff;
text-align: center;
}
.tf-notice-new-post-thumbnail {
position: relative;
overflow: hidden;
margin-bottom: 30px;
border-radius: 15px;
width: 100%;
}
.tf-notice-new-post-thumbnail img {
width: 100%;
}
.tf-notice-new-post-thumbnail span {
position: absolute;
top: 10px;
right: 10px;
border-radius: 10px;
padding: 5px 10px;
background-color: #ffc000;
font-size: 13px;
font-weight: 600;
}
.tf-notice-new-post h3 {
margin-bottom: 30px;
font-size: 20px;
font-weight: 800;
}
.tf-notice-new-post-btns {
display: flex;
justify-content: center;
}
.tf-notice-new-post-btns a {
margin: 0 7px;
border-radius: 10px;
padding: 8px 15px;
color: #fff;
}
.tf-notice-new-post-btns a:hover {
color: #fff;
}
.tf-notice-new-post-btns a:first-child {
background-color: #2ab200;
}
.tf-notice-new-post-btns a:last-child {
background-color: #df0f50;
}
.megawp-post-content .dwqa-container {
line-height: 25px;
}
.dwqa-breadcrumbs {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
border: 1px solid #dfe6e9;
border-radius: 5px;
padding: 10px 15px;
background-color: #fff;
}
.dwqa-breadcrumbs > * {
margin-left: 5px;
}
.dwqa-search input,
#dwqa-search .ui-autocomplete-input {
border: 1px solid #e0e0e0 !important;
border-radius: 10px !important;
padding: 10px 16px 10px 40px;
transition-duration: 0.2s;
background-position: 45px center !important;
}
.dwqa-search input:focus,
#dwqa-search .ui-autocomplete-input:focus {
border-color: #3498db !important;
}
.dwqa-search::before {
font-family: lineicons;
content: "\eb7b";
right: auto;
left: 15px;
}
.dwqa-search .dwqa-autocomplete {
width: 100% !important;
max-width: 100% !important;
padding: 0 !important;
}
.dwqa-question-filter {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.dwqa-question-filter > div {
margin-left: 30px;
}
.dwqa-question-filter .dwqa-sort-by {
float: unset !important;
width: 150px !important;
padding: 0 5px;
font-size: 13px !important;
}
.dwqa-questions-list .dwqa-question-item .dwqa-question-stats {
top: 50%;
transform: translateY(-50%);
margin-top: 0;
}
.dwqa-main-content {
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
border: 1px solid #dfe6e9;
border-radius: 5px;
padding: 20px;
background-color: #fff;
}
.dwqa-questions-footer .dwqa-pagination {
display: block;
margin-bottom: 30px;
}
.dwqa-questions-footer .dwqa-pagination > * {
border-radius: 5px;
}
.dwqa-questions-footer .dwqa-pagination > *:first-child {
margin-right: 0;
}
.dwqa-questions-footer .dwqa-ask-question a {
border-radius: 5px;
}
.dwqa-staff {
margin-right: 5px !important;
margin-left: 10px !important;
font-size: 12px;
}
label[for="dwqa-favorites"] {
display: none !important;
}
.dwqa-content-ask-form label {
display: block;
margin-bottom: 5px;
}
.dwqa-answer-form .editor-toolbar,
.dwqa-answer-form .CodeMirror {
text-align: right;
}
.dwqa-content-ask-form .editor-toolbar .fa-eye,
.dwqa-content-ask-form .editor-toolbar .fa-picture-o,
.dwqa-content-ask-form .editor-toolbar .fa-arrows-alt,
.dwqa-content-ask-form .editor-toolbar .fa-question-circle {
display: none;
}
.dwqa-answer-form {
margin-top: 30px;
}
.dwqa-answers-login {
display: flex;
flex-wrap: wrap;
margin-top: 50px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
border-radius: 5px;
padding: 20px;
background-color: #575cb3 !important;
font-size: 15px;
line-height: 40px;
color: #fff;
}
.dwqa-answers-login i {
margin-left: 10px;
font-size: 20px;
}
.dwqa-answers-login a {
margin: 0 8px;
border-radius: 3px;
padding: 0 10px;
background-color: #fff;
color: #575cb3;
}
.widget_dwqa_leaderboard .dwqa-leaderboard .dwqa-user-block {
display: flex;
align-items: center;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard .dwqa-user-avatar {
margin-left: 15px;
padding-right: 0 !important;
}
.single-dwqa-question .dwqa-question-item {
border-radius: 15px;
padding: 25px 95px 25px 25px !important;
background-color: #fff9c4;
}
.single-dwqa-question .dwqa-question-item .dwqa-question-content {
font-size: 15px;
font-weight: 600;
}
.dwqa-single-question-title {
display: block;
margin-bottom: 20px;
font-weight: 700;
}
.tf-back-to-hamfekri {
display: inline-block;
margin-bottom: 30px;
padding: 7px 15px;
background-color: #f1f3f6;
font-size: 13px;
color: #000;
}
@media (min-width: 481px) {
.single-dwqa-question .dwqa-question-item .avatar {
right: 25px !important;
}
.single-dwqa-question .dwqa-question-vote {
right: 31px !important;
margin-top: 10px;
}
}
@media (max-width: 480px) {
.single-dwqa-question .dwqa-question-item {
padding-right: 25px !important;
}
}
@media (max-width: 768px) {
.dwqa-question-filter {
justify-content: start;
}
.dwqa-question-filter .dwqa-sort-by {
margin-top: 20px;
}
}
@media (max-width: 767px) {
.dwqa-question-content,
.dwqa-answer-content {
width: calc(100% - 50px);
}
.dwqa-answer-vote {
left: 26px;
}
}
@media (max-width: 480px) {
.rtl .dwqa-questions-list .dwqa-question-item {
padding-bottom: 15px;
}
.rtl.single-dwqa-question .dwqa-answer-item .dwqa-question-vote,
.rtl.single-dwqa-question .dwqa-answer-item .dwqa-answer-vote {
right: 15px !important;
}
.single-dwqa-question .dwqa-question-item .dwqa-question-meta,
.single-dwqa-question .dwqa-answer-item .dwqa-answer-meta {
margin-top: 15px;
}
.single-dwqa-question .dwqa-question-item .avatar,
.single-dwqa-question .dwqa-answer-item .avatar {
margin-top: 3.5px;
}
.dwqa-question-content,
.dwqa-answer-content {
width: 100%;
}
}
.submited-question-message {
margin-bottom: 15px;
border-radius: 10px;
padding: 20px;
background-color: #ffc000;
}
.btn-question-submited:hover a {
background-color: #3e297c !important;
color: #fff;
}
.dwqa-question-filter > div {
display: none !important;
}
.tf-hamfekri-answer-item-medals {
display: flex;
margin-top: 40px;
margin-bottom: 10px;
}
.tf-profile-comment-item .tf-hamfekri-answer-item-medals {
margin-top: 20px;
margin-bottom: 0;
padding: 0 15px;
}
.tf-hamfekri-answer-item-medals > div {
display: block;
margin-left: 25px;
margin-bottom: 10px;
}
.tf-profile-comment-item .tf-hamfekri-answer-item-medals > div {
margin-bottom: 0;
font-size: 12px;
}
.tf-hamfekri-answer-item-medals div div {
display: block;
margin: 0 auto;
width: 50px;
height: 50px;
background-size: 100%;
background-repeat: no-repeat;
background-position: center;
}
.tf-profile-comment-item .tf-hamfekri-answer-item-medals div div {
width: 40px;
height: 40px;
}
.tf-hamfekri-answer-item-medals .golden-medal div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/golden-medal.svg);
}
.tf-hamfekri-answer-item-medals .technical-comment div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/technical-comment.svg);
}
.tf-hamfekri-answer-item-medals .hamyar-laghari div {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/hamyar-laghari.svg);
}
.tf-hamfekri-question-notification-btn {
display: inline-block;
margin-top: 30px;
padding: 5px 15px;
background-color: #ffc000;
font-size: 12px;
color: #000;
}
.tf-hamfekri-question-notification-btn.disable {
background-color: #ef233c;
color: #fff;
}
.tf-user-marked-question-item {
display: block;
margin-bottom: 20px;
padding: 20px;
background-color: #eee;
}
.tf-user-marked-question-item h4 {
display: block;
margin-bottom: 10px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
padding-bottom: 10px;
}
.tf-user-marked-question-item-author {
display: block;
margin-bottom: 10px;
}
.tf-user-marked-question-item-content {
display: block;
margin-bottom: 20px;
}
.tf-user-marked-question-item-footer {
display: flex;
align-items: center;
}
.tf-user-marked-question-item-footer a {
margin-left: 10px;
border-radius: 5px;
padding: 5px 15px;
font-size: 12px;
}
.tf-user-marked-question-item-footer a:first-child {
background-color: #3e297c;
color: #fff;
}
.tf-user-marked-question-item-footer a:last-child {
background-color: #ff5722;
color: #fff;
}
.tf-user-marked-questions-load-more-btn {
display: inline-block;
margin-top: 20px;
border-radius: 5px;
padding: 5px 15px;
font-size: 12px;
background-color: #eee;
color: #000;
}
.tf-free-download-list-wrapper > h1 {
display: block;
margin-bottom: 30px;
font-weight: 800;
}
.tf-free-download-list-item {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
border-radius: 15px;
padding: 15px;
background-color: #fff;
}
.tf-free-download-list-item-thumbnail-wrapper {
position: relative;
}
.tf-free-download-list-item-thumbnail-wrapper img {
border-radius: 10px;
width: 170px;
}
.tf-free-download-list-item-thumbnail-wrapper span {
position: absolute;
top: 5px;
right: 5px;
border-radius: 7px;
width: 35px;
background-color: #ff4500;
line-height: 35px;
text-align: center;
font-weight: 800;
color: #fff;
}
.tf-free-download-list-item-title-wrapper {
display: flex;
margin-bottom: 7px;
}
.tf-free-download-list-item > div {
width: calc(100% - 190px);
}
.tf-free-download-list-item-title-wrapper h3 a {
margin-left: 10px;
font-weight: 700;
color: #000;
}
.tf-free-download-list-item-title-wrapper span {
top: 5px;
right: 5px;
border-radius: 5px;
background-color: #ffc000;
color: #000;
padding: 0 10px;
}
.tf-free-download-list-item p {
letter-spacing: -0.5px;
}
.tf-free-download-list-wrapper ul.page-numbers {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
list-style: none;
}
.tf-free-download-list-wrapper .page-numbers li a:not(.next, .prev),
.tf-free-download-list-wrapper .page-numbers li span {
display: block;
border-radius: 7px;
width: 40px;
background-color: #ffc000;
line-height: 40px;
text-align: center;
color: #000;
}
.tf-free-download-list-wrapper .page-numbers li a {
margin: 8px;
}
.tf-free-download-list-wrapper .page-numbers li a.next,
.tf-free-download-list-wrapper .page-numbers li a.prev {
font-weight: 700;
color: #000;
}
.tf-free-download-list-wrapper .page-numbers li span.current {
background-color: #ff4500;
color: #fff;
}
@media screen and (max-width: 576px) {
.tf-free-download-list-item {
display: block;
}
.tf-free-download-list-item-thumbnail-wrapper {
display: block;
margin-bottom: 10px;
}
.tf-free-download-list-item-thumbnail-wrapper img {
width: 100%;
}
.tf-free-download-list-item > div {
display: block;
width: 100%;
}
}
.tf-home-stories,
.tf-home-stories-mobile {
padding: 25px 0;
}
.tf-home-stories-mobile {
display: none;
}
@media screen and (max-width: 992px) {
.tf-home-stories {
display: none;
}
.tf-home-stories-mobile {
display: block;
}
}
:is(.tf-home-stories, .tf-home-stories-mobile) .wpstory-shortcode-wrapper {
margin-bottom: 0;
}
.tf-home-stories .wpstory-slider-container-free-mode > .wpstory-slider-wrapper {
justify-content: space-between;
}
.wp-dark-mode-active
.wpstory-item-circles
.wpstory-feed-item-ins
.wpstory-circle-title {
color: #fff !important;
}
.feel-better-sign-items li {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border: 1px solid #eee;
border-radius: 15px;
padding: 15px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
.feel-better-sign-items li:last-child {
margin-bottom: 0;
}
.feel-better-sign-items li h4 {
font-size: 15px;
font-weight: 500;
}
.feel-better-sign-items li h4 a {
color: #000;
}
.feel-better-sign-items li span {
border-radius: 5px;
padding: 5px 10px;
background-color: #f6f6f6;
font-size: 13px;
color: #9f9f9f;
}
.feel-better-sign-items li > a {
border-radius: 10px;
padding: 7px 15px;
background-color: #ffc000;
font-size: 13px;
text-align: center;
color: #000;
}
.feel-better-sign-items li > a:hover {
color: #000;
}
.tf-load-more-feel-better-signs {
display: inline-block;
margin-top: 30px;
border-radius: 5px;
padding: 5px 15px;
font-size: 12px;
background-color: #eee;
color: #000;
}
.tf-load-more-feel-better-signs:hover {
color: #000;
}
.home-feel-better {
margin-bottom: 50px;
padding: 30px;
background-color: #ffd1da;
font-weight: 700;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/feel-better-bg-pattern.jpg);
background-size: 400px 400px;
background-position: center center;
color: #fff;
}
.home-feel-better > div {
display: flex;
justify-content: space-between;
align-items: center;
}
.home-feel-better span {
display: block;
font-size: 27px;
line-height: 35px;
font-weight: 700;
text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
.home-feel-better p {
font-size: 16px;
text-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}
.home-feel-better a {
display: inline-block;
border-radius: 5px;
padding: 10px 20px;
background-color: #ea1179;
font-size: 17px;
color: #fff;
}
.home-feel-better a:hover {
opacity: 0.85;
color: #fff;
}
@media screen and (max-width: 1200px) {
.home-feel-better {
padding: 30px 0;
}
.home-feel-better > div {
display: block;
text-align: center;
}
.home-feel-better span {
margin-bottom: 15px;
}
.home-feel-better p {
margin-bottom: 25px;
font-size: 14px;
}
.feel-better-sign-items li {
text-align: center;
}
.feel-better-sign-items li,
.feel-better-sign-items li > :is(div, a) {
display: block;
}
.feel-better-sign-items li > div {
margin-bottom: 15px;
}
}
:is(.single-post, .single-session) .wpfp-wrapper {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin: 20px auto 30px;
}
:is(.single-post, .single-session) .wpfp-span {
transition-duration: 0.2s;
border-radius: 8px;
padding: 8px 15px;
background-color: #ffc000;
cursor: pointer;
text-align: center;
color: #000;
}
:is(.single-post, .single-session) .wpfp-span img {
margin-right: 0;
margin-left: 7px;
}
:is(.single-post, .single-session) .wpfp-span:hover {
opacity: 0.85;
}
:is(.single-post, .single-session) .wpfp-span a,
:is(.single-post, .single-session) .wpfp-span a:hover {
color: #000;
}
:is(.single-post, .single-session) .tf-post-comment-notification-btn {
display: flex;
justify-content: center;
align-items: center;
gap: 7px;
transition-duration: 0.2s;
border-radius: 8px;
padding: 8px 15px;
background-color: #037dff;
cursor: pointer;
text-align: center;
color: #fff;
}
:is(.single-post, .single-session) .tf-post-comment-notification-btn:hover {
opacity: 0.85;
color: #fff;
}
:is(.single-post, .single-session) .tf-post-comment-notification-btn .wpfp-img {
width: 16px;
height: 16px;
}
.wpfp-span ul li {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
border-radius: 5px;
border: 2px solid rgba(0, 0, 0, 0.05);
padding: 15px;
background-color: #f8f8f8;
}
.wpfp-span ul li div a {
display: flex;
align-items: center;
}
.wpfp-span ul li img {
margin-left: 10px;
border-radius: 3px;
width: 70px;
}
.wpfp-span ul li h4 {
font-weight: 600;
color: #1d2327;
}
.wpfp-span ul li .wpfp-buttons {
display: flex;
align-items: center;
gap: 10px;
}
@media screen and (max-width: 1200px) {
.wpfp-span ul li .wpfp-buttons {
flex-wrap: wrap;
}
}
@media screen and (max-width: 768px) {
.wpfp-span ul li .wpfp-buttons {
margin-top: 15px;
}
.wpfp-span ul li .wpfp-buttons a {
width: 100%;
}
}
.wpfp-span ul li .wpfp-buttons a {
display: flex;
justify-content: center;
align-items: center;
gap: 5px;
border-radius: 5px;
padding: 3px 15px;
font-size: 12px;
text-align: center;
}
.wpfp-span ul li .wpfp-buttons a:hover {
opacity: 0.85;
color: inherit;
}
.wpfp-span ul li .wpfp-buttons a .wpfp-img {
width: 16px;
height: 16px;
}
.wpfp-span ul li .wpfp-buttons a.tf-active-post-comment-favorite-btn {
background-color: #ffc000;
color: #000;
}
.wpfp-span ul li .wpfp-buttons a.tf-deactive-post-comment-favorite-btn {
background-color: #ff5722;
color: #fff;
}
.wpfp-span ul li .wpfp-buttons a.tf-active-post-comment-notification-btn {
background-color: #037dff;
color: #fff;
}
.wpfp-span ul li .wpfp-buttons a.tf-deactive-post-comment-notification-btn {
background-color: #000;
color: #fff;
}
.wpfp-span .navigation {
float: right;
display: block;
width: 100%;
}
@media screen and (max-width: 768px) {
.wpfp-span ul li {
display: block;
}
.wpfp-span ul li > :is(div, a) {
display: block;
}
.wpfp-span ul li > a {
margin-top: 15px;
}
}
.wpfp-remove-all {
display: inline-flex;
align-items: center;
transition-duration: 0.2s;
margin-top: 20px;
margin-right: 0;
border-radius: 8px;
padding: 8px 15px;
background-color: #ffc000;
cursor: pointer;
text-align: center;
color: #000;
}
.wpfp-remove-all img {
margin-left: 7px;
}
.wpfp-remove-all:hover {
opacity: 0.85;
color: #000;
}
.tf-birthday-message {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
padding: 15px;
border: 1px solid #e3e3e3;
border-radius: 7px;
background-color: #fff1ee;
color: #e44d26;
}
.tf-birthday-message a {
border-radius: 5px;
padding: 5px 15px;
background-color: #e44d26;
text-align: center;
color: #fff;
}
.tf-birthday-message a:hover {
opacity: 0.85;
color: #fff;
}
@media screen and (max-width: 1200px) {
.tf-birthday-message {
display: block;
text-align: center;
}
.tf-birthday-message span {
display: block;
}
.tf-birthday-message a {
display: inline-block;
margin-top: 15px;
}
}
.tf-star-rating {
display: flex;
justify-content: right;
align-items: center;
font-size: 30px;
color: #b9b9b9;
direction: ltr;
}
.tf-star-rating span {
cursor: pointer;
}
.tf-star-rating span:hover,
.tf-star-rating span:hover ~ span,
.tf-star-rating span.active,
.tf-star-rating span.active ~ span {
color: #ffb900;
}
.megawp-session-performance-your-score {
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
font-size: 16px;
font-weight: bold;
}
.megawp-session-performance-your-score svg {
width: 40px;
}
.swal2-title {
line-height: 1.4 !important;
font-size: 1.6em !important;
}
.tf-profile-user-courses-performance {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 15px;
}
.tf-profile-user-courses-performance .tf-session-rated-performance {
position: relative;
overflow: hidden;
background-repeat: no-repeat;
background-position: center;
background-size: cover;
color: #fff;
}
.tf-profile-user-courses-performance .tf-session-rated-performance::before {
content: "";
position: absolute;
z-index: 1;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.6);
}
.tf-profile-user-courses-performance .tf-session-rated-performance h4 {
position: relative;
z-index: 2;
margin-bottom: 10px;
}
.tf-profile-user-courses-performance .tf-session-rated-performance > div {
position: relative;
z-index: 2;
}
.tf-profile-user-courses-performance
.tf-session-rated-performance
> div:not(:last-child) {
margin-bottom: 20px;
padding-bottom: 20px;
border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}
.tf-profile-user-courses-performance
.tf-session-rated-performance
> div
> span {
color: #ffc000;
}
.tf-profile-user-courses-performance
:is(.tf-session-rated-performance a, .tf-session-rated-performance a:hover) {
color: #fff;
}
@media screen and (max-width: 992px) {
.tf-profile-user-courses-performance {
grid-template-columns: repeat(2, 1fr);
}
}
@media screen and (max-width: 768px) {
.single-session .tf-sessions-nav {
justify-content: space-between;
width: 100%;
}
.tf-profile-user-courses-performance {
grid-template-columns: 1fr;
}
}
.home-about img {
max-width: 220px;
width: 100%;
height: auto;
} @media (max-width: 768px) {
.home-slider {
min-height: 220px;
background-color: #f1f1f1;
overflow: hidden;
}
.home-slider img {
width: 100%;
height: auto;
display: block;
} .home-course-box-thumbnail.tf-responsive-thumb {
min-height: 250px !important;
background-color: #f1f1f1;
}
} .megawp-carousel-container.home-slider {
display: block;
width: 100%;
min-height: 250px;
background-color: #f1f1f1;
overflow: hidden;
}
.home-slider .home-slider-item {
display: block !important;
} .home-slider .home-slider-item:nth-child(n+2) {
display: none !important;
}
.owl-loaded .home-slider-item:nth-child(n+2) {
display: block !important;
}
@media (max-width: 768px) {
.megawp-carousel-container.home-slider {
min-height: 250px; }
}body {
background-color: #f1f3f6;
}
.megawp-site-center {
width: 1250px;
}
aside .megawp-post-tabs-widget ul.megawp-post-tabs-widget-container li,
aside h4.megawp-widget-title {
color: #485460;
}
aside h4.megawp-widget-title {
font-size: 16px;
font-weight: 700;
}
aside .megawp-sidebar-widget-box {
font-size: 14px;
font-weight: 400;
line-height: 25px;
}
::selection {
background-color: #ff4500;
}
.megawp-load .load-wrap {
background-image: url(https://tanasobefekri.com/wp-content/uploads/2019/08/273.gif);
}
.megawp-content .megawp-video-post,
.megawp-general-box {
border-radius: 5px;
border-width: 1px;
}
.megawp-categories-list-widget ul li a,
.megawp-content .megawp-audio-podcasts-box,
.megawp-image-widget img,
.megawp-user-area-widget,
.megawp-content .megawp-breadcrumbs,
.megawp-course-short-block-info .megawp-course-copyright,
.megawp-course-short-block-info .megawp-course-student-count,
.megawp-course-student-notice,
.megawp-social-networks-widget .megawp-social-network-widget-item {
border-radius: 5px;
}
.megawp-back-to-top {
background-color: rgba(8, 110, 17, 0.6);
} header.megawp-header-wrapper .header-separator {
background-color: #d5d5d5;
} .megawp-sticky-header-wrapper {
background-image: linear-gradient(to right, #f12711, #f5af19);
}
.megawp-sticky-header-wrapper .megawp-sticky-header .header-logo-area a {
color: #fff;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li a {
color: #fff;
border-left: 1px solid rgba(255, 255, 255, 0.2);
padding: 0 15px;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li:hover > a {
color: #fff;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul .current-menu-ancestor > a,
.megawp-sticky-header-wrapper .megawp-header-menu ul .current-menu-item > a {
color: #fff;
}
.megawp-sticky-header-wrapper
.megawp-header-menu
ul
.current-menu-ancestor:hover
> a,
.megawp-sticky-header-wrapper
.megawp-header-menu
ul
.current-menu-item:hover
> a {
color: #fff;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li a {
color: #000000;
border-left: none;
}
.megawp-sticky-header-wrapper .megawp-header-menu ul li ul li:hover > a {
color: #485460;
}
.megawp-sticky-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-ancestor
> a,
.megawp-sticky-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-item
> a {
color: #ff4500;
}
.megawp-sticky-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-ancestor:hover
> a,
.megawp-sticky-header-wrapper
.megawp-header-menu
ul
li
ul
.current-menu-item:hover
> a {
color: #ff4500;
}
.megawp-sticky-header-wrapper .megawp-progress-container .megawp-progress-bar {
background-color: red;
} .megawp-archive-classic-posts {
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 15px;
grid-row-gap: 20px;
}
.megawp-archive-cards-posts .megawp-post-item,
.megawp-archive-classic-posts .megawp-post-item {
background-color: #fff;
border-radius: 5px;
}
.megawp-archive-classic-posts .megawp-post-item {
height: 100%;
}
.megawp-archive-classic-posts
.megawp-post-item
.megawp-classic-posts-thumbnail {
border-radius: 5px;
margin-bottom: 15px;
height: 200px;
}
.megawp-archive-classic-posts .megawp-classic-posts-content {
padding: 0 15px;
}
.megawp-archive-classic-posts .megawp-post-item .megawp-classic-posts-title a {
margin-bottom: 15px;
color: #000000;
font-size: 15px;
font-weight: 400;
text-align: center;
line-height: 30px;
}
.megawp-archive-classic-posts .megawp-post-item .megawp-classic-posts-meta {
color: #bdbdbd;
margin-bottom: 15px;
font-size: 13px;
font-weight: 400;
text-align: center;
line-height: 25px;
}
.megawp-archive-classic-posts .megawp-post-item .megawp-classic-posts-excerpt {
margin-bottom: 15px;
color: #757575;
font-size: 14px;
font-weight: 400;
text-align: justify;
line-height: 25px;
}
.megawp-archive-classic-posts
.megawp-post-item
.megawp-classic-posts-read-more-button {
background-image: linear-gradient(45deg, #3498db, #276794);
color: #fff;
font-size: 15px;
font-weight: 400;
line-height: 35px;
}
.megawp-archive-classic-posts
.megawp-post-item:hover
> .megawp-classic-posts-read-more-button {
background-image: linear-gradient(45deg, #ff4500, #b93d30);
}
.megawp-archive-pagination ul li span.current,
.megawp-archive-pagination ul li.megawp-pagination-active a {
background-color: #485460;
}
@media screen and (max-width: 1023px) {
.megawp-archive-classic-posts,
.megawp-archive-products {
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 767px) {
.megawp-archive-classic-posts,
.megawp-archive-products {
grid-template-columns: 1fr;
}
} .megawp-single-pages-boxes-title,
.megawp-single-pages-boxes-title h1,
.megawp-single-pages-boxes-title h2,
.megawp-single-pages-boxes-title h3,
.megawp-single-pages-boxes-title h4,
.megawp-single-pages-boxes-title h5,
.megawp-single-pages-boxes-title h6,
.woocommerce .megawp-default-single-product-top-box div.product .product_title {
font-size: 18px;
font-weight: 400;
}
.megawp-post-content {
font-size: 15px;
font-weight: 400;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-list
li.comment
article.comment-body
.comment-content,
.woocommerce
.megawp-product-comments
#reviews
#comments
ol.commentlist
li
.comment-text {
font-size: 15px;
font-weight: 400;
line-height: 30px;
}
.megawp-comments-box .megawp-comments-box-title h3,
.megawp-content .megawp-single-page-box .megawp-single-post-title h1,
.megawp-download-box .megawp-download-box-title h3 {
color: #000;
}
.megawp-post-content {
color: #000000;
}
.megawp-download-box .megawp-download-box-title span {
color: #485460;
border-color: #485460;
}
.megawp-download-box .megawp-download-box-title span:hover {
background-color: #485460;
}
.megawp-download-files-password {
background-color: #485460;
}
.megawp-download-box
.megawp-download-box-links-area
.download-link-item
a.download-button {
background-image: linear-gradient(45deg, #9dcc1e, #86b700);
color: #ffffff;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-list
li.comment
article.comment-body
.comment-content,
.woocommerce
.megawp-product-comments
#reviews
#comments
ol.commentlist
li
.comment-text {
background-image: linear-gradient(45deg, #f2f2f2, #f2f2f2);
color: #000000;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-list
li.comment
article.comment-body
.comment-content
a,
.woocommerce
.megawp-product-comments
#reviews
#comments
ol.commentlist
li
.comment-text
p.meta {
color: #000000;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-list
.children
li.comment
article.comment-body
.comment-content,
.woocommerce
.megawp-product-comments
#reviews
#comments
ol.commentlist
.children
li
.comment-text {
background-image: linear-gradient(45deg, #f1f7ed, #ddf7d7);
color: #000000;
}
.megawp-comments-box
.megawp-comments-box-content
.comment-list
.children
li.comment
article.comment-body
.comment-content
a,
.woocommerce
.megawp-product-comments
#reviews
#comments
ol.commentlist
.children
li
.comment-text
p.meta {
color: #000000;
}
.megawp-comments-box .megawp-comment-pagination .page-numbers {
background-color: #485460;
}
.megawp-content
.megawp-single-page-box
.megawp-single-post-title
span.megawp-single-post-view,
.megawp-download-box
.megawp-download-box-title
span.megawp-report-broken-links-button,
.megawp-single-post-modern-template
.megawp-single-post-title
span.megawp-single-post-view {
margin: 3px 0;
} .woocommerce .megawp-breadcrumbs .woocommerce-breadcrumb a {
color: #3498db;
}
.woocommerce .megawp-breadcrumbs .woocommerce-breadcrumb a:hover {
color: #485460;
}
.megawp-course-summery-box form.cart .button,
.megawp-default-single-product-top-box div.product form.cart .button {
background-image: linear-gradient(to right, #70f570, #49c628);
color: #fff !important;
}
.woocommerce .megawp-product-comments nav.woocommerce-pagination li a,
.woocommerce .megawp-product-comments nav.woocommerce-pagination li a:focus,
.woocommerce .megawp-product-comments nav.woocommerce-pagination li a:hover {
background-color: #485460;
}
.megawp-course-short-block-info .megawp-course-student-count {
background-color: #ceebff;
color: #3498db;
}
.megawp-archive-products {
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 20px;
grid-row-gap: 30px;
}
.megawp-archive-modern2-products .megawp-product-item {
height: 100%;
border-radius: 10px;
background-color: #fff;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-thumbnail {
height: 250px;
margin-bottom: 15px;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-content {
padding: 0 15px;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-content
.megawp-modern2-products-title {
margin-bottom: 15px;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-content
.megawp-modern2-products-title {
text-align: center;
line-height: 25px;
font-weight: 700;
font-style: normal;
font-size: 15px;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-content
.megawp-modern2-products-title
a {
color: #000000;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-content
.megawp-modern2-products-excerpt {
margin-bottom: 15px;
color: #474747;
text-align: center;
line-height: 25px;
font-weight: 400;
font-style: normal;
font-size: 13px;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-content
.megawp-modern2-products-meta {
color: #bc0000;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-content
.megawp-modern2-products-meta
span {
line-height: 25px;
font-weight: 400;
font-style: normal;
font-size: 18px;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-bottom-area {
border-color: #dfe6e9 !important;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-rating
.star-rating,
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-rating
.star-rating-empty:before {
color: #f39c12;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-bottom-area
.megawp-modern2-products-price {
color: #4caf50;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-bottom-area
.megawp-modern2-products-price
del {
color: #ff4500;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-bottom-area
a.megawp-modern2-products-read-more-button {
border-radius: 5px;
background-image: linear-gradient(45deg, #43a047, #43a047);
color: #fff;
}
.megawp-archive-modern2-products
.megawp-product-item
.megawp-modern2-products-bottom-area
a.megawp-modern2-products-read-more-button:hover {
background-image: linear-gradient(45deg, #388e3c, #388e3c);
color: #fff;
} h1.megawp-account-page-title {
font-size: 18px;
font-weight: 700;
}
body.megawp-login-register-page-body {
background-color: #3498db;
}
.megawp-login-register-page-container {
background-color: #fff;
box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.megawp-account-container .megawp-account-menu {
background-color: #485460;
border-width: 0;
}
.megawp-account-menu .megawp-account-user-info {
border-top-right-radius: 5px;
border-top-left-radius: 5px;
color: #fff;
padding-bottom: 20px;
background-color: #3498db;
}
.megawp-account-menu .megawp-account-menu-items li a {
color: #fff;
font-size: 14px;
font-weight: 400;
}
.megawp-account-menu .megawp-account-menu-items li a:hover {
color: #fff;
background-color: #5b6570;
}
.megawp-account-menu .megawp-account-menu-items li.current-menu-item a {
color: #fff;
background-color: #3498db;
} .megawp-mobile-header {
background-color: #fff;
}
.megawp-mobile-header .megawp-mobile-header-content .mobile-header-logo-area a {
color: #485460;
}
.megawp-hamburger-icon,
.megawp-hamburger-icon:hover {
color: #485460;
}
.megawp-mobile-menu-wrapper {
background-color: #fff;
}
#megawp-mobile-menu-items ul ul li a,
.megawp-mobile-menu-buttons a,
.megawp-mobile-menu-search form {
background-color: rgba(0, 0, 0, 0.06);
}
#megawp-mobile-menu-items > div > ul > li > a {
border-color: rgba(0, 0, 0, 0.06) !important;
}
#megawp-mobile-menu-items ul li a,
.megawp-mobile-menu-buttons a,
.megawp-mobile-menu-search button,
.megawp-mobile-menu-search input[type="text"],
.megawp-mobile-menu-wrapper {
color: #000000;
}
.megawp-mobile-menu-search input[type="text"]::placeholder {
color: #000000;
}
.megawp-mobile-menu-search input[type="text"]:-ms-input-placeholder {
color: #000000;
}
.megawp-mobile-menu-search input[type="text"]::-ms-input-placeholder {
color: #000000;
}
.megawp-mobile-menu-buttons a:hover {
color: #000000;
}
.megawp-mobile-menu-buttons .wp-dark-mode-switch .wp-dark-mode-ignore {
width: 50px !important;
height: 50px !important;
} footer.megawp-footer-v2 {
background-color: #3498db;
}
.megawp-footer-wave .main-wave svg path {
fill: #3498db;
}
footer.megawp-footer .megawp-footer-items-area {
grid-template-columns: 1fr 1fr 1fr;
}
footer.megawp-footer h4.megawp-widget-title {
color: #fff;
font-size: 18px;
line-height: 35px;
font-weight: 400;
}
footer.megawp-footer h4.megawp-widget-title-style1 {
border-color: #fff;
font-size: 14px;
line-height: 25px;
font-weight: 400;
}
footer.megawp-footer .megawp-footer-bottom-area .megawp-copyright,
footer.megawp-footer .megawp-footer-widget-box,
footer.megawp-footer .tml-user-panel .tml-user-links li a,
footer.megawp-footer .widget_archive li a::before,
footer.megawp-footer .widget_categories li a::before,
footer.megawp-footer .widget_display_forums li a::before,
footer.megawp-footer .widget_display_stats dt::before,
footer.megawp-footer .widget_display_views li a::before,
footer.megawp-footer .widget_layered_nav li a::before,
footer.megawp-footer .widget_meta li a::before,
footer.megawp-footer .widget_nav_menu li a::before,
footer.megawp-footer .widget_pages li a::before,
footer.megawp-footer .widget_product_categories li a::before,
footer.megawp-footer .widget_recent_entries li a::before,
footer.megawp-footer .widget_rss li a::before {
color: #fff;
}
footer.megawp-footer .megawp-footer-widget-box a {
color: #fff;
}
footer.megawp-footer .megawp-footer-bottom-area .megawp-copyright {
color: #fff;
}
footer.megawp-footer
.megawp-footer-bottom-area
.megawp-footer-social-networks
a {
color: #fff;
}
footer.megawp-footer .megawp-minicart .woocommerce-mini-cart,
footer.megawp-footer .megawp-minicart .woocommerce-mini-cart__total,
footer.megawp-footer .megawp-posts-widget .megawp-posts-widget-item,
footer.megawp-footer .megawp-products-widget .megawp-products-widget-item,
footer.megawp-footer .woocommerce ul.cart_list li,
footer.megawp-footer .woocommerce ul.product_list_widget li {
border-color: #fff;
}
footer.megawp-footer .megawp-minicart .woocommerce-mini-cart__total,
footer.megawp-footer
.megawp-minicart
ul.cart_list
li.woocommerce-mini-cart-item
.megawp-minicart-item-content,
footer.megawp-footer
.megawp-minicart
ul.product_list_widget
li.woocommerce-mini-cart-item
.megawp-minicart-item-content,
footer.megawp-footer .megawp-products-widget .megawp-products-widget-item h5,
footer.megawp-footer .megawp-products-widget .megawp-products-widget-item span,
footer.megawp-footer .woocommerce ul.cart_list li .reviewer,
footer.megawp-footer .woocommerce ul.cart_list li .woocommerce-Price-amount,
footer.megawp-footer .woocommerce ul.cart_list li del,
footer.megawp-footer .woocommerce ul.cart_list li del .woocommerce-Price-amount,
footer.megawp-footer .woocommerce ul.product_list_widget li .reviewer,
footer.megawp-footer .woocommerce ul.product_list_widget li del,
footer.megawp-footer
.woocommerce
ul.product_list_widget
li
del
.woocommerce-Price-amount,
footer.megawp-footer.woocommerce
ul.product_list_widget
li
.woocommerce-Price-amount {
color: #fff;
}
.tf-phased-product-sale-btn-scroll {
width: 100%;
line-height: 30px;
padding: 5px 10px;
font-size: 15px;
margin: 5px 0;
text-align: center;
border-radius: 4px;
display: block;
box-sizing: border-box;
color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
font-weight: 600;
transition-duration: 0.2s;
background-image: linear-gradient(to left, #6c757d, #9da1a5);
}
.tf-phased-product-sale-btn-scroll:hover {
color: #fff;
opacity: 0.85;
}
.tf-phased-product-sale-btn-scroll::before {
margin-right: 0;
margin-left: 5px;
float: right;
border-right: 0;
border-left: 1px solid rgba(0, 0, 0, 0.1);
padding-right: 0;
padding-left: 10px;
font-family: lineicons;
content: "\eb06";
}
.tf-phased-product-levels-wrapper {
margin-bottom: 20px;
}
.tf-phased-product-levels {
padding: 0 20px 20px 20px;
}
.tf-phased-product-levels > li {
display: block;
box-sizing: border-box;
margin-bottom: 15px;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 5px;
width: 100%;
background-color: rgba(0, 0, 0, 0.04);
}
.tf-phased-product-levels li:last-child {
margin-bottom: 0;
}
.tf-phased-product-level-head {
padding: 15px 20px;
}
.tf-phased-product-level-head .tf-phased-product-level-title {
float: right;
line-height: 35px;
font-weight: 600;
}
.tf-phased-product-level-head i {
float: right;
margin-right: 15px;
font-size: 12px;
line-height: 35px;
font-weight: 600;
transition-duration: 0.4s;
}
.tf-phased-product-levels li .tf-phased-product-level-head.opened i {
transform: rotate(180deg);
}
.tf-phased-product-level-head .tf-phased-product-price {
float: left;
font-size: 14px;
line-height: 35px;
font-weight: 600;
}
.tf-phased-product-level-head a {
float: left;
box-sizing: border-box;
margin-right: 15px;
border-radius: 3px;
min-width: 105px;
padding: 0 10px;
background-color: #49c628;
font-size: 13px;
text-align: center;
line-height: 35px;
color: #fff;
} .tf-phased-product-level-head a:hover {
opacity: 0.85;
color: #fff;
}
.tf-phased-product-levels li ul {
display: none;
border-top: 1px solid rgba(0, 0, 0, 0.1);
background-color: #fff;
}
.tf-phased-product-levels li ul li {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
border-top: 1px solid rgba(0, 0, 0, 0.1);
padding: 15px 20px;
}
.tf-phased-product-levels li ul li span:last-child {
margin-right: 10px;
border-radius: 60px;
padding: 5px 20px;
background-color: #ceebff;
color: #3498db;
}
.tf-loading {
position: fixed;
z-index: 1000;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.7);
}
.tf-loading i {
position: absolute;
top: calc(50% - 22px);
left: calc(50% - 22px);
width: 44px;
height: 44px;
color: #fff;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/loading.png);
background-repeat: no-repeat;
background-size: 44px;
background-position: center;
animation: tf-spinner 0.5s linear infinite;
}
@keyframes tf-spinner {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
.home-product-item,
.megawp-product-item {
position: relative;
}
.tf-phased-product-badge {
position: absolute;
top: 10px;
right: 10px;
background: #f24413;
color: #fff;
padding: 5px 10px;
border-radius: 5px;
font-size: 12px;
}
.tf-phased-product-read-more-button {
display: block;
}
.woocommerce-checkout .woocommerce-additional-fields {
display: none;
}
body.megawp-login-register-page-body {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/login-register-background.jpg);
background-position: center;
background-size: cover;
}
.megawp-login-register-page-container {
border-radius: 10px;
border: 2px solid #fff;
}
.megawp-login-register-page-container .digits-form_container {
padding: 0;
width: 100%;
max-width: 100%;
background-color: transparent;
}
.megawp-login-register-page-container .digits-form_heading {
display: none;
}
.megawp-login-register-page-container .digits-form_tab-bar {
justify-content: center;
}
html.wp-dark-mode-active
.megawp-login-register-page-container
.digits-form_input
input:not(.digits_countrycode) {
border-color: #fff;
}
.megawp-login-register-page-container .digits-form_border.digits-row_active,
.megawp-login-register-page-container .digits-form_input textarea:focus,
.megawp-login-register-page-container .digits-form_input input:focus {
border-color: #3e297c !important;
}
.digits2_box .digits-form_input input .digits_otp_input-field {
text-align: right;
}
.megawp-login-register-page-container .digits-form_rememberme {
display: block;
margin-bottom: 30px;
}
.megawp-login-register-page-container
.digits-form_rememberme
.dig_input_wrapper::before {
background-color: #eee;
}
.megawp-login-register-page-container
.digits-form_rememberme
.dig_input_wrapper::before,
.megawp-login-register-page-container
.digits-form_rememberme
.dig_input_wrapper::after {
right: 0;
}
.megawp-login-register-page-container
.digits-form_rememberme
.dig_input_wrapper
> div {
margin-left: 0;
}
.megawp-login-register-page-container .digits-form_button {
display: flex !important;
justify-content: center;
align-items: center;
background-color: #3e297c;
}
.megawp-login-register-page-container .digits-form_button span {
margin: 0 5px;
}
.megawp-login-register-page-container .dig_login_signup_bar {
display: block;
margin-top: 30px;
font-size: 16px;
text-align: center;
}
.megawp-login-register-page-container .dig_login_signup_bar span {
font-weight: 500;
}
.megawp-login-register-page-container .dig_login_signup_bar a {
margin-right: 5px;
font-weight: 700;
}
.megawp-login-register-page-container .aiowps-captcha {
display: none;
}
.megawp-login-register-page-container .digits_site_footer_box {
margin-top: 0;
}  html.wp-dark-mode-active
.megawp-login-register-page-container
.dig_form
.aiowps-captcha-equation {
color: #fff;
}
.tf-question-notification-login-btn {
display: block;
padding: 10px 17px;
color: #fff;
}
.tf-question-notification-login-btn:hover {
color: #fff;
}
.tf-show-comment-raters-btn {
display: inline-block;
margin-top: 10px;
border: 1px solid rgba(0, 0, 0, 0.3);
border-radius: 5px;
padding: 5px 15px;
font-size: 13px;
text-align: center;
}
.tf-comment-raters-wrapper {
position: fixed;
z-index: 10000;
top: 0;
right: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
}
.tf-comment-raters-box {
position: absolute;
top: 50%;
right: 50%;
transform: translate(50%, -50%);
overflow-y: auto;
border-radius: 10px;
box-sizing: border-box;
width: 800px;
max-width: calc(100% - 30px);
max-height: calc(100% - 60px);
padding: 50px 20px 20px;
background-color: #fff;
}
.tf-comment-raters-box .lni-close {
position: absolute;
top: 5px;
left: 5px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
width: 30px;
height: 30px;
background-color: #eb0909;
cursor: pointer;
color: #fff;
}
.tf-comment-raters-box > h3 {
display: block;
margin-bottom: 10px;
font-weight: 800;
}
.tf-comment-raters-box ul {
padding: 0;
list-style: none;
}
.tf-comment-raters-box ul li {
display: flex;
align-items: center;
gap: 15px;
border-bottom: 1px solid rgba(0, 0, 0, 0.12);
padding: 15px 0;
}
.tf-comment-raters-box ul li:last-child {
border-bottom: 0;
padding-bottom: 0;
}
.tf-comment-raters-box ul li img {
border-radius: 100%;
width: auto;
height: 50px;
}
.tf-comment-rater-stars {
display: flex;
align-items: center;
}
.tf-comment-rater-stars i {
color: #dadada;
}
.tf-comment-rater-stars i.active {
color: #d0d003;
}
.tf-comment-rater-register-days {
display: flex;
align-items: center;
gap: 7px;
color: #f44336;
}
.tf-comment-rater-stars i {
width: 25px;
height: 25px;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
}
.tf-star-fill {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgNTExLjk4NyA1MTEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxwYXRoIGZpbGw9IiNmZmMxMDciIGQ9Ik01MTAuNjUyIDE4NS45MDJhMjcuMTU4IDI3LjE1OCAwIDAgMC0yMy40MjUtMTguNzFsLTE0Ny43NzQtMTMuNDE5LTU4LjQzMy0xMzYuNzdDMjc2LjcxIDYuOTggMjY2Ljg5OC40OTQgMjU1Ljk5Ni40OTRzLTIwLjcxNSA2LjQ4Ny0yNS4wMjMgMTYuNTM0bC01OC40MzQgMTM2Ljc0Ni0xNDcuNzk3IDEzLjQxOEEyNy4yMDggMjcuMjA4IDAgMCAwIDEuMzQgMTg1LjkwMmMtMy4zNzEgMTAuMzY4LS4yNTggMjEuNzM5IDcuOTU3IDI4LjkwN2wxMTEuNyA5Ny45Ni0zMi45MzggMTQ1LjA5Yy0yLjQxIDEwLjY2OCAxLjczIDIxLjY5NiAxMC41ODIgMjguMDk0IDQuNzU3IDMuNDM4IDEwLjMyNCA1LjE4OCAxNS45MzcgNS4xODggNC44NCAwIDkuNjQtMS4zMDUgMTMuOTUtMy44ODNsMTI3LjQ2OC03Ni4xODQgMTI3LjQyMiA3Ni4xODRjOS4zMjQgNS42MSAyMS4wNzggNS4wOTcgMjkuOTEtMS4zMDVhMjcuMjIzIDI3LjIyMyAwIDAgMCAxMC41ODItMjguMDk0bC0zMi45MzctMTQ1LjA5IDExMS42OTktOTcuOTRhMjcuMjI0IDI3LjIyNCAwIDAgMCA3Ljk4LTI4LjkyN3ptMCAwIiBvcGFjaXR5PSIxIiBkYXRhLW9yaWdpbmFsPSIjZmZjMTA3IiBjbGFzcz0iIj48L3BhdGg+PC9nPjwvc3ZnPg==");
}
.tf-star-empty {
background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiB4PSIwIiB5PSIwIiB2aWV3Qm94PSIwIDAgNTExLjk4NyA1MTEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPjxwYXRoIGZpbGw9IiNlM2UzZTMiIGQ9Ik01MTAuNjUyIDE4NS45MDJhMjcuMTU4IDI3LjE1OCAwIDAgMC0yMy40MjUtMTguNzFsLTE0Ny43NzQtMTMuNDE5LTU4LjQzMy0xMzYuNzdDMjc2LjcxIDYuOTggMjY2Ljg5OC40OTQgMjU1Ljk5Ni40OTRzLTIwLjcxNSA2LjQ4Ny0yNS4wMjMgMTYuNTM0bC01OC40MzQgMTM2Ljc0Ni0xNDcuNzk3IDEzLjQxOEEyNy4yMDggMjcuMjA4IDAgMCAwIDEuMzQgMTg1LjkwMmMtMy4zNzEgMTAuMzY4LS4yNTggMjEuNzM5IDcuOTU3IDI4LjkwN2wxMTEuNyA5Ny45Ni0zMi45MzggMTQ1LjA5Yy0yLjQxIDEwLjY2OCAxLjczIDIxLjY5NiAxMC41ODIgMjguMDk0IDQuNzU3IDMuNDM4IDEwLjMyNCA1LjE4OCAxNS45MzcgNS4xODggNC44NCAwIDkuNjQtMS4zMDUgMTMuOTUtMy44ODNsMTI3LjQ2OC03Ni4xODQgMTI3LjQyMiA3Ni4xODRjOS4zMjQgNS42MSAyMS4wNzggNS4wOTcgMjkuOTEtMS4zMDVhMjcuMjIzIDI3LjIyMyAwIDAgMCAxMC41ODItMjguMDk0bC0zMi45MzctMTQ1LjA5IDExMS42OTktOTcuOTRhMjcuMjI0IDI3LjIyNCAwIDAgMCA3Ljk4LTI4LjkyN3ptMCAwIiBvcGFjaXR5PSIxIiBkYXRhLW9yaWdpbmFsPSIjZmZjMTA3IiBjbGFzcz0iIj48L3BhdGg+PC9nPjwvc3ZnPg==");
}
.tf-session-performance-scoring {
margin-bottom: 20px;
padding: 25px;
text-align: center;
background-color: rgb(255, 253, 241) !important;
}
.tf-session-performance-scoring h4 {
display: block;
margin-bottom: 20px;
font-size: 20px;
font-weight: 700;
}
.tf-session-performance-scoring-buttons {
display: flex;
justify-content: center;
gap: 20px;
}
.tf-session-performance-scoring-buttons :is(a, span) {
display: block;
}
.tf-session-performance-scoring-buttons a {
margin-bottom: 5px;
}
.tf-session-performance-scoring-buttons a svg {
width: 50px;
height: 50px;
transition: all 0.3s ease;
}
.tf-session-performance-scoring-buttons a:hover svg {
transform: scale(1.1);
}
.tf-session-performance-scoring-buttons span {
line-height: 1;
}
@media screen and (max-width: 768px) {
.tf-session-performance-scoring h4 {
font-size: 18px;
}
.tf-session-performance-scoring-buttons a svg {
width: 40px;
height: 40px;
}
}
.tf-session-rated-performance {
display: block;
border-radius: 15px;
padding: 20px;
background-color: #eee;
text-align: center;
}
.tf-session-rated-performance h4 {
font-size: 15px;
font-weight: 700;
}
.tf-session-rated-performance-subtitle span {
display: block;
}
.tf-session-rated-performance-battery {
position: relative;
display: grid;
grid-template-columns: repeat(5, 1fr);
grid-column-gap: 3px;
margin: 15px auto 0;
border: 4px solid #000;
border-radius: 13px;
box-sizing: border-box;
width: 100%;
height: 100px;
padding: 5px;
}
.tf-session-rated-performance-battery-item {
border-radius: 5px;
background-color: #000;
height: 100%;
}
.tf-session-rated-performance-battery-after {
position: absolute;
top: 50%;
right: 100%;
transform: translateY(-50%);
border-radius: 3px 0 0 3px;
width: 9px;
height: 40px;
background-color: #000;
}
.tf-session-rated-performance p {
margin-top: 15px;
}
.tf-edit-profile-pic {
margin-bottom: 15px;
}
.tf-edit-profile-pic-buttons {
display: flex;
align-items: center;
gap: 10px;
}
.tf-edit-profile-pic-buttons.disable {
opacity: 0.5;
pointer-events: none;
}
.tf-edit-profile-pic-buttons
:is(.tf-edit-profile-pic-btn, .tf-edit-profile-pic-delete-btn) {
flex-grow: 1;
border-radius: 3px;
padding: 5px;
font-size: 13px;
line-height: 25px;
letter-spacing: -0.8px;
text-align: center;
}
.tf-edit-profile-pic-btn {
position: relative;
background-color: #fff;
color: #000;
}
.tf-edit-profile-pic-btn input {
position: absolute;
top: 0;
right: 0;
opacity: 0;
width: 100%;
height: 100%;
cursor: pointer;
}
.tf-edit-profile-pic-delete-btn {
background-color: #f4511d;
color: #fff;
}
.tf-edit-profile-pic-delete-btn:hover {
color: #fff;
}
.tf-edit-profile-pic-progress {
display: none;
overflow: hidden;
margin-top: 15px;
border-radius: 5px;
height: 25px;
direction: ltr;
background-color: #d7d7d7;
}
.tf-edit-profile-pic-progress-bar {
width: 0;
height: 25px;
background-color: #3e297c;
font-size: 11px;
text-align: center;
color: #fff;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 25px 0;
}
to {
background-position: 0 0;
}
}
.tf-edit-profile-pic-progress-bar {
transition-duration: 0.2s;
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
background-image: -webkit-linear-gradient(
45deg,
rgba(255, 255, 255, 0.15) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.15) 50%,
rgba(255, 255, 255, 0.15) 75%,
transparent 75%,
transparent
);
background-image: -o-linear-gradient(
45deg,
rgba(255, 255, 255, 0.15) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.15) 50%,
rgba(255, 255, 255, 0.15) 75%,
transparent 75%,
transparent
);
background-image: linear-gradient(
45deg,
rgba(255, 255, 255, 0.15) 25%,
transparent 25%,
transparent 50%,
rgba(255, 255, 255, 0.15) 50%,
rgba(255, 255, 255, 0.15) 75%,
transparent 75%,
transparent
);
background-size: 25px 25px;
}
.tf-contact-action-btn {
position: fixed;
z-index: 1000;
right: 30px;
bottom: 60px;
}
.tf-contact-action-btn a {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
transition-duration: 0.2s;
border-radius: 100%;
width: 55px;
height: 55px;
font-size: 18px;
}
.tf-contact-action-btn a:hover {
opacity: 0.85;
font-size: 20px;
}
.tf-contact-action-btn-toggle {
z-index: 10;
bottom: 0;
background-color: rgb(48, 176, 67);
color: #fff;
}
.tf-contact-action-btn-toggle:hover {
color: #fff;
}
.tf-contact-action-btn-toggle i {
position: absolute;
top: 50%;
right: 50%;
transform: translate(50%, -50%);
transition-duration: 0.4s;
}
.tf-contact-action-btn.active .tf-contact-action-btn-toggle .lni-comments {
opacity: 0;
transform: rotate(180deg);
}
.tf-contact-action-btn-toggle .lni-close {
opacity: 0;
transform: rotate(180deg);
}
.tf-contact-action-btn.active .tf-contact-action-btn-toggle .lni-close {
opacity: 1;
transform: translate(50%, -50%) rotate(0);
}
.tf-contact-action-btn a:not(.tf-contact-action-btn-toggle) {
z-index: 1;
}
.tf-contact-action-btn-whatsapp {
bottom: 65px;
background-color: #49E670;
color: #fff;
}
.tf-contact-action-btn-whatsapp:hover {
color: #fff;
}
.tf-contact-action-btn-telegram {
bottom: 125px;
background-color: #0084c6;
color: #fff;
}
.tf-contact-action-btn-telegram:hover {
color: #fff;
}
.tf-contact-action-btn:not(.active) a:not(.tf-contact-action-btn-toggle) {
bottom: 0;
opacity: 0;
}  .tf-podcast-title{
color:#1a2b4c!important;
font-size:24px;
font-weight:bold;
margin:0;
line-height:1.5;
}
.tf-podcast-icon{
width:45px;
height:45px;
fill:#1a2b4c;
animation:tf_podcast_float 3s ease-in-out infinite;
}
@keyframes tf_podcast_float{
0%{transform:translateY(0);}
50%{transform:translateY(-4px);}
100%{transform:translateY(0);}
}
@media (max-width:768px){
.tf-podcast-wrapper{
margin:25px 0!important;
}
.tf-podcast-banner{
padding:20px 0;
}
.tf-podcast-content{
flex-direction:column;
text-align:center;
gap:12px;
}
.tf-podcast-title{
font-size:19px;
}
.tf-podcast-icon{
width:38px;
height:38px;
}
} .tf-modern-archives{
display:grid!important;
grid-template-columns:repeat(3,minmax(0,1fr))!important;
gap:25px!important;
align-items:stretch!important;
}
@media (max-width:992px){
.tf-modern-archives{
grid-template-columns:1fr!important;
}
}
.tf-modern-archives .home-archive-posts-cat{
display:flex!important;
flex-direction:column!important;
width:100%!important;
float:none!important;
margin:0!important;
}
.tf-modern-archives .home-archive-posts-item{
display:flex!important;
flex-direction:row!important;
gap:15px!important;
background:#fff!important;
border-radius:12px!important;
box-shadow:0 4px 15px rgba(0,0,0,.04)!important;
padding:12px!important;
margin-bottom:15px!important;
transition:transform .3s ease,box-shadow .3s ease!important;
height:140px!important;
border:1px solid #f0f0f0!important;
box-sizing:border-box!important;
align-items:center!important;
}
.tf-modern-archives .home-archive-posts-item:hover{
transform:translateY(-4px)!important;
box-shadow:0 8px 25px rgba(122,88,235,.15)!important;
border-color:#e5defa!important;
}
.tf-modern-archives .home-archive-posts-item-thumbnail{
width:100px!important;
min-width:100px!important;
height:114px!important;
border-radius:8px!important;
background-size:cover!important;
background-position:center!important;
background-repeat:no-repeat!important;
flex-shrink:0!important;
display:block!important;
float:none!important;
margin:0!important;
}
.tf-modern-archives .home-archive-posts-item > div{
flex:1!important;
display:flex!important;
flex-direction:column!important;
overflow:hidden!important;
height:100%!important;
padding:0!important;
float:none!important;
}
.tf-modern-archives .home-archive-posts-item h3{
font-size:14px!important;
font-weight:bold!important;
margin:0 0 6px 0!important;
line-height:1.5!important;
display:-webkit-box!important;
-webkit-line-clamp:2!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
}
.tf-modern-archives .home-archive-posts-item p{
font-size:12px!important;
color:#666!important;
margin:0!important;
line-height:1.6!important;
display:-webkit-box!important;
-webkit-line-clamp:2!important;
-webkit-box-orient:vertical!important;
overflow:hidden!important;
}
.tf-modern-archives .home-archive-posts-item span{
font-size:11px!important;
color:#999!important;
margin-top:auto!important;
display:flex!important;
align-items:center!important;
gap:5px!important;
}
.tf-modern-archives .home-archive-posts-cat-btn{
margin-top:auto!important;
display:block!important;
text-align:center!important;
background:#7a58eb!important;
color:#fff!important;
border-radius:8px!important;
padding:12px 0!important;
font-weight:bold!important;
transition:all .3s ease!important;
border:none!important;
width:100%!important;
box-sizing:border-box!important;
}
.tf-modern-archives .home-archive-posts-cat-btn:hover{
background:#6344cc!important;
box-shadow:0 4px 15px rgba(122,88,235,.4)!important;
} .tf-podcast-banner{
display:block;
text-decoration:none !important;
background:linear-gradient(90deg,#FFD54F 0%,#FF9800 100%);
width:100%;
padding:25px 0;
box-shadow:0 4px 20px rgba(255,152,0,.25);
transition:all .3s ease;
cursor:pointer;
}
.tf-podcast-banner:hover{
background:linear-gradient(90deg,#FFE082 0%,#FFA726 100%);
box-shadow:0 6px 25px rgba(255,152,0,.4);
}
.tf-podcast-content{
display:flex;
align-items:center;
justify-content:center;
direction:rtl;
gap:18px;
max-width:1200px;
margin:0 auto;
padding:0 20px;
} .tf-modern-buy-btn {
display: block;
width: 100%;
padding: 12px 0;
margin-top: 15px;
background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
color: #ffffff !important;
text-align: center;
border-radius: 8px;
font-size: 16px;
font-weight: bold;
text-decoration: none;
box-shadow: 0 4px 15px rgba(0, 176, 155, 0.3);
transition: all 0.3s ease;
border: none;
}
.tf-modern-buy-btn:hover {
background: linear-gradient(135deg, #009688 0%, #8bc34a 100%);
box-shadow: 0 6px 22px rgba(0, 176, 155, 0.5);
transform: translateY(-3px);
}
.home-product-item {
display: flex;
flex-direction: column;
justify-content: space-between;
} .tf-modern-stats-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 25px;
margin: 60px 0;
width: 100%;
max-width: 100%; box-sizing: border-box; direction: rtl;
}
.tf-modern-stat-box {
background-color: #ffffff !important;
border-radius: 16px;
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
padding: 35px 20px;
text-align: center;
flex: 1 1 220px; box-sizing: border-box; display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #f0f0f0;
}
.tf-modern-stat-box:hover {
transform: translateY(-8px);
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.tf-stat-icon {
width: 45px;
height: 45px;
margin-bottom: 15px;
display: flex;
align-items: center;
justify-content: center;
}
.tf-stat-icon svg {
width: 100%;
height: 100%;
fill: #888888;
transition: fill 0.3s ease; }
.tf-stat-title {
font-size: 17px !important;
color: #666666 !important;
font-weight: 600 !important;
margin: 0 0 15px 0 !important;
line-height: 1.5;
}
.tf-stat-number {
font-size: 46px !important;
font-weight: bold !important;
color: #222222 !important;
direction: ltr;
display: block;
font-family: Tahoma, !important;
transition: color 0.3s ease !important; } .tf-modern-stat-box:hover .tf-stat-icon svg {
fill: #00b09b; 
}
.tf-modern-stat-box:hover .tf-stat-number {
color: #00b09b !important;
} @media (max-width: 768px) {
.tf-modern-stat-box { flex: 1 1 calc(50% - 25px); 
}
}
@media (max-width: 480px) {
.tf-modern-stat-box { flex: 1 1 100%; 
width: 100%;
}
}
@media only screen and (max-width: 480px) {
.home-feel-better .megawp-site-center span {
font-size: 24px; white-space: nowrap; }
} @media screen and (max-width: 768px) {
.home-last-posts-container {
display: none !important;
}
}  .tf-slide-img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
transition: opacity 0.5s ease-in-out;
} @media screen and (max-width: 768px) {
.home-course-box {
display: flex !important;
flex-direction: column !important;
margin-bottom: 25px !important;
height: auto !important; min-height: 0 !important;
}
.home-course-box-thumbnail.tf-responsive-thumb {
width: 100% !important;
height: auto !important;
min-height: 0 !important;
padding: 0 !important; aspect-ratio: 1 / 1 !important; border-radius: 10px 10px 0 0 !important;
}
.home-course-box > div:not(.home-course-box-thumbnail) {
width: 100% !important;
height: auto !important; padding: 20px 15px !important;
box-sizing: border-box !important;
}
} @media screen and (max-width: 768px) { .home-archive-posts.tf-modern-archives {
display: flex !important;
flex-wrap: nowrap !important;
overflow-x: auto !important;
overflow-y: hidden !important;
scroll-snap-type: x mandatory !important; -webkit-overflow-scrolling: touch !important; gap: 15px !important; padding-bottom: 20px !important;
margin-right: 0 !important;
margin-left: 0 !important;
padding-right: 15px !important; scrollbar-width: none !important; } .home-archive-posts.tf-modern-archives::-webkit-scrollbar {
display: none !important;
} .home-archive-posts.tf-modern-archives .home-archive-posts-cat {
flex: 0 0 85% !important; max-width: 85% !important;
scroll-snap-align: center !important; margin-bottom: 0 !important; 
}
}  .home-archive-posts.tf-modern-archives .home-archive-posts-cat h2 {
font-size: 22px !important;
font-weight: 900 !important;
text-align: center !important;
margin-bottom: 25px !important;
padding-bottom: 15px !important;
color: #ffffff !important;
border-bottom: 1px solid rgba(255,255,255,0.1); } .home-archive-posts.tf-modern-archives .home-archive-posts-cat {
border-radius: 16px !important;
padding: 25px 15px !important;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
border: 1px solid rgba(255, 255, 255, 0.03) !important;
} .home-archive-posts.tf-modern-archives .home-archive-posts-cat:nth-child(1) {
background: linear-gradient(160deg, rgba(212, 155, 37, 0.12) 0%, rgba(30, 30, 30, 0.95) 100%) !important;
border-top: 5px solid #d49b25 !important;
} .home-archive-posts.tf-modern-archives .home-archive-posts-cat:nth-child(2) {
background: linear-gradient(160deg, rgba(142, 68, 173, 0.12) 0%, rgba(30, 30, 30, 0.95) 100%) !important;
border-top: 5px solid #8e44ad !important;
} .home-archive-posts.tf-modern-archives .home-archive-posts-cat:nth-child(3) {
background: linear-gradient(160deg, rgba(39, 174, 96, 0.12) 0%, rgba(30, 30, 30, 0.95) 100%) !important;
border-top: 5px solid #27ae60 !important;
} @media screen and (max-width: 768px) { .home-products-list {
display: flex !important;
flex-wrap: nowrap !important;
overflow-x: auto !important;
overflow-y: hidden !important;
scroll-snap-type: x mandatory !important;
-webkit-overflow-scrolling: touch !important;
gap: 15px !important;
padding-bottom: 20px !important;
margin-right: 0 !important;
margin-left: 0 !important;
scrollbar-width: none !important; }
.home-products-list::-webkit-scrollbar {
display: none !important; }
.home-product-item {
flex: 0 0 75% !important; max-width: 75% !important;
scroll-snap-align: center !important;
margin-bottom: 0 !important;
} .home-product-item-price .amount { font-weight: 900 !important; font-size: 17px !important; }
.home-product-item-price .woocommerce-Price-currencySymbol {
color: #d49b25 !important; font-weight: bold !important;
font-size: 14px !important;
margin-right: 3px !important; 
} .tf-modern-stats-container {
display: grid !important;
grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important;
padding: 10px !important;
}
.tf-modern-stat-box {
padding: 15px 10px !important; margin: 0 !important;
min-height: auto !important;
}
.tf-stat-icon svg {
width: 35px !important;
height: 35px !important;
margin-bottom: 8px !important;
}
.tf-stat-number {
font-size: 22px !important; 
}
.tf-stat-title {
font-size: 12px !important;
line-height: 1.4 !important;
margin-bottom: 5px !important;
}
} @media screen and (max-width: 768px) { .home-report-users {
display: flex !important;
flex-wrap: nowrap !important;
overflow-x: auto !important;
overflow-y: hidden !important;
scroll-snap-type: x mandatory !important;
-webkit-overflow-scrolling: touch !important;
gap: 15px !important;
padding-bottom: 15px !important;
margin-right: 0 !important;
margin-left: 0 !important;
padding-right: 15px !important; padding-left: 15px !important; scrollbar-width: none !important; } .home-report-users::-webkit-scrollbar {
display: none !important;
} .home-report-users > div {
flex: 0 0 85% !important; max-width: 85% !important;
scroll-snap-align: center !important;
margin-bottom: 0 !important; }
}  .home-products {
margin-bottom: 40px !important;
} #tf-stats-section {
margin-top: 0 !important;
margin-bottom: 40px !important;
} .home-student-experiences-slider {
margin-top: 0 !important;
margin-bottom: 40px !important;
} .tf-podcast-wrapper {
margin-top: 0 !important;
margin-bottom: 40px !important;
} @media screen and (max-width: 768px) { .home-report-users ul li,
.home-report-users ol li,
.home-report-users .buddypress-members li,
.home-report-users [class*="leaderboard"] li,
.home-report-users [class*="item"] {
padding-top: 1px !important; padding-bottom: 1px !important; margin-bottom: 1px !important; } .home-report-users table tr td,
.home-report-users table tr th {
padding: 8px 5px !important;
} .home-report-users img.avatar {
width: 35px !important;
height: 35px !important;
}
} @media screen and (min-width: 769px) { .home-report-users ul li,
.home-report-users ol li,
.home-report-users [class*="item"] {
padding-top: 2px !important;    
padding-bottom: 2px !important; 
margin-bottom: 2px !important;  
display: flex !important;
align-items: center !important;
white-space: nowrap !important;
} .home-report-users img.avatar {
width: 25px !important;
height: 25px !important;
border-radius: 50% !important; object-fit: cover !important; min-width: 25px !important;    
margin-left: 8px !important;
} .home-report-users .user-name, 
.home-report-users a, 
.home-report-users span {
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
max-width: 120px;
} .home-report-users .tf-report-box-subtitle {
display: inline-block !important; text-align: center !important;
margin: 5px auto 15px auto !important;
font-size: 13px !important;
color: #666 !important;
line-height: 1.4 !important; white-space: nowrap !important; 
width: auto !important; padding: 0 10px !important;
max-width: 95% !important; } .home-report-users {
text-align: center !important;
} .home-report-users {
text-align: center !important;
}
} .tf-labs-section {
margin: 40px auto;
padding: 20px;
}
.tf-labs-title {
text-align: center;
margin-bottom: 30px !important;
font-weight: 700 !important;
color: #333;
}
.tf-labs-grid {
display: grid;
grid-template-columns: 1fr 1fr; gap: 20px;
}
.tf-lab-box {
background: #fff;
padding: 30px;
border-radius: 15px;
text-align: center;
text-decoration: none !important;
border: 1px solid #e0e0e0;
transition: transform 0.3s ease, box-shadow 0.3s ease;
display: flex;
flex-direction: column;
align-items: center;
}
.tf-lab-box:hover {
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
border-color: #3498db;
}
.tf-lab-icon {
font-size: 40px;
margin-bottom: 15px;
}
.tf-lab-box h3 {
font-size: 18px !important;
margin: 5px 0 !important;
color: #000 !important;
}
.tf-lab-box p {
font-size: 14px !important;
color: #666 !important;
margin: 0 !important;
} @media screen and (max-width: 768px) {
.tf-labs-grid {
grid-template-columns: 1fr;
}
} .tf-lab-box {
background: #fdfdfd; border: 1px solid #e0e0e0;  } .tf-lab-icon {
font-size: 45px; 
margin-bottom: 15px;
display: block;
} .wq-quiz-trivia .wq_triviaQuizTimerCtr {
position: relative !important;
top: auto !important;
left: auto !important;
right: auto !important;
margin-bottom: 15px !important; display: inline-block !important;
z-index: 10 !important;
} .wq-quiz-wrapper .wq_quizProgressBarCtr {
clear: both !important;
margin-top: 10px !important;
} .highlight-quiz-box {
animation: pulse-glow-quiz 2.5s infinite alternate;
border-radius: 8px; }
@keyframes pulse-glow-quiz {
0% {
box-shadow: 0 0 5px rgba(66, 185, 131, 0.2);
}
100% {
box-shadow: 0 0 20px rgba(66, 185, 131, 0.8);
}
} html, body {
width: 100%;
max-width: 100vw;
overflow-x: hidden !important;
position: relative;
} .elementor-page, 
.site-main, 
#content {
overflow-x: hidden !important;
}
@media only screen and (max-width: 768px) {
.megawp-back-to-top {
display: none !important;
}
} #tf-sticky-timer-bar {
display: none;
}
@media (max-width: 991px) { body {
padding-bottom: 60px !important;
}
#tf-sticky-timer-bar {
display: block !important;
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(135deg, #2c3e50, #1a252f);
color: #fff;
padding: 12px 15px;
box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
z-index: 99999;
direction: rtl;
border-top: 2px solid #f2c94c;
} #tf-sticky-timer-bar,
.tf-timer-content,
.tf-timer-label,
#tf-live-counter {
font-family: "iranyekan", "IRANSans", "IRANSansWeb", "Yekan Bakh", "Vazir", "Vazirmatn", Tahoma, sans-serif !important;
}
.tf-timer-content {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 15px; font-weight: 600;
}
.tf-timer-content i {
color: #f2c94c;
font-size: 19px;
font-family: "LineIcons" !important; }
.tf-timer-label {
color: #ddd;
}
#tf-live-counter {
color: #f2c94c;
font-size: 15px;
font-weight: 700;
letter-spacing: 0.5px;
}
}.woocommerce .woocommerce-ordering select, .woocommerce .megawp-default-single-product-top-box div.product form.cart .variations select, .megawp-course-summery-box table.variations select, select[name=wc-wallet-transaction-details_length] {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/double-arrow.svg);
background-position: right 10px center;
background-repeat: no-repeat;
background-size: 10px 10px;
padding-right: 30px;
}
.megawp-default-single-product-top-box {
margin-bottom: 20px;
padding: 20px;
}
.megawp-default-single-product-bottom-box {
background-color: #fff;
width: 100%;
box-sizing: border-box;
word-wrap: break-word;
display: block;
border-radius: 0 !important;
margin-bottom: 20px;
}
.megawp-single-product-simple-box {
padding: 20px;
}
.megawp-default-single-product-bottom-box .megawp-post-content {
padding: 0;
}
.woocommerce-error, .woocommerce-info, .woocommerce-message {
line-height: 40px;
margin-bottom: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
}
.woocommerce-error {
border: none;
background-color: #FFE3CF;
color: #FF6A00;
border-radius: 5px;
}
.woocommerce-error:before {
color: #FF6A00;
font-family: lineicons;
content: '\eaa3';
font-weight: 600;
}
.woocommerce-info {
border: none;
background-color: #CEEBFF;
color: #3498db;
border-radius: 5px;
}
.woocommerce-info:before {
color: #3498db;
font-family: lineicons;
content: '\eaa4';
}
.woocommerce-message {
border: none;
background-color: #D7F2E1;
color: #2ABA5F;
border-radius: 5px;
}
.woocommerce-message:before {
color: #2ABA5F;
font-family: lineicons;
content: '\eaa2';
font-weight: 600;
}
.woocommerce-message.tf-session-scored-msg {
background-color: #FFF1DC;
color: #000;
}
.woocommerce-message.tf-session-scored-msg::before {
content: '\eba4';
color: #FFB84B;
}
.woocommerce-password-strength {
border-radius: 5px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
text-align: center;
line-height: 30px;
padding: 7px;
border: none;
font-size: 13px;
margin-top: 15px;
}
.woocommerce-password-strength.short {
background-color: #FDE3E6;
color: #f44336;
}
.woocommerce-password-strength.bad {
background-color: #FFE3CF;
color: #FF6A00;
}
.woocommerce-password-strength.good {
background-color: #CEEBFF;
color: #3498db;
}
.woocommerce-password-strength.strong {
background-color: #D7F2E1;
color: #2ABA5F;
}
.woocommerce .star-rating, .woocommerce p.stars a {
color: #f39c12;
}
.woocommerce table.shop_table, #add_payment_method .cart-collaterals .cart_totals table, .woocommerce-cart .cart-collaterals .cart_totals table, .woocommerce-checkout .cart-collaterals .cart_totals table {
border: 1px solid rgba(0, 0, 0, 0.07);
border-collapse: collapse;
}
.woocommerce table.shop_table td, .woocommerce table.shop_table th, #add_payment_method table.cart td, #add_payment_method table.cart th, .woocommerce-cart table.cart td, .woocommerce-cart table.cart th, .woocommerce-checkout table.cart td, .woocommerce-checkout table.cart th {
border: 1px solid rgba(0, 0, 0, 0.07);
}
.pswp {
z-index: 9999996 !important;
}
.woocommerce .megawp-content #review_form #respond p:first-child{
margin-top: 9px;
}
.woocommerce .megawp-content #review_form #respond p{
margin: 0;
line-height: 28px;
}
.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button, .woocommerce #content input.button.alt, .woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce-page #content input.button.alt, .woocommerce-page #respond input#submit.alt, .woocommerce-page a.button.alt, .woocommerce-page button.button.alt, .woocommerce-page input.button.alt, .woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
color: #fff;
transition-duration: 0.2s;
}
.woocommerce #content input.button, .woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce-page #content input.button, .woocommerce-page #respond input#submit, .woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button, .woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled] {
font-size: 13px;
line-height: 32px;
padding: 5px 10px;
}
.woocommerce #content input.button:hover, .woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce-page #content input.button:hover, .woocommerce-page #respond input#submit:hover, .woocommerce-page a.button:hover, .woocommerce-page button.button:hover, .woocommerce-page input.button:hover, .woocommerce #content input.button.alt:hover, .woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce-page #content input.button.alt:hover, .woocommerce-page #respond input#submit.alt:hover, .woocommerce-page a.button.alt:hover, .woocommerce-page button.button.alt:hover, .woocommerce-page input.button.alt:hover {
opacity: 0.85;
color: #fff;
}
.woocommerce #respond input#submit.disabled:hover, .woocommerce #respond input#submit:disabled:hover, .woocommerce #respond input#submit:disabled[disabled]:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled:hover, .woocommerce a.button:disabled[disabled]:hover, .woocommerce button.button.disabled:hover, .woocommerce button.button:disabled:hover, .woocommerce button.button:disabled[disabled]:hover, .woocommerce input.button.disabled:hover, .woocommerce input.button:disabled:hover, .woocommerce input.button:disabled[disabled]:hover {
opacity: .5;
color: #fff;
}
.woocommerce .megawp-breadcrumbs .woocommerce-breadcrumb {
margin: 0;
font-size: 14px;
color: #485460;
}
.woocommerce .megawp-breadcrumbs .woocommerce-breadcrumb a:first-child:before {
font-family: lineicons;
content: '\eae7';
font-weight: 300;
float: left;
margin-right: 5px;
}
.woocommerce .megawp-modern-breadcrumbs .megawp-breadcrumbs .woocommerce-breadcrumb {
font-size: 17px;
}
.woocommerce .megawp-default-single-product-top-box div.product .product_title {
border-bottom: 1px solid #dfe6e9;
line-height: 2em;
padding: 5px 0;
margin-bottom: 15px;
}
.woocommerce .megawp-default-single-product-top-box div.product .woocommerce-product-rating {
margin-bottom: 15px;
}
.woocommerce .megawp-default-single-product-top-box div.product p.price, .woocommerce .megawp-default-single-product-top-box div.product span.price {
color: #4CAF50;
margin-bottom: 15px;
display: block;
}
.woocommerce .megawp-default-single-product-top-box div.product p.price del, .woocommerce .megawp-default-single-product-top-box div.product span.price del {
color: #FF4500;
font-size: 14px;
font-weight: 500;
}
.woocommerce .megawp-default-single-product-top-box div.product p.price ins, .woocommerce .megawp-default-single-product-top-box div.product span.price ins {
text-decoration: none;
}
.woocommerce .megawp-default-single-product-top-box div.product p.price ins:before, .woocommerce .megawp-default-single-product-top-box div.product span.price ins:before {
font-family: lineicons;
content: '\eb38';
margin: 0 5px;
float: left;
}
.woocommerce .megawp-default-single-product-top-box .woocommerce-product-details__short-description {
margin-bottom: 15px;
color: #485460;
line-height: 28px;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart {
background-color: #f5f5f5;
border: 1px solid #e4e4e4;
padding: 15px;
box-sizing: border-box;
border-radius: 5px;
margin-bottom: 15px;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart .variations {
margin-top: 0;
margin-bottom: 15px;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart .variations label {
line-height: 42px;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart .variations select {
background-color: #fff;
}
.woocommerce .megawp-default-single-product-top-box div.product p.stock {
margin-bottom: 15px;
color: #FF4500;
}
.woocommerce .megawp-default-single-product-top-box div.product p.out-of-stock {
width: 100%;
line-height: 30px;
padding: 5px 10px;
font-size: 13px;
text-align: center;
border-radius: 4px;
display: block;
box-sizing: border-box;
background-color: #F4D9C8;
color: #ff6a00;
transition-duration: 0.2s;
}
.woocommerce .megawp-default-single-product-top-box div.product p.out-of-stock:before {
font-family: lineicons;
content: '\eb6e';
margin-right: 5px;
border-right: 1px solid rgba(0, 0, 0, .1);
padding-right: 10px;
}
.woocommerce .megawp-default-single-product-top-box .single_variation {
box-sizing: border-box;
padding: 10px;
border: 1px dashed #95a5a6;
border-radius: 5px;
margin-bottom: 15px;
background-color: #fff;
}
.woocommerce .megawp-default-single-product-top-box .single_variation p.stock {
margin-bottom: 0 !important;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart div.quantity {
width: 100%;
display: block;
margin-bottom: 15px;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart div.quantity.hidden {
display: none;
}
.woocommerce .megawp-default-single-product-top-box .quantity .qty {
width: 15%;
background-color: #fff;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart .button {
width: 100%;
display: block;
line-height: 30px;
font-size: 15px;
}
.woocommerce .megawp-default-single-product-top-box div.product form.cart .button:before {
font-family: lineicons;
content: '\ea7c';
margin-right: 5px;
}
.woocommerce .megawp-default-single-product-top-box .product_meta {
color: #9e9e9e;
}
.woocommerce .megawp-default-single-product-top-box .product_meta .sku_wrapper {
display: block;
}
.woocommerce .megawp-default-single-product-top-box .product_meta .sku_wrapper:before {
font-family: lineicons;
content: '\eb3a';
margin-right: 5px;
}
.woocommerce .megawp-default-single-product-top-box .product_meta {
margin-top: 10px;
}
.woocommerce .megawp-default-single-product-top-box .product_meta .posted_in {
display: block;
}
.woocommerce .megawp-default-single-product-top-box .product_meta .posted_in:before {
font-family: lineicons;
content: '\ead2';
margin-right: 5px;
}
.woocommerce .megawp-default-single-product-top-box .product_meta .tagged_as {
display: block;
}
.woocommerce .megawp-default-single-product-top-box .product_meta .tagged_as:before {
font-family: lineicons;
content: '\ebb5';
margin-right: 5px;
}
.woocommerce .megawp-default-single-product-top-box .onsale {
background-image: linear-gradient(to left, #F97794, #623AA2);
border-radius: 0;
top: 20px;
left: -10px;
padding: 0;
color: #fff;
height: 30px;
line-height: 30px;
min-height: 30px;
}
.woocommerce .megawp-default-single-product-top-box .onsale em {
width: 100%;
float: left;
padding: 0 10px;
box-sizing: border-box;
position: relative;
height: 30px;
}
.woocommerce .megawp-default-single-product-top-box .onsale em:before {
content: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/onsale-badge-before.png);
position: absolute;
top: -17px;
left: 0;
}
.megawp-default-single-product-bottom-box .woocommerce-tabs ul.wc-tabs {
background-color: #f5f5f5;
border-bottom: 1px solid #dfe6e9;
}
.megawp-default-single-product-bottom-box .woocommerce-tabs ul.wc-tabs li {
float: left;
}
.megawp-default-single-product-bottom-box .woocommerce-tabs ul.wc-tabs li a {
padding: 0 15px;
border-top: 2px solid #fff;
border-right: 1px solid #dfe6e9;
background-color: #fff;
line-height: 40px;
float: right;
color: #485460;
}
.megawp-default-single-product-bottom-box .woocommerce-tabs ul.wc-tabs li.description_tab > a:before {
font-family: lineicons;
content: '\eb40';
}
.megawp-default-single-product-bottom-box .woocommerce-tabs ul.wc-tabs li.additional_information_tab > a:before {
font-family: lineicons;
content: '\eb16';
}
.megawp-default-single-product-bottom-box .woocommerce-tabs ul.wc-tabs li.reviews_tab > a:before {
font-family: lineicons;
content: '\ea74';
}
.woocommerce table.shop_attributes, .woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td {
border-style: solid;
}
.woocommerce .megawp-default-single-product-bottom-box table.shop_attributes td {
padding: 0.8em .5em;
}
.woocommerce .megawp-default-single-product-bottom-box table.shop_attributes td p {
padding: 0 10px;
line-height: 30px;
}
.megawp-course-comment-box {
margin-bottom: 20px;
}
.megawp-course-comment-box .megawp-single-product-simple-box {
padding-top: 0;
}
.woocommerce .megawp-product-comments .comment-respond .comment-reply-title, .woocommerce .megawp-product-comments .comment-respond .logged-in-as, .woocommerce .megawp-product-comments .comment-respond .comment-notes, .woocommerce .megawp-product-comments .comment-respond label[for=rating], .woocommerce .megawp-product-comments .comment-respond label[for=comment], .woocommerce .megawp-product-comments .woocommerce-Reviews-title {
line-height: 2.33em;
}
.woocommerce .megawp-product-comments .woocommerce-Reviews-title {
margin-bottom: 20px;
display: block;
box-sizing: border-box;
padding: 0 20px;
border-radius: 55px;
line-height: 30px;
float: left;
font-size: 12px;
color: #fff;
}
.woocommerce .megawp-product-comments .woocommerce-Reviews-title span {
font-size: 16px;
font-weight: 700;
}
.woocommerce #reviews #comments ol.commentlist #respond{
padding: 0;
border: none;
border-radius: 0;
margin: 40px 0 0 0;
}
.woocommerce #reviews #comments ol.commentlist .children #respond{
margin-top: 20px;
}
.woocommerce .megawp-product-comments #review_form #respond p.must-log-in, .woocommerce .megawp-product-comments .woocommerce-verification-required, .woocommerce .megawp-course-comment-box .no-comments {
background-color: #dfe6e9;
display: block;
width: 100%;
box-sizing: border-box;
padding: 30px 20px;
border-radius: 5px;
color: #485460;
margin-bottom: 20px;
}
.woocommerce .megawp-product-comments p.stars {
font-size: 18px;
}
.woocommerce .megawp-product-comments #review_form #respond textarea {
width: 100%;
display: block;
height: 260px;
max-width: 100%;
min-height: 70px;
padding: 5px 10px;
border: 1px solid #ddd;
box-shadow: 0 5px 7px rgba(45, 52, 54, .15);
background-color: #fff;
margin-bottom: 20px;
font-size: 15px;
border-radius: 5px;
}
.woocommerce .megawp-product-comments .comment-form .comment-form-author, .woocommerce .megawp-product-comments .comment-form .comment-form-email, .woocommerce .megawp-product-comments .comment-form .comment-form-url {
float: left;
width: calc(50% - 10px);
margin: 0 5px !important;
}
.woocommerce .megawp-product-comments .comment-form .comment-form-author label, .woocommerce .megawp-product-comments .comment-form .comment-form-email label, .woocommerce .megawp-product-comments .comment-form .comment-form-url label {
float: left;
display: block;
line-height: 35px;
}
.woocommerce .megawp-product-comments .comment-form .comment-form-author input, .woocommerce .megawp-product-comments .comment-form .comment-form-email input, .woocommerce .megawp-product-comments .comment-form .comment-form-url input {
max-width: 100%;
padding: 2px 10px;
border: 1px solid #ddd;
box-shadow: 0 5px 7px rgba(45, 52, 54, .15);
background-color: #fff;
margin-bottom: 20px;
font-size: 15px;
box-sizing: border-box;
float: left;
display: block;
width: 100%;
line-height: 35px;
}
.woocommerce #review_form #respond textarea:focus, .woocommerce .megawp-product-comments .comment-form .comment-form-author input:focus, .woocommerce .megawp-product-comments .comment-form .comment-form-email input:focus, .woocommerce .megawp-product-comments .comment-form .comment-form-url input:focus {
border-color: #6ab04c;
}
.woocommerce .megawp-product-comments .comment-form .comment-form-cookies-consent {
display: block;
width: 100%;
margin: 20px 0 !important;
float: left !important;
}
.woocommerce .megawp-product-comments #review_form #respond .form-submit {
margin: 20px 0;
display: block;
width: 100%;
float: left;
}
.woocommerce .megawp-product-comments #review_form #respond .form-submit input {
line-height: 45px;
display: block;
margin: 0 auto;
text-align: center;
border-radius: 55px;
font-size: 15px;
padding: 0 30px;
box-shadow: 0 5px 7px rgba(45, 52, 54, .15);
transition-duration: 0.2s;
}
.woocommerce .megawp-product-comments #reviews #comments ol.commentlist {
margin-top: 60px;
}
.woocommerce .megawp-product-comments .woocommerce-noreviews {
border: 1px dashed #bdbdbd;
display: block;
width: 100%;
box-sizing: border-box;
padding: 15px 20px;
border-radius: 5px;
color: #485460;
}
.woocommerce .megawp-product-comments nav.woocommerce-pagination {
display: block;
text-align: center;
margin: 20px auto 0;
min-height: 34px;
font-size: 14px;
}
.woocommerce .megawp-product-comments nav.woocommerce-pagination ul {
border: none;
}
.woocommerce .megawp-product-comments nav.woocommerce-pagination li {
overflow: unset;
border: none;
}
.woocommerce .megawp-product-comments nav.woocommerce-pagination li a, .woocommerce .megawp-product-comments nav.woocommerce-pagination li span {
padding: 0 17px;
text-align: center;
line-height: 34px;
box-sizing: border-box;
border-radius: 5px;
color: #fff;
transition-duration: 0.2s;
margin: 0 4px 10px;
box-shadow: 0 7px 15px rgba(53, 73, 92, .3);
border: none;
}
.woocommerce .megawp-product-comments nav.woocommerce-pagination li span {
color: #fff !important;
}
.woocommerce .megawp-product-comments nav.woocommerce-pagination li a:hover, .woocommerce .megawp-product-comments nav.woocommerce-pagination li a:focus {
opacity: 0.85;
color: #fff;
}
.megawp-products-widget .megawp-products-widget-item {
width: 100%;
padding: 15px 0;
box-sizing: border-box;
border-bottom: 1px solid #dfe6e9;
display: grid;
grid-template-columns: 70px auto;
grid-column-gap: 10px;
}
.megawp-products-widget .megawp-products-widget-item:first-child {
padding-top: 0;
}
.megawp-products-widget .megawp-products-widget-item:last-child {
border-bottom: none;
padding-bottom: 0;
}
.megawp-products-widget .megawp-products-widget-thumbnail {
width: 70px;
height: 70px;
border-radius: 5px;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
}
.megawp-products-widget .megawp-products-widget-item h5 {
font-size: 13px;
color: #485460;
display: block;
line-height: 1.9em;
transition-duration: 0.2s;
}
.megawp-products-widget .megawp-products-widget-item span {
font-size: 11px;
line-height: 1.7em;
color: #9e9e9e;
}
.megawp-products-widget .megawp-products-widget-item .megawp-products-widget-price ins {
text-decoration: none;
}
.megawp-cart-empty-image {
display: block;
margin: 0 auto;
}
.woocommerce a.button.megawp-back-to-shop-cart-empty {
margin: 0 auto;
display: block;
text-align: center;
}
.woocommerce a.remove {
margin: 0 auto;
color: #FF4500 !important;
}
.woocommerce a.remove:hover {
background-color: transparent;
color: #FF4500 !important;
}
#add_payment_method table.cart td.actions .coupon .input-text, .woocommerce-cart table.cart td.actions .coupon .input-text, .woocommerce-checkout table.cart td.actions .coupon .input-text {
padding: 5px 10px;
}
.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals {
width: 100%;
}
#add_payment_method .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-checkout .wc-proceed-to-checkout a.checkout-button {
padding: 5px 10px;
font-size: 15px;
}
body.megawp-body .woocommerce-form-login {
border-color: #e4e4e4;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
border: none;
background-color: #D7F2E1;
color: #2ABA5F;
border-radius: 5px;
}
.woocommerce-form-coupon-toggle .woocommerce-info:before {
color: #2ABA5F;
content: '\f02b';
font-weight: 600;
}
.woocommerce-form-coupon-toggle .woocommerce-info a {
color: #2ABA5F;
}
.woocommerce form.checkout_coupon {
background-color: #f5f5f5;
border: 1px solid #e4e4e4;
}
.woocommerce form.checkout_coupon p {
margin-bottom: 10px;
}
.woocommerce form.checkout_coupon .form-row {
display: block;
width: 100%;
box-sizing: border-box;
}
body.megawp-body form.woocommerce-checkout .col-1, body.megawp-body form.woocommerce-checkout .col-2 {
width: 100%;
display: block;
}
body.megawp-body form.woocommerce-checkout .col-1 {
margin-bottom: 10px;
}
.woocommerce form .woocommerce-billing-fields .form-row, .woocommerce form .woocommerce-additional-fields .form-row {
margin-bottom: 10px;
}
.woocommerce form .form-row label {
margin-bottom: 5px;
}
.woocommerce form .form-row input.input-text {
padding: 5px 10px;
line-height: 30px;
}
.woocommerce form .form-row input.input-text[readonly]{
background-color: #e0e0e0;
}
body.megawp-body form.woocommerce-checkout .col-2 textarea {
min-height: 100px;
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
background-color: #ecf0f1;
}
.woocommerce ul.woocommerce-thankyou-order-details {
background-color: #D7F2E1;
color: #2ABA5F;
padding: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
}
.woocommerce ul.woocommerce-thankyou-order-details li {
border-color: #2ABA5F;
}
.woocommerce ul.woocommerce-thankyou-order-details li strong {
margin-top: 5px;
}
.woocommerce .woocommerce-thankyou-order-received:before {
font-family: lineicons;
content: '\eaa2';
margin-right: 5px;
}
.woocommerce .woocommerce-customer-details address {
box-sizing: border-box;
background-color: rgba(0, 0, 0, 0.03);
padding: 20px;
border: 1px dashed rgba(0, 0, 0, 0.1);
color: #757575;
font-size: 13px;
}
.woocommerce .woocommerce-MyAccount-navigation ul {
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
border: 1px solid #dfe6e9;
background-color: #fff;
}
.woocommerce .woocommerce-MyAccount-navigation li {
list-style: none;
}
.woocommerce .woocommerce-MyAccount-navigation li a {
border-bottom: 1px solid #dfe6e9;
padding: 10px 15px;
color: #485460;
display: block;
transition-duration: 0.2s;
}
.woocommerce .woocommerce-MyAccount-navigation li.is-active a {
border-left: 3px solid;
}
.woocommerce .woocommerce-MyAccount-navigation li a:hover {
background-color: #F4F4F4;
}
.woocommerce .woocommerce-MyAccount-navigation li:last-child a {
border-bottom: 0;
}
.woocommerce .woocommerce-MyAccount-navigation li a:before {
margin-right: 5px;
}
.megawp-woocommerce-myaccount-dashboard-box {
line-height: 30px;
margin-bottom: 20px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
border: none;
background-color: #FFE3CF;
color: #FF6A00;
border-radius: 5px;
padding: 15px;
box-sizing: border-box;
}
.megawp-woocommerce-edit-account-em, .woocommerce .woocommerce-password-hint {
display: block;
font-size: 12px;
color: #999898;
font-style: unset;
}
fieldset.megawp-woocommerce-edit-account-password-box {
margin-top: 15px;
}
legend.megawp-woocommerce-edit-account-password-title {
font-weight: 600;
margin-bottom: 5px;
}
legend.megawp-woocommerce-edit-account-password-title:before {
content: "\eb2c";
font-family: lineicons;
margin-right: 5px;
float: left;
font-weight: 600;
transition-duration: 0.2s;
color: #27ae60;
}
.woocommerce .woocommerce-Button[name=save_account_details], .woocommerce .button[name=save_address] {
width: calc(100% - 6px);
margin: 15px auto 0;
text-align: center;
box-sizing: border-box;
display: block;
}
.woocommerce .col-1.woocommerce-Address, .woocommerce .col-2.woocommerce-Address {
box-sizing: border-box;
background-color: rgba(0, 0, 0, 0.03);
padding: 20px;
border: 1px dashed rgba(0, 0, 0, 0.1);
color: #757575;
font-size: 13px;
}
.woocommerce .col-1.woocommerce-Address a, .woocommerce .col-2.woocommerce-Address a {
background-color: rgba(0, 0, 0, .07);
color: #485460;
padding: 0 10px;
border-radius: 3px;
transition-duration: 0.2s;
}
.woocommerce .col-1.woocommerce-Address a:hover, .woocommerce .col-2.woocommerce-Address a:hover {
color: #485460;
opacity: 0.85;
}
.megawp-content .megawp-single-page-box .megawp-single-course-title {
margin-bottom: 10px;
}
.megawp-course-single-product-sidebar-box, .megawp-course-single-product-mobile-box {
padding: 20px;
margin-bottom: 20px;
}
.megawp-content .megawp-course-without-sidebar-des-title {
margin-bottom: 10px;
display: block;
font-weight: 500;
font-size: 16px;
line-height: 30px;
border-bottom: 1px dashed #D1D1D1;
padding: 15px 20px;
}
.megawp-content .megawp-course-without-sidebar-des-title i {
background-image: linear-gradient(45deg, #FEC163, #DE4313);
color: #fff;
width: 30px;
height: 30px;
font-size: 15px;
text-align: center;
line-height: 30px;
border-radius: 3px;
margin-right: 7px;
float: left;
}
.megawp-content .megawp-single-page-box .megawp-top-course-meta {
padding: 0 20px;
width: 100%;
display: block;
box-sizing: border-box;
}
.megawp-content .megawp-single-page-box .megawp-top-course-meta span {
float: left;
margin-right: 25px;
padding-left: 23px;
background-repeat: no-repeat;
background-size: 18px;
background-position: center left;
font-size: 13px;
line-height: 40px;
}
.megawp-content .megawp-single-page-box .megawp-top-course-meta .course-page-category {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/category.svg);
}
.megawp-content .megawp-single-page-box .megawp-top-course-meta .course-page-publish-date {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/publish-date.svg);
}
.megawp-content .megawp-single-page-box .megawp-top-course-meta .course-page-comment-number {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/comment.svg);
}
.megawp-content .megawp-single-page-box .megawp-top-course-meta .course-page-update-date {
background-image: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/images/postmeta-icon/update.svg);
}
.megawp-course-student-notice {
background-color: #D7F2E1;
color: #2ABA5F;
border-radius: 5px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
text-align: center;
line-height: 30px;
padding: 10px;
margin: 0 0 20px;
}
.megawp-course-page-rating-display-area {
margin-bottom: 15px;
border-bottom: 1px dashed #dfe6e9;
padding-bottom: 10px;
line-height: 40px;
}
.megawp-course-summery-box .megawp-course-page-rating-stars {
padding: 10px 0;
float: left;
}
.megawp-course-summery-box .woocommerce-product-rating .star-rating {
margin-top: 0;
cursor: pointer;
font-size: 20px;
}
.megawp-course-summery-box .megawp-course-page-rating-empty-stars:before {
font-family: lineicons;
content: "\eba6\eba6\eba6\eba6\eba6";
cursor: pointer;
font-size: 20px;
float: left;
color: #d3ced2;
}
.megawp-course-summery-box .megawp-course-page-rating-count {
float: right;
line-height: 40px;
}
.megawp-course-summery-box .megawp-course-page-rating-count span:first-child {
font-size: 20px;
font-weight: 700;
line-height: 40px;
float: left;
margin-right: 5px;
}
.megawp-course-summery-box .megawp-course-page-rating-count span:last-child {
color: #bababa;
font-size: 13px;
line-height: 40px;
float: right;
}
.megawp-course-summery-box p.price, .megawp-course-summery-box span.price {
margin-bottom: 15px;
display: block;
font-size: 20px;
font-weight: 600;
border: 1px solid #dfe6e9;
padding: 20px 80px 20px 10px;
border-radius: 5px;
background-repeat: no-repeat;
background-size: 45px;
background-position: center right 20px;
background-color: #fff;
}
.megawp-course-summery-box p.price del, .megawp-course-summery-box span.price del {
color: #FF4500;
opacity: .5;
font-size: 14px;
font-weight: 500;
display: inline-block;
}
.megawp-course-summery-box p.price ins, .megawp-course-summery-box span.price ins {
text-decoration: none;
display: inline-block;
}
.megawp-course-summery-box p.price ins:before, .megawp-course-summery-box span.price ins:before {
font-family: lineicons;
content: '\eb38';
margin: 0 5px;
float: left;
}
.megawp-course-summery-box .woocommerce-product-details__short-description {
font-size: 12px;
margin-bottom: 15px;
color: #9e9e9e;
text-align: center;
}
.megawp-course-summery-box table.variations {
margin-top: 0;
margin-bottom: 15px;
}
.megawp-course-summery-box table.variations select {
display: block;
width: 100%;
}
.megawp-course-summery-box table.variations .reset_variations {
display: block;
text-align: center;
margin-top: 0.8em;
}
.megawp-course-summery-box p.stock {
margin-bottom: 15px;
color: #FF4500;
text-align: center;
display: block;
}
.megawp-course-summery-box p.out-of-stock {
width: 100%;
line-height: 30px;
padding: 5px 10px;
font-size: 13px;
text-align: center;
border-radius: 4px;
display: block;
box-sizing: border-box;
background-color: #ff6a0030;
color: #ff6a00;
transition-duration: 0.2s;
}
.megawp-course-summery-box p.out-of-stock:before {
font-family: lineicons;
content: '\eb6e';
margin-right: 5px;
border-right: 1px solid rgba(0, 0, 0, .1);
padding-right: 10px;
}
.megawp-course-summery-box .quantity .qty {
display: none;
margin-bottom: 15px;
}
.megawp-course-summery-box form.cart .button {
width: 100%;
margin: 5px 0;
font-size: 15px;
font-weight: 600;
box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.megawp-course-summery-box form.cart .button:before {
font-family: lineicons;
content: '\ea7c';
margin-right: 5px;
border-right: 1px solid rgba(0, 0, 0, .1);
padding-right: 10px;
float: left;
}
.megawp-course-short-block-info {
margin-bottom: 20px;
}
.megawp-course-short-block-info div {
margin-bottom: 10px;
}
.megawp-course-short-block-info div:last-child {
margin-bottom: 0;
}
.megawp-course-short-block-info .megawp-course-student-count, .megawp-course-short-block-info .megawp-course-copyright {
display: block;
width: 100%;
padding: 15px;
line-height: 30px;
box-sizing: border-box;
text-align: center;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
}
.megawp-course-short-block-info .megawp-course-student-count i, .megawp-course-short-block-info .megawp-course-copyright i {
font-size: 25px;
float: left;
margin-right: 7px;
line-height: 30px;
}
.megawp-course-information-list {
line-height: 35px;
border: 1px dashed #dfe6e9;
border-radius: 5px;
overflow: hidden;
}
.megawp-course-information-list li {
padding: 5px 10px;
}
.megawp-course-information-list li:nth-child(even) {
background-color: #f5f5f5;
}
.megawp-course-information-list li i {
float: left;
margin-right: 7px;
font-size: 18px;
line-height: 35px;
}
.megawp-course-progress-area {
margin-top: 20px;
}
.megawp-course-progress-area h4 {
margin-bottom: 5px;
font-size: 13px;
line-height: 30px;
}
.megawp-course-progress-area h4 i {
float: left;
margin-right: 5px;
line-height: 30px;
}
.megawp-course-progress-area .megawp-course-progress-status-container {
width: 100%;
height: 15px;
background-color: #e5e9eb;
overflow: hidden;
border-radius: 2px;
}
.megawp-course-progress-area .megawp-course-progress-status-bar {
height: 15px;
background-image: linear-gradient(to right, #70F570, #49C628);
position: relative;
overflow: hidden;
}
.megawp-course-progress-area span {
font-size: 12px;
color: #9e9e9e;
line-height: 30px;
}
.megawp-course-progress-area span:first-child {
float: left;
}
.megawp-course-progress-area span:last-child {
float: right;
}
.megawp-general-box .yith-wcwl-add-button {
font-size: 12px;
display: block;
text-align: center;
}
.megawp-general-box .yith-wcwl-add-button i {
font-weight: 400;
}
.megawp-general-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .feedback, .megawp-general-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse .feedback {
font-size: 12px;
display: block;
text-align: center;
margin-bottom: 5px;
}
.megawp-general-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse .feedback i {
font-weight: 400;
}
.megawp-general-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a, .megawp-general-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a {
font-size: 12px;
display: block;
text-align: center;
background-color: #485460;
color: #fff;
padding: 0 10px;
line-height: 30px;
margin: 0 auto;
border-radius: 4px;
transition-duration: 0.2s;
}
.megawp-general-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:hover, .megawp-general-box .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:hover {
opacity: 0.85;
}
.yith-wcwl-icon, .yith-wcwl-share a i {
font-family: fontawesome !important;
}
.yith-wcwl-add-button a, .yith-wcwl-add-button a:hover {
color: #485460;
}
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
line-height: 42px;
margin-bottom: 20px;
}
.woocommerce .woocommerce-ordering, .woocommerce-page .woocommerce-ordering {
margin-bottom: 20px;
}
.megawp-modern1-products article {
margin-top: 40px;
}
.megawp-modern1-products .megawp-product-item {
position: relative;
box-sizing: border-box;
transition-duration: 0.2s;
width: 100%;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-thumbnail {
width: 90%;
display: block;
margin-right: auto;
margin-left: auto;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
position: relative;
top: -40px;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-content {
margin-top: -40px;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-thumbnail img {
width: 100%;
max-width: 100%;
height: auto;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-content .megawp-modern1-products-title, .megawp-modern1-products .megawp-product-item .megawp-modern1-products-content .megawp-modern1-products-excerpt {
width: 100%;
display: block;
float: left;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-price {
float: left;
display: block;
width: 100%;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-price ins {
text-decoration: none;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-price del {
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-rating .star-rating {
margin-right: auto;
margin-left: auto;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-rating .star-rating-empty:before {
font-family: lineicons;
content: "\eba6\eba6\eba6\eba6\eba6";
display: block;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-content .megawp-modern1-products-meta span i {
font-size: 1.25em;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-content .megawp-modern1-products-meta span:nth-child(1) {
float: left;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-content .megawp-modern1-products-meta span:nth-child(2) {
float: right;
}
.megawp-modern1-products .megawp-product-item .megawp-products-bottom-empty-area {
visibility: hidden;
width: 100%;
display: block;
margin-bottom: 15px;
float: left;
}
.megawp-modern1-products .megawp-product-item .megawp-modern1-products-read-more-button {
width: 90%;
display: block;
text-align: center;
padding: 0 10px;
box-sizing: border-box;
position: absolute;
bottom: 15px;
right: 5%;
left: 5%;
transition: background-image 0.2s;
}
.megawp-modern2-products .megawp-product-item {
overflow: hidden;
position: relative;
box-sizing: border-box;
transition-duration: 0.2s;
width: 100%;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-thumbnail {
width: 100%;
display: block;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-thumbnail img {
width: 100%;
max-width: 100%;
height: auto;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-content .megawp-modern2-products-title, .megawp-modern2-products .megawp-product-item .megawp-modern2-products-content .megawp-modern2-products-excerpt {
width: 100%;
display: block;
float: left;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-content .megawp-modern2-products-meta span i {
font-size: 1.25em;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-content .megawp-modern2-products-meta span:nth-child(1) {
float: left;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-content .megawp-modern2-products-meta span:nth-child(2) {
float: right;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area {
width: 100%;
border-top: 1px dashed;
box-sizing: border-box;
padding: 10px 20px;
display: table;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area .megawp-modern2-products-price-area {
display: table-cell;
vertical-align: middle;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area .megawp-modern2-products-price {
box-sizing: border-box;
font-size: 14px;
font-weight: 600;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area .megawp-modern2-products-price ins {
text-decoration: none;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area .megawp-modern2-products-price del {
font-size: 11px;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area .megawp-modern2-products-rating {
display: block;
margin-top: 5px;
box-sizing: border-box;
height: 17px;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area .star-rating-empty:before {
font-family: lineicons;
content: "\eba6\eba6\eba6\eba6\eba6";
line-height: 14px;
font-size: 14px;
float: left;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area .megawp-modern2-products-rating .star-rating {
font-size: 14px;
float: left;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area a.megawp-modern2-products-read-more-button {
float: right;
line-height: 21px;
font-size: 11px;
padding: 6px 10px;
margin: 7px 7px 7px 0;
text-align: center;
transition: background-image 0.2s;
}
.megawp-modern2-products .megawp-product-item .megawp-modern2-products-bottom-area a.megawp-modern2-products-read-more-button i {
float: left;
line-height: 21px;
margin-right: 5px;
}
.megawp-archive-products {
box-sizing: border-box;
width: 100%;
display: grid;
}
.megawp-archive-modern1-products .megawp-product-item, .megawp-archive-modern2-products .megawp-product-item {
box-shadow: 0 10px 20px rgba(0, 0, 0, .09);
}
.megawp-archive-modern1-products .megawp-product-item:hover, .megawp-archive-modern2-products .megawp-product-item:hover {
box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}
.megawp-archive-modern1-products .megawp-product-item .megawp-modern1-products-content .megawp-modern1-products-meta, .megawp-archive-modern2-products .megawp-product-item .megawp-modern2-products-content .megawp-modern2-products-meta {
margin-bottom: 15px;
display: block;
}
.megawp-related-products {
margin-bottom: 20px;
padding-bottom: 30px;
}
.megawp-related-products .megawp-related-products-items {
padding: 0 20px;
box-sizing: border-box;
}
.megawp-related-products article {
margin-top: 50px;
padding: 10px;
}
.megawp-related-products .megawp-product-item {
transition-duration: 0.2s;
position: relative;
box-sizing: border-box;
width: 100%;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
border-radius: 10px;
}
.megawp-related-products .megawp-product-item:hover {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
}
.megawp-related-products .megawp-product-item .megawp-related-products-thumbnail {
position: relative;
overflow: hidden;
width: 90%;
margin: 0 auto 15px;
display: block;
top: -40px;
height: 230px;
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
border-radius: 10px;
}
.megawp-related-products .megawp-product-item .megawp-related-products-thumbnail img {
width: 100%;
height: auto;
transition-duration: 0.2s;
}
.megawp-related-products .megawp-product-item .megawp-related-products-content {
margin-top: -40px;
padding: 0 5%;
}
.megawp-related-products .megawp-product-item .megawp-related-products-title a {
float: left;
width: 100%;
display: block;
text-align: center;
margin-bottom: 15px;
color: #485460;
font-size: 14px;
}
.megawp-related-products .megawp-product-item .megawp-related-products-price {
text-align: center;
display: block;
margin-bottom: 15px;
color: #4CAF50;
}
.megawp-related-products .megawp-product-item .megawp-related-products-price ins {
text-decoration: none;
}
.megawp-related-products .megawp-product-item .megawp-related-products-price del {
color: #FF4500;
font-size: 12px;
}
.megawp-related-products .megawp-product-item .megawp-related-products-read-more-button {
width: 90%;
display: block;
text-align: center;
padding: 0 10px;
box-sizing: border-box;
position: absolute;
bottom: 15px;
right: 5%;
left: 5%;
line-height: 35px;
background-color: #eeeeee;
border-radius: 3px;
color: #485460;
font-size: 12px;
}
.megawp-related-products .megawp-product-item:hover .megawp-related-products-read-more-button {
color: #fff;
}
.megawp-related-products .megawp-product-item .megawp-related-products-bottom-space {
width: 100%;
display: block;
float: left;
opacity: 0;
visibility: hidden;
padding-bottom: 15px;
line-height: 35px;
}
.megawp-related-products-items .owl-nav {
visibility: hidden;
opacity: 0;
transition-duration: 0.2s;
}
.megawp-related-products-items:hover .owl-nav {
visibility: visible;
opacity: 1;
}
.megawp-related-products-items .owl-nav .owl-next {
left: 15px;
top: calc(50% - 12px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.megawp-related-products-items .owl-nav .owl-prev {
right: 15px;
top: calc(50% - 12px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.megawp-related-products-items .owl-nav .owl-next span, .megawp-related-products-items .owl-nav .owl-prev span {
font-size: 36px;
width: 36px;
height: 36px;
display: inline-block;
line-height: 36px;
text-align: center;
border-radius: 3px;
transition-duration: 0.2s;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, .15);
}
.megawp-related-products-items .owl-nav .owl-next span:hover, .megawp-related-products-items .owl-nav .owl-prev span:hover {
opacity: 0.85;
}
.megawp-related-products-items .owl-dots {
width: 100%;
justify-content: center;
display: flex;
margin: 30px 0 0;
flex-wrap: wrap;
}
.megawp-related-products-items .owl-dots .owl-dot {
width: 10px;
height: 10px;
border-radius: 100%;
margin: 0 8px;
transition-duration: 0.2s;
background-color: #485460;
}
.megawp-related-products-items .owl-dots .owl-dot.active {
width: 19px;
border-radius: 50px;
}
.megawp-you-must-buy {
padding: 20px;
}
.megawp-you-must-buy span {
text-align: center;
display: block;
font-size: 16px;
margin-bottom: 20px;
}
.megawp-you-must-buy a {
display: block;
padding: 5px 15px;
margin: 0 auto;
line-height: 30px;
text-align: center;
color: #fff;
border-radius: 4px;
transition-duration: 0.2s;
}
.megawp-you-must-buy a:hover {
color: #fff;
opacity: 0.85;
}
.megawp-visit-session-button {
margin: 10px auto 20px;
display: block;
transition-duration: 0.2s;
width: 100%;
}
.megawp-single-session-buttons {
width: 100%;
margin-bottom: 20px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-column-gap: 10px;
}
.megawp-single-session-buttons a {
float: left;
text-align: center;
border: 2px solid;
line-height: 30px;
padding: 5px 10px;
box-sizing: border-box;
border-radius: 5px;
transition-duration: 0.2s;
}
.megawp-single-session-buttons a:hover {
opacity: 0.85;
}
.megawp-single-session-buttons a.megawp-single-session-video-download-button {
color: #fff;
}
.megawp-single-session-buttons a.megawp-single-session-video-download-button:hover {
color: #fff;
}
.megawp-visit-session-button:hover {
opacity: 0.85;
}
.megawp-visit-session-button-disable {
padding: 5px 10px;
line-height: 32px;
margin: 10px auto 20px;
display: block;
color: #fff;
transition-duration: 0.2s;
cursor: no-drop;
opacity: 0.5;
text-align: center;
border-radius: 4px;
background-color: #47ad35;
}
.megawp-course-progress-box {
padding: 15px;
margin-bottom: 20px;
display: grid;
grid-row-gap: 15px;
}
.megawp-single-session-sidebar .megawp-course-progress-area {
margin-top: 0;
}
.megawp-single-session-sidebar .megawp-user-course-progress-area {
}
.megawp-single-session-sidebar .megawp-user-course-progress-area .megawp-course-progress-status-bar {
background-image: linear-gradient(to right, #00EAFF, #3C8CE7);
}
.megawp-single-session-nav-chapter-area {
margin-bottom: 20px;
}
.megawp-single-session-nav-chapter-area .megawp-single-session-nav-chapter-title {
display: block;
margin-bottom: 10px;
padding: 10px;
font-weight: 500;
font-style: normal;
font-size: 16px;
border: 1px solid #e0e0e0;
cursor: pointer;
}
.megawp-single-session-nav-chapter-area .megawp-single-session-nav-chapter-title h4{
float: right;
line-height: 25px;
font-size: 16px;
}
.megawp-single-session-nav-chapter-area .megawp-single-session-nav-chapter-title i {
color: #27ae60;
float: left;
line-height: 25px;
transition-duration: 0.2s;
}
.megawp-single-sessions-part{
display: none;
}
.megawp-single-session-nav-item {
margin-bottom: 10px;
overflow: hidden;
transition-duration: 0.2s;
}
.megawp-single-session-nav-item:hover {
box-shadow: 0 10px 20px rgba(0, 0, 0, .09);
}
.megawp-single-session-nav-item-top-area {
padding: 10px 15px;
line-height: 30px;
}
.megawp-single-session-nav-item-top-area span {
float: left;
color: #485460;
}
.megawp-single-session-nav-item-top-area i.megawp-session-viewed-status {
float: right;
line-height: 30px;
font-size: 20px;
}
.megawp-single-session-nav-item-top-area i.megawp-session-performance-scoring-status {
float: left;
margin-left: 5px;
line-height: 30px;
font-size: 20px;
color: #e4ac05;
}
.megawp-single-session-nav-item-top-area i.megawp-session-checked {
color: #27ae60;
}
.megawp-single-session-nav-item-top-area i.megawp-session-not-checked {
color: #e0e0e0;
}
.megawp-single-session-nav-item-top-area i.megawp-session-locked {
color: #485460;
}
.megawp-single-session-nav-item-bottom-area {
border-top: 1px dashed #dfe6e9;
}
.megawp-single-session-nav-item-bottom-area p {
font-size: 12px;
color: #9e9e9e;
display: block;
padding: 15px;
}
.megawp-single-session-nav-item-bottom-area span {
color: #fff;
padding: 0 5px;
box-sizing: border-box;
font-size: 12px;
line-height: 30px;
width: 100%;
display: block;
text-align: center;
}
.megawp-session-comment-box .megawp-single-pages-boxes-title{
margin-bottom: 0;
}
.megawp-session-comment-box .arrow-down{
float: left;
line-height: 36px;
display: none;
transition-duration: 0.2s;
}
.megawp-session-comment-box .arrow-down.up {
transform: rotate(180deg);
}
.megawp-session-comment-box .megawp-comments-box-content{
margin-top: 20px;
}
@media screen and (max-width: 1100px){
.megawp-session-comment-box .megawp-single-pages-boxes-title{
cursor: pointer;
}
.megawp-session-comment-box .arrow-down{
display: unset;
}
.megawp-session-comment-box .megawp-comments-box-content{
display: none;
}
}
@media screen and (min-width: 1100px){
.megawp-session-comment-box .megawp-comments-box-content{
display: block!important;
}
}
.megawp-minicart .woocommerce-mini-cart {
border-bottom: 1px solid;
}
.megawp-minicart-container .megawp-minicart .woocommerce-mini-cart, aside .megawp-minicart .woocommerce-mini-cart {
border-color: #dfe6e9;
}
.megawp-minicart-container ul.cart_list li.woocommerce-mini-cart-item a.remove_from_cart_button {
margin: 0;
float: right;
text-align: center;
line-height: 20px;
width: unset;
font-size: 20px;
}
.woocommerce .widget_shopping_cart .cart_list li a.remove, .woocommerce.widget_shopping_cart .cart_list li a.remove {
right: 0;
margin: 0;
width: 100%;
text-align: right;
font-size: 20px;
line-height: 20px;
}
.megawp-minicart ul.cart_list li.woocommerce-mini-cart-item, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item {
border: none;
border-bottom: 1px dashed;
padding: 0;
}
.megawp-minicart-container .megawp-minicart ul.cart_list li.woocommerce-mini-cart-item, .megawp-minicart-container .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item, aside .megawp-minicart ul.cart_list li.woocommerce-mini-cart-item, aside .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item {
border-color: #dfe6e9;
}
.megawp-minicart .megawp-minicart-item {
display: grid !important;
grid-template-columns: 60px auto;
grid-column-gap: 10px;
width: calc(100% - 24px);
}
.megawp-minicart ul.cart_list li.woocommerce-mini-cart-item:last-child, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item:last-child {
border: none;
}
.megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item img, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item img {
margin: 0;
}
.megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item-content, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item-content {
font-size: 12px;
line-height: 22px;
text-align: left;
font-weight: 400;
}
.megawp-minicart-container .megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item-content, .megawp-minicart-container .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item-content, aside .megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item-content, aside .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item-content {
color: #485460;
}
.megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item-content .megawp-minicart-product-title, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item-content .megawp-minicart-product-title, .megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item-content .quantity, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item-content .quantity {
display: block;
width: 100%;
}
.megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item-content .megawp-minicart-product-title, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item-content .megawp-minicart-product-title {
}
.megawp-minicart ul.cart_list li.woocommerce-mini-cart-item .megawp-minicart-item-content .quantity .woocommerce-Price-amount, .megawp-minicart ul.product_list_widget li.woocommerce-mini-cart-item .megawp-minicart-item-content .quantity .woocommerce-Price-amount {
font-size: 12px;
}
.megawp-minicart-container ul.cart_list li .woocommerce-Price-amount, .megawp-minicart-container ul.product_list_widget li .woocommerce-Price-amount {
color: #4CAF50;
}
.megawp-minicart-container ul.cart_list li del .woocommerce-Price-amount, .megawp-minicart-container ul.product_list_widget li del .woocommerce-Price-amount, .megawp-minicart-container ul.cart_list li del, .megawp-minicart-container ul.product_list_widget li del {
color: #FF4500;
}
.megawp-minicart .woocommerce-mini-cart__total {
font-size: 13px;
padding: 10px 0 !important;
line-height: 30px;
border: none !important;
}
.megawp-minicart-container .megawp-minicart .woocommerce-mini-cart__total, aside .megawp-minicart .woocommerce-mini-cart__total {
color: #485460;
}
.megawp-minicart .woocommerce-mini-cart__total:after {
content: '';
display: block;
width: 100%;
clear: both;
}
.megawp-minicart .woocommerce-mini-cart__total strong {
float: left;
}
.megawp-minicart .woocommerce-mini-cart__total .woocommerce-Price-amount {
float: right;
}
.megawp-minicart .woocommerce-mini-cart__buttons a {
display: block;
width: 100%;
box-sizing: border-box;
padding: 3px 10px !important;
text-align: center;
color: #fff;
}
.woocommerce .megawp-minicart .woocommerce-mini-cart__buttons a:hover {
color: #fff;
}
.megawp-minicart .woocommerce-mini-cart__buttons a:first-child {
background-color: #bdbdbd;
}
.megawp-minicart .woocommerce-mini-cart__buttons a:first-child:hover {
background-color: #bdbdbd;
}
.megawp-minicart .megawp-minicart-empty-button {
display: block;
width: 100%;
box-sizing: border-box;
padding: 3px 10px;
text-align: center;
background-color: #bdbdbd;
line-height: 30px;
font-size: 13px;
color: #fff;
border-radius: 4px;
}
.woocommerce .megawp-minicart .megawp-minicart-empty-button:hover {
opacity: 0.85;
color: #fff;
}
.megawp-minicart .woocommerce-mini-cart__buttons a.checkout {
margin-top: 7px;
margin-bottom: 0;
}
.megawp-minicart .woocommerce-mini-cart__empty-message {
font-size: 13px;
margin-bottom: 10px;
text-align: center;
color: #485460;
}
.woocommerce table.my_account_orders .woocommerce-button.cancel {
margin: 0 5px;
}
.woo-wallet-my-wallet-container {
border-radius: 5px;
}
.woo-wallet-my-wallet-container .woo-wallet-sidebar {
background-color: #ecf0f1 !important;
}
.woo-wallet-sidebar-heading a {
color: #485460;
}
.woo-wallet-sidebar-heading a:hover {
color: #485460;
}
.woo-wallet-sidebar ul li.card {
border-radius: 10px !important;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04) !important;
border: 1px solid #dfe6e9;
}
.woo-wallet-sidebar ul li.card:hover {
box-shadow: 0 10px 15px rgba(0, 0, 0, .08) !important;
}
.woo-wallet-sidebar ul li.card a {
box-sizing: border-box;
color: #485460;
}
.woo-wallet-sidebar ul li.card a p {
font-size: 13px;
line-height: 25px;
}
.woo-wallet-sidebar ul li.card a .dashicons {
margin-bottom: 10px;
}
.woo-wallet-content-h3 {
margin-bottom: 0 !important;
line-height: 30px !important;
}
.woo-wallet-transactions-items li {
list-style: none;
}
#wc-wallet-transaction-details_length, #wc-wallet-transaction-details_filter {
margin-bottom: 20px;
}
#wc-wallet-transaction-details_length {
padding-top: 30px;
}
#wc-wallet-transaction-details_length select {
margin: 0 5px;
}
#wc-wallet-transaction-details_filter input {
display: block;
}
#wc-wallet-transaction-details thead th {
border-color: #dfe6e9;
}
#wc-wallet-transaction-details.no-footer {
border-color: #dfe6e9;
}
#wc-wallet-transaction-details td:before {
background-color: #485460;
border: none;
}
#wc-wallet-transaction-details_paginate {
margin-top: 10px;
}
#wc-wallet-transaction-details_paginate a {
padding: 0 10px;
}
#wc-wallet-transaction-details_paginate .paginate_button.current {
background-color: #dfe6e9;
background-image: unset;
border: none;
}
#wc-wallet-transaction-details_info {
margin-top: 10px;
padding: 0;
}
.wishlist_table td.product-name a {
text-align: center;
display: block;
}
.wishlist_table .product-add-to-cart .dateadded {
margin-bottom: 10px;
}
.wishlist_table .product-add-to-cart a {
width: 100%;
padding: 0 !important;
box-sizing: border-box;
line-height: 30px !important;
}
.wishlist_table .product-price .woocommerce-Price-amount {
color: #4CAF50;
}
.wishlist_table .product-price ins {
text-decoration: none;
}
.wishlist_table .product-price del, .wishlist_table .product-price del span {
color: #FF4500 !important;
}
.yith_wcwl_wishlist_footer .yith-wcwl-share {
width: 100%;
}
.yith-wcwl-share li a {
line-height: 32px;
font-weight: 400;
}
#yith-wcwl-popup-message {
box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
border: 1px solid rgba(0, 0, 0, .2);
border-radius: 10px;
font-weight: 400;
}.megawp-post-content .elementor-toc__list-wrapper, .megawp-post-content .elementor-toc__list-wrapper {
list-style: none;
}
.megawp-el-classic-posts-default, .megawp-el-list-posts-default {
display: grid;
}
.megawp-el-classic-posts-carousel article {
padding: 10px;
box-sizing: border-box;
}
.megawp-el-classic-posts-carousel .owl-nav {
visibility: hidden;
opacity: 0;
transition-duration: 0.2s;
}
.megawp-el-classic-posts-carousel:hover .owl-nav {
visibility: visible;
opacity: 1;
}
.megawp-el-classic-posts-carousel .owl-nav .owl-next {
left: 25px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}
.megawp-el-classic-posts-carousel .owl-nav .owl-prev {
right: 25px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}
.megawp-el-classic-posts-carousel .owl-nav .owl-next span, .megawp-el-classic-posts-carousel .owl-nav .owl-prev span {
font-size: 36px;
width: 36px;
height: 36px;
display: inline-block;
line-height: 36px;
text-align: center;
border-radius: 3px;
transition-duration: 0.2s;
}
.megawp-el-classic-posts-carousel .owl-nav .owl-next span:hover, .megawp-el-classic-posts-carousel .owl-nav .owl-prev span:hover {
opacity: 0.85;
}
.megawp-el-classic-posts-carousel .owl-dots {
width: 100%;
justify-content: center;
display: flex;
flex-wrap: wrap;
margin: 36px 0;
}
.megawp-el-classic-posts-carousel .owl-dots .owl-dot {
width: 10px;
height: 10px;
border-radius: 100%;
margin: 0 8px;
transition-duration: 0.2s;
}
.megawp-el-classic-posts-carousel .owl-dots .owl-dot.active {
width: 19px;
border-radius: 50px;
}
.megawp-el-list-posts-carousel article {
padding: 10px;
box-sizing: border-box;
}
.megawp-el-list-posts-carousel .owl-nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 25px;
}
.megawp-el-list-posts-carousel .owl-nav .owl-next {
margin: 0 5px;
}
.megawp-el-list-posts-carousel .owl-nav .owl-prev {
margin: 0 5px;
}
.megawp-el-list-posts-carousel .owl-nav .owl-next span, .megawp-el-list-posts-carousel .owl-nav .owl-prev span {
font-size: 30px;
width: 45px;
height: 30px;
color: #fff;
display: inline-block;
line-height: 30px;
text-align: center;
border-radius: 3px;
transition-duration: 0.2s;
}
.megawp-el-list-posts-carousel .owl-nav .owl-next span:hover, .megawp-el-list-posts-carousel .owl-nav .owl-prev span:hover {
opacity: 0.85;
}
.megawp-el-modern1-products-carousel article {
padding: 10px;
box-sizing: border-box;
}
.megawp-el-modern1-products-carousel .owl-nav {
visibility: hidden;
opacity: 0;
transition-duration: 0.2s;
}
.megawp-el-modern1-products-carousel:hover .owl-nav {
visibility: visible;
opacity: 1;
}
.megawp-el-modern1-products-carousel .owl-nav .owl-next {
left: 25px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}
.megawp-el-modern1-products-carousel .owl-nav .owl-prev {
right: 25px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}
.megawp-el-modern1-products-carousel .owl-nav .owl-next span, .megawp-el-modern1-products-carousel .owl-nav .owl-prev span {
font-size: 36px;
width: 36px;
height: 36px;
display: inline-block;
line-height: 36px;
text-align: center;
border-radius: 3px;
transition-duration: 0.2s;
}
.megawp-el-modern1-products-carousel .owl-nav .owl-next span:hover, .megawp-el-modern1-products-carousel .owl-nav .owl-prev span:hover {
opacity: 0.85;
}
.megawp-el-modern1-products-carousel .owl-dots {
width: 100%;
justify-content: center;
display: flex;
flex-wrap: wrap;
margin: 36px 0;
}
.megawp-el-modern1-products-carousel .owl-dots .owl-dot {
width: 10px;
height: 10px;
border-radius: 100%;
margin: 0 8px;
transition-duration: 0.2s;
}
.megawp-el-modern1-products-carousel .owl-dots .owl-dot.active {
width: 19px;
border-radius: 50px;
}
.megawp-el-user-courses .megawp-user-course-item {
position: relative;
box-sizing: border-box;
transition-duration: 0.2s;
width: 100%;
overflow: hidden;
}
.megawp-el-user-courses .megawp-user-course-item .megawp-user-courses-thumbnail {
width: 100%;
display: block;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
.megawp-el-user-courses .megawp-user-course-item .megawp-user-courses-thumbnail img {
width: 100%;
max-width: 100%;
height: auto;
}
.megawp-el-user-courses .megawp-user-course-item .megawp-user-courses-content .megawp-user-courses-title, .megawp-el-user-courses .megawp-user-course-item .megawp-user-courses-content .megawp-user-courses-excerpt {
width: 100%;
display: block;
float: left;
}
.megawp-el-user-courses .megawp-user-course-item .megawp-user-courses-bottom-empty-area {
visibility: hidden;
width: 100%;
display: block;
}
.megawp-el-user-courses .megawp-user-course-item .megawp-user-courses-read-more-button {
width: 100%;
display: block;
position: absolute;
bottom: 0;
text-align: center;
transition: background-image 0.2s;
left: 0;
box-sizing: border-box;
}
.megawp-el-user-courses-default {
display: grid;
}
.megawp-el-user-courses-carousel article {
padding: 10px;
box-sizing: border-box;
}
.megawp-el-user-courses-carousel .owl-nav {
visibility: hidden;
opacity: 0;
transition-duration: 0.2s;
}
.megawp-el-user-courses-carousel:hover .owl-nav {
visibility: visible;
opacity: 1;
}
.megawp-el-user-courses-carousel .owl-nav .owl-next {
left: 25px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}
.megawp-el-user-courses-carousel .owl-nav .owl-prev {
right: 25px;
top: calc(50% - 18px);
position: absolute;
box-shadow: 0 0 10px rgba(0, 0, 0, .2)
}
.megawp-el-user-courses-carousel .owl-nav .owl-next span, .megawp-el-user-courses-carousel .owl-nav .owl-prev span {
font-size: 36px;
width: 36px;
height: 36px;
display: inline-block;
line-height: 36px;
text-align: center;
border-radius: 3px;
transition-duration: 0.2s;
}
.megawp-el-user-courses-carousel .owl-nav .owl-next span:hover, .megawp-el-user-courses-carousel .owl-nav .owl-prev span:hover {
opacity: 0.85;
}
.megawp-el-user-courses-carousel .owl-dots {
width: 100%;
justify-content: center;
display: flex;
flex-wrap: wrap;
margin: 36px 0;
}
.megawp-el-user-courses-carousel .owl-dots .owl-dot {
width: 10px;
height: 10px;
border-radius: 100%;
margin: 0 8px;
transition-duration: 0.2s;
}
.megawp-el-user-courses-carousel .owl-dots .owl-dot.active {
width: 19px;
border-radius: 50px;
}
.megawp-user-no-courses {
background-color: #ecf0f1;
padding: 30px;
display: block;
color: #485460;
box-sizing: border-box;
text-align: center;
font-size: 16px;
line-height: 30px;
border-radius: 5px;
border: 1px solid rgba(0, 0, 0, .1);
}
.megawp-user-no-courses i {
display: block;
font-size: 70px;
text-align: center;
margin-bottom: 15px;
}
.megawp-user-no-courses span {
display: block;
width: 100%;
margin-bottom: 15px;
}
.megawp-user-no-courses a {
color: #485460;
padding: 2px 0;
font-size: 14px;
width: 40%;
display: block;
margin: 0 auto;
border-radius: 3px;
transition-duration: 0.2s;
background-color: rgba(0, 0, 0, .05);
}
.megawp-user-no-courses a:hover {
color: #485460;
}.tml .tml-alerts .tml-error {
border: none;
background-color: #FFE3CF;
color: #FF6A00;
border-radius: 5px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
text-align: center;
line-height: 30px;
padding: 10px;
margin: 0 0 20px;
font-weight: 600;
}
.tml .tml-alerts .tml-message {
border: none;
background-color: #CEEBFF;
color: #3498db;
border-radius: 5px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
text-align: center;
line-height: 30px;
padding: 10px;
margin: 0 0 20px;
font-weight: 600;
}
.tml .tml-alerts .tml-success, .tml .tml-alerts .tml-action-confirmaction .success {
border: none;
background-color: #D7F2E1;
color: #2ABA5F;
border-radius: 5px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
text-align: center;
line-height: 30px;
padding: 10px;
margin: 0 0 20px;
font-weight: 600;
}
.tml #pass-strength-result.short, .tml #pass-strength-result.bad, .tml #pass-strength-result.good, .tml #pass-strength-result.strong {
border-radius: 5px;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
text-align: center;
line-height: 30px;
padding: 10px;
border: none;
}
.tml #pass-strength-result.short {
background-color: #FDE3E6;
color: #f44336;
}
.tml #pass-strength-result.bad {
background-color: #FFE3CF;
color: #FF6A00;
}
.tml #pass-strength-result.good {
background-color: #CEEBFF;
color: #3498db;
}
.tml #pass-strength-result.strong {
background-color: #D7F2E1;
color: #2ABA5F;
}
.tml .tml-links li {
margin-bottom: 5px;
}
.tml .tml-links li:last-child {
margin-bottom: 0;
}
.tml .description.indicator-hint {
display: block;
margin-top: 10px;
font-size: 12px;
color: #999898;
}
.tml-user-panel .tml-user-avatar img, .tml-dashboard-avatar img {
display: block;
margin: 0 auto;
border-radius: 5px;
}
.tml-user-panel .tml-user-avatar, .tml-dashboard-avatar {
margin-bottom: 15px;
}
.tml-dashboard-greeting {
text-align: center;
}
.tml-dashboard-links li {
list-style: none;
}
.tml-user-panel .tml-user-links li a, .tml-dashboard-links li a {
background-color: rgba(0, 0, 0, .06);
width: 100%;
display: block;
padding: 5px 10px;
border: 4px;
margin-bottom: 10px;
box-sizing: border-box;
border-radius: 4px;
color: #485460;
text-align: center;
}
.tml-user-panel .tml-user-links li:last-child a, .tml-dashboard-links li:last-child a {
margin-bottom: 0;
}
aside .tml-field-wrap .tml-button, footer .tml-field-wrap .tml-button {
width: 100%;
display: block;
transition-duration: 0.2s;
}
aside .tml-field-wrap .tml-button:hover, footer .tml-field-wrap .tml-button:hover {
opacity: 0.85;
}
aside .tml-field-wrap #pass-strength-result, footer .tml-field-wrap #pass-strength-result {
display: none;
}
body.megawp-login-register-page-body {
overflow-x: hidden;
height: 100vh;
}
.megawp-login-register-page-container {
position: absolute;
top: 10%;
left: 50%;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
width: 500px;
padding: 50px 40px;
box-sizing: border-box;
margin-bottom: 50px;
}
.megawp-login-register-top-area {
margin-bottom: 40px;
}
.megawp-login-register-page-container .megawp-login-register-logo {
display: block;
margin: 0 auto;
text-align: center;
}
.megawp-login-register-page-container .megawp-login-register-logo img {
width: 150px;
height: auto;
max-width: 100%;
display: block;
margin: 0 auto;
transition-duration: 0.2s;
}
.megawp-login-register-top-area h1 {
display: block;
text-align: center;
margin-top: 10px;
font-weight: 500;
font-size: 15px;
color: #000;
letter-spacing: -0.8px;
}
.megawp-login-register-page-container .megawp-login-register-logo img:hover {
opacity: 0.85;
}
.megawp-login-register-page-container .megawp-login-register-page-content button, .megawp-login-register-page-container .megawp-login-register-page-content input[type=submit] {
width: 100%;
transition-duration: 0.2s;
display: block;
}
.megawp-login-register-page-container .megawp-login-register-page-content button:hover, .megawp-login-register-page-container .megawp-login-register-page-content input[type=submit]:hover {
opacity: 0.85;
}
.megawp-login-register-page-back-button {
font-size: 14px;
margin-top: 20px;
padding-top: 10px;
letter-spacing: -0.8px;
display: block;
text-align: center;
color: #000;
border-top: 1px solid rgba(0,0,0,.07);
border-radius: 0;
}
.megawp-account-page-content-container {
width: 75%;
float: right;
}
.megawp-account-page-content {
padding: 20px;
box-sizing: border-box;
width: 100%;
display: block;
}
.megawp-account-page-content .woocommerce-MyAccount-navigation {
display: none;
visibility: hidden;
width: 0;
}
.megawp-account-page-content .woocommerce-MyAccount-content {
width: 100%;
}
.megawp-account-page-content .megawp-post-content {
padding: 0;
}
.megawp-account-menu-container {
float: left;
width: 23%;
}
.megawp-account-menu {
float: left;
width: 100%;
display: block;
box-sizing: border-box;
}
.megawp-account-menu .megawp-account-user-info {
padding: 20px;
background-size: cover;
margin-bottom: 10px;
width: 100%;
float: left;
box-sizing: border-box;
position: relative;
}
.megawp-account-menu .megawp-account-user-info img {
border-radius: 110px;
width: 110px;
height: auto;
max-width: 100%;
display: block;
margin: 0 auto 15px;
border: 4px solid rgba(0, 0, 0, 0.15);
}
.megawp-account-menu .megawp-account-user-info span.megawp-account-user-info-name, .megawp-account-menu .megawp-account-user-info span.megawp-account-user-info-email {
display: block;
text-align: center;
}
.megawp-account-menu .megawp-account-user-info span.megawp-account-user-info-email {
font-size: 11px;
}
.megawp-account-menu .megawp-account-menu-items {
width: calc(100% - 30px);
margin: 15px auto;
display: block;
}
.megawp-account-menu .megawp-account-menu-items li a {
width: 100%;
display: block;
margin-bottom: 10px;
border-radius: 5px;
line-height: 2.1em;
padding: 8px 15px;
box-sizing: border-box;
transition-duration: 0s;
}
.megawp-account-menu .megawp-account-menu-items li:last-child a {
margin-bottom: 0;
}
h1.megawp-account-page-title {
margin-bottom: 1.8em;
font-size: 20px;
font-weight: 800;
}
h1.megawp-account-page-title:before {
content: "\eb0c";
font-family: lineicons;
margin-right: 5px;
float: left;
font-weight: 600;
transition-duration: 0.2s;
color: #27ae60;
}
.megawp-dashboard-content {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-column-gap: 25px;
grid-row-gap: 25px;
margin-bottom: 35px;
float: left;
width: 100%;
}
.megawp-dashboard-box {
width: 100%;
display: block;
border-radius: 5px;
box-shadow: 0 5px 10px rgba(0, 0, 0, .14);
margin-top: 15px;
padding: 0 15px 15px;
box-sizing: border-box;
background-color: #fff;
}
.megawp-dashboard-box-icon {
width: 100%;
margin: 0 auto;
position: relative;
text-align: center;
color: #fff;
font-size: 40px;
padding: 25px 0;
top: -15px;
border-radius: 5px;
line-height: 40px;
}
.megawp-dashboard-box-register .megawp-dashboard-box-icon {
background-image: linear-gradient(45deg, #2AFADF, #4C83FF);
box-shadow: 0 5px 20px rgba(42, 250, 223, 0.4);
}
.megawp-dashboard-box-orders .megawp-dashboard-box-icon {
background-image: linear-gradient(45deg, #70F570, #49C628);
box-shadow: 0 5px 20px rgba(73, 198, 40, 0.4);
}
.megawp-dashboard-box-courses .megawp-dashboard-box-icon {
background-image: linear-gradient(to right, #E44D26 0%, #F16529 51%, #E44D26 100%);
box-shadow: 0 5px 20px rgba(228, 77, 38, 0.4);
}
.megawp-dashboard-box-comments .megawp-dashboard-box-icon {
background-image: linear-gradient(45deg, #F761A1, #8C1BAB);
box-shadow: 0 5px 20px rgba(247, 97, 161, 0.4);
}
.megawp-dashboard-box-score .megawp-dashboard-box-icon {
background-image: linear-gradient(to right, #ffb347 0%, #ffcc33 51%, #ffb347 100%);
box-shadow: 0 5px 20px rgba(255, 204, 51, 0.4);
}
.megawp-dashboard-box-wallet .megawp-dashboard-box-icon {
background-image: linear-gradient(45deg, #F2A65A, #772F1A);
box-shadow: 0 5px 20px rgba(255, 179, 71, 0.4);
}
.megawp-dashboard-box-content h3.megawp-dashboard-box-title {
font-size: 20px;
line-height: 30px;
margin-bottom: 0;
}
.megawp-dashboard-box-content span.megawp-dashboard-box-des {
}
.megawp-dashboard-coupon-item {
background-color: #f3f3f3;
border: 1px solid #d7d7d7;
border-radius: 5px;
width: 100%;
box-sizing: border-box;
display: grid;
grid-template-columns: 70px auto;
grid-column-gap: 15px;
position: relative;
margin-bottom: 15px;
padding: 15px 32px;
}
.megawp-dashboard-coupon-item:last-child {
margin-bottom: 0;
}
.megawp-dashboard-coupon-item:after {
content: "";
position: absolute;
left: -1px;
top: 50%;
height: 34px;
width: 17px;
border-bottom-right-radius: 34px;
border-top-right-radius: 34px;
border: 1px solid #d7d7d7;
border-left-color: transparent;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
background-color: #fff;
overflow: hidden;
z-index: 2;
}
.megawp-dashboard-coupon-item:before {
content: "";
position: absolute;
right: -1px;
top: 50%;
height: 34px;
width: 17px;
border-bottom-left-radius: 34px;
border-top-left-radius: 34px;
border: 1px solid #d7d7d7;
border-right-color: transparent;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
background-color: #fff;
overflow: hidden;
z-index: 2;
}
.megawp-dashboard-coupon-item .megawp-dashboard-coupon-item-icon i {
font-size: 40px;
line-height: 50px;
float: right;
border-right: 1px dashed #bdbdbd;
padding-right: 15px;
}
.megawp-dashboard-coupon-item-content .megawp-dashboard-coupon-item-title {
display: block;
width: 100%;
line-height: 30px;
margin-bottom: 0;
font-size: 16px;
}
.megawp-dashboard-coupon-item-content .megawp-dashboard-coupon-item-des {
display: block;
width: 100%;
line-height: 20px;
font-size: 13px;
color: #9e9e9e;
}
.megawp-dashboard-coupon-item-content .megawp-dashboard-coupon-item-des span {
float: left;
}
.megawp-dashboard-coupon-item-content .megawp-dashboard-coupon-item-des span.coupon-expire-date {
background-color: rgba(0, 0, 0, .06);
padding: 0 15px;
border-radius: 60px;
margin-left: 5px;
font-size: 12px;
float: left;
}@font-face {
font-family: "IRANSansXV";
src: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/IRANSansX/IRANSansXV.woff) format("woff-variations"),
url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/IRANSansX/IRANSansXV.woff) format("woff");
font-weight: 100 1000;
font-display: swap;
}
@font-face {
font-family: "IRANSansXV";
src: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/IRANSansX/IRANSansXV.woff2) format("woff2-variations"),
url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/IRANSansX/IRANSansXV.woff2) format("woff2");
font-weight: 100 1000;
font-display: swap;
}
@font-face {
font-family: "IRANSansX";
src: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/IRANSansX/IRANSansX-Regular.woff) format("woff");
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "IRANSansX";
src: url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/fonts/IRANSansX/IRANSansX-Bold.woff) format("woff");
font-weight: bold;
font-display: swap;
}.megawp-carousel-container,.megawp-carousel-container .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.megawp-carousel-container{display:none;width:100%;z-index:1}.megawp-carousel-container .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.megawp-carousel-container .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.megawp-carousel-container .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.megawp-carousel-container .owl-item,.megawp-carousel-container .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)}.megawp-carousel-container .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.megawp-carousel-container .owl-item img{display:block;width:100%}.megawp-carousel-container .owl-dots.disabled,.megawp-carousel-container .owl-nav.disabled{display:none}.no-js .megawp-carousel-container,.megawp-carousel-container.owl-loaded{display:block}.megawp-carousel-container .owl-dot,.megawp-carousel-container .owl-nav .owl-next,.megawp-carousel-container .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}.megawp-carousel-container .owl-nav button.owl-next,.megawp-carousel-container .owl-nav button.owl-prev,.megawp-carousel-container button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.megawp-carousel-container.owl-loading{opacity:0;display:block}.megawp-carousel-container.owl-hidden{opacity:0}.megawp-carousel-container.owl-refresh .owl-item{visibility:hidden}.megawp-carousel-container.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}.megawp-carousel-container.owl-grab{cursor:move;cursor:grab}.megawp-carousel-container.owl-rtl{direction:rtl}.megawp-carousel-container.owl-rtl .owl-item{float:right}.megawp-carousel-container .animated{animation-duration:1s;animation-fill-mode:both}.megawp-carousel-container .owl-animated-in{z-index:0}.megawp-carousel-container .owl-animated-out{z-index:1}.megawp-carousel-container .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.megawp-carousel-container .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.megawp-carousel-container .owl-item .owl-lazy:not([src]),.megawp-carousel-container .owl-item .owl-lazy[src^=""]{max-height:0}.megawp-carousel-container .owl-item img.owl-lazy{transform-style:preserve-3d}.megawp-carousel-container .owl-video-wrapper{position:relative;height:100%;background:#000}.megawp-carousel-container .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//tanasobefekri.net/wp-content/themes/Tanasobefekri/assets/css/libs/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.megawp-carousel-container .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.megawp-carousel-container .owl-video-playing .owl-video-play-icon,.megawp-carousel-container .owl-video-playing .owl-video-tn{display:none}.megawp-carousel-container .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.megawp-carousel-container .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}.html5tooltip-box {background-color: #2A2A2A;border-radius: 2px;box-shadow: 0 0 0 1px rgba(255,255,255,.15), 0 0 10px rgba(255,255,255,.15);color: #F7F7F7;cursor: default;font-size: 11px;font-weight: bold;}.html5tooltip-box:before {background-color: inherit;box-shadow: inherit;content:'';display:block;height: 12px;position: absolute;width: 12px;transform: translate3d(-6px, -6px, 0) rotate3d(0, 0, 1, 45deg);left: 10px;top: 10px;}.html5tooltip-text {background-color: inherit;border-radius: inherit;color: inherit;font-family: inherit;font-size: inherit;font-weight: inherit;padding: 7px 9px;position: relative;}.html5tooltip-text a {color: inherit;}.html5tooltip-more {background-color: inherit;border-radius: inherit;position: relative;}.html5tooltip-more .html5tooltip-text {margin-top:-7px;}.html5tooltip-bottom .html5tooltip-box:before {left: 50%;top: 0px;}.html5tooltip-left .html5tooltip-box:before {left: 100%;top: 50%;}.html5tooltip-right .html5tooltip-box:before {left: 0;top: 50%;}.html5tooltip-top .html5tooltip-box:before {left: 50%;top: 100%;}.html5tooltip-bottom, .html5tooltip-left, .html5tooltip-right, .html5tooltip-top {-moz-perspective: 300px;-ms-perspective: 300px;-o-perspective: 300px;-webkit-perspective: 300px;perspective: 300px;}.html5tooltip-bottom.animating, .html5tooltip-left.animating, .html5tooltip-right.animating, .html5tooltip-top.animating {transition: top .3s;}.html5tooltip-box.animating {-moz-transition: opacity .3s, -moz-transform .3s;-ms-transition: opacity .3s, -ms-transform .3s;-o-transition: opacity .3s, -o-transform .3s;-webkit-transition: opacity .3s, -webkit-transform .3s;transition: opacity .3s, transform .3s;}.html5tooltip-more.animating {-moz-transition: height .3s;-ms-transition: height .3s;-o-transition: height .3s;-webkit-transition: height .3s;transition: height .3s;}.fadein-from {opacity: 0;}.fadein-to {opacity: 1;}.scalein-from {opacity: 0;-moz-transform: scale3d(.7,.7,.7);-ms-transform: scale3d(.7,.7,.7);-o-transform: scale3d(.7,.7,.7);-webkit-transform: scale3d(.7,.7,.7);transform: scale3d(.7,.7,.7);}.scalein-to {opacity: 1;-moz-transform: scale3d(1,1,1);-ms-transform: scale3d(1,1,1);-o-transform: scale3d(1,1,1);-webkit-transform: scale3d(1,1,1);transform: scale3d(1,1,1);}.html5tooltip-bottom .scalein-to {-moz-transform-origin: center top;-ms-transform-origin: center top;-o-transform-origin: center top;-webkit-transform-origin: center top;transform-origin: center top;}.html5tooltip-left .scalein-to {-moz-transform-origin: right center;-ms-transform-origin: right center;-o-transform-origin: right center;-webkit-transform-origin: right center;transform-origin: right center;}.html5tooltip-right .scalein-to {-moz-transform-origin: left center;-ms-transform-origin: left center;-o-transform-origin: left center;-webkit-transform-origin: left center;transform-origin: left center;}.html5tooltip-top .scalein-to {-moz-transform-origin: center bottom;-ms-transform-origin: center bottom;-o-transform-origin: center bottom;-webkit-transform-origin: center bottom;transform-origin: center bottom;}.foldin-from, .foldout-from {opacity: 0;}.foldin-to, .foldout-to {opacity: 1;-moz-transform: rotate3d(0,0,0,0);-ms-transform: rotate3d(0,0,0,0);-o-transform: rotate3d(0,0,0,0);-webkit-transform: rotate3d(0,0,0,0);transform: rotate3d(0,0,0,0);}.html5tooltip-bottom .foldin-from, .html5tooltip-top .foldout-from {-moz-transform: rotate3d(1,0,0,-90deg);-ms-transform: rotate3d(1,0,0,-90deg);-o-transform: rotate3d(1,0,0,-90deg);-webkit-transform: rotate3d(1,0,0,-90deg);transform: rotate3d(1,0,0,-90deg);}.html5tooltip-bottom .foldin-to, .html5tooltip-bottom .foldout-to {-moz-transform-origin: center top;-ms-transform-origin: center top;-o-transform-origin: center top;-webkit-transform-origin: center top;transform-origin: center top;}.html5tooltip-left .foldin-from, .html5tooltip-right .foldout-from {-moz-transform: rotate3d(0,1,0,-90deg);-ms-transform: rotate3d(0,1,0,-90deg);-o-transform: rotate3d(0,1,0,-90deg);-webkit-transform: rotate3d(0,1,0,-90deg);transform: rotate3d(0,1,0,-90deg);}.html5tooltip-left .foldin-to, .html5tooltip-left .foldout-to {-moz-transform-origin: right center;-ms-transform-origin: right center;-o-transform-origin: right center;-webkit-transform-origin: right center;transform-origin: right center;}.html5tooltip-right .foldin-from, .html5tooltip-left .foldout-from {-moz-transform: rotate3d(0,1,0,90deg);-ms-transform: rotate3d(0,1,0,90deg);-o-transform: rotate3d(0,1,0,90deg);-webkit-transform: rotate3d(0,1,0,90deg);transform: rotate3d(0,1,0,90deg);}.html5tooltip-right .foldin-to, .html5tooltip-right .foldout-to {-moz-transform-origin: left center;-ms-transform-origin: left center;-o-transform-origin: left center;-webkit-transform-origin: left center;transform-origin: left center;}.html5tooltip-top .foldin-from, .html5tooltip-bottom .foldout-from {-moz-transform: rotate3d(1,0,0,90deg);-ms-transform: rotate3d(1,0,0,90deg);-o-transform: rotate3d(1,0,0,90deg);-webkit-transform: rotate3d(1,0,0,90deg);transform: rotate3d(1,0,0,90deg);}.html5tooltip-top .foldin-to, .html5tooltip-top .foldout-to {-moz-transform-origin: center bottom;-ms-transform-origin: center bottom;-o-transform-origin: center bottom;-webkit-transform-origin: center bottom;transform-origin: center bottom;}.slidein-from {opacity: 0;}.slidein-to {opacity: 1;-moz-transform: translate3d(0,0,0);-ms-transform: translate3d(0,0,0);-o-transform: translate3d(0,0,0);-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}.html5tooltip-bottom .slidein-from {-moz-transform: translate3d(0,20px,0);-ms-transform: translate3d(0,20px,0);-o-transform: translate3d(0,20px,0);-webkit-transform: translate3d(0,20px,0);transform: translate3d(0,20px,0);}.html5tooltip-left .slidein-from {-moz-transform: translate3d(-20px,0,0);-ms-transform: translate3d(-20px,0,0);-o-transform: translate3d(-20px,0,0);-webkit-transform: translate3d(-20px,0,0);transform: translate3d(-20px,0,0);}.html5tooltip-right .slidein-from {-moz-transform: translate3d(20px,0,0);-ms-transform: translate3d(20px,0,0);-o-transform: translate3d(20px,0,0);-webkit-transform: translate3d(20px,0,0);transform: translate3d(20px,0,0);}.html5tooltip-top .slidein-from {-moz-transform: translate3d(0,-20px,0);-ms-transform: translate3d(0,-20px,0);-o-transform: translate3d(0,-20px,0);-webkit-transform: translate3d(0,-20px,0);transform: translate3d(0,-20px,0);}.roll-from {opacity: 0;}.roll-to {opacity: 1;-moz-transform: rotate3d(0,0,0,0);-ms-transform: rotate3d(0,0,0,0);-o-transform: rotate3d(0,0,0,0);-webkit-transform: rotate3d(0,0,0,0);transform: rotate3d(0,0,0,0);}.html5tooltip-bottom .roll-from {-moz-transform: rotate3d(0,0,1,-30deg);-ms-transform: rotate3d(0,0,1,-30deg);-o-transform: rotate3d(0,0,1,-30deg);-webkit-transform: rotate3d(0,0,1,-30deg);transform: rotate3d(0,0,1,-30deg);}.html5tooltip-bottom .roll-to {-moz-transform-origin: center top;-ms-transform-origin: center top;-o-transform-origin: center top;-webkit-transform-origin: center top;transform-origin: center top;}.html5tooltip-left .roll-from {-moz-transform: rotate3d(0,0,1,30deg);-ms-transform: rotate3d(0,0,1,30deg);-o-transform: rotate3d(0,0,1,30deg);-webkit-transform: rotate3d(0,0,1,30deg);transform: rotate3d(0,0,1,30deg);}.html5tooltip-left .roll-to {-moz-transform-origin: right center;-ms-transform-origin: right center;-o-transform-origin: right center;-webkit-transform-origin: right center;transform-origin: right center;}.html5tooltip-right .roll-from {-moz-transform: rotate3d(0,0,1,-30deg);-ms-transform: rotate3d(0,0,1,-30deg);-o-transform: rotate3d(0,0,1,-30deg);-webkit-transform: rotate3d(0,0,1,-30deg);transform: rotate3d(0,0,1,-30deg);}.html5tooltip-right .roll-to {-moz-transform-origin: left center;-ms-transform-origin: left center;-o-transform-origin: left center;-webkit-transform-origin: left center;transform-origin: left center;}.html5tooltip-top .roll-from {-moz-transform: rotate3d(0,0,1,30deg);-ms-transform: rotate3d(0,0,1,30deg);-o-transform: rotate3d(0,0,1,30deg);-webkit-transform: rotate3d(0,0,1,30deg);transform: rotate3d(0,0,1,30deg);}.html5tooltip-top .roll-to {-moz-transform-origin: center bottom;-ms-transform-origin: center bottom;-o-transform-origin: center bottom;-webkit-transform-origin: center bottom;transform-origin: center bottom;}.spin-from {opacity: 0;}.spin-to {opacity: 1;-moz-transform: rotate3d(0,0,0,0) translate3d(0,0,0);-ms-transform: rotate3d(0,0,0,0) translate3d(0,0,0);-o-transform: rotate3d(0,0,0,0) translate3d(0,0,0);-webkit-transform: rotate3d(0,0,0,0) translate3d(0,0,0);transform: rotate3d(0,0,0,0) translate3d(0,0,0);}.html5tooltip-bottom .spin-from {-moz-transform: rotate3d(0,1,0,90deg) translate3d(0,20px,0);-ms-transform: rotate3d(0,1,0,90deg) translate3d(0,20px,0);-o-transform: rotate3d(0,1,0,90deg) translate3d(0,20px,0);-webkit-transform: rotate3d(0,1,0,90deg) translate3d(0,20px,0);transform: rotate3d(0,1,0,90deg) translate3d(0,20px,0);}.html5tooltip-left .spin-from {-moz-transform: rotate3d(1,0,0,-90deg) translate3d(-20px,0,0);-ms-transform: rotate3d(1,0,0,-90deg) translate3d(-20px,0,0);-o-transform: rotate3d(1,0,0,-90deg) translate3d(-20px,0,0);-webkit-transform: rotate3d(1,0,0,-90deg) translate3d(-20px,0,0);transform: rotate3d(1,0,0,-90deg) translate3d(-20px,0,0);}.html5tooltip-right .spin-from {-moz-transform: rotate3d(1,0,0,-90deg) translate3d(20px,0,0);-ms-transform: rotate3d(1,0,0,-90deg) translate3d(20px,0,0);-o-transform: rotate3d(1,0,0,-90deg) translate3d(20px,0,0);-webkit-transform: rotate3d(1,0,0,-90deg) translate3d(20px,0,0);transform: rotate3d(1,0,0,-90deg) translate3d(20px,0,0);}.html5tooltip-top .spin-from {-moz-transform: rotate3d(0,1,0,90deg) translate3d(0,-20px,0);-ms-transform: rotate3d(0,1,0,90deg) translate3d(0,-20px,0);-o-transform: rotate3d(0,1,0,90deg) translate3d(0,-20px,0);-webkit-transform: rotate3d(0,1,0,90deg) translate3d(0,-20px,0);transform: rotate3d(0,1,0,90deg) translate3d(0,-20px,0);}.sl-wrapper a {border-bottom: 0 !important;text-decoration: none !important;}.sl-button {padding: 0;font-weight: normal;}a.liked {color: #da1b1b;}a.liked:hover, a.liked:active, a.liked:focus {color: #666666;}a.liked span.sl-count, .sl-count {color: #666666;}.sl-icon {vertical-align: middle;color: #e74c3c;}.sl-icon svg {fill: currentColor;width: 1em;height: 1em;}.sl-icon svg:after {content: "";position: absolute;top: 0;right: 0;bottom: 0;left:0;}.sl-count {text-transform: uppercase;vertical-align: middle;}.loader, .loader:before, .loader:after {background: rgba(0, 0, 0, 0.2);-webkit-animation: load1 1s infinite ease-in-out;animation: load1 1s infinite ease-in-out;width: .2em;height: .6em;}.loader:before, .loader:after {position: absolute;top: 0;content: '';}.loader:before {left: -.375em;-webkit-animation-delay: -0.32s;animation-delay: -0.32s;}.loader {text-indent: -9999em;display: inline-block;position: relative;vertical-align: middle;font-size: 1em;-webkit-transform: translateZ(0);-ms-transform: translateZ(0);transform: translateZ(0);-webkit-animation-delay: -0.16s;animation-delay: -0.16s;}.loader:after {left: .375em;}@-webkit-keyframes load1 {0%, 80%, 100% {box-shadow: 0 0 rgba(0, 0, 0, 0.2);height: .6em;}40% {box-shadow: 0 -.3em rgba(0, 0, 0, 0.2);height: 1em;}}@keyframes load1 {0%, 80%, 100% {box-shadow: 0 0 rgba(0, 0, 0, 0.2);height: .6em;}40% {box-shadow: 0 -.3em rgba(0, 0, 0, 0.2);height: 1em;}}
 .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;}@-webkit-keyframes bounce {0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);transform: translateY(0);}40% {-webkit-transform: translateY(-30px);transform: translateY(-30px);}60% {-webkit-transform: translateY(-15px);transform: translateY(-15px);}}@keyframes bounce {0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}40% {-webkit-transform: translateY(-30px);-ms-transform: translateY(-30px);transform: translateY(-30px);}60% {-webkit-transform: translateY(-15px);-ms-transform: translateY(-15px);transform: translateY(-15px);}}.bounce {-webkit-animation-name: bounce;animation-name: bounce;}@-webkit-keyframes flash {0%, 50%, 100% {opacity: 1;}25%, 75% {opacity: 0;}}@keyframes flash {0%, 50%, 100% {opacity: 1;}25%, 75% {opacity: 0;}}.flash {-webkit-animation-name: flash;animation-name: flash;}@-webkit-keyframes pulse {0% {-webkit-transform: scale(1);transform: scale(1);}50% {-webkit-transform: scale(1.1);transform: scale(1.1);}100% {-webkit-transform: scale(1);transform: scale(1);}}@keyframes pulse {0% {-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}50% {-webkit-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}100% {-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}}.pulse {-webkit-animation-name: pulse;animation-name: pulse;}@-webkit-keyframes rubberBand {0% {-webkit-transform: scale(1);transform: scale(1);}30% {-webkit-transform: scaleX(1.25) scaleY(0.75);transform: scaleX(1.25) scaleY(0.75);}40% {-webkit-transform: scaleX(0.75) scaleY(1.25);transform: scaleX(0.75) scaleY(1.25);}60% {-webkit-transform: scaleX(1.15) scaleY(0.85);transform: scaleX(1.15) scaleY(0.85);}100% {-webkit-transform: scale(1);transform: scale(1);}}@keyframes rubberBand {0% {-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}30% {-webkit-transform: scaleX(1.25) scaleY(0.75);-ms-transform: scaleX(1.25) scaleY(0.75);transform: scaleX(1.25) scaleY(0.75);}40% {-webkit-transform: scaleX(0.75) scaleY(1.25);-ms-transform: scaleX(0.75) scaleY(1.25);transform: scaleX(0.75) scaleY(1.25);}60% {-webkit-transform: scaleX(1.15) scaleY(0.85);-ms-transform: scaleX(1.15) scaleY(0.85);transform: scaleX(1.15) scaleY(0.85);}100% {-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}}.rubberBand {-webkit-animation-name: rubberBand;animation-name: rubberBand;}@-webkit-keyframes shake {0%, 100% {-webkit-transform: translateX(0);transform: translateX(0);}10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);transform: translateX(-10px);}20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);transform: translateX(10px);}}@keyframes shake {0%, 100% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);-ms-transform: translateX(-10px);transform: translateX(-10px);}20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);-ms-transform: translateX(10px);transform: translateX(10px);}}.shake {-webkit-animation-name: shake;animation-name: shake;}@-webkit-keyframes swing {20% {-webkit-transform: rotate(15deg);transform: rotate(15deg);}40% {-webkit-transform: rotate(-10deg);transform: rotate(-10deg);}60% {-webkit-transform: rotate(5deg);transform: rotate(5deg);}80% {-webkit-transform: rotate(-5deg);transform: rotate(-5deg);}100% {-webkit-transform: rotate(0deg);transform: rotate(0deg);}}@keyframes swing {20% {-webkit-transform: rotate(15deg);-ms-transform: rotate(15deg);transform: rotate(15deg);}40% {-webkit-transform: rotate(-10deg);-ms-transform: rotate(-10deg);transform: rotate(-10deg);}60% {-webkit-transform: rotate(5deg);-ms-transform: rotate(5deg);transform: rotate(5deg);}80% {-webkit-transform: rotate(-5deg);-ms-transform: rotate(-5deg);transform: rotate(-5deg);}100% {-webkit-transform: rotate(0deg);-ms-transform: rotate(0deg);transform: rotate(0deg);}}.swing {-webkit-transform-origin: top center;-ms-transform-origin: top center;transform-origin: top center;-webkit-animation-name: swing;animation-name: swing;}@-webkit-keyframes tada {0% {-webkit-transform: scale(1);transform: scale(1);}10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);transform: scale(0.9) rotate(-3deg);}30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);transform: scale(1.1) rotate(3deg);}40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);transform: scale(1.1) rotate(-3deg);}100% {-webkit-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}}@keyframes tada {0% {-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);-ms-transform: scale(0.9) rotate(-3deg);transform: scale(0.9) rotate(-3deg);}30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);-ms-transform: scale(1.1) rotate(3deg);transform: scale(1.1) rotate(3deg);}40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);-ms-transform: scale(1.1) rotate(-3deg);transform: scale(1.1) rotate(-3deg);}100% {-webkit-transform: scale(1) rotate(0);-ms-transform: scale(1) rotate(0);transform: scale(1) rotate(0);}}.tada {-webkit-animation-name: tada;animation-name: tada;}@-webkit-keyframes wobble {0% {-webkit-transform: translateX(0%);transform: translateX(0%);}15% {-webkit-transform: translateX(-25%) rotate(-5deg);transform: translateX(-25%) rotate(-5deg);}30% {-webkit-transform: translateX(20%) rotate(3deg);transform: translateX(20%) rotate(3deg);}45% {-webkit-transform: translateX(-15%) rotate(-3deg);transform: translateX(-15%) rotate(-3deg);}60% {-webkit-transform: translateX(10%) rotate(2deg);transform: translateX(10%) rotate(2deg);}75% {-webkit-transform: translateX(-5%) rotate(-1deg);transform: translateX(-5%) rotate(-1deg);}100% {-webkit-transform: translateX(0%);transform: translateX(0%);}}@keyframes wobble {0% {-webkit-transform: translateX(0%);-ms-transform: translateX(0%);transform: translateX(0%);}15% {-webkit-transform: translateX(-25%) rotate(-5deg);-ms-transform: translateX(-25%) rotate(-5deg);transform: translateX(-25%) rotate(-5deg);}30% {-webkit-transform: translateX(20%) rotate(3deg);-ms-transform: translateX(20%) rotate(3deg);transform: translateX(20%) rotate(3deg);}45% {-webkit-transform: translateX(-15%) rotate(-3deg);-ms-transform: translateX(-15%) rotate(-3deg);transform: translateX(-15%) rotate(-3deg);}60% {-webkit-transform: translateX(10%) rotate(2deg);-ms-transform: translateX(10%) rotate(2deg);transform: translateX(10%) rotate(2deg);}75% {-webkit-transform: translateX(-5%) rotate(-1deg);-ms-transform: translateX(-5%) rotate(-1deg);transform: translateX(-5%) rotate(-1deg);}100% {-webkit-transform: translateX(0%);-ms-transform: translateX(0%);transform: translateX(0%);}}.wobble {-webkit-animation-name: wobble;animation-name: wobble;}@-webkit-keyframes bounceIn {0% {opacity: 0;-webkit-transform: scale(.3);transform: scale(.3);}50% {opacity: 1;-webkit-transform: scale(1.05);transform: scale(1.05);}70% {-webkit-transform: scale(.9);transform: scale(.9);}100% {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}}@keyframes bounceIn {0% {opacity: 0;-webkit-transform: scale(.3);-ms-transform: scale(.3);transform: scale(.3);}50% {opacity: 1;-webkit-transform: scale(1.05);-ms-transform: scale(1.05);transform: scale(1.05);}70% {-webkit-transform: scale(.9);-ms-transform: scale(.9);transform: scale(.9);}100% {opacity: 1;-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}}.bounceIn {-webkit-animation-name: bounceIn;animation-name: bounceIn;}@-webkit-keyframes bounceInDown {0% {opacity: 0;-webkit-transform: translateY(-2000px);transform: translateY(-2000px);}60% {opacity: 1;-webkit-transform: translateY(30px);transform: translateY(30px);}80% {-webkit-transform: translateY(-10px);transform: translateY(-10px);}100% {-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes bounceInDown {0% {opacity: 0;-webkit-transform: translateY(-2000px);-ms-transform: translateY(-2000px);transform: translateY(-2000px);}60% {opacity: 1;-webkit-transform: translateY(30px);-ms-transform: translateY(30px);transform: translateY(30px);}80% {-webkit-transform: translateY(-10px);-ms-transform: translateY(-10px);transform: translateY(-10px);}100% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.bounceInDown {-webkit-animation-name: bounceInDown;animation-name: bounceInDown;}@-webkit-keyframes bounceInLeft {0% {opacity: 0;-webkit-transform: translateX(-2000px);transform: translateX(-2000px);}60% {opacity: 1;-webkit-transform: translateX(30px);transform: translateX(30px);}80% {-webkit-transform: translateX(-10px);transform: translateX(-10px);}100% {-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes bounceInLeft {0% {opacity: 0;-webkit-transform: translateX(-2000px);-ms-transform: translateX(-2000px);transform: translateX(-2000px);}60% {opacity: 1;-webkit-transform: translateX(30px);-ms-transform: translateX(30px);transform: translateX(30px);}80% {-webkit-transform: translateX(-10px);-ms-transform: translateX(-10px);transform: translateX(-10px);}100% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.bounceInLeft {-webkit-animation-name: bounceInLeft;animation-name: bounceInLeft;}@-webkit-keyframes bounceInRight {0% {opacity: 0;-webkit-transform: translateX(2000px);transform: translateX(2000px);}60% {opacity: 1;-webkit-transform: translateX(-30px);transform: translateX(-30px);}80% {-webkit-transform: translateX(10px);transform: translateX(10px);}100% {-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes bounceInRight {0% {opacity: 0;-webkit-transform: translateX(2000px);-ms-transform: translateX(2000px);transform: translateX(2000px);}60% {opacity: 1;-webkit-transform: translateX(-30px);-ms-transform: translateX(-30px);transform: translateX(-30px);}80% {-webkit-transform: translateX(10px);-ms-transform: translateX(10px);transform: translateX(10px);}100% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.bounceInRight {-webkit-animation-name: bounceInRight;animation-name: bounceInRight;}@-webkit-keyframes bounceInUp {0% {opacity: 0;-webkit-transform: translateY(2000px);transform: translateY(2000px);}60% {opacity: 1;-webkit-transform: translateY(-30px);transform: translateY(-30px);}80% {-webkit-transform: translateY(10px);transform: translateY(10px);}100% {-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes bounceInUp {0% {opacity: 0;-webkit-transform: translateY(2000px);-ms-transform: translateY(2000px);transform: translateY(2000px);}60% {opacity: 1;-webkit-transform: translateY(-30px);-ms-transform: translateY(-30px);transform: translateY(-30px);}80% {-webkit-transform: translateY(10px);-ms-transform: translateY(10px);transform: translateY(10px);}100% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.bounceInUp {-webkit-animation-name: bounceInUp;animation-name: bounceInUp;}@-webkit-keyframes bounceOut {0% {-webkit-transform: scale(1);transform: scale(1);}25% {-webkit-transform: scale(.95);transform: scale(.95);}50% {opacity: 1;-webkit-transform: scale(1.1);transform: scale(1.1);}100% {opacity: 0;-webkit-transform: scale(.3);transform: scale(.3);}}@keyframes bounceOut {0% {-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}25% {-webkit-transform: scale(.95);-ms-transform: scale(.95);transform: scale(.95);}50% {opacity: 1;-webkit-transform: scale(1.1);-ms-transform: scale(1.1);transform: scale(1.1);}100% {opacity: 0;-webkit-transform: scale(.3);-ms-transform: scale(.3);transform: scale(.3);}}.bounceOut {-webkit-animation-name: bounceOut;animation-name: bounceOut;}@-webkit-keyframes bounceOutDown {0% {-webkit-transform: translateY(0);transform: translateY(0);}20% {opacity: 1;-webkit-transform: translateY(-20px);transform: translateY(-20px);}100% {opacity: 0;-webkit-transform: translateY(2000px);transform: translateY(2000px);}}@keyframes bounceOutDown {0% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}20% {opacity: 1;-webkit-transform: translateY(-20px);-ms-transform: translateY(-20px);transform: translateY(-20px);}100% {opacity: 0;-webkit-transform: translateY(2000px);-ms-transform: translateY(2000px);transform: translateY(2000px);}}.bounceOutDown {-webkit-animation-name: bounceOutDown;animation-name: bounceOutDown;}@-webkit-keyframes bounceOutLeft {0% {-webkit-transform: translateX(0);transform: translateX(0);}20% {opacity: 1;-webkit-transform: translateX(20px);transform: translateX(20px);}100% {opacity: 0;-webkit-transform: translateX(-2000px);transform: translateX(-2000px);}}@keyframes bounceOutLeft {0% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}20% {opacity: 1;-webkit-transform: translateX(20px);-ms-transform: translateX(20px);transform: translateX(20px);}100% {opacity: 0;-webkit-transform: translateX(-2000px);-ms-transform: translateX(-2000px);transform: translateX(-2000px);}}.bounceOutLeft {-webkit-animation-name: bounceOutLeft;animation-name: bounceOutLeft;}@-webkit-keyframes bounceOutRight {0% {-webkit-transform: translateX(0);transform: translateX(0);}20% {opacity: 1;-webkit-transform: translateX(-20px);transform: translateX(-20px);}100% {opacity: 0;-webkit-transform: translateX(2000px);transform: translateX(2000px);}}@keyframes bounceOutRight {0% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}20% {opacity: 1;-webkit-transform: translateX(-20px);-ms-transform: translateX(-20px);transform: translateX(-20px);}100% {opacity: 0;-webkit-transform: translateX(2000px);-ms-transform: translateX(2000px);transform: translateX(2000px);}}.bounceOutRight {-webkit-animation-name: bounceOutRight;animation-name: bounceOutRight;}@-webkit-keyframes bounceOutUp {0% {-webkit-transform: translateY(0);transform: translateY(0);}20% {opacity: 1;-webkit-transform: translateY(20px);transform: translateY(20px);}100% {opacity: 0;-webkit-transform: translateY(-2000px);transform: translateY(-2000px);}}@keyframes bounceOutUp {0% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}20% {opacity: 1;-webkit-transform: translateY(20px);-ms-transform: translateY(20px);transform: translateY(20px);}100% {opacity: 0;-webkit-transform: translateY(-2000px);-ms-transform: translateY(-2000px);transform: translateY(-2000px);}}.bounceOutUp {-webkit-animation-name: bounceOutUp;animation-name: bounceOutUp;}@-webkit-keyframes fadeIn {0% {opacity: 0;}100% {opacity: 1;}}@keyframes fadeIn {0% {opacity: 0;}100% {opacity: 1;}}.fadeIn {-webkit-animation-name: fadeIn;animation-name: fadeIn;}@-webkit-keyframes fadeInDown {0% {opacity: 0;-webkit-transform: translateY(-20px);transform: translateY(-20px);}100% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes fadeInDown {0% {opacity: 0;-webkit-transform: translateY(-20px);-ms-transform: translateY(-20px);transform: translateY(-20px);}100% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.fadeInDown {-webkit-animation-name: fadeInDown;animation-name: fadeInDown;}@-webkit-keyframes fadeInDownBig {0% {opacity: 0;-webkit-transform: translateY(-2000px);transform: translateY(-2000px);}100% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes fadeInDownBig {0% {opacity: 0;-webkit-transform: translateY(-2000px);-ms-transform: translateY(-2000px);transform: translateY(-2000px);}100% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.fadeInDownBig {-webkit-animation-name: fadeInDownBig;animation-name: fadeInDownBig;}@-webkit-keyframes fadeInLeft {0% {opacity: 0;-webkit-transform: translateX(-20px);transform: translateX(-20px);}100% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes fadeInLeft {0% {opacity: 0;-webkit-transform: translateX(-20px);-ms-transform: translateX(-20px);transform: translateX(-20px);}100% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.fadeInLeft {-webkit-animation-name: fadeInLeft;animation-name: fadeInLeft;}@-webkit-keyframes fadeInLeftBig {0% {opacity: 0;-webkit-transform: translateX(-2000px);transform: translateX(-2000px);}100% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes fadeInLeftBig {0% {opacity: 0;-webkit-transform: translateX(-2000px);-ms-transform: translateX(-2000px);transform: translateX(-2000px);}100% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.fadeInLeftBig {-webkit-animation-name: fadeInLeftBig;animation-name: fadeInLeftBig;}@-webkit-keyframes fadeInRight {0% {opacity: 0;-webkit-transform: translateX(20px);transform: translateX(20px);}100% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes fadeInRight {0% {opacity: 0;-webkit-transform: translateX(20px);-ms-transform: translateX(20px);transform: translateX(20px);}100% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.fadeInRight {-webkit-animation-name: fadeInRight;animation-name: fadeInRight;}@-webkit-keyframes fadeInRightBig {0% {opacity: 0;-webkit-transform: translateX(2000px);transform: translateX(2000px);}100% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes fadeInRightBig {0% {opacity: 0;-webkit-transform: translateX(2000px);-ms-transform: translateX(2000px);transform: translateX(2000px);}100% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.fadeInRightBig {-webkit-animation-name: fadeInRightBig;animation-name: fadeInRightBig;}@-webkit-keyframes fadeInUp {0% {opacity: 0;-webkit-transform: translateY(20px);transform: translateY(20px);}100% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes fadeInUp {0% {opacity: 0;-webkit-transform: translateY(20px);-ms-transform: translateY(20px);transform: translateY(20px);}100% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.fadeInUp {-webkit-animation-name: fadeInUp;animation-name: fadeInUp;}@-webkit-keyframes fadeInUpBig {0% {opacity: 0;-webkit-transform: translateY(2000px);transform: translateY(2000px);}100% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes fadeInUpBig {0% {opacity: 0;-webkit-transform: translateY(2000px);-ms-transform: translateY(2000px);transform: translateY(2000px);}100% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.fadeInUpBig {-webkit-animation-name: fadeInUpBig;animation-name: fadeInUpBig;}@-webkit-keyframes fadeOut {0% {opacity: 1;}100% {opacity: 0;}}@keyframes fadeOut {0% {opacity: 1;}100% {opacity: 0;}}.fadeOut {-webkit-animation-name: fadeOut;animation-name: fadeOut;}@-webkit-keyframes fadeOutDown {0% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(20px);transform: translateY(20px);}}@keyframes fadeOutDown {0% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(20px);-ms-transform: translateY(20px);transform: translateY(20px);}}.fadeOutDown {-webkit-animation-name: fadeOutDown;animation-name: fadeOutDown;}@-webkit-keyframes fadeOutDownBig {0% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(2000px);transform: translateY(2000px);}}@keyframes fadeOutDownBig {0% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(2000px);-ms-transform: translateY(2000px);transform: translateY(2000px);}}.fadeOutDownBig {-webkit-animation-name: fadeOutDownBig;animation-name: fadeOutDownBig;}@-webkit-keyframes fadeOutLeft {0% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(-20px);transform: translateX(-20px);}}@keyframes fadeOutLeft {0% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(-20px);-ms-transform: translateX(-20px);transform: translateX(-20px);}}.fadeOutLeft {-webkit-animation-name: fadeOutLeft;animation-name: fadeOutLeft;}@-webkit-keyframes fadeOutLeftBig {0% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(-2000px);transform: translateX(-2000px);}}@keyframes fadeOutLeftBig {0% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(-2000px);-ms-transform: translateX(-2000px);transform: translateX(-2000px);}}.fadeOutLeftBig {-webkit-animation-name: fadeOutLeftBig;animation-name: fadeOutLeftBig;}@-webkit-keyframes fadeOutRight {0% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(20px);transform: translateX(20px);}}@keyframes fadeOutRight {0% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(20px);-ms-transform: translateX(20px);transform: translateX(20px);}}.fadeOutRight {-webkit-animation-name: fadeOutRight;animation-name: fadeOutRight;}@-webkit-keyframes fadeOutRightBig {0% {opacity: 1;-webkit-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(2000px);transform: translateX(2000px);}}@keyframes fadeOutRightBig {0% {opacity: 1;-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(2000px);-ms-transform: translateX(2000px);transform: translateX(2000px);}}.fadeOutRightBig {-webkit-animation-name: fadeOutRightBig;animation-name: fadeOutRightBig;}@-webkit-keyframes fadeOutUp {0% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(-20px);transform: translateY(-20px);}}@keyframes fadeOutUp {0% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(-20px);-ms-transform: translateY(-20px);transform: translateY(-20px);}}.fadeOutUp {-webkit-animation-name: fadeOutUp;animation-name: fadeOutUp;}@-webkit-keyframes fadeOutUpBig {0% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(-2000px);transform: translateY(-2000px);}}@keyframes fadeOutUpBig {0% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(-2000px);-ms-transform: translateY(-2000px);transform: translateY(-2000px);}}.fadeOutUpBig {-webkit-animation-name: fadeOutUpBig;animation-name: fadeOutUpBig;}@-webkit-keyframes flip {0% {-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);transform: perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}40% {-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}50% {-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}80% {-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}100% {-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}}@keyframes flip {0% {-webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);-ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);transform: perspective(400px) translateZ(0) rotateY(0) scale(1);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}40% {-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}50% {-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}80% {-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}100% {-webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);-ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}}.animated.flip {-webkit-backface-visibility: visible;-ms-backface-visibility: visible;backface-visibility: visible;-webkit-animation-name: flip;animation-name: flip;}@-webkit-keyframes flipInX {0% {-webkit-transform: perspective(400px) rotateX(90deg);transform: perspective(400px) rotateX(90deg);opacity: 0;}40% {-webkit-transform: perspective(400px) rotateX(-10deg);transform: perspective(400px) rotateX(-10deg);}70% {-webkit-transform: perspective(400px) rotateX(10deg);transform: perspective(400px) rotateX(10deg);}100% {-webkit-transform: perspective(400px) rotateX(0deg);transform: perspective(400px) rotateX(0deg);opacity: 1;}}@keyframes flipInX {0% {-webkit-transform: perspective(400px) rotateX(90deg);-ms-transform: perspective(400px) rotateX(90deg);transform: perspective(400px) rotateX(90deg);opacity: 0;}40% {-webkit-transform: perspective(400px) rotateX(-10deg);-ms-transform: perspective(400px) rotateX(-10deg);transform: perspective(400px) rotateX(-10deg);}70% {-webkit-transform: perspective(400px) rotateX(10deg);-ms-transform: perspective(400px) rotateX(10deg);transform: perspective(400px) rotateX(10deg);}100% {-webkit-transform: perspective(400px) rotateX(0deg);-ms-transform: perspective(400px) rotateX(0deg);transform: perspective(400px) rotateX(0deg);opacity: 1;}}.flipInX {-webkit-backface-visibility: visible !important;-ms-backface-visibility: visible !important;backface-visibility: visible !important;-webkit-animation-name: flipInX;animation-name: flipInX;}@-webkit-keyframes flipInY {0% {-webkit-transform: perspective(400px) rotateY(90deg);transform: perspective(400px) rotateY(90deg);opacity: 0;}40% {-webkit-transform: perspective(400px) rotateY(-10deg);transform: perspective(400px) rotateY(-10deg);}70% {-webkit-transform: perspective(400px) rotateY(10deg);transform: perspective(400px) rotateY(10deg);}100% {-webkit-transform: perspective(400px) rotateY(0deg);transform: perspective(400px) rotateY(0deg);opacity: 1;}}@keyframes flipInY {0% {-webkit-transform: perspective(400px) rotateY(90deg);-ms-transform: perspective(400px) rotateY(90deg);transform: perspective(400px) rotateY(90deg);opacity: 0;}40% {-webkit-transform: perspective(400px) rotateY(-10deg);-ms-transform: perspective(400px) rotateY(-10deg);transform: perspective(400px) rotateY(-10deg);}70% {-webkit-transform: perspective(400px) rotateY(10deg);-ms-transform: perspective(400px) rotateY(10deg);transform: perspective(400px) rotateY(10deg);}100% {-webkit-transform: perspective(400px) rotateY(0deg);-ms-transform: perspective(400px) rotateY(0deg);transform: perspective(400px) rotateY(0deg);opacity: 1;}}.flipInY {-webkit-backface-visibility: visible !important;-ms-backface-visibility: visible !important;backface-visibility: visible !important;-webkit-animation-name: flipInY;animation-name: flipInY;}@-webkit-keyframes flipOutX {0% {-webkit-transform: perspective(400px) rotateX(0deg);transform: perspective(400px) rotateX(0deg);opacity: 1;}100% {-webkit-transform: perspective(400px) rotateX(90deg);transform: perspective(400px) rotateX(90deg);opacity: 0;}}@keyframes flipOutX {0% {-webkit-transform: perspective(400px) rotateX(0deg);-ms-transform: perspective(400px) rotateX(0deg);transform: perspective(400px) rotateX(0deg);opacity: 1;}100% {-webkit-transform: perspective(400px) rotateX(90deg);-ms-transform: perspective(400px) rotateX(90deg);transform: perspective(400px) rotateX(90deg);opacity: 0;}}.flipOutX {-webkit-animation-name: flipOutX;animation-name: flipOutX;-webkit-backface-visibility: visible !important;-ms-backface-visibility: visible !important;backface-visibility: visible !important;}@-webkit-keyframes flipOutY {0% {-webkit-transform: perspective(400px) rotateY(0deg);transform: perspective(400px) rotateY(0deg);opacity: 1;}100% {-webkit-transform: perspective(400px) rotateY(90deg);transform: perspective(400px) rotateY(90deg);opacity: 0;}}@keyframes flipOutY {0% {-webkit-transform: perspective(400px) rotateY(0deg);-ms-transform: perspective(400px) rotateY(0deg);transform: perspective(400px) rotateY(0deg);opacity: 1;}100% {-webkit-transform: perspective(400px) rotateY(90deg);-ms-transform: perspective(400px) rotateY(90deg);transform: perspective(400px) rotateY(90deg);opacity: 0;}}.flipOutY {-webkit-backface-visibility: visible !important;-ms-backface-visibility: visible !important;backface-visibility: visible !important;-webkit-animation-name: flipOutY;animation-name: flipOutY;}@-webkit-keyframes lightSpeedIn {0% {-webkit-transform: translateX(100%) skewX(-30deg);transform: translateX(100%) skewX(-30deg);opacity: 0;}60% {-webkit-transform: translateX(-20%) skewX(30deg);transform: translateX(-20%) skewX(30deg);opacity: 1;}80% {-webkit-transform: translateX(0%) skewX(-15deg);transform: translateX(0%) skewX(-15deg);opacity: 1;}100% {-webkit-transform: translateX(0%) skewX(0deg);transform: translateX(0%) skewX(0deg);opacity: 1;}}@keyframes lightSpeedIn {0% {-webkit-transform: translateX(100%) skewX(-30deg);-ms-transform: translateX(100%) skewX(-30deg);transform: translateX(100%) skewX(-30deg);opacity: 0;}60% {-webkit-transform: translateX(-20%) skewX(30deg);-ms-transform: translateX(-20%) skewX(30deg);transform: translateX(-20%) skewX(30deg);opacity: 1;}80% {-webkit-transform: translateX(0%) skewX(-15deg);-ms-transform: translateX(0%) skewX(-15deg);transform: translateX(0%) skewX(-15deg);opacity: 1;}100% {-webkit-transform: translateX(0%) skewX(0deg);-ms-transform: translateX(0%) skewX(0deg);transform: translateX(0%) skewX(0deg);opacity: 1;}}.lightSpeedIn {-webkit-animation-name: lightSpeedIn;animation-name: lightSpeedIn;-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}@-webkit-keyframes lightSpeedOut {0% {-webkit-transform: translateX(0%) skewX(0deg);transform: translateX(0%) skewX(0deg);opacity: 1;}100% {-webkit-transform: translateX(100%) skewX(-30deg);transform: translateX(100%) skewX(-30deg);opacity: 0;}}@keyframes lightSpeedOut {0% {-webkit-transform: translateX(0%) skewX(0deg);-ms-transform: translateX(0%) skewX(0deg);transform: translateX(0%) skewX(0deg);opacity: 1;}100% {-webkit-transform: translateX(100%) skewX(-30deg);-ms-transform: translateX(100%) skewX(-30deg);transform: translateX(100%) skewX(-30deg);opacity: 0;}}.lightSpeedOut {-webkit-animation-name: lightSpeedOut;animation-name: lightSpeedOut;-webkit-animation-timing-function: ease-in;animation-timing-function: ease-in;}@-webkit-keyframes rotateIn {0% {-webkit-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(-200deg);transform: rotate(-200deg);opacity: 0;}100% {-webkit-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}}@keyframes rotateIn {0% {-webkit-transform-origin: center center;-ms-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(-200deg);-ms-transform: rotate(-200deg);transform: rotate(-200deg);opacity: 0;}100% {-webkit-transform-origin: center center;-ms-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}}.rotateIn {-webkit-animation-name: rotateIn;animation-name: rotateIn;}@-webkit-keyframes rotateInDownLeft {0% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}100% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}}@keyframes rotateInDownLeft {0% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(-90deg);-ms-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}100% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}}.rotateInDownLeft {-webkit-animation-name: rotateInDownLeft;animation-name: rotateInDownLeft;}@-webkit-keyframes rotateInDownRight {0% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}100% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}}@keyframes rotateInDownRight {0% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(90deg);-ms-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}100% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}}.rotateInDownRight {-webkit-animation-name: rotateInDownRight;animation-name: rotateInDownRight;}@-webkit-keyframes rotateInUpLeft {0% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}100% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}}@keyframes rotateInUpLeft {0% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(90deg);-ms-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}100% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}}.rotateInUpLeft {-webkit-animation-name: rotateInUpLeft;animation-name: rotateInUpLeft;}@-webkit-keyframes rotateInUpRight {0% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}100% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}}@keyframes rotateInUpRight {0% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(-90deg);-ms-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}100% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}}.rotateInUpRight {-webkit-animation-name: rotateInUpRight;animation-name: rotateInUpRight;}@-webkit-keyframes rotateOut {0% {-webkit-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(200deg);transform: rotate(200deg);opacity: 0;}}@keyframes rotateOut {0% {-webkit-transform-origin: center center;-ms-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: center center;-ms-transform-origin: center center;transform-origin: center center;-webkit-transform: rotate(200deg);-ms-transform: rotate(200deg);transform: rotate(200deg);opacity: 0;}}.rotateOut {-webkit-animation-name: rotateOut;animation-name: rotateOut;}@-webkit-keyframes rotateOutDownLeft {0% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}}@keyframes rotateOutDownLeft {0% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(90deg);-ms-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}}.rotateOutDownLeft {-webkit-animation-name: rotateOutDownLeft;animation-name: rotateOutDownLeft;}@-webkit-keyframes rotateOutDownRight {0% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}}@keyframes rotateOutDownRight {0% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(-90deg);-ms-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}}.rotateOutDownRight {-webkit-animation-name: rotateOutDownRight;animation-name: rotateOutDownRight;}@-webkit-keyframes rotateOutUpLeft {0% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}}@keyframes rotateOutUpLeft {0% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: left bottom;-ms-transform-origin: left bottom;transform-origin: left bottom;-webkit-transform: rotate(-90deg);-ms-transform: rotate(-90deg);transform: rotate(-90deg);opacity: 0;}}.rotateOutUpLeft {-webkit-animation-name: rotateOutUpLeft;animation-name: rotateOutUpLeft;}@-webkit-keyframes rotateOutUpRight {0% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}}@keyframes rotateOutUpRight {0% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);opacity: 1;}100% {-webkit-transform-origin: right bottom;-ms-transform-origin: right bottom;transform-origin: right bottom;-webkit-transform: rotate(90deg);-ms-transform: rotate(90deg);transform: rotate(90deg);opacity: 0;}}.rotateOutUpRight {-webkit-animation-name: rotateOutUpRight;animation-name: rotateOutUpRight;}@-webkit-keyframes slideInDown {0% {opacity: 0;-webkit-transform: translateY(-2000px);transform: translateY(-2000px);}100% {-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes slideInDown {0% {opacity: 0;-webkit-transform: translateY(-2000px);-ms-transform: translateY(-2000px);transform: translateY(-2000px);}100% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.slideInDown {-webkit-animation-name: slideInDown;animation-name: slideInDown;}@-webkit-keyframes slideInLeft {0% {opacity: 0;-webkit-transform: translateX(-2000px);transform: translateX(-2000px);}100% {-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes slideInLeft {0% {opacity: 0;-webkit-transform: translateX(-2000px);-ms-transform: translateX(-2000px);transform: translateX(-2000px);}100% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.slideInLeft {-webkit-animation-name: slideInLeft;animation-name: slideInLeft;}@-webkit-keyframes slideInRight {0% {opacity: 0;-webkit-transform: translateX(2000px);transform: translateX(2000px);}100% {-webkit-transform: translateX(0);transform: translateX(0);}}@keyframes slideInRight {0% {opacity: 0;-webkit-transform: translateX(2000px);-ms-transform: translateX(2000px);transform: translateX(2000px);}100% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}}.slideInRight {-webkit-animation-name: slideInRight;animation-name: slideInRight;}@-webkit-keyframes slideOutLeft {0% {-webkit-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(-2000px);transform: translateX(-2000px);}}@keyframes slideOutLeft {0% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(-2000px);-ms-transform: translateX(-2000px);transform: translateX(-2000px);}}.slideOutLeft {-webkit-animation-name: slideOutLeft;animation-name: slideOutLeft;}@-webkit-keyframes slideOutRight {0% {-webkit-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(2000px);transform: translateX(2000px);}}@keyframes slideOutRight {0% {-webkit-transform: translateX(0);-ms-transform: translateX(0);transform: translateX(0);}100% {opacity: 0;-webkit-transform: translateX(2000px);-ms-transform: translateX(2000px);transform: translateX(2000px);}}.slideOutRight {-webkit-animation-name: slideOutRight;animation-name: slideOutRight;}@-webkit-keyframes slideOutUp {0% {-webkit-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(-2000px);transform: translateY(-2000px);}}@keyframes slideOutUp {0% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(-2000px);-ms-transform: translateY(-2000px);transform: translateY(-2000px);}}.slideOutUp {-webkit-animation-name: slideOutUp;animation-name: slideOutUp;}@-webkit-keyframes slideInUp {0% {opacity: 0;-webkit-transform: translateY(2000px);transform: translateY(2000px);}100% {opacity: 1;-webkit-transform: translateY(0);transform: translateY(0);}}@keyframes slideInUp {0% {opacity: 0;-webkit-transform: translateY(2000px);-ms-transform: translateY(2000px);transform: translateY(2000px);}100% {opacity: 1;-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}}.slideInUp {-webkit-animation-name: slideInUp;animation-name: slideInUp;}@-webkit-keyframes slideOutDown {0% {-webkit-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(2000px);transform: translateY(2000px);}}@keyframes slideOutDown {0% {-webkit-transform: translateY(0);-ms-transform: translateY(0);transform: translateY(0);}100% {opacity: 0;-webkit-transform: translateY(2000px);-ms-transform: translateY(2000px);transform: translateY(2000px);}}.slideOutDown {-webkit-animation-name: slideOutDown;animation-name: slideOutDown;}@-webkit-keyframes hinge {0% {-webkit-transform: rotate(0);transform: rotate(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: rotate(80deg);transform: rotate(80deg);-webkit-transform-origin: top left;transform-origin: top left;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}40% {-webkit-transform: rotate(60deg);transform: rotate(60deg);-webkit-transform-origin: top left;transform-origin: top left;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}80% {-webkit-transform: rotate(60deg) translateY(0);transform: rotate(60deg) translateY(0);-webkit-transform-origin: top left;transform-origin: top left;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;opacity: 1;}100% {-webkit-transform: translateY(700px);transform: translateY(700px);opacity: 0;}}@keyframes hinge {0% {-webkit-transform: rotate(0);-ms-transform: rotate(0);transform: rotate(0);-webkit-transform-origin: top left;-ms-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: rotate(80deg);-ms-transform: rotate(80deg);transform: rotate(80deg);-webkit-transform-origin: top left;-ms-transform-origin: top left;transform-origin: top left;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}40% {-webkit-transform: rotate(60deg);-ms-transform: rotate(60deg);transform: rotate(60deg);-webkit-transform-origin: top left;-ms-transform-origin: top left;transform-origin: top left;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}80% {-webkit-transform: rotate(60deg) translateY(0);-ms-transform: rotate(60deg) translateY(0);transform: rotate(60deg) translateY(0);-webkit-transform-origin: top left;-ms-transform-origin: top left;transform-origin: top left;-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;opacity: 1;}100% {-webkit-transform: translateY(700px);-ms-transform: translateY(700px);transform: translateY(700px);opacity: 0;}}.hinge {-webkit-animation-name: hinge;animation-name: hinge;}@-webkit-keyframes rollIn {0% {opacity: 0;-webkit-transform: translateX(-100%) rotate(-120deg);transform: translateX(-100%) rotate(-120deg);}100% {opacity: 1;-webkit-transform: translateX(0px) rotate(0deg);transform: translateX(0px) rotate(0deg);}}@keyframes rollIn {0% {opacity: 0;-webkit-transform: translateX(-100%) rotate(-120deg);-ms-transform: translateX(-100%) rotate(-120deg);transform: translateX(-100%) rotate(-120deg);}100% {opacity: 1;-webkit-transform: translateX(0px) rotate(0deg);-ms-transform: translateX(0px) rotate(0deg);transform: translateX(0px) rotate(0deg);}}.rollIn {-webkit-animation-name: rollIn;animation-name: rollIn;}@-webkit-keyframes rollOut {0% {opacity: 1;-webkit-transform: translateX(0px) rotate(0deg);transform: translateX(0px) rotate(0deg);}100% {opacity: 0;-webkit-transform: translateX(100%) rotate(120deg);transform: translateX(100%) rotate(120deg);}}@keyframes rollOut {0% {opacity: 1;-webkit-transform: translateX(0px) rotate(0deg);-ms-transform: translateX(0px) rotate(0deg);transform: translateX(0px) rotate(0deg);}100% {opacity: 0;-webkit-transform: translateX(100%) rotate(120deg);-ms-transform: translateX(100%) rotate(120deg);transform: translateX(100%) rotate(120deg);}}.rollOut {-webkit-animation-name: rollOut;animation-name: rollOut;}@-webkit-keyframes zoomIn {0% {opacity: 0;-webkit-transform: scale(.3);transform: scale(.3);}50% {opacity: 1;}}@keyframes zoomIn {0% {opacity: 0;-webkit-transform: scale(.3);-ms-transform: scale(.3);transform: scale(.3);}50% {opacity: 1;}}.zoomIn {-webkit-animation-name: zoomIn;animation-name: zoomIn;}@-webkit-keyframes zoomInDown {0% {opacity: 0;-webkit-transform: scale(.1) translateY(-2000px);transform: scale(.1) translateY(-2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateY(60px);transform: scale(.475) translateY(60px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}@keyframes zoomInDown {0% {opacity: 0;-webkit-transform: scale(.1) translateY(-2000px);-ms-transform: scale(.1) translateY(-2000px);transform: scale(.1) translateY(-2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateY(60px);-ms-transform: scale(.475) translateY(60px);transform: scale(.475) translateY(60px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}.zoomInDown {-webkit-animation-name: zoomInDown;animation-name: zoomInDown;}@-webkit-keyframes zoomInLeft {0% {opacity: 0;-webkit-transform: scale(.1) translateX(-2000px);transform: scale(.1) translateX(-2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateX(48px);transform: scale(.475) translateX(48px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}@keyframes zoomInLeft {0% {opacity: 0;-webkit-transform: scale(.1) translateX(-2000px);-ms-transform: scale(.1) translateX(-2000px);transform: scale(.1) translateX(-2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateX(48px);-ms-transform: scale(.475) translateX(48px);transform: scale(.475) translateX(48px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}.zoomInLeft {-webkit-animation-name: zoomInLeft;animation-name: zoomInLeft;}@-webkit-keyframes zoomInRight {0% {opacity: 0;-webkit-transform: scale(.1) translateX(2000px);transform: scale(.1) translateX(2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateX(-48px);transform: scale(.475) translateX(-48px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}@keyframes zoomInRight {0% {opacity: 0;-webkit-transform: scale(.1) translateX(2000px);-ms-transform: scale(.1) translateX(2000px);transform: scale(.1) translateX(2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateX(-48px);-ms-transform: scale(.475) translateX(-48px);transform: scale(.475) translateX(-48px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}.zoomInRight {-webkit-animation-name: zoomInRight;animation-name: zoomInRight;}@-webkit-keyframes zoomInUp {0% {opacity: 0;-webkit-transform: scale(.1) translateY(2000px);transform: scale(.1) translateY(2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateY(-60px);transform: scale(.475) translateY(-60px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}@keyframes zoomInUp {0% {opacity: 0;-webkit-transform: scale(.1) translateY(2000px);-ms-transform: scale(.1) translateY(2000px);transform: scale(.1) translateY(2000px);-webkit-animation-timing-function: ease-in-out;animation-timing-function: ease-in-out;}60% {opacity: 1;-webkit-transform: scale(.475) translateY(-60px);-ms-transform: scale(.475) translateY(-60px);transform: scale(.475) translateY(-60px);-webkit-animation-timing-function: ease-out;animation-timing-function: ease-out;}}.zoomInUp {-webkit-animation-name: zoomInUp;animation-name: zoomInUp;}@-webkit-keyframes zoomOut {0% {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}50% {opacity: 0;-webkit-transform: scale(.3);transform: scale(.3);}100% {opacity: 0;}}@keyframes zoomOut {0% {opacity: 1;-webkit-transform: scale(1);-ms-transform: scale(1);transform: scale(1);}50% {opacity: 0;-webkit-transform: scale(.3);-ms-transform: scale(.3);transform: scale(.3);}100% {opacity: 0;}}.zoomOut {-webkit-animation-name: zoomOut;animation-name: zoomOut;}@-webkit-keyframes zoomOutDown {40% {opacity: 1;-webkit-transform: scale(.475) translateY(-60px);transform: scale(.475) translateY(-60px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateY(2000px);transform: scale(.1) translateY(2000px);-webkit-transform-origin: center bottom;transform-origin: center bottom;}}@keyframes zoomOutDown {40% {opacity: 1;-webkit-transform: scale(.475) translateY(-60px);-ms-transform: scale(.475) translateY(-60px);transform: scale(.475) translateY(-60px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateY(2000px);-ms-transform: scale(.1) translateY(2000px);transform: scale(.1) translateY(2000px);-webkit-transform-origin: center bottom;-ms-transform-origin: center bottom;transform-origin: center bottom;}}.zoomOutDown {-webkit-animation-name: zoomOutDown;animation-name: zoomOutDown;}@-webkit-keyframes zoomOutLeft {40% {opacity: 1;-webkit-transform: scale(.475) translateX(42px);transform: scale(.475) translateX(42px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateX(-2000px);transform: scale(.1) translateX(-2000px);-webkit-transform-origin: left center;transform-origin: left center;}}@keyframes zoomOutLeft {40% {opacity: 1;-webkit-transform: scale(.475) translateX(42px);-ms-transform: scale(.475) translateX(42px);transform: scale(.475) translateX(42px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateX(-2000px);-ms-transform: scale(.1) translateX(-2000px);transform: scale(.1) translateX(-2000px);-webkit-transform-origin: left center;-ms-transform-origin: left center;transform-origin: left center;}}.zoomOutLeft {-webkit-animation-name: zoomOutLeft;animation-name: zoomOutLeft;}@-webkit-keyframes zoomOutRight {40% {opacity: 1;-webkit-transform: scale(.475) translateX(-42px);transform: scale(.475) translateX(-42px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateX(2000px);transform: scale(.1) translateX(2000px);-webkit-transform-origin: right center;transform-origin: right center;}}@keyframes zoomOutRight {40% {opacity: 1;-webkit-transform: scale(.475) translateX(-42px);-ms-transform: scale(.475) translateX(-42px);transform: scale(.475) translateX(-42px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateX(2000px);-ms-transform: scale(.1) translateX(2000px);transform: scale(.1) translateX(2000px);-webkit-transform-origin: right center;-ms-transform-origin: right center;transform-origin: right center;}}.zoomOutRight {-webkit-animation-name: zoomOutRight;animation-name: zoomOutRight;}@-webkit-keyframes zoomOutUp {40% {opacity: 1;-webkit-transform: scale(.475) translateY(60px);transform: scale(.475) translateY(60px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateY(-2000px);transform: scale(.1) translateY(-2000px);-webkit-transform-origin: center top;transform-origin: center top;}}@keyframes zoomOutUp {40% {opacity: 1;-webkit-transform: scale(.475) translateY(60px);-ms-transform: scale(.475) translateY(60px);transform: scale(.475) translateY(60px);-webkit-animation-timing-function: linear;animation-timing-function: linear;}100% {opacity: 0;-webkit-transform: scale(.1) translateY(-2000px);-ms-transform: scale(.1) translateY(-2000px);transform: scale(.1) translateY(-2000px);-webkit-transform-origin: center top;-ms-transform-origin: center top;transform-origin: center top;}}.zoomOutUp {-webkit-animation-name: zoomOutUp;animation-name: zoomOutUp;}.jBox-wrapper{text-align:left;box-sizing:border-box}.jBox-container,.jBox-content,.jBox-title{position:relative;word-break:break-word;box-sizing:border-box}.jBox-container{background:#fff}.jBox-content{padding:8px 12px;overflow-x:hidden;overflow-y:auto;transition:opacity .2s}.jBox-footer{box-sizing:border-box}.jBox-Mouse .jBox-container,.jBox-Tooltip .jBox-container{border-radius:4px;box-shadow:0 0 3px rgba(0,0,0,.25)}.jBox-Mouse .jBox-title,.jBox-Tooltip .jBox-title{padding:8px 10px 0;font-weight:700}.jBox-Mouse.jBox-hasTitle .jBox-content,.jBox-Tooltip.jBox-hasTitle .jBox-content{padding-top:5px}.jBox-Mouse{pointer-events:none}.jBox-pointer{position:absolute;overflow:hidden;box-sizing:border-box}.jBox-pointer:after{content:'';width:20px;height:20px;position:absolute;background:#fff;transform:rotate(45deg);box-sizing:border-box}.jBox-pointer-top{top:0}.jBox-pointer-top:after{left:5px;top:6px;box-shadow:-1px -1px 2px rgba(0,0,0,.15)}.jBox-pointer-right{right:0}.jBox-pointer-right:after{top:5px;right:6px;box-shadow:1px -1px 2px rgba(0,0,0,.15)}.jBox-pointer-left{left:0}.jBox-pointer-left:after{top:5px;left:6px;box-shadow:-1px 1px 2px rgba(0,0,0,.15)}.jBox-pointer-bottom{bottom:0}.jBox-pointer-bottom:after{left:5px;bottom:6px;box-shadow:1px 1px 2px rgba(0,0,0,.15)}.jBox-pointer-bottom,.jBox-pointer-top{width:30px;height:12px}.jBox-pointer-left,.jBox-pointer-right{width:12px;height:30px}.jBox-Modal .jBox-container{border-radius:4px}.jBox-Modal .jBox-container,.jBox-Modal.jBox-closeButton-box:before{box-shadow:0 3px 15px rgba(0,0,0,.4),0 0 5px rgba(0,0,0,.4)}.jBox-Modal .jBox-content{padding:15px 20px}.jBox-Modal .jBox-title{border-radius:4px 4px 0 0;padding:15px 20px;background:#fafafa;border-bottom:1px solid #eee}.jBox-Modal.jBox-closeButton-title .jBox-title{padding-right:65px}.jBox-Modal .jBox-footer{border-radius:0 0 4px 4px}.jBox-closeButton{z-index:1;cursor:pointer;position:absolute;box-sizing:border-box}.jBox-closeButton svg{position:absolute;top:50%;right:50%}.jBox-closeButton path{fill:#aaa;transition:fill .2s}.jBox-closeButton:hover path{fill:#888}.jBox-overlay .jBox-closeButton{top:0;right:0;width:40px;height:40px}.jBox-overlay .jBox-closeButton svg{width:20px;height:20px;margin-top:-10px;margin-right:-10px}.jBox-overlay .jBox-closeButton path{fill:#ddd}.jBox-overlay .jBox-closeButton:hover path{fill:#fff}.jBox-closeButton-title .jBox-closeButton{top:0;right:0;bottom:0;width:50px}.jBox-closeButton-title svg{width:12px;height:12px;margin-top:-6px;margin-right:-6px}.jBox-closeButton-box{box-sizing:border-box}.jBox-closeButton-box .jBox-closeButton{top:-8px;right:-10px;width:24px;height:24px;background:#fff;border-radius:50%}.jBox-closeButton-box .jBox-closeButton svg{width:10px;height:10px;margin-top:-5px;margin-right:-5px}.jBox-closeButton-box:before{content:'';position:absolute;top:-8px;right:-10px;width:24px;height:24px;border-radius:50%;box-shadow:0 0 5px rgba(0,0,0,.3)}.jBox-closeButton-box.jBox-pointerPosition-top:before{top:5px}.jBox-closeButton-box.jBox-pointerPosition-right:before{right:2px}.jBox-Modal.jBox-hasTitle.jBox-closeButton-box .jBox-closeButton{background:#fafafa}.jBox-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,.82)}.jBox-footer{background:#fafafa;border-top:1px solid #eee;padding:8px 10px;border-radius:0 0 3px 3px}body[class*=" jBox-blockScroll-"],body[class^=jBox-blockScroll-]{overflow:hidden}.jBox-draggable{cursor:move}@keyframes jBoxLoading{to{transform:rotate(360deg)}}.jBox-loading .jBox-content{opacity:.2}.jBox-loading-spinner .jBox-content{min-height:38px!important;min-width:38px!important;opacity:0}.jBox-spinner{box-sizing:border-box;position:absolute;top:50%;left:50%;width:24px;height:24px;margin-top:-12px;margin-left:-12px}.jBox-spinner:before{display:block;box-sizing:border-box;content:'';width:24px;height:24px;border-radius:50%;border:2px solid rgba(0,0,0,.2);border-top-color:rgba(0,0,0,.8);animation:jBoxLoading .6s linear infinite}.jBox-countdown{border-radius:4px 4px 0 0;z-index:0;background:#000;opacity:.2;position:absolute;top:0;left:0;right:0;height:3px;overflow:hidden}.jBox-countdown-inner{top:0;right:0;width:100%;height:3px;position:absolute;background:#fff}[class*=" jBox-animated-"],[class^=jBox-animated-]{animation-fill-mode:both}@keyframes jBox-tada{0%{transform:scale(1)}10%,20%{transform:scale(.8) rotate(-4deg)}30%,50%,70%,90%{transform:scale(1.2) rotate(4deg)}40%,60%,80%{transform:scale(1.2) rotate(-4deg)}100%{transform:scale(1) rotate(0)}}.jBox-animated-tada{animation:jBox-tada 1s}@keyframes jBox-tadaSmall{0%{transform:scale(1)}10%,20%{transform:scale(.9) rotate(-2deg)}30%,50%,70%,90%{transform:scale(1.1) rotate(2deg)}40%,60%,80%{transform:scale(1.1) rotate(-2deg)}100%{transform:scale(1) rotate(0)}}.jBox-animated-tadaSmall{animation:jBox-tadaSmall 1s}@keyframes jBox-flash{0%,100%,50%{opacity:1}25%,75%{opacity:0}}.jBox-animated-flash{animation:jBox-flash .5s}@keyframes jBox-shake{0%,100%{transform:translateX(0)}20%,60%{transform:translateX(-6px)}40%,80%{transform:translateX(6px)}}.jBox-animated-shake{animation:jBox-shake .4s}@keyframes jBox-pulseUp{0%{transform:scale(1)}50%{transform:scale(1.15)}100%{transform:scale(1)}}.jBox-animated-pulseUp{animation:jBox-pulseUp .25s}@keyframes jBox-pulseDown{0%{transform:scale(1)}50%{transform:scale(.85)}100%{transform:scale(1)}}.jBox-animated-pulseDown{animation:jBox-pulseDown .25s}@keyframes jBox-popIn{0%{transform:scale(0)}50%{transform:scale(1.1)}100%{transform:scale(1)}}.jBox-animated-popIn{animation:jBox-popIn .25s}@keyframes jBox-popOut{0%{transform:scale(1)}50%{transform:scale(1.1)}100%{transform:scale(0)}}.jBox-animated-popOut{animation:jBox-popOut .25s}@keyframes jBox-fadeIn{0%{opacity:0}100%{opacity:1}}.jBox-animated-fadeIn{animation:jBox-fadeIn .2s}@keyframes jBox-fadeOut{0%{opacity:1}100%{opacity:0}}.jBox-animated-fadeOut{animation:jBox-fadeOut .2s}@keyframes jBox-slideUp{0%{transform:translateY(0)}100%{transform:translateY(-300px);opacity:0}}.jBox-animated-slideUp{animation:jBox-slideUp .4s}@keyframes jBox-slideRight{0%{transform:translateX(0)}100%{transform:translateX(300px);opacity:0}}.jBox-animated-slideRight{animation:jBox-slideRight .4s}@keyframes jBox-slideDown{0%{transform:translateY(0)}100%{transform:translateY(300px);opacity:0}}.jBox-animated-slideDown{animation:jBox-slideDown .4s}@keyframes jBox-slideLeft{0%{transform:translateX(0)}100%{transform:translateX(-300px);opacity:0}}.jBox-animated-slideLeft{animation:jBox-slideLeft .4s}.jBox-Confirm .jBox-content{text-align:center;padding:46px 35px}@media (max-width:500px){.jBox-Confirm .jBox-content{padding:32px 20px}}.jBox-Confirm-footer{height:46px}.jBox-Confirm-button{display:block;float:left;cursor:pointer;text-align:center;width:50%;line-height:46px;height:46px;overflow:hidden;padding:0 10px;transition:color .2s,background-color .2s;box-sizing:border-box}.jBox-Confirm-button-cancel{border-bottom-left-radius:4px;background:#ddd;color:#666}.jBox-Confirm-button-cancel:active,.jBox-Confirm-button-cancel:hover{background:#ccc}.jBox-Confirm-button-cancel:active{box-shadow:inset 0 1px 3px rgba(0,0,0,.2)}.jBox-Confirm-button-submit{border-bottom-right-radius:4px;background:#7d0;color:#fff}.jBox-Confirm-button-submit:active,.jBox-Confirm-button-submit:hover{background:#6c0}.jBox-Confirm-button-submit:active{box-shadow:inset 0 1px 3px rgba(0,0,0,.2)}.jBox-Image .jBox-container{background-color:transparent}.jBox-Image .jBox-content{padding:0;width:100%;height:100%}.jBox-image-container{background:center center no-repeat;position:absolute;width:100%;height:100%;opacity:0}.jBox-image-label-wrapper{position:absolute;top:100%;left:0;right:0;height:40px;z-index:100;display:flex}.jBox-image-label-container{position:relative;flex:1}.jBox-image-label{box-sizing:border-box;position:absolute;left:0;bottom:0;width:100%;text-align:center;color:#fff;padding:8px 12px;font-size:15px;line-height:24px;transition:opacity .36s;opacity:0;z-index:0;pointer-events:none}.jBox-image-label.expanded{background:#000}.jBox-image-label:not(.expanded){text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.jBox-image-label.active{opacity:1;pointer-events:all}@media (max-width:600px){.jBox-image-label{font-size:13px}}.jBox-image-pointer-next,.jBox-image-pointer-prev{flex-shrink:0;width:40px;height:40px;cursor:pointer;opacity:.8;transition:opacity .2s;background:no-repeat center center url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ijc0LjcgMjI0IDE4LjcgMzIiPg0KPHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTTkzLDIyNy40TDgwLjQsMjQwTDkzLDI1Mi42YzAuNCwwLjQsMC40LDEuMSwwLDEuNWwtMS42LDEuNmMtMC40LDAuNC0xLDAuNS0xLjUsMEw3NSwyNDAuN2MtMC40LTAuNC0wLjUtMSwwLTEuNWwxNC45LTE0LjljMC40LTAuNCwxLTAuNCwxLjUsMGwxLjYsMS42QzkzLjUsMjI2LjQsOTMuNCwyMjcsOTMsMjI3LjR6Ii8+DQo8L3N2Zz4=);background-size:11px auto;user-select:none;z-index:1}.jBox-image-pointer-next:hover,.jBox-image-pointer-prev:hover{opacity:1}.jBox-image-pointer-next{transform:scaleX(-1)}.jBox-image-counter-container{flex-shrink:0;white-space:nowrap;height:40px;line-height:40px;font-size:13px;color:#fff;text-align:right;display:none}.jBox-image-has-counter .jBox-image-counter-container{display:block}.jBox-overlay.jBox-overlay-Image{background:#000}.jBox-image-not-found{background:#000}.jBox-image-not-found:before{content:'';box-sizing:border-box;display:block;width:80px;height:80px;margin-top:-40px;margin-left:-40px;position:absolute;top:50%;left:50%;border:5px solid #222;border-radius:50%}.jBox-image-not-found:after{content:'';display:block;box-sizing:content-box;z-index:auto;width:6px;height:74px;margin-top:-37px;margin-left:-3px;position:absolute;top:50%;left:50%;background:#222;transform:rotateZ(45deg);transform-origin:50% 50% 0}.jBox-image-download-button-wrapper{position:absolute;top:-40px;right:35px;height:40px;display:flex;cursor:pointer;opacity:.8;transition:opacity .2s}.jBox-image-download-button-wrapper:hover{opacity:1}.jBox-image-download-button-icon{width:40px;height:40px;background:center center no-repeat url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NDAgNjQwIj48cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNNDE2IDI1NnYtMTkyaC0xOTJ2MTkyaC0xNjBsMjU2IDI1NiAyNTYtMjU2aC0xNjB6TTAgNTc2aDY0MHY2NGgtNjQwdi02NHoiPjwvcGF0aD48L3N2Zz4=);background-size:60%}.jBox-image-download-button-text{white-space:nowrap;line-height:40px;padding:0 10px 0 0;color:#fff;font-size:14px}@keyframes jBoxImageLoading{to{transform:rotate(360deg)}}.jBox-image-loading:before{content:'';position:absolute;top:50%;left:50%;width:32px;height:32px;margin-top:-16px;margin-left:-16px;border:4px solid #333;border-bottom-color:#666;animation:jBoxImageLoading 1.2s linear infinite;border-radius:50%}.jBox-Notice{transition:margin .2s}.jBox-Notice .jBox-container{border-radius:4px;box-shadow:inset 1px 1px 0 0 rgba(255,255,255,.25),inset -1px -1px 0 0 rgba(0,0,0,.1)}.jBox-Notice .jBox-content{border-radius:4px;padding:12px 20px}@media (max-width:768px){.jBox-Notice .jBox-content{padding:10px 15px}}@media (max-width:500px){.jBox-Notice .jBox-content{padding:8px 10px}}.jBox-Notice.jBox-hasTitle .jBox-content{padding-top:5px}@media (max-width:500px){.jBox-Notice.jBox-hasTitle .jBox-content{padding-top:0}}.jBox-Notice.jBox-hasTitle .jBox-title{padding:12px 20px 0;font-weight:700}@media (max-width:768px){.jBox-Notice.jBox-hasTitle .jBox-title{padding:10px 15px 0}}@media (max-width:500px){.jBox-Notice.jBox-hasTitle .jBox-title{padding:8px 10px 0}}.jBox-Notice.jBox-closeButton-title .jBox-title{padding-right:55px}.jBox-Notice.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton{width:40px}.jBox-Notice.jBox-Notice-black .jBox-container{color:#fff;background:#000}.jBox-Notice.jBox-Notice-black.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton path,.jBox-Notice.jBox-Notice-black.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton:hover path{fill:#fff}.jBox-Notice.jBox-Notice-gray .jBox-container{color:#222;background:#f6f6f6}.jBox-Notice.jBox-Notice-gray.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton path,.jBox-Notice.jBox-Notice-gray.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton:hover path{fill:#222}.jBox-Notice.jBox-Notice-red .jBox-container{color:#fff;background:#d00}.jBox-Notice.jBox-Notice-red.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton path,.jBox-Notice.jBox-Notice-red.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton:hover path{fill:#fff}.jBox-Notice.jBox-Notice-green .jBox-container{color:#fff;background:#5d0}.jBox-Notice.jBox-Notice-green.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton path,.jBox-Notice.jBox-Notice-green.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton:hover path{fill:#fff}.jBox-Notice.jBox-Notice-blue .jBox-container{color:#fff;background:#49d}.jBox-Notice.jBox-Notice-blue.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton path,.jBox-Notice.jBox-Notice-blue.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton:hover path{fill:#fff}.jBox-Notice.jBox-Notice-yellow .jBox-container{color:#000;background:#fd0}.jBox-Notice.jBox-Notice-yellow.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton path,.jBox-Notice.jBox-Notice-yellow.jBox-closeButton-title.jBox-hasTitle .jBox-closeButton:hover path{fill:#fff}.jBox-NoticeFancy .jBox-content,.jBox-NoticeFancy .jBox-title{padding-left:25px}.jBox-NoticeFancy.jBox-Notice-color .jBox-container{color:#fff;background:#000}.jBox-NoticeFancy.jBox-Notice-color .jBox-container:after{content:'';position:absolute;top:0;left:0;bottom:0;width:8px;border-radius:4px 0 0 4px;background-image:linear-gradient(45deg,rgba(255,255,255,.4) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.4) 75%,transparent 75%,transparent);background-size:14px 14px}.jBox-NoticeFancy.jBox-Notice-black .jBox-container:after,.jBox-NoticeFancy.jBox-Notice-gray .jBox-container:after{background-color:#888}.jBox-NoticeFancy.jBox-Notice-red .jBox-container:after{background-color:#e00}.jBox-NoticeFancy.jBox-Notice-green .jBox-container:after{background-color:#6c0}.jBox-NoticeFancy.jBox-Notice-blue .jBox-container:after{background-color:#49d}.jBox-NoticeFancy.jBox-Notice-yellow .jBox-container:after{background-color:#fb0}.jBox-NoticeFancy .jBox-countdown{left:8px;border-radius:0 4px 0 0}.jBox-TooltipBorder .jBox-container,.jBox-TooltipBorder .jBox-pointer:after{border:2px solid #49d}.jBox-TooltipBorder .jBox-pointer:after{width:22px;height:22px}.jBox-TooltipBorder .jBox-pointer-bottom,.jBox-TooltipBorder .jBox-pointer-top{width:34px;height:13px}.jBox-TooltipBorder .jBox-pointer-bottom:after,.jBox-TooltipBorder .jBox-pointer-top:after{left:6px}.jBox-TooltipBorder .jBox-pointer-left,.jBox-TooltipBorder .jBox-pointer-right{width:13px;height:34px}.jBox-TooltipBorder .jBox-pointer-left:after,.jBox-TooltipBorder .jBox-pointer-right:after{top:6px}.jBox-TooltipBorder.jBox-closeButton-box:before{width:28px;height:28px;background:#49d}.jBox-TooltipBorderThick .jBox-container{box-shadow:none;border-radius:8px;border:4px solid #ccc}.jBox-TooltipBorderThick .jBox-pointer:after{box-shadow:none;border:4px solid #ccc;width:24px;height:24px}.jBox-TooltipBorderThick .jBox-pointer-bottom,.jBox-TooltipBorderThick .jBox-pointer-top{width:38px;height:13px}.jBox-TooltipBorderThick .jBox-pointer-left,.jBox-TooltipBorderThick .jBox-pointer-right{width:13px;height:38px}.jBox-TooltipBorderThick.jBox-closeButton-box:before{width:32px;height:32px;background:#ccc}.jBox-TooltipDark .jBox-container{border-radius:4px;background:#000;color:#fff;box-shadow:0 0 6px rgba(0,0,0,.4)}.jBox-TooltipDark .jBox-pointer:after{background:#000}.jBox-TooltipDark .jBox-closeButton{background:#000}.jBox-TooltipDark.jBox-closeButton-box:before{box-shadow:0 0 6px rgba(0,0,0,.4)}.jBox-TooltipDark.jBox-closeButton-box .jBox-closeButton path{fill:#ddd}.jBox-TooltipDark.jBox-closeButton-box .jBox-closeButton:hover path{fill:#fff}.jBox-TooltipDark.jBox-closeButton-box .jBox-closeButton:active path{fill:#bbb}.jBox-TooltipError{pointer-events:none}.jBox-TooltipError .jBox-container{border-radius:2px;background:#d00;color:#fff;font-weight:700;font-size:13px}.jBox-TooltipError .jBox-content{padding:0 10px;line-height:28px}.jBox-TooltipError .jBox-pointer:after{background:#d00;width:20px;height:20px}.jBox-TooltipError .jBox-pointer-bottom,.jBox-TooltipError .jBox-pointer-top{width:22px;height:8px}.jBox-TooltipError .jBox-pointer-left,.jBox-TooltipError .jBox-pointer-right{width:8px;height:22px}.jBox-TooltipError .jBox-pointer-top:after{left:1px;top:6px}.jBox-TooltipError .jBox-pointer-right:after{top:1px;right:6px}.jBox-TooltipError .jBox-pointer-bottom:after{left:1px;bottom:6px}.jBox-TooltipError .jBox-pointer-left:after{top:1px;left:6px}.jBox-TooltipSmall{pointer-events:none}.jBox-TooltipSmall .jBox-container{border-radius:2px}.jBox-TooltipSmall .jBox-content{padding:0 10px;line-height:28px}.jBox-TooltipSmall .jBox-pointer:after{width:20px;height:20px}.jBox-TooltipSmall .jBox-pointer-bottom,.jBox-TooltipSmall .jBox-pointer-top{width:22px;height:8px}.jBox-TooltipSmall .jBox-pointer-left,.jBox-TooltipSmall .jBox-pointer-right{width:8px;height:22px}.jBox-TooltipSmall .jBox-pointer-top:after{left:1px;top:6px}.jBox-TooltipSmall .jBox-pointer-right:after{top:1px;right:6px}.jBox-TooltipSmall .jBox-pointer-bottom:after{left:1px;bottom:6px}.jBox-TooltipSmall .jBox-pointer-left:after{top:1px;left:6px}.jBox-TooltipSmallGray{pointer-events:none}.jBox-TooltipSmallGray .jBox-container{font-size:13px;line-height:24px;border-radius:12px;background-image:linear-gradient(to bottom,#fafafa,#f2f2f2)}.jBox-TooltipSmallGray .jBox-content{padding:0 10px}.jBox-TooltipSmallGray .jBox-pointer:after{width:20px;height:20px}.jBox-TooltipSmallGray .jBox-pointer-bottom,.jBox-TooltipSmallGray .jBox-pointer-top{width:22px;height:8px}.jBox-TooltipSmallGray .jBox-pointer-left,.jBox-TooltipSmallGray .jBox-pointer-right{width:8px;height:22px}.jBox-TooltipSmallGray .jBox-pointer-top:after{background:#fafafa;left:1px;top:6px}.jBox-TooltipSmallGray .jBox-pointer-right:after{top:1px;right:6px}.jBox-TooltipSmallGray .jBox-pointer-bottom:after{background:#f2f2f2;left:1px;bottom:6px}.jBox-TooltipSmallGray .jBox-pointer-left:after{top:1px;left:6px}@media screen and (max-width: 1250px) {
html .megawp-site-center {
width: 1200px;
}
}
@media screen and (max-width: 1200px) {
html .megawp-site-center {
width: 1150px;
}
}
@media screen and (max-width: 1150px) {
html .megawp-site-center {
width: 1100px;
}
}
@media screen and (min-width: 1100px) {
.megawp-mobile-header {
display: none !important;
visibility: hidden;
opacity: 0;
}
.megawp-course-single-product-mobile-box, .megawp-course-student-notice-mobile {
display: none;
visibility: hidden;
opacity: 0;
}
}
@media screen and (max-width: 1100px) {
.megawp-site-center {
width: 100% !important;
padding-right: 9px !important;
padding-left: 9px !important;
}
.megawp-content {
width: 100%;
}
aside.megawp-sidebar {
width: 100%;
}
.megawp-account-page-content-container {
width: 100%;
}
.megawp-account-menu-container {
width: 100%;
margin-bottom: 20px;
}
header.megawp-desktop-header, .megawp-sticky-header-wrapper {
display: none;
visibility: hidden;
opacity: 0;
}
.megawp-mobile-header {
display: block;
}
header.megawp-header-wrapper .megawp-header-topmenu .topmenu-area, header.megawp-header-wrapper .megawp-header-topmenu .topmenu-social-networks {
float: unset !important;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
header.megawp-header-wrapper .megawp-header-topmenu .topmenu-area ul li {
margin: 0 10px !important;
}
header.megawp-header-wrapper .megawp-header-topmenu .topmenu-area ul li.has-children a:after {
content: '';
}
header.megawp-header-wrapper .megawp-header-topmenu .topmenu-area ul ul {
display: none;
}
header.megawp-header-wrapper .megawp-header-topmenu .topmenu-social-networks a {
margin: 0 8px !important;
}
header.megawp-header-wrapper .megawp-header-topmenu .topmenu-date {
text-align: center;
width: 100%;
}
footer.megawp-footer-v4 .megawp-footer-middle-info-area .megawp-footer-menu {
display: flex;
justify-content: center;
flex-wrap: wrap;
width: 100%;
float: unset !important;
}
footer.megawp-footer-v4 .megawp-footer-middle-info-area .megawp-footer-menu ul li a {
margin: 0 10px 15px !important;
}
footer.megawp-footer-v4 .megawp-footer-middle-info-area .footer-address {
display: block;
float: unset !important;
width: 100%;
text-align: center;
}
.megawp-course-single-product-mobile-box, .megawp-course-student-notice-mobile {
display: block;
visibility: visible;
opacity: 1;
}
.megawp-course-single-product-sidebar-box.megawp-course-summery-box, .megawp-course-student-notice-desktop {
display: none !important;
visibility: hidden;
opacity: 0;
}
}
@media screen and (max-width: 1023px) {
.megawp-search-result-posts {
grid-template-columns: 1fr 1fr;
}
.megawp-content .megawp-single-page-box .megawp-single-thumbnail img {
width: 100% !important;
}
}
@media screen and (max-width: 930px) {
.megawp-login-register-page-back-button {
width: 500px;
transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
left: 50% !important;
border-radius: 5px !important;
box-sizing: border-box;
}
}
@media screen and (max-width: 850px) {
.megawp-dashboard-content {
grid-template-columns: 1fr 1fr;
}
.megawp-el-account-notifications .megawp-notification-item {
grid-template-columns: 1fr 1fr;
}
}
@media screen and (max-width: 767px) {
.megawp-el-tv-posts .megawp-tv-posts-top-area {
grid-template-columns: 1fr;
grid-row-gap: 20px;
}
.megawp-search-result-posts {
grid-template-columns: 1fr;
}
footer.megawp-footer .megawp-footer-bottom-area .megawp-copyright {
display: block;
width: 100%;
text-align: center;
}
footer.megawp-footer-v1 .megawp-footer-bottom-area .megawp-footer-designer {
display: block;
width: 100%;
text-align: center;
}
footer.megawp-footer .megawp-footer-bottom-area .megawp-footer-social-networks {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 100%;
text-align: center;
}
footer.megawp-footer .megawp-footer-bottom-area .megawp-footer-social-networks a {
margin: 0 5px;
}
footer.megawp-footer-v3 .megawp-footer-middle-info-area .footer-address {
width: 100%;
display: block;
text-align: center;
}
footer.megawp-footer-v3 .megawp-footer-middle-info-area .megawp-footer-app-buttons {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
footer.megawp-footer-v3 .megawp-footer-middle-info-area .megawp-footer-app-buttons a {
float: unset;
}
.megawp-footer-top-area span {
width: 100%;
display: block;
text-align: center;
}
.megawp-footer-top-area a {
width: 100%;
display: block;
margin-top: 15px;
}
footer.megawp-footer-v4 .megawp-footer-v4-main-content .megawp-footer-v4-about {
width: 100%;
display: block;
}
footer.megawp-footer-v4 .megawp-footer-v4-main-content .megawp-footer-v4-certificates {
display: block;
width: 100%;
margin-top: 40px;
}
footer.megawp-footer-v4 .megawp-footer-v4-main-content .megawp-footer-v4-certificates-carousel {
width: 30%;
margin: 0 auto;
}
.megawp-content .megawp-single-page-box .megawp-post-content-bottom .megawp-post-like-area, .megawp-content .megawp-single-page-box .megawp-post-content-bottom .megawp-post-short-link {
width: 100%;
}
.megawp-download-box .megawp-download-box-links-area .download-link-item .download-link-title {
width: 100%;
text-align: center;
display: block;
}
.megawp-download-box .megawp-download-box-links-area .download-link-item a.download-button {
width: 100%;
text-align: center;
display: block;
margin-top: 10px;
}
.megawp-content .megawp-author-box {
grid-template-columns: 2fr 8fr;
}
.megawp-comments-box .megawp-comments-box-content .comment-form .comment-form-author, .megawp-comments-box .megawp-comments-box-content .comment-form .comment-form-email, .megawp-comments-box .megawp-comments-box-content .comment-form .comment-form-url, .woocommerce .megawp-product-comments .comment-form .comment-form-author, .woocommerce .megawp-product-comments .comment-form .comment-form-email, .woocommerce .megawp-product-comments .comment-form .comment-form-url {
width: 100%;
}
.megawp-comments-box .comment-list li.comment article {
grid-template-columns: 25% calc(75% - 15px);
}
.megawp-comments-box .megawp-comments-box-content .comment-list .children li.comment article {
grid-template-columns: calc(75% - 15px) 25%;
}
.megawp-single-teacher-top-box {
grid-template-columns: 1fr;
grid-row-gap: 20px;
}
}
@media screen and (max-width: 620px) {
footer.megawp-footer-v4 .megawp-footer-v4-main-content .megawp-footer-v4-about img {
display: block;
margin: 0 auto 20px !important;
float: unset !important;
}
footer.megawp-footer-v4 .megawp-footer-v4-main-content .megawp-footer-v4-about .megawp-footer-v4-about-text {
width: 100%;
}
.megawp-dashboard-content {
grid-template-columns: 1fr;
}
.megawp-el-account-notifications .megawp-notification-item {
grid-template-columns: 1fr;
}
.megawp-el-account-notifications .megawp-notification-item .megawp-account-notifications-thumbnail {
height: 230px;
margin-right: auto !important;
margin-left: auto !important;
width: 90%;
}
}
@media screen and (max-width: 550px) {
.megawp-login-register-page-container, .megawp-login-register-page-back-button {
width: calc(100% - 50px);
}
.megawp-content .megawp-author-box {
grid-template-columns: 1fr;
grid-row-gap: 30px;
}
.megawp-content .megawp-author-box .megawp-author-avatar img {
max-width: 100%;
height: auto;
width: 130px;
display: block;
margin: 0 auto;
}
.megawp-content .megawp-author-box-single .megawp-author-info .megawp-author-more-posts-button {
width: 100%;
line-height: 30px;
}
.megawp-content .megawp-author-box .megawp-author-info .megawp-author-social-networks {
width: 100%;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.megawp-content .megawp-author-box .megawp-author-info .megawp-author-social-networks a {
margin: 6px !important;
float: unset !important;
}
.megawp-download-box .megawp-download-box-links-area .download-link-item .download-link-title span, .megawp-download-box .megawp-download-box-links-area .download-link-item .download-link-title i {
width: 100%;
display: block;
}
}
@media screen and (max-width: 500px) {
.megawp-content .megawp-single-page-box .megawp-single-post-title h1, .megawp-download-box .megawp-download-box-title h3 {
display: block;
width: 100%;
text-align: center;
}
.megawp-content .megawp-single-page-box .megawp-single-post-title span.megawp-single-post-view, .megawp-download-box .megawp-download-box-title span {
display: block;
width: 100%;
margin: 10px 0 0 !important;
}
}
.megawp-mobile-header {
width: 100%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.megawp-mobile-header .megawp-mobile-notification-bar .notification-bar-center-area span.notification-bar-text {
display: block;
text-align: center !important;
width: 100%;
margin-bottom: 10px;
}
.megawp-mobile-header .megawp-mobile-notification-bar .notification-bar-center-area .megawp-notification-bar-timer {
display: flex;
flex-wrap: wrap;
justify-content: center;
float: unset;
width: 100%;
margin-bottom: 15px;
}
.megawp-mobile-header .megawp-mobile-notification-bar .notification-bar-center-area .megawp-notification-bar-timer span {
margin: 0 3px;
float: unset;
}
.megawp-mobile-header .megawp-mobile-notification-bar .notification-bar-center-area a.notification-bar-button {
display: block;
width: 100%;
margin: 0;
}
.megawp-mobile-header .megawp-mobile-notification-bar span.notification-bar-close-btn {
left: 5px;
}
.megawp-mobile-header .megawp-mobile-header-content {
display: block;
width: 100%;
padding: 17px 0;
}
.megawp-mobile-header .megawp-mobile-header-content .megawp-hamburger-icon {
float: left;
margin-left: 10px;
border-radius: 3px;
background-color: #9c27b0;
padding: 0 15px;
color: #fff;
}
.megawp-mobile-header .megawp-mobile-header-content .megawp-hamburger-icon i {
float: right;
margin-left: 7px;
font-size: 25px;
line-height: 40px;
}
.megawp-mobile-header .megawp-mobile-header-content .megawp-hamburger-icon span {
float: right;
line-height: 40px;
}
.megawp-mobile-header-v2 .megawp-mobile-header-content .mobile-header-logo-area {
width: 100%;
margin-bottom: 10px;
}
.megawp-mobile-header-v2 .megawp-mobile-header-content .mobile-header-logo-area a {
}
.megawp-mobile-header-v2 .megawp-mobile-header-content .mobile-header-logo-area img {
margin: 0 auto;
display: block;
}
.megawp-mobile-header .megawp-mobile-header-content .mobile-header-logo-area a {
line-height: 40px;
height: 40px;
font-weight: 700;
font-size: 20px;
transition-duration: 0.2s;
}
.megawp-mobile-header .megawp-mobile-header-content .mobile-header-logo-area a:hover {
opacity: 0.85;
}
.megawp-mobile-header .megawp-mobile-header-content .mobile-header-logo-area img {
height: 40px;
width: auto;
}
.megawp-mobile-header .header-user-button {
background-color: #184e77;
color: #fff;
}
.megawp-sticky-mobile-header {
display: none;
position: fixed;
left: 0;
width: 100%;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
z-index: 9999;
}
.megawp-mobile-menu-wrapper {
position: fixed;
z-index: 20000;
height: 100%;
width: 0;
left: -100%;
top: 0;
transition-duration: 0.5s;
visibility: hidden;
padding: 20px 20px 0;
box-sizing: border-box;
overflow-y: auto;
}
.megawp-mobile-menu-wrapper.opened {
left: 0;
width: 100%;
visibility: visible;
}
.megawp-mobile-menu-close {
display: block;
font-size: 25px;
margin-bottom: 20px;
cursor: pointer;
text-align: center;
background-color: #FF4500;
width: 35px;
color: #fff;
height: 35px;
line-height: 35px !important;
border-radius: 10px;;
float: right;
}
.megawp-mobile-menu-search {
margin-bottom: 20px;
width: 100%;
display: block;
}
.megawp-mobile-menu-search form {
position: relative;
border-radius: 15px;
}
.megawp-mobile-menu-search input[type=text] {
width: 100%;
border-radius: 0;
background-color: transparent;
border: none;
box-shadow: none;
line-height: 30px;
padding: 13px 15px;
font-size: 15px;
}
.megawp-mobile-menu-search input[type=text]::placeholder {
opacity: 0.6;
}
.megawp-mobile-menu-search input[type=text]:-ms-input-placeholder {
opacity: 0.6;
}
.megawp-mobile-menu-search input[type=text]::-ms-input-placeholder {
opacity: 0.6;
}
.megawp-mobile-menu-search button {
position: absolute;
top: 0;
right: 0;
border-radius: 0;
background-color: transparent;
line-height: 56px;
font-size: 19px;
height: 56px;
padding: 0 15px;
opacity: 0.6;
}
.megawp-mobile-menu-search button i {
line-height: 56px;
}
.megawp-mobile-menu-wrapper .header-user-button {
display: block;
color: #fff;
background-color: #9c27b0;
border-radius: 5px;
text-align: center;
padding: 5px;
line-height: 30px;
margin-bottom: 10px;
}
.megawp-mobile-menu-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 10px;
}
.megawp-mobile-menu-buttons > * {
margin: 10px 5px;
}
.megawp-mobile-menu-buttons a {
box-sizing: border-box;
width: 50px;
line-height: 50px;
height: 50px;
border-radius: 10px;
background-color: #2196f3;
background-size: 25px;
text-align: center;
font-size: 19px;
color: #fff;
}
.megawp-mobile-menu-buttons a:hover {
color: #fff;
}
.megawp-mobile-menu-buttons a i {
line-height: 50px;
}
.megawp-mobile-menu-cart-button {
position: relative;
}
.megawp-mobile-menu-buttons a.megawp-mobile-menu-cart-button span {
position: absolute;
top: 12px;
left: 8px;
font-size: 10px;
color: #fff;
text-align: center;
width: 16px;
height: 16px;
border-radius: 100%;
line-height: 15px;
}
#megawp-mobile-menu-items {
margin-bottom: 20px;
}
#megawp-mobile-menu-items, #megawp-mobile-menu-items ul, #megawp-mobile-menu-items ul li, #megawp-mobile-menu-items ul li a {
display: block;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#megawp-mobile-menu-items {
width: 100%;
}
#megawp-mobile-menu-items ul ul {
display: none;
}
#megawp-mobile-menu-items ul li a {
cursor: pointer;
}
#megawp-mobile-menu-items > div > ul > li > a {
padding: 15px;
font-size: 14px;
transition-duration: 0.2s;
line-height: 30px;
border-bottom: 1px solid;
}
#megawp-mobile-menu-items > div > ul > li:last-child > a {
border-bottom: none;
}
#megawp-mobile-menu-items > div ul > li.has-children > a:after {
font-family: lineicons;
content: '\ea58';
float: right;
transition-duration: 0.2s;
}
#megawp-mobile-menu-items > div ul > li.has-children.open > a:after {
transform: rotate(180deg);
}
#megawp-mobile-menu-items ul ul li a {
padding: 10px 15px;
cursor: pointer;
z-index: 2;
font-size: 13px;
text-decoration: none;
-webkit-transition: color .2s ease;
-o-transition: color .2s ease;
transition: color .2s ease;
box-sizing: border-box;
}
#megawp-mobile-menu-items ul ul ul li a {
padding: 10px 25px;
font-size: 12px;
}.btn {
display: inline-block;
font-weight: normal;
text-align: center;
vertical-align: middle;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 5px 10px;
font-size: 13px;
line-height: 1.428571429;
border-radius: 2px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.btn:focus {
outline: none;
}
.btn:hover,
.btn:focus {
color: #333333;
text-decoration: none;
}
.btn:active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn[disabled] {
cursor: not-allowed;
pointer-events: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
box-shadow: none;
}
.btn-default {
color: #333333;
background-color: #ffffff;
border-color: #cccccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
color: #333333;
background-color: #ebebeb;
border-color: #adadad;
}
.btn-default[disabled],
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled]:active {
background-color: #ffffff;
border-color: #cccccc;
}
.btn-primary {
color: #ffffff;
background-color: #428bca;
border-color: #357ebd;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
color: #ffffff;
background-color: #3276b1;
border-color: #285e8e;
}
.btn-primary[disabled],
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:active {
background-color: #428bca;
border-color: #357ebd;
}
.btn-success {
color: #ffffff;
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active {
color: #ffffff;
background-color: #47a447;
border-color: #398439;
}
.btn-success[disabled],
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled]:active {
background-color: #5cb85c;
border-color: #4cae4c;
}
.btn-info {
color: #ffffff;
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
color: #ffffff;
background-color: #39b3d7;
border-color: #269abc;
}
.btn-info[disabled],
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled]:active {
background-color: #5bc0de;
border-color: #46b8da;
}
.btn-danger {
color: #ffffff;
background-color: #d9534f;
border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
color: #ffffff;
background-color: #d2322d;
border-color: #ac2925;
}
.btn-danger[disabled],
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:active {
background-color: #d9534f;
border-color: #d43f3a;
}
.alert {
padding: 15px;
padding: 8px 10px;
border: 1px solid transparent;
border-radius: 2px;
}
.alert-succsss {
background-color: #dff0d8;
border-color: #d6e9c6;
color: #3c763d;
}
.alert-warning {
color: #8a6d3b;
background-color: #fcf8e3;
border-color: #faebcc;
}
.alert-danger {
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
@-webkit-keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
@keyframes progress-bar-stripes {
from {
background-position: 40px 0;
}
to {
background-position: 0 0;
}
}
.progress {
overflow: hidden;
height: 20px;
background-color: #f5f5f5;
border-radius: 2px;
-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}
.progress-bar {
float: left;
width: 0%;
height: 100%;
font-size: 12px;
line-height: 20px;
color: #ffffff;
text-align: center;
background-color: #428bca;
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
-webkit-transition: width 0.6s ease;
transition: width 0.6s ease;
}
.progress-striped .progress-bar {
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
background-size: 40px 40px;
}
.progress.active .progress-bar {
-webkit-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite;
}jdp-overlay{height:0;width:0}@media only screen and (max-width:481px){jdp-overlay{backdrop-filter:blur(2px);-webkit-backdrop-filter:blur(2px);background-color:rgba(0,0,0,.3);display:none;height:100%;left:0;position:fixed;top:0;width:100%}}jdp-container{-moz-animation:jdpOpenAnimation .3s cubic-bezier(.23,1,.32,1);-webkit-animation:jdpOpenAnimation .3s cubic-bezier(.23,1,.32,1);animation:jdpOpenAnimation .3s cubic-bezier(.23,1,.32,1);background:#fff;border-radius:4px;box-shadow:0 1px 6px rgba(0,0,0,.12),0 1px 4px rgba(0,0,0,.24);direction:rtl;display:none;max-width:307.875px;min-width:307.875px;overflow:hidden;padding:.5rem 0;position:absolute;-ms-touch-action:manipulation;touch-action:manipulation;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}@media only screen and (max-width:481px){jdp-container{-moz-animation:jdpOpenAnimationMobile .3s cubic-bezier(.23,1,.32,1);-webkit-animation:jdpOpenAnimationMobile .3s cubic-bezier(.23,1,.32,1);animation:jdpOpenAnimationMobile .3s cubic-bezier(.23,1,.32,1);border-radius:4px 4px 0 0;bottom:0!important;left:50%!important;max-width:100%;min-width:280px;top:unset!important;transform:translateX(-50%)!important;width:100%}}jdp-container,jdp-container *,jdp-container :after,jdp-container :before{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}jdp-container .jdp-icon-minus,jdp-container .jdp-icon-plus{border:1px solid #e6e6e6;border-radius:4px;cursor:pointer;display:inline-block;flex:none;overflow:hidden;text-align:center;text-decoration:none;vertical-align:middle}jdp-container .jdp-icon-minus svg,jdp-container .jdp-icon-plus svg{height:1.5rem;padding:.25rem;vertical-align:middle;width:1.5rem}jdp-container .jdp-icon-minus.not-in-range,jdp-container .jdp-icon-plus.not-in-range{cursor:not-allowed}jdp-container .jdp-icon-minus.not-in-range svg,jdp-container .jdp-icon-plus.not-in-range svg{opacity:.3}jdp-container .jdp-months,jdp-container .jdp-years{fill:rgba(0,0,0,.9);color:rgba(0,0,0,.9);display:-webkit-inline-box;display:-webkit-flex;display:-ms-inline-flexbox;display:inline-flex;font-size:120%;margin:0 2.5%}jdp-container .jdp-months{width:50%}jdp-container .jdp-years{width:40%}jdp-container .jdp-month,jdp-container .jdp-month input,jdp-container .jdp-month select,jdp-container .jdp-time,jdp-container .jdp-time input,jdp-container .jdp-time select,jdp-container .jdp-year,jdp-container .jdp-year input,jdp-container .jdp-year select{background:#fff;border:none;border-radius:0;color:inherit;display:inline-block;font-family:inherit;font-size:inherit;font-weight:300;height:auto;line-height:inherit;margin:0;outline:none;padding:0;text-align:center;vertical-align:initial;width:100%}jdp-container .jdp-month:active,jdp-container .jdp-month:focus,jdp-container .jdp-month input:active,jdp-container .jdp-month input:focus,jdp-container .jdp-month select:active,jdp-container .jdp-month select:focus,jdp-container .jdp-time:active,jdp-container .jdp-time:focus,jdp-container .jdp-time input:active,jdp-container .jdp-time input:focus,jdp-container .jdp-time select:active,jdp-container .jdp-time select:focus,jdp-container .jdp-year:active,jdp-container .jdp-year:focus,jdp-container .jdp-year input:active,jdp-container .jdp-year input:focus,jdp-container .jdp-year select:active,jdp-container .jdp-year select:focus{outline:none}jdp-container .jdp-month input option,jdp-container .jdp-month option,jdp-container .jdp-month select option,jdp-container .jdp-time input option,jdp-container .jdp-time option,jdp-container .jdp-time select option,jdp-container .jdp-year input option,jdp-container .jdp-year option,jdp-container .jdp-year select option{font-size:95%;min-height:1.3rem;outline:none;padding:0}jdp-container .jdp-month:hover,jdp-container .jdp-time:hover,jdp-container .jdp-year:hover{filter:brightness(.9)}jdp-container .jdp-month input,jdp-container .jdp-time input,jdp-container .jdp-year input{-webkit-appearance:none;-moz-appearance:textfield;cursor:text}jdp-container .jdp-month input::-webkit-inner-spin-button,jdp-container .jdp-month input::-webkit-outer-spin-button,jdp-container .jdp-time input::-webkit-inner-spin-button,jdp-container .jdp-time input::-webkit-outer-spin-button,jdp-container .jdp-year input::-webkit-inner-spin-button,jdp-container .jdp-year input::-webkit-outer-spin-button{-webkit-appearance:none}jdp-container .jdp-month select,jdp-container .jdp-time select,jdp-container .jdp-year select{-webkit-appearance:menulist;-moz-appearance:menulist;cursor:pointer;position:relative}jdp-container .jdp-days{-ms-flex-pack:justify;display:inline-block;display:-ms-flexbox;display:flex;flex-wrap:wrap;-ms-flex-wrap:wrap;justify-content:space-around;outline:0;padding:.5rem 0 0;text-align:left;width:100%}jdp-container .jdp-day,jdp-container .jdp-day-name{background:none;border:1px solid transparent;color:rgba(0,0,0,.9);display:inline-block;flex-basis:14.2857143%;font-weight:400;height:31px;justify-content:center;line-height:31px;margin:2px 0;position:relative;text-align:center;width:14.2857143%}jdp-container .jdp-day-name.today,jdp-container .jdp-day.today{border-color:rgba(0,0,0,.3)}jdp-container .jdp-day-name.selected,jdp-container .jdp-day.selected{background-color:#569ff7!important;color:#fff!important;opacity:1!important}jdp-container .jdp-day-name.holly-day,jdp-container .jdp-day-name.last-week,jdp-container .jdp-day.holly-day,jdp-container .jdp-day.last-week{color:#f44336}jdp-container .jdp-day.not-in-month{opacity:.4}jdp-container .jdp-day.disabled-day{cursor:not-allowed;opacity:.15}jdp-container .jdp-day:not(.disabled-day){border-radius:4px;cursor:pointer;transition:.1s linear}jdp-container .jdp-day:not(.disabled-day):hover{background:rgba(0,0,0,.1);transform:scale(1.15);z-index:1}jdp-container .jdp-day-name{background-color:rgba(0,0,0,.1);border-radius:0;cursor:default;font-size:90%;font-weight:900}jdp-container .jdp-footer{-ms-flex-pack:justify;display:inline-block;display:-ms-flexbox;display:flex;flex-wrap:nowrap;-ms-flex-wrap:nowrap;justify-content:space-between;outline:0;padding:.5rem .5rem 0;width:100%}@media only screen and (max-width:481px){jdp-container .jdp-footer{margin:.5rem 0}}jdp-container .jdp-btn-close,jdp-container .jdp-btn-empty,jdp-container .jdp-btn-today{background:#569ff7;border-radius:5px;color:#fff;cursor:pointer;display:inline-block;font-size:90%;font-weight:400;padding:.3em .6em;text-align:center}@media only screen and (max-width:481px){jdp-container .jdp-btn-close,jdp-container .jdp-btn-empty,jdp-container .jdp-btn-today{font-size:100%;padding:.5em .8em}}jdp-container .jdp-btn-close.disabled-btn,jdp-container .jdp-btn-empty.disabled-btn,jdp-container .jdp-btn-today.disabled-btn{cursor:not-allowed;opacity:.2}@media only screen and (max-width:481px){jdp-container .jdp-btn-today~.jdp-btn-empty{margin-left:auto;margin-right:1em}}jdp-container .jdp-time-container{display:flex;padding:0}jdp-container .jdp-time-container .jdp-time{flex:auto;margin:0 .5rem;position:relative}jdp-container .jdp-time-container .jdp-time select{background:rgba(0,0,0,.03);border-radius:5px;padding:.5rem 1rem .5rem 7px}jdp-container .jdp-time-container .jdp-time:after{content:":";font-size:1.5rem;height:100%;position:absolute;right:-.7rem;top:50%;transform:translateY(-50%)}jdp-container .jdp-time-container .jdp-time:first-child:after{display:none}jdp-container .jdp-time-container.jdp-only-time .jdp-time select{font-size:1.5rem;padding:.8rem 1rem .8rem 7px}jdp-container .jdp-time-container.jdp-only-time .jdp-time:after{font-size:2.3rem;position:absolute;right:-.8rem}@-webkit-keyframes jdpOpenAnimation{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}@keyframes jdpOpenAnimation{0%{opacity:0;transform:scale(.8)}to{opacity:1;transform:scale(1)}}@-webkit-keyframes jdpOpenAnimationMobile{0%{bottom:-10%;opacity:0}to{bottom:0;opacity:1}}@keyframes jdpOpenAnimationMobile{0%{margin-bottom:-20%;opacity:0}to{margin-bottom:0;opacity:1}}.session-popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 999999;
justify-content: center;
align-items: center;
font-family: inherit;
padding: 20px;
box-sizing: border-box;
}
.session-popup-box {
background: #fff;
padding: 40px 50px;
border-radius: 16px;
max-width: 500px;
width: 100%;
position: relative;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
text-align: center;
animation: popupFadeIn 0.3s ease;
box-sizing: border-box;
} .popup-image-wrapper {
margin-bottom: 20px;
}
.popup-image {
max-width: 100%;
height: auto;
border-radius: 8px; display: block;
margin: 0 auto;
max-height: 300px; object-fit: cover;
} @keyframes popupFadeIn {
from { transform: scale(0.8); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}
.popup-message {
font-size: 16px;
line-height: 1.6;
margin: 20px 0;
color: #333;
}
.popup-action-link {
display: inline-block;
background: #2271b1;
color: #fff !important;
text-decoration: none !important;
padding: 12px 30px;
border-radius: 8px;
font-size: 16px;
transition: 0.2s;
margin-top: 10px;
border: none;
cursor: pointer;
}
.popup-action-link:hover {
background: #135e96;
}
.popup-actions {
display: flex;
flex-direction: row;
justify-content: center;
gap: 12px;
margin-top: 25px;
flex-wrap: wrap;
}
.popup-btn {
padding: 10px 22px;
border-radius: 8px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
border: 2px solid transparent;
transition: 0.2s;
background: #f0f0f0;
color: #333;
min-width: 120px;
}
.remind-btn {
background: #fff;
border-color: #2271b1;
color: #2271b1;
}
.remind-btn:hover {
background: #2271b1;
color: #fff;
}
.dismiss-btn {
background: #f5f5f5;
border-color: #ddd;
color: #666;
}
.dismiss-btn:hover {
background: #e0e0e0;
border-color: #bbb;
}
@media (max-width: 600px) {
.session-popup-box {
padding: 30px 20px;
max-width: 95%;
border-radius: 12px;
}
.popup-message {
font-size: 15px;
margin: 15px 0;
}
.popup-action-link {
padding: 10px 20px;
font-size: 14px;
width: 100%;
box-sizing: border-box;
}
.popup-btn {
padding: 10px 16px;
font-size: 14px;
min-width: 100px;
}
}
@media (max-width: 480px) {
.session-popup-box {
padding: 20px 15px;
}
.popup-message {
font-size: 14px;
}
.popup-actions {
flex-direction: column;
gap: 8px;
}
.popup-btn {
width: 100%;
min-width: unset;
padding: 12px;
font-size: 15px;
}
}
@media (max-width: 360px) {
.session-popup-box {
padding: 15px 10px;
}
}.widget_dwqa_leaderboard ul.dwqa-leaderboard {
list-style: none;
padding: 0;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard > li {
display: inline-block;
list-style-type: none;
padding-bottom: 15px;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard > li img {
border-radius: 50%;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard .dwqa-user-avatar {
float: left;
padding-right: 15px;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard .dwqa-user-content {
display: table-cell;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard .dwqa-user-content .quesiton-count,
.widget_dwqa_leaderboard ul.dwqa-leaderboard .dwqa-user-content .answer-count {
display: inline-block;
color: #666;
font-style: italic;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard .dwqa-user-content .dwqa-user-header a {
color: #333;
font-weight: 600;
}
.widget_dwqa_leaderboard ul.dwqa-leaderboard .dwqa-user-content > span {
display: block;
}.searchwp-live-search-results {
box-sizing: border-box;
-moz-box-sizing: border-box;
background: #fff;
border: 1px solid #dfe6e9;
box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
border-radius: 5px;
width: 315px;
min-height: 175px;
max-height: 300px;
}
.searchwp-live-search-no-min-chars .spinner {
opacity: 0.3;
}
.searchwp-live-search-result p {
font-size:0.9em;
padding:1em;
margin:0;
border-bottom:1px solid rgba(30,30,30,0.1);
}
.searchwp-live-search-result--focused {
background: #DDD;
}
.searchwp-live-search-result--focused a {
color: #000;
}
.searchwp-live-search-result:last-of-type p {
border-bottom:0;
}
.searchwp-live-search-result a {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
} .searchwp-live-search-instructions {
border: 0 !important;
clip: rect(1px, 1px, 1px, 1px) !important;
-webkit-clip-path: inset(50%) !important;
clip-path: inset(50%) !important;
height: 1px !important;
overflow: hidden !important;
padding: 0 !important;
position: absolute !important;
width: 1px !important;
white-space: nowrap !important;
}
@keyframes searchwp-spinner-line-fade-more {
0%, 100% {
opacity: 0; }
1% {
opacity: 1;
}
}
@keyframes searchwp-spinner-line-fade-quick {
0%, 39%, 100% {
opacity: 0.25; }
40% {
opacity: 1;
}
}
@keyframes searchwp-spinner-line-fade-default {
0%, 100% {
opacity: 0.22; }
1% {
opacity: 1;
}
}.arshida-popup{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.arshida-popup:not(.arshida-popup-opened){display:none}.arshida-popup.arshida-popup-opened{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:fixed;padding:20px 0;max-width:100%;width:100vw;height:100vh;top:0;right:0;z-index:99998;background:#ecf0f1}.arshida-popup .arshida-popup-close{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;left:10px;top:10px;line-height:1;font-size:15px;background:#bdc3c7;color:#fff;border-radius:50%;padding:5px;width:20px;height:20px;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:sans-serif}.arshida-popup .arshida-popup-close:hover{opacity:.7}.arshida-popup .arshida-popup-inner{position:relative;-webkit-box-sizing:content-box;box-sizing:content-box;border-radius:5px;padding:35px 10px 10px 10px;max-width:calc(95vw - 40px);min-width:300px;max-height:calc(100vh - 40px - 40px - 40px);min-height:300px;background:var(--arshida-background-secondary-color);margin:auto;overflow:hidden;z-index:1}.arshida-popup .arshida-popup-inner .arshida-popup-content{overflow-y:auto;max-height:inherit;padding:5px}.arshida-popup .arshida-popup-inner .arshida-notices{margin:0}.arshida-popup-opener{cursor:pointer}.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;margin:0 0 -4px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-selection--single .select2-selection__clear{position:relative}.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left;padding:0}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin:0;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color:var(--wc-form-color-background,#fff);color:var(--wc-form-color-text,#000);border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected],.select2-results__option[data-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff}.select2-hidden-accessible{border:0!important;clip:rect(0 0 0 0)!important;height:1px!important;margin:-1px!important;overflow:hidden!important;padding:0!important;position:absolute!important;width:1px!important}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#444}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--default .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none;margin:5px 5px 0 0}.select2-container--default .select2-selection--multiple .select2-selection__rendered li:before{content:"";display:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#444;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid #000 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple,.select2-container--default.select2-container--open.select2-container--below .select2-selection--single{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa}.select2-container--default .select2-search--inline .select2-search__field{background:0 0;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[data-selected=true]{background-color:#ddd}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-results__option--highlighted[data-selected]{background-color:var(--wp-admin-theme-color,#0073aa);color:#fff}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:linear-gradient(to bottom,#fff 50%,#eee 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single:focus{border:1px solid var(--wp-admin-theme-color,#0073aa)}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:700;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#444}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:linear-gradient(to bottom,#eee 50%,#ccc 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid var(--wp-admin-theme-color,#0073aa)}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:0 0;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:linear-gradient(to bottom,#fff 0,#eee 50%);background-repeat:repeat-x}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:linear-gradient(to bottom,#eee 50%,#fff 100%);background-repeat:repeat-x}.select2-container--classic .select2-selection--multiple{background-color:#fff;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid var(--wp-admin-theme-color,#0073aa)}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:700;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid var(--wp-admin-theme-color,#0073aa)}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected],.select2-container--classic .select2-results__option--highlighted[data-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:var(--wp-admin-theme-color,#0073aa)}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:-ms-flexbox;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-pack:center;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;-ms-flex-negative:0;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-ms-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{-ms-flex-align:center;align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:-ms-flexbox;display:flex;height:2em;-ms-flex-pack:center;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports(outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports(outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}:root{--arshida-font-size:12px;--arshida-line-height:normal;--arshida-font-size-h1:22px;--arshida-font-size-h2:20px;--arshida-font-size-h3:18px;--arshida-font-size-h4:16px;--arshida-font-size-h5:15px;--arshida-font-size-h6:14px;--arshida-font-size-10:10px;--arshida-font-size-11:11px;--arshida-font-size-12:12px;--arshida-font-size-13:13px;--arshida-font-size-14:14px;--arshida-font-size-15:15px;--arshida-font-size-16:16px;--arshida-font-size-17:17px;--arshida-font-size-18:18px;--arshida-font-size-19:19px;--arshida-font-size-20:20px;--arshida-margin-top:0px;--arshida-auto-hide:10s;--arshida-auto-fadeout-and-remove:1s;--arshida-animation-fadeout:1s;--arshida-sticky-notice-margin-y:40px;--arshida-icon-width:25px;--arshida-icon-color:#95a5a6;--arshida-icon-hover-and-active-color:#95a5a6;--arshida-text-primary-color:#34495e;--arshida-text-secondary-color:#2c3e50;--arshida-text-highlight-color:#40bfff;--arshida-subtext-color:#bdc3c7;--arshida-a-color:#40bfff;--arshida-a-hover-or-active-color:#40bfff;--arshida-primary-color:#40bfff;--arshida-primary-2-color:#40bbf8;--arshida-secondary-color:#95a5a6;--arshida-success-color:#2ecc71;--arshida-info-color:#40bfff;--arshida-warning-color:#f1c40f;--arshida-danger-color:#d35400;--arshida-error-color:#e74c3c;--arshida-background-primary-color:#ecf0f1;--arshida-background-secondary-color:#fff;--arshida-button-background-color:#40bfff;--arshida-button-hover-background-color:#40bfff;--arshida-button-color:#fff;--arshida-button-min-height:30px;--arshida-color-white:#fff;--arshida-has-more-max-height:300px;--arshida-box-shadow-primary-color:#bdc3c7;--arshida-box-shadow-secondary-color:#ecf0f1;--arshida-box-shadow-s:0 0 1px var(--arshida-box-shadow-primary-color);--arshida-box-shadow:0 0 3px var(--arshida-box-shadow-primary-color);--arshida-box-shadow-l:0 0 5px var(--arshida-box-shadow-primary-color);--arshida-border-color:#ecf0f1;--arshida-border-radius:5px;--arshida-border:1px solid var(--arshida-border-color);--arshida-input-label-color:#7f8c8d;--arshida-input-font-size:var(--arshida-font-size);--arshida-input-line-height:2;--arshida-input-border-width:1px;--arshida-input-border-radius:5px;--arshida-input-border-color:var(--arshida-border-color);--arshida-input-border:1px solid var(--arshida-input-border-color);--arshida-input-text-color:var(--arshida-text-primary-color);--arshida-input-placeholder-color:var(--arshida-input-text-color);--arshida-input-background-color:var(
--arshida-background-secondary-color
);--arshida-input-padding:5px 10px;--arshida-input-active-border-color:var(
--arshida-text-secondary-color
);--arshida-input-box-shadow-color:var(--arshida-input-border-color);--arshida-input-box-shadow:0 0 3px var(--arshida-input-box-shadow-color);--arshida-switch-size:40px;--arshida-menu-font-size:12px;--arshida-submenu-font-size:12px;--arshida-menu-text-primary-color:var(--arshida-text-primary-color);--arshida-menu-text-secondary-color:var(--arshida-text-secondary-color);--arshida-loop-item-thumbnail-width:100%;--arshida-loop-item-thumbnail-height:auto;--arshida-loop-item-thumbnail-border-radius:0;--arshida-title-max-width:100%;--arshida-title-font-size:var(--arshida-font-size-12);--arshida-title-font-weight:500;--arshida-loop-item-meta-justify-content:space-between;--arshida-loop-item-meta-gap:10px;--arshida-loop-item-font-size:var(--arshida-font-size-11);--arshida-loop-item-background:var(--arshida-background-secondary-color);--arshida-loop-item-border:0;--arshida-loop-item-border-radius:5px;--arshida-loop-item-padding:5px;--arshida-loop-item-margin-x:10px;--arshida-loop-item-margin-y:10px;--arshida-loop-item-gap:5px;--arshida-loop-item-permalink-font-size:var(--arshida-font-size-12);--arshida-loop-item-permalink-font-weight:600;--arshida-loop-item-permalink-hover-color:var(--arshida-primary-color);--arshida-notice-color:#40bfff;--arshida-notice-background-color:var(--arshida-background-secondary-color);--arshida-notice-box-shadow-color:var(--arshida-box-shadow-primary-color);--arshida-badge-background-color:var(--arshida-primary-color);--arshida-badge-text-color:#fff;--arshida-badge-font-size:var(--arshida-font-size-12);--arshida-badge-min-width:15px;--arshida-badge-min-height:10px;--arshida-badge-position-top:-5px;--arshida-badge-position-bottom:-5px;--arshida-badge-position-left:-5px;--arshida-badge-position-right:-5px}@media screen and (max-width:768px){:root{--arshida-font-size-h1:17px;--arshida-font-size-h2:16px;--arshida-font-size-h3:15px;--arshida-font-size-h4:14px;--arshida-font-size-h5:13.5px;--arshida-font-size-h6:13px}}.screen-reader-text{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.clear{clear:both}span.instock{color:var(--arshida-success-color)}span.outofstock{color:var(--arshida-error-color)}.rotate-90{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);transform:rotate(270deg)}.lazyload{overflow:hidden;display:inline-block}.lazyload:not(.lazyloaded){position:relative;color:transparent;background-image:url(//tanasobefekri.net/wp-content/plugins/arshida/assets/img/image-solid.svg);background-image:var(--arshida-lazyload-placeholder-img, url(//tanasobefekri.net/wp-content/plugins/arshida/assets/img/image-solid.svg));background-color:var(--arshida-background-secondary-color);background-size:contain;background-repeat:no-repeat;background-position:center;background-size:var(--arshida-lazyload-placeholder-img-size,40%);opacity:.5}.lazyload:not(.lazyloaded):after{position:absolute;top:-100%;left:0;bottom:100%;right:0;-webkit-transform:translateX(100%) rotate(-36deg);transform:translateX(100%) rotate(-36deg);background-image:-webkit-gradient(linear,right top,left top,color-stop(0,rgba(255,255,255,0)),color-stop(20%,rgba(255,255,255,.2)),color-stop(60%,rgba(255,255,255,.5)),to(rgba(255,255,255,0)));background-image:linear-gradient(-90deg,rgba(255,255,255,0) 0,rgba(255,255,255,.2) 20%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0));-webkit-animation:arshida-animation-flow-over 2s infinite;animation:arshida-animation-flow-over 2s infinite;content:"";height:200%}.arshida-hidden{display:none!important}.hidden{display:none}.arshida-disabled{opacity:.5;pointer-events:none;cursor:default}.arshida-ajax-loading{opacity:.5;pointer-events:none;cursor:default}.arshida-copy-input-to-clipboard{position:relative}.arshida-flex{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap}.arshida-flex-25{-webkit-box-flex:0;-ms-flex:0 0 25%;flex:0 0 25%}.arshida-flex-50{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}.arshida-flex-100{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%}.arshida-flex-column{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.arshida-flex-justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.arshida-flex-space-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.arshida-grid{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-ms-flex-wrap:wrap;flex-wrap:wrap;width:100%}@media screen and (max-width:768px){.arshida-grid{-ms-flex-pack:distribute;justify-content:space-around}}.arshida-inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap;justify-items:center}.arshida-block{display:block}.arshida-inline-block{display:inline-block}.arshida-hide-first-header h1:first-child,.arshida-hide-first-header h2:first-child,.arshida-hide-first-header h3:first-child,.arshida-hide-first-header h4:first-child,.arshida-hide-first-header h5:first-child,.arshida-hide-first-header h6:first-child{display:none}.arshida-auto-hide{-webkit-animation:arshida-animation-auto-hide var(--arshida-auto-hide) linear;animation:arshida-animation-auto-hide var(--arshida-auto-hide) linear}.arshida-auto-hide:hover{-webkit-animation-play-state:paused;animation-play-state:paused}.arshida-auto-hide:hover::after{-webkit-animation-play-state:paused;animation-play-state:paused}.arshida-auto-hide::after{-webkit-animation:arshida-animation-minimize var(--arshida-auto-hide) linear;animation:arshida-animation-minimize var(--arshida-auto-hide) linear;content:"";position:absolute;height:2px;background:var(--arshida-timer-color);bottom:0;right:0}.arshida-auto-fadeout-and-remove{-webkit-transition:opacity var(--arshida-auto-fadeout-and-remove);transition:opacity var(--arshida-auto-fadeout-and-remove);-webkit-animation:arshida-animation-auto-fadeout-and-remove var(--arshida-auto-fadeout-and-remove) linear;animation:arshida-animation-auto-fadeout-and-remove var(--arshida-auto-fadeout-and-remove) linear}.arshida-animation-fadeout{-webkit-transition:opacity var(--arshida-animation-fadeout);transition:opacity var(--arshida-animation-fadeout);-webkit-animation:arshida-animation-fadeout var(--arshida-animation-fadeout) linear forwards;animation:arshida-animation-fadeout var(--arshida-animation-fadeout) linear forwards}.arshida-zoom-in{-webkit-animation-name:arshida-animation-zoom-in;animation-name:arshida-animation-zoom-in}.arshida-zoom-out{-webkit-animation-name:arshida-animation-zoom-out;animation-name:arshida-animation-zoom-out}.arshida-fade:not(.show){visibility:hidden}@media screen and (max-width:480px){.arshida-hide-in-mobile{display:none!important}}@media screen and (min-width:481px) and (max-width:768px){.arshida-hide-in-tablet{display:none!important}}@media screen and (min-width:769px) and (max-width:1024px){.arshida-hide-in-desktop{display:none!important}}.arshida-empty-text{color:var(--arshida-info-color)}.arshida-position-absolute{max-width:var(--arshida-position-max-width,50%);position:absolute!important;z-index:1}.arshida-position-absolute-top{--arshida-position-max-width:100%;--arshida-justify-content:center;top:var(--arshida-position-top,5px)}.arshida-position-absolute-bottom{--arshida-position-max-width:100%;--arshida-justify-content:center;bottom:var(--arshida-position-bottom,5px)}.arshida-position-absolute-top-left{--arshida-justify-content:left;top:var(--arshida-position-top,5px);left:var(--arshida-position-left,5px)}.arshida-position-absolute-top-right{--arshida-justify-content:right;top:var(--arshida-position-top,5px);right:var(--arshida-position-right,5px)}.arshida-position-absolute-bottom-left{--arshida-justify-content:left;bottom:var(--arshida-position-bottom,5px);left:var(--arshida-position-left,5px)}.arshida-position-absolute-bottom-right{--arshida-justify-content:right;bottom:var(--arshida-position-bottom,5px);right:var(--arshida-position-right,5px)}.arshida-position-relative{max-width:var(--arshida-position-max-width,100%);position:relative!important}.arshida-position-relative-top{--arshida-position-max-width:100%;--arshida-justify-content:center;top:var(--arshida-position-top,5px)}.arshida-position-relative-bottom{--arshida-position-max-width:100%;--arshida-justify-content:center;bottom:var(--arshida-position-bottom,5px)}.arshida-position-relative-top-left{--arshida-justify-content:left;top:var(--arshida-position-top,5px);right:var(--arshida-position-left,5px);margin-left:var(--arshida-position-left,5px)}.arshida-position-relative-top-right{--arshida-justify-content:right;top:var(--arshida-position-top,5px);left:var(--arshida-position-right,5px);margin-right:var(--arshida-position-right,5px)}.arshida-position-relative-bottom-left{--arshida-justify-content:left;bottom:var(--arshida-position-bottom,5px);right:var(--arshida-position-left,5px);margin-left:var(--arshida-position-left,5px)}.arshida-position-relative-bottom-right{--arshida-justify-content:right;bottom:var(--arshida-position-bottom,5px);left:var(--arshida-position-right,5px);margin-left:var(--arshida-position-right,5px)}@-webkit-keyframes arshida-animation-minimize{from{width:100%}to{width:0}}@keyframes arshida-animation-minimize{from{width:100%}to{width:0}}@-webkit-keyframes arshida-animation-auto-hide{to{visibility:hidden;display:none}}@keyframes arshida-animation-auto-hide{to{visibility:hidden;display:none}}@-webkit-keyframes arshida-animation-fadeout{50%{opacity:0}100%{opacity:0;visibility:hidden;display:none}}@keyframes arshida-animation-fadeout{50%{opacity:0}100%{opacity:0;visibility:hidden;display:none}}@-webkit-keyframes arshida-animation-auto-fadeout-and-remove{to{opacity:0}}@keyframes arshida-animation-auto-fadeout-and-remove{to{opacity:0}}@-webkit-keyframes arshida-animation-flash{0%{opacity:.4}to{opacity:1}}@keyframes arshida-animation-flash{0%{opacity:.4}to{opacity:1}}@-webkit-keyframes arshida-animation-shine{to{right:125%}}@keyframes arshida-animation-shine{to{right:125%}}@-webkit-keyframes arshida-animation-progressbar{0%{width:0}to{width:var(--arshida-progressbar-max-width,100%)}}@keyframes arshida-animation-progressbar{0%{width:0}to{width:var(--arshida-progressbar-max-width,100%)}}@-webkit-keyframes arshida-animation-zoom-in{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@keyframes arshida-animation-zoom-in{0%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}50%{opacity:1}}@-webkit-keyframes arshida-animation-zoom-out{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@keyframes arshida-animation-zoom-out{0%{opacity:1}50%{opacity:0;-webkit-transform:scale3d(.3,.3,.3);transform:scale3d(.3,.3,.3)}to{opacity:0}}@-webkit-keyframes arshida-animation-flow-over{from{-webkit-transform:translateX(100px) rotate(-45deg);transform:translateX(100px) rotate(-45deg)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes arshida-animation-flow-over{from{-webkit-transform:translateX(100px) rotate(-45deg);transform:translateX(100px) rotate(-45deg)}to{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@-webkit-keyframes arshida-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes arshida-spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes arshida-animation-bell-ring{0%{-webkit-transform:rotate(0);transform:rotate(0)}20%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}40%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}60%{-webkit-transform:rotate(-6deg);transform:rotate(-6deg)}80%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes arshida-animation-bell-ring{0%{-webkit-transform:rotate(0);transform:rotate(0)}20%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}40%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}60%{-webkit-transform:rotate(-6deg);transform:rotate(-6deg)}80%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@-webkit-keyframes arshida-animation-bell-ring-with-pause{0%{-webkit-transform:rotate(0);transform:rotate(0)}5%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}10%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}15%{-webkit-transform:rotate(-6deg);transform:rotate(-6deg)}20%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}25%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}@keyframes arshida-animation-bell-ring-with-pause{0%{-webkit-transform:rotate(0);transform:rotate(0)}5%{-webkit-transform:rotate(-12deg);transform:rotate(-12deg)}10%{-webkit-transform:rotate(10deg);transform:rotate(10deg)}15%{-webkit-transform:rotate(-6deg);transform:rotate(-6deg)}20%{-webkit-transform:rotate(4deg);transform:rotate(4deg)}25%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(0);transform:rotate(0)}}#arshida-site-container #arshida-breadcrumb,#arshida-site-container .arshida-site-content,#arshida-site-container .arshida-site-footer .footer-widgets,#arshida-site-container .arshida-site-header.arshida-primary-header .arshida-primary-menu,#arshida-site-container .arshida-site-header.arshida-primary-header .header-nav,.arshida-container,.arshida-container-fluid{width:100%;padding-left:10px;padding-right:10px;margin-left:auto;margin-right:auto}@media (min-width:576px){.arshida-container{max-width:540px}}@media (min-width:768px){.arshida-container{max-width:720px}}@media (min-width:992px){.arshida-container{max-width:960px}}@media (min-width:1200px){.arshida-container{max-width:1140px}}@media (min-width:2000px){.arshida-container{max-width:1880px}}#arshida-site-container #arshida-breadcrumb,#arshida-site-container .arshida-site-content,#arshida-site-container .arshida-site-footer .footer-widgets,#arshida-site-container .arshida-site-header.arshida-primary-header .arshida-primary-menu,#arshida-site-container .arshida-site-header.arshida-primary-header .header-nav,.arshida-container-fluid{max-width:1200px;margin-right:auto;margin-left:auto}#arshida-site-container{max-width:100%}#arshida-site-container #arshida-breadcrumb{padding:10px 10px 0 10px}#arshida-site-container .arshida-site-content{display:-webkit-box;display:-ms-flexbox;display:flex;gap:15px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:10px}#arshida-site-container .arshida-site-content>:not(#primary):not(#secondary){-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}#arshida-site-container .arshida-site-content #primary{-webkit-box-flex:1;-ms-flex:1;flex:1;min-width:300px;max-width:100%;-webkit-box-ordinal-group:3;-ms-flex-order:2;order:2}#arshida-site-container .arshida-site-content #secondary{width:33%;min-width:250px;max-width:300px;-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}@media (max-width:768px){#arshida-site-container .arshida-site-content{padding:5px;gap:10px}#arshida-site-container .arshida-site-content #primary,#arshida-site-container .arshida-site-content #secondary{-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;width:100%;max-width:100%}}.arshida-overlay{content:"";width:100%;display:block;height:100vh;background:rgba(0,0,0,.7);position:fixed;right:0;top:0;z-index:1}.arshida-loading{text-align:center}.arshida-loading .arshida-icon-spinner{-webkit-animation:arshida-spin 2s linear infinite;animation:arshida-spin 2s linear infinite}.input-text.arshida-control,input[type=date].arshida-control,input[type=email].arshida-control,input[type=number].arshida-control,input[type=password].arshida-control,input[type=search].arshida-control,input[type=tel].arshida-control,input[type=text].arshida-control,select.arshida-control,textarea.arshida-control{display:block;position:relative;width:100%;max-width:100%;min-width:var(--arshida-input-min-width);line-height:var(--arshida-input-line-height);padding:var(--arshida-input-padding);border:var(--arshida-input-border);border-radius:var(--arshida-input-border-radius);color:var(--arshida-input-text-color);background:var(--arshida-input-background-color);-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.input-text.arshida-control:focus,input[type=date].arshida-control:focus,input[type=email].arshida-control:focus,input[type=number].arshida-control:focus,input[type=password].arshida-control:focus,input[type=search].arshida-control:focus,input[type=tel].arshida-control:focus,input[type=text].arshida-control:focus,select.arshida-control:focus,textarea.arshida-control:focus{-webkit-box-shadow:var(--arshida-input-box-shadow);box-shadow:var(--arshida-input-box-shadow);outline:0;border-color:var(--arshida-input-active-border-color)}.input-text.arshida-control,input[type=date].arshida-control,input[type=email].arshida-control,input[type=number].arshida-control,input[type=password].arshida-control,input[type=search].arshida-control,input[type=tel].arshida-control,input[type=text].arshida-control,select.arshida-control,textarea.arshida-control{--arshida-input-min-width:300px}.input-text.arshida-error,.input-text.error,input[type=date].arshida-error,input[type=date].error,input[type=email].arshida-error,input[type=email].error,input[type=number].arshida-error,input[type=number].error,input[type=password].arshida-error,input[type=password].error,input[type=search].arshida-error,input[type=search].error,input[type=tel].arshida-error,input[type=tel].error,input[type=text].arshida-error,input[type=text].error,select.arshida-error,select.error,textarea.arshida-error,textarea.error{border-color:#e74c3c;color:#e74c3c}.input-text.arshida-has-icon,input[type=date].arshida-has-icon,input[type=email].arshida-has-icon,input[type=number].arshida-has-icon,input[type=password].arshida-has-icon,input[type=search].arshida-has-icon,input[type=tel].arshida-has-icon,input[type=text].arshida-has-icon,select.arshida-has-icon,textarea.arshida-has-icon{padding-left:25px}.input-text.arshida-has-icon~[class^=arshida-icon-],input[type=date].arshida-has-icon~[class^=arshida-icon-],input[type=email].arshida-has-icon~[class^=arshida-icon-],input[type=number].arshida-has-icon~[class^=arshida-icon-],input[type=password].arshida-has-icon~[class^=arshida-icon-],input[type=search].arshida-has-icon~[class^=arshida-icon-],input[type=tel].arshida-has-icon~[class^=arshida-icon-],input[type=text].arshida-has-icon~[class^=arshida-icon-],select.arshida-has-icon~[class^=arshida-icon-],textarea.arshida-has-icon~[class^=arshida-icon-]{--arshida-icon-width:20px;width:20px;height:20px;position:absolute;z-index:1;left:5px;top:calc(50% - 10px);text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end;-webkit-box-align:center;-ms-flex-align:center;align-items:center}input[type=checkbox].arshida-control,input[type=radio].arshida-control{padding:0;margin:0;width:15px;height:15px}input[type=checkbox].arshida-control.arshida-switch,input[type=radio].arshida-control.arshida-switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;font-size:inherit;width:var(--arshida-switch-size);height:calc(var(--arshida-switch-size)/ 2);-webkit-box-sizing:content-box;box-sizing:content-box;border-radius:calc(var(--arshida-switch-size)/ 2);vertical-align:text-bottom;background-color:#eee;border-color:#eee;-webkit-box-shadow:unset;box-shadow:unset}input[type=checkbox].arshida-control.arshida-switch:focus,input[type=radio].arshida-control.arshida-switch:focus{-webkit-box-shadow:unset;box-shadow:unset}input[type=checkbox].arshida-control.arshida-switch:checked:focus,input[type=radio].arshida-control.arshida-switch:checked:focus{-webkit-box-shadow:0 0 3px #2ecc71;box-shadow:0 0 3px #2ecc71}input[type=checkbox].arshida-control.arshida-switch:checked,input[type=radio].arshida-control.arshida-switch:checked{background-color:#2ecc71;border-color:#2ecc71;-webkit-box-shadow:0 0 3px #2ecc71;box-shadow:0 0 3px #2ecc71}input[type=checkbox].arshida-control.arshida-switch::before,input[type=radio].arshida-control.arshida-switch::before{content:"";position:absolute;top:50%;right:0;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);-webkit-box-sizing:border-box;box-sizing:border-box;width:calc((var(--arshida-switch-size)/ 2) - 3px);height:calc((var(--arshida-switch-size)/ 2) - 3px);margin:0 2px;border-radius:50%;background-color:var(--arshida-input-background-color);-webkit-transition:right .2s,left .2s;transition:right .2s,left .2s}input[type=checkbox].arshida-control.arshida-switch:checked::before,input[type=radio].arshida-control.arshida-switch:checked::before{right:calc((var(--arshida-switch-size)/ 2) - 1px)}.button.arshida-has-icon,button.arshida-has-icon{width:auto}.button.arshida-button-plain,button.arshida-button-plain{background:0 0;border:none;padding:0;margin:0;font:inherit;color:inherit;cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px}button.arshida-control{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;padding:5px 15px;border:0;border-radius:var(--arshida-border-radius);font-weight:700;cursor:pointer;min-height:var(--arshida-button-min-height,30px);-webkit-transition:all .2s ease-out;transition:all .2s ease-out;background-color:var(--arshida-button-background-color);color:var(--arshida-button-color,#fff);--arshida-icon-color:var(--arshida-button-color, #fff);--arshida-icon-width:calc(var(--arshida-font-size) + 4px);font-size:var(--arshida-font-size);-webkit-box-shadow:0 0 3px var(--arshida-button-background-color);box-shadow:0 0 3px var(--arshida-button-background-color)}button.arshida-control:hover{opacity:.8;-webkit-box-shadow:0 0 5px var(--arshida-button-hover-background-color);box-shadow:0 0 5px var(--arshida-button-hover-background-color)}button.arshida-control:active,button.arshida-control:focus,button.arshida-control:hover{outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color,#fff);--arshida-icon-hover-and-active-color:var(
--arshida-button-hover-color,
#fff
)}button.arshida-control:disabled,button.arshida-control[disabled]{opacity:.5!important;cursor:not-allowed!important}button.arshida-control:not([disabled]):not(.disabled).active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}button.arshida-control:not([disabled]):not(.disabled):active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}button.arshida-control.no-btn:hover{cursor:default}.arshida-button,a.arshida-button,button.arshida-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;padding:5px 15px;border:0;border-radius:var(--arshida-border-radius);font-weight:700;cursor:pointer;min-height:var(--arshida-button-min-height,30px);-webkit-transition:all .2s ease-out;transition:all .2s ease-out;background-color:var(--arshida-button-background-color);color:var(--arshida-button-color,#fff);--arshida-icon-color:var(--arshida-button-color, #fff);--arshida-icon-width:calc(var(--arshida-font-size) + 4px);font-size:var(--arshida-font-size);-webkit-box-shadow:0 0 3px var(--arshida-button-background-color);box-shadow:0 0 3px var(--arshida-button-background-color)}.arshida-button:hover,a.arshida-button:hover,button.arshida-button:hover{opacity:.8;-webkit-box-shadow:0 0 5px var(--arshida-button-hover-background-color);box-shadow:0 0 5px var(--arshida-button-hover-background-color)}.arshida-button:active,.arshida-button:focus,.arshida-button:hover,a.arshida-button:active,a.arshida-button:focus,a.arshida-button:hover,button.arshida-button:active,button.arshida-button:focus,button.arshida-button:hover{outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color,#fff);--arshida-icon-hover-and-active-color:var(
--arshida-button-hover-color,
#fff
)}.arshida-button:disabled,.arshida-button[disabled],a.arshida-button:disabled,a.arshida-button[disabled],button.arshida-button:disabled,button.arshida-button[disabled]{opacity:.5!important;cursor:not-allowed!important}.arshida-button:not([disabled]):not(.disabled).active,a.arshida-button:not([disabled]):not(.disabled).active,button.arshida-button:not([disabled]):not(.disabled).active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}.arshida-button:not([disabled]):not(.disabled):active,a.arshida-button:not([disabled]):not(.disabled):active,button.arshida-button:not([disabled]):not(.disabled):active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}.arshida-button.no-btn:hover,a.arshida-button.no-btn:hover,button.arshida-button.no-btn:hover{cursor:default}.arshida-button-primary,a.arshida-button-primary,button.arshida-button-primary{--arshida-button-background-color:var(--arshida-primary-color);--arshida-button-hover-background-color:var(--arshida-primary-color)}.arshida-button-secondary,a.arshida-button-secondary,button.arshida-button-secondary{--arshida-button-background-color:var(--arshida-secondary-color);--arshida-button-hover-background-color:var(--arshida-secondary-color)}.arshida-button-success,a.arshida-button-success,button.arshida-button-success{--arshida-button-background-color:var(--arshida-success-color);--arshida-button-hover-background-color:var(--arshida-success-color)}.arshida-button-info,a.arshida-button-info,button.arshida-button-info{--arshida-button-background-color:var(--arshida-info-color);--arshida-button-hover-background-color:var(--arshida-info-color)}.arshida-button-warning,a.arshida-button-warning,button.arshida-button-warning{--arshida-button-background-color:var(--arshida-warning-color);--arshida-button-hover-background-color:var(--arshida-warning-color)}.arshida-button-danger,a.arshida-button-danger,button.arshida-button-danger{--arshida-button-background-color:var(--arshida-danger-color);--arshida-button-hover-background-color:var(--arshida-danger-color)}.arshida-button-error,a.arshida-button-error,button.arshida-button-error{--arshida-button-background-color:var(--arshida-error-color);--arshida-button-hover-background-color:var(--arshida-error-color)}a.arshida-button{text-decoration:none}.arshida-control~.select2{width:100%!important;height:100%}.arshida-control~.select2 .select2-selection__rendered li{display:inline-block;margin-top:0;margin-bottom:0}.arshida-control~.select2 .select2-selection__rendered .select2-search{max-width:100%}.arshida-control~.select2 .select2-selection__rendered .select2-search .select2-search__field{width:unset!important;max-width:100%}.arshida-control~.select2 .select2-selection--multiple,.arshida-control~.select2 .select2-selection--single{width:100%!important;min-width:var(--arshida-input-min-width);padding:var(--arshida-input-padding);border-color:var(--arshida-border-color);border-radius:var(--arshida-input-border-radius);color:var(--arshida-input-text-color);height:100%}.arshida-control~.select2 .select2-selection--multiple .select2-selection__arrow,.arshida-control~.select2 .select2-selection--single .select2-selection__arrow{top:calc(50% - 15px)}.arshida-control.arshida-error~.select2 .select2-selection--multiple,.arshida-control.arshida-error~.select2 .select2-selection--single{border-color:#e74c3c;color:#e74c3c}.select2{width:100%!important}.select2-container{z-index:9}.select2-container.select2-container--open{z-index:9999999}.select2-container--default .select2-selection--single .select2-selection__rendered{line-height:var(--arshida-input-line-height)}.select2-container--default .select2-search--dropdown{background:var(--arshida-background-primary-color);border-color:var(--arshida-border-color);border-style:solid;border-width:1px 0}.select2-container--default .select2-search--dropdown .select2-search__field{border:var(--arshida-input-border);border-radius:var(--arshida-input-border-radius)}.select2-container--default .select2-dropdown{border-color:var(--arshida-border-color)}.select2-container--default .select2-results__option{margin:0}.select2-container--default .select2-results__option:hover{cursor:pointer}.select2-container--default .select2-results__option--highlighted[aria-selected],.select2-container--default .select2-results__option--highlighted[data-selected]{background-color:var(--arshida-primary-2-color);color:var(--arshida-background-secondary-color)}.select2-container--default .select2-results__option[aria-selected=true],.select2-container--default .select2-results__option[data-selected=true]{background-color:var(--arshida-primary-color);color:var(--arshida-background-secondary-color)}.arshida-preview-attachments{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;margin-top:15px}.arshida-preview-attachments .arshida-preview-attachment{position:relative}.arshida-preview-attachments .arshida-preview-attachment .arshida-preview-attachment-remove-item:before{content:"\2715";position:absolute;right:-10px;top:-10px;background-color:#eee;border-color:#eee;border-radius:50%;font-size:var(--arshida-font-size-18);color:var(--arshida-input-label-color);width:20px;height:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}.arshida-preview-attachments .arshida-preview-attachment .arshida-preview-attachment-remove-item:hover{opacity:.7}.arshida-preview-attachments .arshida-preview-attachment .arshida-preview-attachment-remove-item:hover:before{color:#e74c3c}.arshida-preview-attachments .arshida-preview-attachment img{width:100px}.arshida-quantity-input-wrapper{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);background:var(--arshida-background-secondary-color);max-height:var(--arshida-quantity-max-height,50px)}.arshida-quantity-input-wrapper .arshida-quantity-input{--arshida-input-padding:0;--arshida-input-border-radius:0;--arshida-input-border:none;width:var(--arshida-quantity-input-width,32px);min-height:25px;height:100%;border:none;border-radius:unset;-moz-appearance:textfield;background:#ecf0f1;padding:0;text-align:center;font-size:var(--arshida-font-size-12);color:#34495e}.arshida-quantity-input-wrapper .arshida-quantity-input::-webkit-inner-spin-button,.arshida-quantity-input-wrapper .arshida-quantity-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.arshida-quantity-input-wrapper .arshida-quantity-input-minus,.arshida-quantity-input-wrapper .arshida-quantity-input-plus{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:var(--arshida-quantity-input-width,32px);height:var(--arshida-quantity-input-width,32px);cursor:pointer}.arshida-quantity-input-wrapper .arshida-quantity-input-minus svg,.arshida-quantity-input-wrapper .arshida-quantity-input-plus svg{width:12px;fill:#95a5a6}.arshida-required{color:#e74c3c}.arshida-fields-conditions-js{display:none}.arshida-field-wrapper:not(.form-field){position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:15px;-ms-flex-wrap:wrap;flex-wrap:wrap}.arshida-field-wrapper:not(.form-field) .arshida-input-label-wrapper,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}.arshida-field-wrapper:not(.form-field):not(:last-child){margin-bottom:20px}.arshida-field-wrapper:not(.form-field).arshida-full-width-field-wrapper>.arshida-input-wrapper{display:block;-webkit-box-flex:100%!important;-ms-flex:100%!important;flex:100%!important;max-width:100%!important}.arshida-field-wrapper:not(.form-field) .arshida-input-label-wrapper{width:200px;min-width:200px;max-width:200px}.arshida-field-wrapper:not(.form-field) .arshida-input-label-wrapper h4,.arshida-field-wrapper:not(.form-field) .arshida-input-label-wrapper label{font-weight:500;color:var(--arshida-input-label-color);margin:0}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper{position:relative}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-checkbox-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-checkbox-label:not(:last-child){margin-bottom:5px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-radio-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-radio-label:not(:last-child){margin-bottom:5px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .input-text.arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=date].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=email].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=number].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=password].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=search].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=tel].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=text].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper textarea.arshida-control{display:block;position:relative;width:100%;max-width:100%;min-width:var(--arshida-input-min-width);line-height:var(--arshida-input-line-height);padding:var(--arshida-input-padding);border:var(--arshida-input-border);border-radius:var(--arshida-input-border-radius);color:var(--arshida-input-text-color);background:var(--arshida-input-background-color);-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .input-text.arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=date].arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=email].arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=number].arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=password].arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=search].arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=tel].arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=text].arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper textarea.arshida-control:focus{-webkit-box-shadow:var(--arshida-input-box-shadow);box-shadow:var(--arshida-input-box-shadow);outline:0;border-color:var(--arshida-input-active-border-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .input-text.arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=date].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=email].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=number].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=password].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=search].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=tel].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=text].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper textarea.arshida-control{--arshida-input-min-width:300px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .input-text.arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .input-text.error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=date].arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=date].error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=email].arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=email].error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=number].arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=number].error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=password].arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=password].error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=search].arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=search].error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=tel].arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=tel].error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=text].arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=text].error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper textarea.arshida-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper textarea.error{border-color:#e74c3c;color:#e74c3c}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .input-text.arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=date].arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=email].arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=number].arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=password].arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=search].arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=tel].arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=text].arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper textarea.arshida-has-icon{padding-left:25px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .input-text.arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=date].arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=email].arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=number].arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=password].arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=search].arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=tel].arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=text].arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.arshida-has-icon~[class^=arshida-icon-],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper textarea.arshida-has-icon~[class^=arshida-icon-]{--arshida-icon-width:20px;width:20px;height:20px;position:absolute;z-index:1;left:5px;top:calc(50% - 10px);text-align:left;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=checkbox].arshida-control,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=radio].arshida-control{padding:0;margin:0;width:15px;height:15px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=checkbox].arshida-control.arshida-switch,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=radio].arshida-control.arshida-switch{-webkit-appearance:none;-moz-appearance:none;appearance:none;position:relative;font-size:inherit;width:var(--arshida-switch-size);height:calc(var(--arshida-switch-size)/ 2);-webkit-box-sizing:content-box;box-sizing:content-box;border-radius:calc(var(--arshida-switch-size)/ 2);vertical-align:text-bottom;background-color:#eee;border-color:#eee;-webkit-box-shadow:unset;box-shadow:unset}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=checkbox].arshida-control.arshida-switch:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=radio].arshida-control.arshida-switch:focus{-webkit-box-shadow:unset;box-shadow:unset}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=checkbox].arshida-control.arshida-switch:checked:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=radio].arshida-control.arshida-switch:checked:focus{-webkit-box-shadow:0 0 3px #2ecc71;box-shadow:0 0 3px #2ecc71}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=checkbox].arshida-control.arshida-switch:checked,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=radio].arshida-control.arshida-switch:checked{background-color:#2ecc71;border-color:#2ecc71;-webkit-box-shadow:0 0 3px #2ecc71;box-shadow:0 0 3px #2ecc71}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=checkbox].arshida-control.arshida-switch::before,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=radio].arshida-control.arshida-switch::before{content:"";position:absolute;top:50%;right:0;-webkit-transform:translate(0,-50%);transform:translate(0,-50%);-webkit-box-sizing:border-box;box-sizing:border-box;width:calc((var(--arshida-switch-size)/ 2) - 3px);height:calc((var(--arshida-switch-size)/ 2) - 3px);margin:0 2px;border-radius:50%;background-color:var(--arshida-input-background-color);-webkit-transition:right .2s,left .2s;transition:right .2s,left .2s}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=checkbox].arshida-control.arshida-switch:checked::before,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper input[type=radio].arshida-control.arshida-switch:checked::before{right:calc((var(--arshida-switch-size)/ 2) - 1px)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .button.arshida-has-icon,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-has-icon{width:auto}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .button.arshida-button-plain,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-plain{background:0 0;border:none;padding:0;margin:0;font:inherit;color:inherit;cursor:pointer;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;padding:5px 15px;border:0;border-radius:var(--arshida-border-radius);font-weight:700;cursor:pointer;min-height:var(--arshida-button-min-height,30px);-webkit-transition:all .2s ease-out;transition:all .2s ease-out;background-color:var(--arshida-button-background-color);color:var(--arshida-button-color,#fff);--arshida-icon-color:var(--arshida-button-color, #fff);--arshida-icon-width:calc(var(--arshida-font-size) + 4px);font-size:var(--arshida-font-size);-webkit-box-shadow:0 0 3px var(--arshida-button-background-color);box-shadow:0 0 3px var(--arshida-button-background-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control:hover{opacity:.8;-webkit-box-shadow:0 0 5px var(--arshida-button-hover-background-color);box-shadow:0 0 5px var(--arshida-button-hover-background-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control:active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control:hover{outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color,#fff);--arshida-icon-hover-and-active-color:var(
--arshida-button-hover-color,
#fff
)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control:disabled,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control[disabled]{opacity:.5!important;cursor:not-allowed!important}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control:not([disabled]):not(.disabled).active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control:not([disabled]):not(.disabled):active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-control.no-btn:hover{cursor:default}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;position:relative;padding:5px 15px;border:0;border-radius:var(--arshida-border-radius);font-weight:700;cursor:pointer;min-height:var(--arshida-button-min-height,30px);-webkit-transition:all .2s ease-out;transition:all .2s ease-out;background-color:var(--arshida-button-background-color);color:var(--arshida-button-color,#fff);--arshida-icon-color:var(--arshida-button-color, #fff);--arshida-icon-width:calc(var(--arshida-font-size) + 4px);font-size:var(--arshida-font-size);-webkit-box-shadow:0 0 3px var(--arshida-button-background-color);box-shadow:0 0 3px var(--arshida-button-background-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button:hover,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button:hover,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button:hover{opacity:.8;-webkit-box-shadow:0 0 5px var(--arshida-button-hover-background-color);box-shadow:0 0 5px var(--arshida-button-hover-background-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button:active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button:hover,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button:active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button:hover,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button:active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button:focus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button:hover{outline:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color,#fff);--arshida-icon-hover-and-active-color:var(
--arshida-button-hover-color,
#fff
)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button:disabled,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button[disabled],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button:disabled,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button[disabled],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button:disabled,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button[disabled]{opacity:.5!important;cursor:not-allowed!important}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button:not([disabled]):not(.disabled).active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button:not([disabled]):not(.disabled).active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button:not([disabled]):not(.disabled).active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button:not([disabled]):not(.disabled):active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button:not([disabled]):not(.disabled):active,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button:not([disabled]):not(.disabled):active{background-color:var(--arshida-button-hover-background-color);color:var(--arshida-button-hover-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button.no-btn:hover,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button.no-btn:hover,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button.no-btn:hover{cursor:default}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button-primary,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button-primary,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-primary{--arshida-button-background-color:var(--arshida-primary-color);--arshida-button-hover-background-color:var(--arshida-primary-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button-secondary,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button-secondary,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-secondary{--arshida-button-background-color:var(--arshida-secondary-color);--arshida-button-hover-background-color:var(--arshida-secondary-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button-success,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button-success,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-success{--arshida-button-background-color:var(--arshida-success-color);--arshida-button-hover-background-color:var(--arshida-success-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button-info,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button-info,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-info{--arshida-button-background-color:var(--arshida-info-color);--arshida-button-hover-background-color:var(--arshida-info-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button-warning,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button-warning,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-warning{--arshida-button-background-color:var(--arshida-warning-color);--arshida-button-hover-background-color:var(--arshida-warning-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button-danger,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button-danger,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-danger{--arshida-button-background-color:var(--arshida-danger-color);--arshida-button-hover-background-color:var(--arshida-danger-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-button-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button-error,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper button.arshida-button-error{--arshida-button-background-color:var(--arshida-error-color);--arshida-button-hover-background-color:var(--arshida-error-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper a.arshida-button{text-decoration:none}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2{width:100%!important;height:100%}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2 .select2-selection__rendered li{display:inline-block;margin-top:0;margin-bottom:0}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2 .select2-selection__rendered .select2-search{max-width:100%}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2 .select2-selection__rendered .select2-search .select2-search__field{width:unset!important;max-width:100%}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2 .select2-selection--multiple,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2 .select2-selection--single{width:100%!important;min-width:var(--arshida-input-min-width);padding:var(--arshida-input-padding);border-color:var(--arshida-border-color);border-radius:var(--arshida-input-border-radius);color:var(--arshida-input-text-color);height:100%}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2 .select2-selection--multiple .select2-selection__arrow,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control~.select2 .select2-selection--single .select2-selection__arrow{top:calc(50% - 15px)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control.arshida-error~.select2 .select2-selection--multiple,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-control.arshida-error~.select2 .select2-selection--single{border-color:#e74c3c;color:#e74c3c}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2{width:100%!important}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container{z-index:9}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container.select2-container--open{z-index:9999999}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered{line-height:var(--arshida-input-line-height)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-search--dropdown{background:var(--arshida-background-primary-color);border-color:var(--arshida-border-color);border-style:solid;border-width:1px 0}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-search--dropdown .select2-search__field{border:var(--arshida-input-border);border-radius:var(--arshida-input-border-radius)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-dropdown{border-color:var(--arshida-border-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-results__option{margin:0}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-results__option:hover{cursor:pointer}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-results__option--highlighted[aria-selected],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-results__option--highlighted[data-selected]{background-color:var(--arshida-primary-2-color);color:var(--arshida-background-secondary-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-results__option[aria-selected=true],.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .select2-container--default .select2-results__option[data-selected=true]{background-color:var(--arshida-primary-color);color:var(--arshida-background-secondary-color)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-preview-attachments{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;margin-top:15px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-preview-attachments .arshida-preview-attachment{position:relative}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-preview-attachments .arshida-preview-attachment .arshida-preview-attachment-remove-item:before{content:"\2715";position:absolute;right:-10px;top:-10px;background-color:#eee;border-color:#eee;border-radius:50%;font-size:var(--arshida-font-size-18);color:var(--arshida-input-label-color);width:20px;height:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-preview-attachments .arshida-preview-attachment .arshida-preview-attachment-remove-item:hover{opacity:.7}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-preview-attachments .arshida-preview-attachment .arshida-preview-attachment-remove-item:hover:before{color:#e74c3c}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-preview-attachments .arshida-preview-attachment img{width:100px}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);background:var(--arshida-background-secondary-color);max-height:var(--arshida-quantity-max-height,50px)}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper .arshida-quantity-input{--arshida-input-padding:0;--arshida-input-border-radius:0;--arshida-input-border:none;width:var(--arshida-quantity-input-width,32px);min-height:25px;height:100%;border:none;border-radius:unset;-moz-appearance:textfield;background:#ecf0f1;padding:0;text-align:center;font-size:var(--arshida-font-size-12);color:#34495e}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper .arshida-quantity-input::-webkit-inner-spin-button,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper .arshida-quantity-input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper .arshida-quantity-input-minus,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper .arshida-quantity-input-plus{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:var(--arshida-quantity-input-width,32px);height:var(--arshida-quantity-input-width,32px);cursor:pointer}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper .arshida-quantity-input-minus svg,.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-quantity-input-wrapper .arshida-quantity-input-plus svg{width:12px;fill:#95a5a6}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper .arshida-required{color:#e74c3c}.arshida-field-wrapper:not(.form-field) .arshida-input-wrapper select.select2-hidden-accessible{display:none}.arshida-field-wrapper:not(.form-field) .arshida-field-description{color:var(--arshida-input-label-color)}.arshida-link-wrapper{font-size:var(--arshida-font-size-14)}.arshida-scroll::-webkit-scrollbar{width:var(--arshida-scroll-size,10px);height:var(--arshida-scroll-size,10px)}.arshida-scroll::-webkit-scrollbar-track{background-color:var(--arshida-scroll-track,transparent);border-radius:var(--arshida-scroll-track-radius,5px)}.arshida-scroll::-webkit-scrollbar-thumb{background-color:var(--arshida-scroll-thumb-color,var(--arshida-primary-color));background-image:var(--arshida-scroll-thumb,none);border-radius:var(--arshida-scroll-thumb-radius,5px);background-clip:content-box;border:solid 1px transparent}.arshida-sticky{z-index:99997;visibility:visible;-webkit-box-sizing:border-box;box-sizing:border-box}.arshida-sticky.active,.arshida-sticky:not(.arshida-active-after-this){position:fixed!important}.arshida-sticky.arshida-active-after-this{position:sticky!important}.arshida-sticky:not(.arshida-sticky-fixed){-webkit-transition:bottom 1s,top 1s,left 1s,right 1s,visibility 1s;transition:bottom 1s,top 1s,left 1s,right 1s,visibility 1s}.arshida-sticky:not(.arshida-sticky-fixed):not(.active){visibility:hidden}.arshida-fixed-position-top{width:100%;top:calc(var(--arshida-margin-top,0px) + var(--arshida-position-top,0px))}.arshida-fixed-position-top:not(.active){top:-100%}.arshida-fixed-position-bottom{width:100%;bottom:calc(var(--arshida-margin-bottom,0px) + var(--arshida-position-bottom,0px))}.arshida-fixed-position-bottom:not(.active){bottom:-100%}.arshida-fixed-position-top-left{top:calc(var(--arshida-margin-top,0px) + var(--arshida-position-top,15px));right:var(--arshida-position-left,15px)}.arshida-fixed-position-top-left:not(.active){right:-100%}.arshida-fixed-position-top-right{top:calc(var(--arshida-margin-top,0px) + var(--arshida-position-top,15px));right:var(--arshida-position-right,15px)}.arshida-fixed-position-top-right:not(.active){right:-100%}.arshida-fixed-position-bottom-left{bottom:var(--arshida-position-bottom,15px);left:var(--arshida-position-left,15px)}.arshida-fixed-position-bottom-left:not(.active){left:-100%}.arshida-fixed-position-bottom-right{bottom:var(--arshida-position-bottom,15px);right:var(--arshida-position-right,15px)}.arshida-fixed-position-bottom-right:not(.active){right:-100%}.arshida-icon{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:var(--arshida-icon-width)}.arshida-icon svg{width:var(--arshida-icon-width);min-height:var(--arshida-icon-width);fill:var(--arshida-icon-color);-webkit-transition:fill .3s;transition:fill .3s}[class*=arshida-icon-]{line-height:1;min-width:var(--arshida-icon-width);min-height:var(--arshida-icon-width);color:var(--arshida-icon-color)}[class*=arshida-icon-]:not(.arshida-icon)::before{content:"";min-width:var(--arshida-icon-width);min-height:var(--arshida-icon-width)}.active>[class*=arshida-icon-],[class*=arshida-icon-].active,[class*=arshida-icon-]:hover{color:var(--arshida-icon-hover-and-active-color)}.active>[class*=arshida-icon-] svg,[class*=arshida-icon-].active svg,[class*=arshida-icon-]:hover svg{fill:var(--arshida-icon-hover-and-active-color)}.arshida-icon-heart,.arshida-icon-remove,.arshida-icon-trash{--arshida-icon-hover-and-active-color:#e74c3c}.arshida-icon-bell,.arshida-icon-bookmark,.arshida-icon-cart-flatbed,.arshida-icon-cart-plus,.arshida-icon-compare,.arshida-icon-copy,.arshida-icon-duplicate{--arshida-icon-hover-and-active-color:#34495e}.arshida-icon-bell,.arshida-icon-bookmark,.arshida-icon-cart-flatbed,.arshida-icon-compare,.arshida-icon-copy,.arshida-icon-duplicate,.arshida-icon-edit,.arshida-icon-eye,.arshida-icon-eye-slash,.arshida-icon-heart,.arshida-icon-location,.arshida-icon-remove,.arshida-icon-share,.arshida-icon-trash{opacity:.8;cursor:pointer}.arshida-menu{font-size:var(--arshida-menu-font-size);position:relative;padding:0;margin:0}.arshida-menu ul{position:relative;list-style:none;padding:0;margin:0}.arshida-menu li{position:relative;list-style:none}.arshida-menu li>a,.arshida-menu li>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer}.arshida-menu li>a .icon-after,.arshida-menu li>span .icon-after{-webkit-box-flex:1;-ms-flex:1;flex:1;-moz-text-align-last:end;text-align-last:end}.arshida-menu li>a .icon-after::before,.arshida-menu li>a .icon-before::before,.arshida-menu li>span .icon-after::before,.arshida-menu li>span .icon-before::before{opacity:.4}.arshida-menu li.menu-item-has-children:not(.open)>a .icon-before::before{content:var(--arshida-menu-item-with-children-not-open-before-content,unset)}.arshida-menu li.menu-item-has-children:not(.open)>a .icon-after::before{content:var(--arshida-menu-item-with-children-not-open-after-content,unset)}.arshida-menu li.menu-item-has-children.open>a .icon-before::before{content:var(--arshida-menu-item-with-children-open-before-content,unset)}.arshida-menu li.menu-item-has-children.open>a .icon-after::before{content:var(--arshida-menu-item-with-children-open-after-content,unset)}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu){display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu)>li{border-style:solid;-o-border-image:linear-gradient(0deg,transparent 20%,var(--arshida-border-color) 20%,var(--arshida-border-color) 80%,transparent 80%);border-image:-webkit-gradient(linear,left bottom,left top,color-stop(20%,transparent),color-stop(20%,var(--arshida-border-color)),color-stop(80%,var(--arshida-border-color)),color-stop(80%,transparent));border-image:linear-gradient(0deg,transparent 20%,var(--arshida-border-color) 20%,var(--arshida-border-color) 80%,transparent 80%);border-image-slice:1;border-width:0 1px 0 0}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu)>li:first-child{border-width:0}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu)>li>a,.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu)>li>span{color:var(--arshida-menu-text-secondary-color);padding:5px}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu)>li.mega-menu:not(:last-child){position:static}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children:hover.mega-menu .sub-menu,.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children:hover>.sub-menu{-webkit-transform:translateY(2px);transform:translateY(2px);visibility:visible;opacity:1}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu.mega-menu-col-2 li{width:32.99%;-webkit-box-flex:0;-ms-flex:0 0 32.99%;flex:0 0 32.99%}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu.mega-menu-col-3 li{width:24.99%;-webkit-box-flex:0;-ms-flex:0 0 24.99%;flex:0 0 24.99%}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu.mega-menu-col-4 li{width:19.99%;-webkit-box-flex:0;-ms-flex:0 0 19.99%;flex:0 0 19.99%}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu.mega-menu-col-5 li{width:16.65%;-webkit-box-flex:0;-ms-flex:0 0 16.65%;flex:0 0 16.65%}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu.mega-menu-col-6 li{width:14.27%;-webkit-box-flex:0;-ms-flex:0 0 14.27%;flex:0 0 14.27%}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu{width:100vw;max-width:100%;right:0;font-size:var(--arshida-submenu-font-size)}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu .menu-item-has-children>a{border-color:var(--arshida-primary-color);border-style:solid;border-width:0 3px 0 0;padding:0 5px 0 0;--arshida-menu-item-with-children-not-open-after-content:"";--arshida-menu-item-with-children-open-after-content:"";--arshida-menu-item-with-children-not-open-before-content:"";--arshida-menu-item-with-children-open-before-content:""}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu .menu-item-has-children:hover>a{background:100% 0}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu a:hover{font-weight:500}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu .sub-menu{position:static;width:100%;-webkit-box-shadow:none;box-shadow:none;background:100% 0!important}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu .sub-menu li{width:100%}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu .sub-menu li a{padding:5px;color:var(--arshida-menu-text-primary-color)}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu .sub-menu .sub-menu li a:hover{background:100% 0}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children.mega-menu>.sub-menu{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:15px 5px}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children .sub-menu{position:absolute;visibility:hidden;opacity:0;min-width:220px;background:var(--arshida-background-secondary-color);z-index:999;-webkit-transform:translate3d(8px,8px,8px);transform:translate3d(8px,8px,8px);-webkit-transition:all .2s ease-out;transition:all .2s ease-out;-webkit-box-shadow:0 2px 9px 0 var(--arshida-box-shadow-secondary-color);box-shadow:0 2px 9px 0 var(--arshida-box-shadow-secondary-color);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children .sub-menu:hover a:hover,.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children .sub-menu:hover>a{background:var(--arshida-background-primary-color)}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children .sub-menu a{--arshida-menu-item-with-children-not-open-after-content:"\2771";--arshida-menu-item-with-children-open-after-content:"";--arshida-menu-item-with-children-not-open-before-content:"";--arshida-menu-item-with-children-open-before-content:"\2770";padding:10px}.arshida-menu:not(.arshida-menu-vertical):not(.arshida-stack-menu) .menu-item-has-children .sub-menu .sub-menu{top:0;right:100%}.arshida-menu.arshida-menu-vertical li.menu-item-has-children:not(.open)>.sub-menu,.arshida-menu.arshida-stack-menu li.menu-item-has-children:not(.open)>.sub-menu{display:none}.arshida-menu.arshida-menu-vertical li:not(:last-child),.arshida-menu.arshida-stack-menu li:not(:last-child){border-bottom:1px dotted #bdc3c7}.arshida-menu.arshida-menu-vertical li a,.arshida-menu.arshida-stack-menu li a{padding:5px 15px;gap:5px}.arshida-menu.arshida-menu-vertical{--arshida-menu-item-with-children-not-open-after-content:"\271A";--arshida-menu-item-with-children-open-after-content:"\268A"}.arshida-menu.arshida-stack-menu{--arshida-menu-item-with-children-not-open-after-content:"\2771";--arshida-menu-item-with-children-open-after-content:"";--arshida-menu-item-with-children-not-open-before-content:"";--arshida-menu-item-with-children-open-before-content:"\2770"}.arshida-menu.arshida-stack-menu .arshida-stack-menu-parent-active li.open>a,.arshida-menu.arshida-stack-menu.arshida-stack-menu-parent-active li.open>a{font-weight:900}.arshida-menu.arshida-stack-menu .arshida-stack-menu-parent-active>a,.arshida-menu.arshida-stack-menu.arshida-stack-menu-parent-active>a{display:none}.arshida-menu.arshida-stack-menu .arshida-stack-menu-parent-active>.sub-menu>li:not(.open),.arshida-menu.arshida-stack-menu .arshida-stack-menu-parent-active>li:not(.open),.arshida-menu.arshida-stack-menu.arshida-stack-menu-parent-active>.sub-menu>li:not(.open),.arshida-menu.arshida-stack-menu.arshida-stack-menu-parent-active>li:not(.open){display:none}.arshida-drawer{position:fixed;top:var(--arshida-margin-top);z-index:99999;background:var(--arshida-color-white);width:320px;height:calc(100vh - var(--arshida-margin-top));-webkit-transition:right 1s,left 1s,visibility 1s;transition:right 1s,left 1s,visibility 1s;padding:5px;-webkit-box-shadow:0 0 5px var(--arshida-box-shadow-secondary-color);box-shadow:0 0 5px var(--arshida-box-shadow-secondary-color)}.arshida-drawer .arshida-drawer-header{border-bottom:1px solid var(--arshida-border-color);font-size:var(--arshida-font-size-16);font-weight:700;padding:5px 0;margin-bottom:10px}.arshida-drawer:not(.arshida-multi-tabs-drawer)>.arshida-drawer-body:first-child{margin-top:25px;border-top:1px solid var(--arshida-border-color)}.arshida-drawer:not(.arshida-multi-tabs-drawer) .arshida-drawer-body{overflow-y:auto;max-height:calc(90vh - var(--arshida-margin-top));min-height:50px}.arshida-drawer:not(.arshida-multi-tabs-drawer) .arshida-drawer-body::-webkit-scrollbar{width:var(--arshida-scroll-size,10px);height:var(--arshida-scroll-size,10px)}.arshida-drawer:not(.arshida-multi-tabs-drawer) .arshida-drawer-body::-webkit-scrollbar-track{background-color:var(--arshida-scroll-track,transparent);border-radius:var(--arshida-scroll-track-radius,5px)}.arshida-drawer:not(.arshida-multi-tabs-drawer) .arshida-drawer-body::-webkit-scrollbar-thumb{background-color:var(--arshida-scroll-thumb-color,var(--arshida-primary-color));background-image:var(--arshida-scroll-thumb,none);border-radius:var(--arshida-scroll-thumb-radius,5px);background-clip:content-box;border:solid 1px transparent}.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>.arshida-tabs-wrapper .arshida-tab-links-wrapper{line-height:1}.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>.arshida-tabs-wrapper .arshida-tab-links-wrapper .arshida-tab-links-inner{--arshida-scroll-size:5px;padding-bottom:5px}.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>.arshida-tabs-wrapper>.arshida-tab-contents-wrapper>div,.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>div>.arshida-tabs>.arshida-tab-contents-wrapper>div{overflow-y:auto;max-height:calc(90vh - var(--arshida-margin-top));min-height:50px}.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>.arshida-tabs-wrapper>.arshida-tab-contents-wrapper>div::-webkit-scrollbar,.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>div>.arshida-tabs>.arshida-tab-contents-wrapper>div::-webkit-scrollbar{width:var(--arshida-scroll-size,10px);height:var(--arshida-scroll-size,10px)}.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>.arshida-tabs-wrapper>.arshida-tab-contents-wrapper>div::-webkit-scrollbar-track,.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>div>.arshida-tabs>.arshida-tab-contents-wrapper>div::-webkit-scrollbar-track{background-color:var(--arshida-scroll-track,transparent);border-radius:var(--arshida-scroll-track-radius,5px)}.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>.arshida-tabs-wrapper>.arshida-tab-contents-wrapper>div::-webkit-scrollbar-thumb,.arshida-drawer.arshida-multi-tabs-drawer .arshida-drawer-body>div>.arshida-tabs>.arshida-tab-contents-wrapper>div::-webkit-scrollbar-thumb{background-color:var(--arshida-scroll-thumb-color,var(--arshida-primary-color));background-image:var(--arshida-scroll-thumb,none);border-radius:var(--arshida-scroll-thumb-radius,5px);background-clip:content-box;border:solid 1px transparent}.arshida-drawer:not(.arshida-drawer-opened){visibility:hidden}.arshida-drawer.arshida-drawer-opened{visibility:visible}.arshida-drawer .arshida-drawer-close{position:absolute;top:5px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:var(--arshida-font-size-20);width:25px;height:25px;padding:5px;border-radius:50%;cursor:pointer;color:#bdc3c7}.arshida-drawer .arshida-drawer-close:hover{opacity:.7}.arshida-drawer.arshida-drawer-left{left:-320px;border-radius:0 5px 5px 0}.arshida-drawer.arshida-drawer-left .arshida-drawer-close{right:5px}.arshida-drawer.arshida-drawer-left.arshida-drawer-opened{left:0}.arshida-drawer.arshida-drawer-left .arshida-drawer-body>.arshida-tabs-wrapper>.arshida-tabs>.arshida-tab-links-wrapper{margin-right:25px}.arshida-drawer.arshida-drawer-right{right:-320px;border-radius:5px 0 0 5px}.arshida-drawer.arshida-drawer-right .arshida-drawer-close{left:5px}.arshida-drawer.arshida-drawer-right.arshida-drawer-opened{right:0}.arshida-drawer.arshida-drawer-right .arshida-drawer-body>.arshida-tabs-wrapper>.arshida-tabs>.arshida-tab-links-wrapper{margin-left:25px}.arshida-drawer-opener{cursor:pointer}.arshida-search{position:relative;width:100%}.arshida-search:not(.show-result) .arshida-search-result-wrapper{display:none}.arshida-search.show-result .arshida-search-form .search-field{border:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.arshida-search .arshida-search-result-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;position:absolute;background:var(--arshida-background-secondary-color);width:100%;padding:20px;z-index:999;overflow-y:auto;max-height:400px;border-bottom-right-radius:var(--arshida-input-border-radius);border-bottom-left-radius:var(--arshida-input-border-radius)}.arshida-search .arshida-search-result-wrapper>:empty{display:none}.arshida-search .arshida-search-result-wrapper .arshida-search-result-suggested-keywords-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap}.arshida-search .arshida-search-result-wrapper .arshida-search-result-suggested-keywords-wrapper a{border-radius:5px;border:1px solid var(--arshida-primary-color);padding:5px}.arshida-search .arshida-search-result-wrapper .arshida-search-result-suggested-keywords-wrapper a:hover{background-color:var(--arshida-primary-color);color:var(--arshida-color-white)}.arshida-search .arshida-search-result-wrapper .arshida-search-result-terms-wrapper:not(:empty){display:-webkit-box;display:-ms-flexbox;display:flex;gap:10px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.arshida-search .arshida-search-result-wrapper .arshida-search-result-terms-wrapper:not(:empty) .terms{line-height:1.5}.arshida-search .arshida-search-result-wrapper .arshida-search-result-terms-wrapper:not(:empty) .terms .label{color:var(--arshida-primary-color);font-weight:700}.arshida-search-form{width:100%;position:relative;z-index:2}.arshida-search-form .input-text{width:100%}.arshida-search-form .input-text+button{position:absolute;line-height:1;min-width:40px;padding:5px 10px;top:4px;bottom:4px;left:4px;min-height:auto}.arshida-search-form button.search-submit{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px}.arshida-tabs-wrapper{width:100%;margin-bottom:30px}.arshida-tabs{position:relative;width:100%}.arshida-tabs::after,.arshida-tabs::before{content:" ";display:table}.arshida-tabs::after{clear:both}.arshida-tabs>.arshida-tab-links-wrapper{min-width:200px}.arshida-tabs>.arshida-tab-links-wrapper a{display:inline-block;text-decoration:none;padding:var(--arshida-tab-link-padding,5px)}.arshida-tabs.arshida-sticky-links-wrapper>.arshida-tab-links-wrapper{background:inherit;z-index:10}.arshida-tabs:not(.arshida-tabs-show-all)>.arshida-tab-contents-wrapper .arshida-tab-content:not(.active){display:none}.arshida-tabs>.arshida-tab-contents-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;gap:15px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.arshida-tabs>.arshida-tab-contents-wrapper .arshida-tab-content>:first-child{margin-top:0}.arshida-tabs>.arshida-tab-contents-wrapper .arshida-tab-content>:last-child{margin-bottom:0}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper{margin-bottom:10px}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper,.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper .arshida-tab-links-inner{white-space:nowrap;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper .arshida-tab-links-inner{position:relative}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper .arshida-tab-links-inner{overflow-x:auto}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper .arshida-tab-links-inner::-webkit-scrollbar{width:var(--arshida-scroll-size,10px);height:var(--arshida-scroll-size,10px)}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper .arshida-tab-links-inner::-webkit-scrollbar-track{background-color:var(--arshida-scroll-track,transparent);border-radius:var(--arshida-scroll-track-radius,5px)}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper .arshida-tab-links-inner::-webkit-scrollbar-thumb{background-color:var(--arshida-scroll-thumb-color,var(--arshida-primary-color));background-image:var(--arshida-scroll-thumb,none);border-radius:var(--arshida-scroll-thumb-radius,5px);background-clip:content-box;border:solid 1px transparent}.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper .arshida-tab-link.active,.arshida-tabs:not(.arshida-tabs-vertical)>.arshida-tab-links-wrapper a.arshida-tab-link.active{border-bottom:1px solid var(--arshida-primary-color)}.arshida-tabs.arshida-tabs-vertical{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;width:100%;-webkit-box-flex:1;-ms-flex:1;flex:1}@media screen and (max-width:768px){.arshida-tabs.arshida-tabs-vertical{-ms-flex-wrap:wrap;flex-wrap:wrap}}@media screen and (max-width:768px){.arshida-tabs.arshida-tabs-vertical>.arshida-tab-links-wrapper{margin:auto;max-width:unset;-webkit-box-flex:100%;-ms-flex:100%;flex:100%}}.arshida-tabs.arshida-tabs-vertical>.arshida-tab-links-wrapper .arshida-tab-link a,.arshida-tabs.arshida-tabs-vertical>.arshida-tab-links-wrapper a.arshida-tab-link{display:block;padding:5px 15px}.arshida-tabs.arshida-tabs-vertical>.arshida-tab-contents-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}@media screen and (max-width:768px){.arshida-tabs.arshida-tabs-vertical>.arshida-tab-contents-wrapper{margin:auto;max-width:unset;-webkit-box-flex:0;-ms-flex:0 0 100%;flex:0 0 100%;width:100%}}.arshida-accordions-wrapper{position:relative;width:100%;margin-top:10px}.arshida-accordions-wrapper .arshida-accordion{border-radius:5px;-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);background:var(--arshida-background-secondary-color)}.arshida-accordions-wrapper .arshida-accordion.closed .accordion-header .accordion-title{border-bottom:none}.arshida-accordions-wrapper .arshida-accordion .accordion-header{position:relative;border-radius:0;background-color:transparent;border-bottom:none;cursor:pointer;margin-bottom:10px;text-align:center}.arshida-accordions-wrapper .arshida-accordion .accordion-header .accordion-title{position:relative;padding:10px;font-size:14px;font-weight:500;border-bottom:1px solid var(--arshida-border-color)}.arshida-accordions-wrapper .arshida-accordion .accordion-header .accordion-title>a{display:block}.arshida-accordions-wrapper .arshida-accordion>:not(.accordion-header){padding:0 10px;margin:0}.arshida-accordions-wrapper .arshida-accordion>:first-child:not(.accordion-header){padding-top:10px}.arshida-accordions-wrapper .arshida-accordion>:last-child{padding-bottom:10px}.arshida-accordions-wrapper .arshida-accordion:not(:last-child){margin-bottom:5px}@media (min-width:768px){.arshida-accordions-wrapper .arshida-accordion .accordion-header{text-align:unset}}.arshida-accordions-wrapper .arshida-accordion .arshida-accordion-content>:first-child{margin-top:0}.arshida-accordions-wrapper .arshida-accordion .arshida-accordion-content>:last-child{margin-bottom:0}.arshida-accordion{position:relative}.arshida-accordion .arshida-accordion-opener{position:relative;--arshida-icon-width:15px}.arshida-accordion .arshida-accordion-opener .arshida-icon,.arshida-accordion .arshida-accordion-opener [class^=arshida-icon-]{position:absolute;top:calc(50% - (15px / 2));left:15px;-webkit-transition:all .5s;transition:all .5s}.arshida-accordion.closed{min-height:unset!important}.arshida-accordion.closed>:not(.arshida-accordion-opener){display:none}.arshida-accordion.closed .arshida-accordion-opener .arshida-icon{-webkit-transform:rotate(180deg);transform:rotate(180deg)}.arshida-popup{position:relative;-webkit-box-sizing:border-box;box-sizing:border-box}.arshida-popup:not(.arshida-popup-opened){display:none}.arshida-popup.arshida-popup-opened{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:fixed;padding:20px 0;max-width:100%;width:100vw;height:100vh;top:0;right:0;z-index:99998;background:#ecf0f1}.arshida-popup .arshida-popup-close{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;position:absolute;left:10px;top:10px;line-height:1;font-size:15px;background:#bdc3c7;color:#fff;border-radius:50%;padding:5px;width:20px;height:20px;cursor:pointer;-webkit-box-sizing:border-box;box-sizing:border-box;font-family:sans-serif}.arshida-popup .arshida-popup-close:hover{opacity:.7}.arshida-popup .arshida-popup-inner{position:relative;-webkit-box-sizing:content-box;box-sizing:content-box;border-radius:5px;padding:35px 10px 10px 10px;max-width:calc(95vw - 40px);min-width:300px;max-height:calc(100vh - 40px - 40px - 40px);min-height:300px;background:var(--arshida-background-secondary-color);margin:auto;overflow:hidden;z-index:1}.arshida-popup .arshida-popup-inner .arshida-popup-content{overflow-y:auto;max-height:inherit;padding:5px}.arshida-popup .arshida-popup-inner .arshida-notices{margin:0}.arshida-popup-opener{cursor:pointer}.arshida-product-badges{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;gap:2px;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:var(--arshida-justify-content,center);-ms-flex-pack:var(--arshida-justify-content,center);justify-content:var(--arshida-justify-content,center)}.arshida-product-badges .arshida-product-badge{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;-ms-flex-wrap:wrap;flex-wrap:wrap;border-radius:var(--arshida-border-radius);padding:2px 5px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;color:#fff;background:var(--arshida-badge-background-color);font-size:var(--arshida-badge-font-size);line-height:1;min-height:25px;--arshida-icon-width:16px;--arshida-icon-color:var(--arshida-badge-text-color)}.arshida-product-badges .arshida-product-badge .arshida-product-badge-image,.arshida-product-badges .arshida-product-badge img{width:var(--arshida-icon-width);height:var(--arshida-icon-width);padding:0;margin:0}.arshida-badge-wrap{position:relative}.arshida-badge{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;border-radius:5px;padding:2px;position:relative;min-width:var(--arshida-badge-min-width,15px);min-height:var(--arshida-badge-min-height,15px);-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;background:var(--arshida-badge-background-color);color:var(--arshida-badge-text-color);font-size:var(--arshida-badge-font-size);line-height:1;--arshida-position-top:var(--arshida-badge-position-top, -5px);--arshida-position-bottom:var(--arshida-badge-position-bottom, -5px);--arshida-position-left:var(--arshida-badge-position-left, -5px);--arshida-position-right:var(--arshida-badge-position-right, -5px)}.arshida-badge.arshida-small-badge{--arshida-badge-font-size:80%}.arshida-badge.arshida-badge-inline{line-height:unset;padding:2px 5px;margin:0 2px}.arshida-countdown{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;text-align:center;color:var(--arshida-countdown-color);background:var(--arshida-countdown-background);min-height:var(--arshida-countdown-min-height,auto);-webkit-transition:all .5s;transition:all .5s}[dir=rtl] .arshida-countdown{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.arshida-countdown>span .arshida-countdown-number{display:inline-block;font-size:var(--arshida-font-size-11);min-width:var(--arshida-countdown-number-min-width,unset);background:var(--arshida-countdown-number-background,none);padding:var(--arshida-countdown-number-padding,0);border-radius:var(--arshida-countdown-number-border-radius,0);color:var(--arshida-countdown-number-color,inherit);-webkit-box-shadow:var(--arshida-countdown-number-box-shadow,none);box-shadow:var(--arshida-countdown-number-box-shadow,none)}.arshida-countdown>span .arshida-countdown-text{font-size:var(--arshida-font-size-10);display:var(--arshida-countdown-text-display)}.arshida-countdown>span:not(.arshida-countdown-separator){min-width:var(--arshida-countdown-item-min-width,unset);background:var(--arshida-countdown-item-background,none);padding:var(--arshida-countdown-item-padding,0);border-radius:var(--arshida-countdown-item-border-radius,0);font-size:var(--arshida-font-size-11);color:var(--arshida-countdown-item-color,inherit);-webkit-box-shadow:var(--arshida-countdown-item-box-shadow,none);box-shadow:var(--arshida-countdown-item-box-shadow,none)}.arshida-countdown>span .arshida-countdown-separator:empty{display:none}.arshida-countdown>span .arshida-countdown-separator:before{content:var(--arshida-countdown-separator-content, "")}.arshida-countdown:not(.arshida-countdown-minimal){--arshida-countdown-min-height:50px;--arshida-countdown-item-min-width:50px}.arshida-countdown:not(.arshida-countdown-minimal)>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:var(--arshida-countdown-item-gap,5px);-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.arshida-countdown.arshida-countdown-minimal{--arshida-countdown-item-min-width:calc(
var(--arshida-font-size-12) * 1.3
);--arshida-countdown-separator-content:":";--arshida-countdown-text-display:none}.arshida-countdown.arshida-countdown-squire-number-fill{--arshida-countdown-item-min-width:calc(var(--arshida-font-size-12) * 1.3);--arshida-countdown-item-background:var(--arshida-primary-color);--arshida-countdown-item-padding:5px 10px;--arshida-countdown-item-border-radius:2px;--arshida-countdown-color:#fff}.arshida-countdown.arshida-countdown-squire-number-fill .arshida-countdown-separator{color:var(--arshida-primary-color)}.arshida-countdown.arshida-countdown-squire-number-shadow{--arshida-countdown-item-min-width:auto;--arshida-countdown-number-min-width:30px;--arshida-countdown-number-padding:5px;--arshida-countdown-number-border-radius:5px;--arshida-countdown-number-background:var(--arshida-background-secondary-color);--arshida-countdown-number-color:var(--arshida-text-primary-color);--arshida-countdown-number-box-shadow:0 1px 5px var(--arshida-box-shadow-primary-color)}.arshida-countdown.arshida-countdown-squire-number-shadow .arshida-countdown-seconds{color:var(--arshida-primary-color);--arshida-countdown-number-color:#fff;--arshida-countdown-number-background:var(--arshida-primary-color)}.arshida-countdown.arshida-countdown-circle-number{gap:5px;--arshida-countdown-item-min-width:auto;--arshida-countdown-number-min-width:30px;--arshida-countdown-number-padding:5px;--arshida-countdown-number-border-radius:50%;--arshida-countdown-number-background:var(--arshida-background-primary-color);--arshida-countdown-number-color:var(--arshida-text-primary-color)}.arshida-countdown.arshida-countdown-circle-number .arshida-countdown-seconds{color:var(--arshida-primary-color);--arshida-countdown-number-color:#fff;--arshida-countdown-number-background:var(--arshida-primary-color)}.arshida-countdown.arshida-countdown-squire-shadow{gap:3px;--arshida-countdown-item-gap:3px;--arshida-countdown-item-min-width:40px;--arshida-countdown-item-padding:3px;--arshida-countdown-item-border-radius:5px;--arshida-countdown-item-background:var(--arshida-background-secondary-color);--arshida-countdown-item-color:var(--arshida-text-primary-color);--arshida-countdown-item-box-shadow:0 1px 5px var(--arshida-box-shadow-primary-color)}.arshida-countdown.arshida-countdown-squire-shadow .arshida-countdown-seconds{--arshida-countdown-item-color:#fff;--arshida-countdown-item-background:var(--arshida-primary-color)}.arshida-countdown.arshida-countdown-squire-shadow .arshida-countdown-number{font-weight:700;font-size:var(--arshida-font-size-15)}.arshida-countdown.arshida-countdown-squire-shadow .arshida-countdown-text{font-size:80%}.arshida-multi-step .arshida-hidden-step{display:none!important}.arshida-mini-cart-details{border:1px solid var(--arshida-border-color);border-radius:5px;padding:15px}.arshida-mini-cart-details .arshida-mini-cart-detail{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;font-size:var(--arshida-font-size-12);padding:5px 0}.arshida-mini-cart-details .arshida-mini-cart-detail strong{color:#95a5a6}.arshida-mini-cart-details .arshida-mini-cart-detail>span{color:#34495e}.arshida-mini-cart-details .arshida-mini-cart-detail:first-child{padding-top:0}.arshida-mini-cart-details .arshida-mini-cart-detail:last-child{border-top:1px dashed var(--arshida-border-color);font-weight:700;padding-bottom:0}.arshida-mini-cart-details .arshida-mini-cart-detail:last-child strong{color:#34495e}.arshida-mini-cart-details .arshida-mini-cart-detail:last-child>span{color:var(--arshida-primary-color)}.arshida-apply-coupon-form{display:-webkit-box;display:-ms-flexbox;display:flex}.arshida-apply-coupon-form .arshida-coupon-code{border:1px solid var(--arshida-border-color);border-width:1px 1px 1px 0;border-radius:0 5px 5px 0;padding:5px 10px;-webkit-box-flex:1;-ms-flex:1;flex:1;outline:unset}.arshida-apply-coupon-form .arshida-apply-coupon,.arshida-apply-coupon-form .arshida-apply-coupon:focus,.arshida-apply-coupon-form .arshida-apply-coupon:hover{border-radius:5px 0 0 5px;border-width:1px 0 1px 1px;background:var(--arshida-primary-color);border:var(--arshida-primary-2-color);color:var(--arshida-color-white);-webkit-box-shadow:none;box-shadow:none}.arshida-mini-cart-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;gap:5px}.arshida-mini-cart-buttons .arshida-button{-webkit-box-flex:1;-ms-flex:1;flex:1;margin:10px auto;text-align:center}.arshida-mini-cart-drawer .arshida-cart-items,.arshida-primary-drawer .arshida-cart-items{margin-bottom:30px}.arshida-mini-cart-drawer .arshida-apply-coupon-form,.arshida-primary-drawer .arshida-apply-coupon-form{margin-bottom:15px}.arshida-cart-items{position:relative;padding:0;margin:0}.arshida-cart-items .arshida-cart-item{--arshida-quantity-max-height:25px}.arshida-cart-items .arshida-cart-item:not(:last-child){margin-bottom:5px}.arshida-cart-items .arshida-cart-item .arshida-cart-item-details{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-flex:1;-ms-flex:1;flex:1}.arshida-cart-items .arshida-cart-item .arshida-cart-item-details .arshida-cart-item-formatted-data .variation{margin:0}.arshida-cart-items .arshida-cart-item .arshida-cart-item-details .arshida-cart-item-formatted-data .variation>dd,.arshida-cart-items .arshida-cart-item .arshida-cart-item-details .arshida-cart-item-formatted-data .variation>dt{display:inline-block;margin:0}.arshida-cart-items .arshida-cart-item .arshida-cart-item-details .arshida-cart-item-formatted-data .variation p{margin:0}.arshida-cart-items .arshida-cart-item .arshida-cart-item-details .arshida-cart-item-quantity-price{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;font-size:var(--arshida-font-size-11);font-weight:700}.arshida-cart-items .arshida-cart-item .arshida-cart-item-details .arshida-quantity-input-wrapper{--arshida-quantity-input-width:30px}tr.arshida-coupon-form .arshida-apply-coupon-form{max-width:300px;margin:auto}.woocommerce-remove-coupon{--arshida-icon-width:18px;--arshida-icon-color:#cb303b}.woocommerce-remove-coupon .arshida-icon{vertical-align:middle}.arshida-update-cart-item-by-change-quantity .woocommerce-cart-form [name=update_cart]{display:none!important}.arshida-user-quick-access .arshida-items{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.rtl .arshida-user-quick-access .arshida-items{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.arshida-user-quick-access .arshida-items .arshida-item{position:relative}.arshida-user-quick-access .arshida-items .arshida-item a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;color:#4d595b;--arshida-icon-width:23px;-webkit-transition:opacity .2s,-webkit-transform .2s ease;transition:opacity .2s,-webkit-transform .2s ease;transition:transform .2s ease,opacity .2s;transition:transform .2s ease,opacity .2s,-webkit-transform .2s ease}.arshida-user-quick-access .arshida-items .arshida-item a:hover{-webkit-transform:translateY(-2px);transform:translateY(-2px);opacity:.85}.arshida-user-quick-access .arshida-items .arshida-item a.arshida-has-animation.arshida-active-animation .arshida-icon svg{-webkit-animation:arshida-animation-bell-ring-with-pause 2s ease-in-out var(--arshida-animation-iteration-count,infinite);animation:arshida-animation-bell-ring-with-pause 2s ease-in-out var(--arshida-animation-iteration-count,infinite);-webkit-transform-origin:top center;transform-origin:top center}.arshida-user-relation{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;border:0;background:0 0}.arshida-flex,.entry-title,.page-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.arshida-flex>span,.entry-title>span,.page-title>span{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-flex:1;-ms-flex:1;flex:1}.arshida-flex .arshida-user-relation:first-child,.arshida-flex>span .arshida-user-relation:first-child,.entry-title .arshida-user-relation:first-child,.entry-title>span .arshida-user-relation:first-child,.page-title .arshida-user-relation:first-child,.page-title>span .arshida-user-relation:first-child{margin-right:auto}.arshida-table,.arshida-theme table{width:100%;border:var(--arshida-table-border,0);border-collapse:var(--arshida-table-border-collapse,collapse);border-spacing:var(--arshida-table-border-spacing,0);margin:var(--arshida-table-margin,0 0 25px 0);font-size:var(--arshida-table-font-size,var(--arshida-font-size-12));-webkit-box-shadow:var(--arshida-table-box-shadow,var(--arshida-box-shadow));box-shadow:var(--arshida-table-box-shadow,var(--arshida-box-shadow));border-radius:var(--arshida-table-border-radius,0);--arshida-table-border-radius:5px}.arshida-table :first-child>tr:first-child,.arshida-table>tr:first-child,.arshida-theme table :first-child>tr:first-child,.arshida-theme table>tr:first-child{border-start-start-radius:var(--arshida-table-border-radius,0);border-start-end-radius:var(--arshida-table-border-radius,0)}.arshida-table :first-child>tr:first-child>:first-child,.arshida-table>tr:first-child>:first-child,.arshida-theme table :first-child>tr:first-child>:first-child,.arshida-theme table>tr:first-child>:first-child{border-start-start-radius:var(--arshida-table-border-radius,0)}.arshida-table :first-child>tr:first-child>:last-child,.arshida-table>tr:first-child>:last-child,.arshida-theme table :first-child>tr:first-child>:last-child,.arshida-theme table>tr:first-child>:last-child{border-start-end-radius:var(--arshida-table-border-radius,0)}.arshida-table :last-child>tr:last-child,.arshida-table>tr:last-child,.arshida-theme table :last-child>tr:last-child,.arshida-theme table>tr:last-child{border-end-start-radius:var(--arshida-table-border-radius,0);border-end-end-radius:var(--arshida-table-border-radius,0)}.arshida-table :last-child>tr:last-child>:first-child,.arshida-table>tr:last-child>:first-child,.arshida-theme table :last-child>tr:last-child>:first-child,.arshida-theme table>tr:last-child>:first-child{border-end-start-radius:var(--arshida-table-border-radius,0)}.arshida-table :last-child>tr:last-child>:last-child,.arshida-table>tr:last-child>:last-child,.arshida-theme table :last-child>tr:last-child>:last-child,.arshida-theme table>tr:last-child>:last-child{border-end-end-radius:var(--arshida-table-border-radius,0)}.arshida-table td,.arshida-table th,.arshida-theme table td,.arshida-theme table th{padding:var(--arshida-table-padding-cells,12px 15px);border:unset;border-top:unset;vertical-align:middle}.arshida-table td>:last-child,.arshida-table th>:last-child,.arshida-theme table td>:last-child,.arshida-theme table th>:last-child{margin-bottom:0}.arshida-table td>p:first-child,.arshida-table th>p:first-child,.arshida-theme table td>p:first-child,.arshida-theme table th>p:first-child{margin-top:0}.arshida-table thead td,.arshida-table thead td a,.arshida-table thead th,.arshida-table thead th a,.arshida-theme table thead td,.arshida-theme table thead td a,.arshida-theme table thead th,.arshida-theme table thead th a{border-bottom:1px solid var(--arshida-table-thead-border-color,var(--arshida-primary-color));background-color:var(--arshida-table-thead-background-color,var(--arshida-primary-color));color:var(--arshida-table-thead-text-color,#fff)}.arshida-table tfoot td,.arshida-table tfoot th,.arshida-theme table tfoot td,.arshida-theme table tfoot th{border-top:1px solid var(--arshida-table-tfoot-border-color,var(--arshida-primary-color));background-color:var(--arshida-table-tfoot-background-color,var(--arshida-primary-color));color:var(--arshida-table-tfoot-text-color,#fff)}.arshida-table tbody tr,.arshida-theme table tbody tr{border-bottom:1px solid var(--arshida-table-tbody-border-color)}.arshida-table tbody tr:nth-of-type(even),.arshida-table tbody tr:nth-of-type(even) td,.arshida-theme table tbody tr:nth-of-type(even),.arshida-theme table tbody tr:nth-of-type(even) td{background-color:var(--arshida-table-even-tr-background-color,var(--arshida-background-primary-color))}.arshida-table tbody tr:nth-of-type(odd),.arshida-table tbody tr:nth-of-type(odd) td,.arshida-theme table tbody tr:nth-of-type(odd),.arshida-theme table tbody tr:nth-of-type(odd) td{background-color:var(--arshida-table-even-tr-background-color,var(--arshida-background-secondary-color))}.arshida-table tbody tr .actions .actions-wrap,.arshida-theme table tbody tr .actions .actions-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.arshida-table tbody tr .actions .actions-wrap,.arshida-table tbody tr .actions .actions-wrap .arshida-icon,.arshida-theme table tbody tr .actions .actions-wrap,.arshida-theme table tbody tr .actions .actions-wrap .arshida-icon{--arshida-icon-width:15px}.arshida-table-attributes,.arshida-theme table.shop_attributes{--arshida-table-border-radius:5px}.arshida-list-table{font-size:var(--arshida-font-size-14)}.arshida-list-table .arshida-section-wrapper{margin-bottom:5px}.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap,.arshida-list-table .arshida-list-table-topbar .arshida-filters{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:10px 0}.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap .arshida-control,.arshida-list-table .arshida-list-table-topbar .arshida-filters .arshida-control{--arshida-input-min-width:unset}.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap>*,.arshida-list-table .arshida-list-table-topbar .arshida-filters>*{width:calc(20% - 5px);min-width:100px;margin-bottom:5px;-webkit-box-flex:0;-ms-flex:0 0 calc(20% - 5px);flex:0 0 calc(20% - 5px)}@media screen and (max-width:768px){.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap>*,.arshida-list-table .arshida-list-table-topbar .arshida-filters>*{width:calc(33% - 5px);-webkit-box-flex:0;-ms-flex:0 0 calc(33% - 5px);flex:0 0 calc(33% - 5px)}}.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap>:not(:last-child),.arshida-list-table .arshida-list-table-topbar .arshida-filters>:not(:last-child){margin-left:5px}.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap>* .arshida-control,.arshida-list-table .arshida-list-table-topbar .arshida-filters>* .arshida-control{height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;height:-webkit-fill-available}.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap .select2-selection,.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap .select2-selection>span,.arshida-list-table .arshida-list-table-topbar .arshida-filters .select2-selection,.arshida-list-table .arshida-list-table-topbar .arshida-filters .select2-selection>span{min-height:34px;line-height:34px}.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap .arshida-btn-filter,.arshida-list-table .arshida-list-table-topbar .arshida-bulk-actions-wrap .arshida-btn-run-action,.arshida-list-table .arshida-list-table-topbar .arshida-filters .arshida-btn-filter,.arshida-list-table .arshida-list-table-topbar .arshida-filters .arshida-btn-run-action{max-width:100px;min-height:38px;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;height:-webkit-fill-available}.arshida-list-table .arshida-list-table-description{padding:5px 0}.arshida-list-table .arshida-sortable{--arshida-rotate:90deg;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;gap:2px;text-decoration:none}.arshida-list-table .arshida-sortable-asc::after,.arshida-list-table .arshida-sortable-desc::after,.arshida-list-table .arshida-sortable:hover::after{content:"\25B6";font-size:70%;-webkit-transform:rotate(var(--arshida-rotate));transform:rotate(var(--arshida-rotate));-webkit-transition:-webkit-transform .2s;transition:-webkit-transform .2s;transition:transform .2s;transition:transform .2s,-webkit-transform .2s;position:absolute;left:-7px}.arshida-list-table .arshida-sortable-asc:hover,.arshida-list-table .arshida-sortable-desc{--arshida-rotate:90deg}.arshida-list-table .arshida-sortable-asc,.arshida-list-table .arshida-sortable-desc:hover{--arshida-rotate:-90deg}.arshida-list-table .arshida-table-wrap{overflow-x:auto;margin-bottom:5px}.arshida-list-table .arshida-table-wrap tr .title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.arshida-list-table .arshida-table-wrap tr .title img{max-width:50px;max-height:50px;padding:0;margin:0}.arshida-list-table .arshida-table-wrap tr .actions .actions-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:flex-end;-ms-flex-pack:flex-end;justify-content:flex-end;gap:5px}.arshida-list-table .arshida-table-wrap tr .actions .actions-wrap,.arshida-list-table .arshida-table-wrap tr .actions .actions-wrap .arshida-icon{--arshida-icon-width:15px}.arshida-list-table .arshida-page-nav{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px}.arshida-list-table .arshida-page-nav a{text-decoration:none}.arshida-list-table .arshida-page-nav>a,.arshida-list-table .arshida-page-nav>input{max-width:100px;min-width:50px}.arshida-list-table .arshida-list-table-edit-popup-wrap{--arshida-switch-size:32px}.arshida-list-table .arshida-list-table-edit-popup-wrap .arshida-popup-inner{width:100vw}.arshida-list-table-frontend-wrap{margin:10px auto}.arshida-list-table-frontend-wrap .arshida-add-row{margin-bottom:10px}.arshida-list-table-frontend-wrap .arshida-table-wrap{overflow:auto}.arshida-notices{font-size:var(--arshida-font-size-12)}.arshida-notices .arshida-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative;margin:5px 0;padding:5px 10px}.arshida-notices .arshida-notice::before{position:absolute;display:inline-block;width:5px;height:100%;right:0;top:0;content:" "}.arshida-notices .arshida-notice .arshida-notice-close{font-size:var(--arshida-font-size-20);cursor:pointer}.arshida-notices .arshida-notice .arshida-notice-close:hover{opacity:.7}.arshida-notices .arshida-notice .arshida-notice-message{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:calc(100% - 25px)}.arshida-notices .arshida-notice.arshida-notice-error{--arshida-timer-color:#e74c3c;background:rgba(231,76,60,.2)}.arshida-notices .arshida-notice.arshida-notice-error::before{background-color:#e74c3c}.arshida-notices .arshida-notice.arshida-notice-success{--arshida-timer-color:#2ecc71;background:rgba(46,204,113,.2)}.arshida-notices .arshida-notice.arshida-notice-success::before{background:#2ecc71}.arshida-notice{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;--arshida-timer-color:var(--arshida-notice-color);background:var(--arshida-notice-background-color);-webkit-box-shadow:0 0 5px var(--arshida-notice-box-shadow-color);box-shadow:0 0 5px var(--arshida-notice-box-shadow-color);position:relative;min-height:35px;overflow:hidden;padding:5px 6px 5px 5px;border-radius:5px 0 0 5px}.arshida-notice:not(:last-child){margin-bottom:10px}.arshida-notice::before{content:" ";position:absolute;display:inline-block;background:var(--arshida-notice-color);width:3px;height:100%;top:0;right:0}.arshida-notice-close{font-size:var(--arshida-font-size-15);cursor:pointer}.arshida-notice-close:hover{opacity:.7}.arshida-notice-message{width:calc(100% - 25px);padding:5px}.arshida-notice-primary{--arshida-notice-color:var(--arshida-primary-color)}.arshida-notice-secondary{--arshida-notice-color:var(--arshida-secondary-color)}.arshida-notice-success{--arshida-notice-color:var(--arshida-success-color)}.arshida-notice-info{--arshida-notice-color:var(--arshida-info-color)}.arshida-notice-warning{--arshida-notice-color:var(--arshida-warning-color)}.arshida-notice-danger{--arshida-notice-color:var(--arshida-danger-color)}.arshida-notice-error{--arshida-notice-color:var(--arshida-error-color)}.arshida-sticky-notices{z-index:99999;width:calc(100vw - 20px);max-width:500px;position:fixed;top:var(--arshida-sticky-notice-margin-y);left:20px;font-size:var(--arshida-font-size-11)}#arshida-mini-cart-detail-purchase_profit,.arshida-purchase-profit{color:#2ecc71}#arshida-mini-cart-detail-purchase_profit strong,#arshida-mini-cart-detail-purchase_profit>span,.arshida-purchase-profit strong,.arshida-purchase-profit>span{color:#2ecc71}.arshida-review-order-product-name{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap;--arshida-icon-width:20px}.arshida-review-order-product-name .arshida-product-price,.arshida-review-order-product-name .arshida-product-title{-webkit-box-flex:1;-ms-flex:1;flex:1}.arshida-review-order-product-name.has-img~.variation{padding-right:85px}@media screen and (max-width:768px){.arshida-review-order-product-name.has-img~.variation{padding-right:55px}}.arshida-review-order-product-name.has-img .arshida-product-title{max-width:calc(100% - 80px)}.arshida-review-order-product-name .arshida-product-actions{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-top:10px}.arshida-review-order-product-name .arshida-product-actions .arshida-quantity-input-wrapper{margin:0}.arshida-review-order-product-name img{width:75px;max-width:75px;max-height:75px;overflow:hidden;display:inline-block;border-radius:var(--arshida-border-radius);border:1px solid var(--arshida-border-color);margin-right:5px}@media screen and (max-width:768px){.arshida-review-order-product-name img{width:48px;height:48px}}.arshida-section-wrapper{width:100%;margin-bottom:30px}.arshida-section-wrapper .arshida-section-title:not(:empty){display:block;width:100%;font-weight:500;color:var(--arshida-input-label-color);margin:0 0 5px 0}.arshida-section-wrapper .arshida-section-title:not(:empty):not(.arshida-has-description){margin:0 0 15px 0}.arshida-section-wrapper .arshida-section-description:not(:empty){font-size:var(--arshida-font-size-11);padding:0 5px;color:var(--arshida-input-label-color);margin-bottom:15px}.arshida-section-wrapper .arshida-section-description:not(:empty) code{font-size:var(--arshida-font-size-11);direction:ltr;display:block}.arshida-group-page-fields-opened>:not(.arshida-group-page-fields-open):not(.arshida-group-page-fields-opened):not(.arshida-group-page-fields-item-settings):not(.arshida-group-page-fields-settings){display:none!important}.arshida-group-page-fields-open,.arshida-group-page-fields-opened{width:100%}.arshida-group-page-fields-open>:not(.arshida-group-page-fields-opened):not(.arshida-group-page-fields-item-settings):not(.arshida-group-page-fields-settings),.arshida-group-page-fields-opened>:not(.arshida-group-page-fields-opened):not(.arshida-group-page-fields-item-settings):not(.arshida-group-page-fields-settings){display:none!important}.arshida-group-page-fields-item:not(.arshida-group-page-fields-opened){-webkit-box-flex:0;-ms-flex:0;flex:0}.arshida-group-page-fields-item.arshida-module-item:not(.active)>.arshida-group-page-fields-item-inner>.arshida-group-page-fields-item-actions .arshida-group-page-fields-open-settings{display:none}.arshida-group-page-fields-item .arshida-group-page-fields-item-inner{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;min-width:250px;min-height:35px;width:calc(33% - 40px);padding:15px;border-radius:var(--arshida-border-radius);border:var(--arshida-border)}.arshida-group-page-fields-item .arshida-group-page-fields-item-actions{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;gap:5px;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:end;min-width:70px}.arshida-group-page-fields-item .arshida-group-page-fields-item-actions .arshida-group-page-fields-open-settings{cursor:pointer}.arshida-group-page-fields-item .arshida-group-page-fields-item-actions .arshida-group-page-fields-open-settings svg{width:20px}.arshida-group-page-fields-item:not(.arshida-group-page-fields-open) .arshida-group-page-fields-item-settings{display:none}.arshida-group-page-fields-item .arshida-group-page-fields-item-settings .arshida-group-page-fields-item-settings-header{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap;margin:0 0 20px 0}.arshida-group-page-fields-item .arshida-group-page-fields-item-settings .arshida-group-page-fields-item-settings-header h3{margin:0}.arshida-group-page-fields-item .arshida-group-page-fields-item-settings .arshida-group-page-fields-item-settings-header .arshida-group-page-fields-item-back{cursor:pointer}.arshida-group-page-fields-item .arshida-group-page-fields-item-settings .arshida-group-page-fields-item-settings-header .arshida-group-page-fields-item-back:hover{opacity:.7}.arshida-group-page-fields-item .arshida-group-page-fields-item-settings .arshida-group-page-fields-item-settings-header .arshida-group-page-fields-item-back svg{width:20px;height:20px;fill:var(--arshida-input-placeholder-color)}.arshida-group-page-fields-item .arshida-group-page-fields-item-settings .arshida-group-page-fields-item-settings-header .arshida-group-page-fields-item-settings-header-description{-webkit-box-flex:100%;-ms-flex:100%;flex:100%;color:var(--arshida-input-label-color);font-size:var(--arshida-font-size-11)}.arshida-group-page-fields-item .arshida-group-page-fields-item-settings .arshida-group-page-fields-item-settings-header .arshida-group-page-fields-item-settings-header-description code{font-size:var(--arshida-font-size-11);direction:ltr;display:block}.arshida-field-group_fields-wrapper .arshida-group-fields-items{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap}@media screen and (min-width:1024px){.arshida-field-group_fields-wrapper .arshida-group-fields-items{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.arshida-field-group_fields-wrapper .arshida-group-fields-items>*{--arshida-input-min-width:200px;min-width:200px!important;max-width:49%!important;-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto;margin:0}}.arshida-list-items-heading{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.arshida-list-items-heading>*{-webkit-box-ordinal-group:2;-ms-flex-order:1;order:1}.arshida-list-items-heading .arshida-heading{margin:0!important;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.arshida-list-items-heading.arshida-heading-underline-end .arshida-slider-arrows{-webkit-box-ordinal-group:1;-ms-flex-order:0;order:0}.arshida-list-items-heading.arshida-heading-underline-center .arshida-slider-arrows{position:absolute;left:5px}.arshida-list-items-heading .arshida-slider-arrows{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;position:relative}.arshida-list-items-heading .arshida-slider-arrows .arshida-slider-arrow{position:relative;right:unset;left:unset;top:unset;-webkit-transform:unset;transform:unset}.arshida-list-items-heading .arshida-view-all{border-radius:5px;border:2px solid var(--arshida-primary-color);padding:2px 5px;--arshida-icon-width:10px;-webkit-transition:all .3s;transition:all .3s}.arshida-list-items-heading .arshida-view-all a{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;color:inherit}.arshida-list-items-heading .arshida-view-all:hover{background:var(--arshida-primary-color);--arshida-icon-color:#fff;color:#fff}.arshida-list-items-heading .arshida-view-all:hover svg{--arshida-icon-hover-and-active-color:var(
--arshida-icon-color
)}.arshida-list-items-heading .arshida-view-all:hover a{color:inherit}.arshida-list-items-wrapper{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;gap:10px}.arshida-list-items-wrapper.arshida-list-items-with-sidebar{-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.arshida-list-items-wrapper.arshida-list-items-with-sidebar .arshida-list-items-heading{-webkit-box-flex:0;-ms-flex:0 0 20%;flex:0 0 20%;min-width:200px;max-width:250px}@media screen and (max-width:480px){.arshida-list-items-wrapper.arshida-list-items-with-sidebar .arshida-list-items-heading{min-width:50%;-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}}.arshida-list-items,.arshida-list-items-wrapper{max-width:100%}.arshida-loop-item{--arshida-icon-width:20px;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:var(--arshida-loop-item-gap);position:relative;list-style:none;font-size:var(--arshida-loop-item-font-size);min-height:35px;padding:var(--arshida-loop-item-padding);background:var(--arshida-loop-item-background);border:var(--arshida-loop-item-border);border-radius:var(--arshida-loop-item-border-radius);-webkit-transition:all .2s ease-out;transition:all .2s ease-out}.arshida-loop-item .arshida-custom-template{-webkit-box-flex:1;-ms-flex:1;flex:1;max-width:100%}.arshida-loop-item .arshida-custom-template>.elementor-element{--padding-inline-start:0;--padding-inline-end:0;--margin-inline-start:0;--margin-inline-end:0}.arshida-loop-item .arshida-custom-template>.elementor-element>.e-con-inner{--padding-block-start:0;--padding-block-end:0}.arshida-loop-item.arshida-loop-item-pined .arshida-icon-thumbtack{--arshida-icon-width:8px;--arshida-icon-color:var(--arshida-primary-color);position:absolute;top:5px;right:5px;z-index:2}.arshida-loop-item.arshida-grid-item-taxonomy.arshida-grid-item-2{--arshida-loop-item-background:none}.arshida-loop-item.arshida-grid-item-taxonomy.arshida-grid-item-2 .arshida-thumbnail{-webkit-transition:border .5s,opacity .5s;transition:border .5s,opacity .5s;--arshida-loop-item-thumbnail-border-radius:50%;--arshida-loop-item-thumbnail-border-width:0 0 4px 0;--arshida-loop-item-thumbnail-border-color:var(
--arshida-box-shadow-primary-color
)}.arshida-loop-item.arshida-grid-item-taxonomy.arshida-grid-item-2 .arshida-title a{-webkit-transition:color .5s;transition:color .5s;font-weight:700}.arshida-loop-item.arshida-grid-item-taxonomy.arshida-grid-item-2:hover .arshida-thumbnail{opacity:.9;--arshida-loop-item-thumbnail-border-color:var(
--arshida-primary-color
)}.arshida-loop-item.arshida-grid-item-taxonomy.arshida-grid-item-2:hover .arshida-title a{color:var(--arshida-primary-color)}.arshida-loop-item .arshida-thumbnail{position:relative;max-width:var(--arshida-loop-item-thumbnail-width);max-height:var(--arshida-loop-item-thumbnail-height)}.arshida-loop-item .arshida-thumbnail img{width:var(--arshida-loop-item-thumbnail-width);height:var(--arshida-loop-item-thumbnail-height);border-radius:var(--arshida-loop-item-thumbnail-border-radius);border-width:var(--arshida-loop-item-thumbnail-border-width,0);border-color:var(--arshida-loop-item-thumbnail-border-color);border-style:var(--arshida-loop-item-thumbnail-border-style,solid);margin:0!important;-o-object-fit:cover;object-fit:cover;max-width:100%}.arshida-loop-item .arshida-thumbnail .arshida-countdown{width:100%;margin:auto;position:absolute;bottom:50px;opacity:.5}.arshida-loop-item .arshida-thumbnail .arshida-countdown:hover{opacity:1}.arshida-loop-item .arshida-title{max-width:var(--arshida-title-max-width);font-size:var(--arshida-title-font-size);font-weight:var(--arshida-title-font-weight);display:block;text-overflow:ellipsis;word-wrap:break-word}.arshida-loop-item .arshida-title a{text-decoration:none;display:block}.arshida-loop-item .arshida-title a:hover{color:var(--arshida-primary-color)}.arshida-loop-item .arshida-loop-item-details{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:0 5px;position:relative;-webkit-box-flex:1;-ms-flex:1;flex:1;text-align:right}.arshida-loop-item .arshida-loop-item-details>.arshida-flex:last-child{margin-top:auto}.arshida-loop-item .arshida-loop-item-details .arshida-loop-item-actions{position:relative;top:unset;left:unset;--arshida-icon-width:18px}.arshida-loop-item .arshida-loop-item-details .arshida-list-item-description p{margin-bottom:2px}.arshida-loop-item .arshida-loop-item-details .arshida-list-item-quantity-price{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;font-size:var(--arshida-font-size-12);font-weight:700}.arshida-loop-item .post-meta{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:var(--arshida-loop-item-meta-justify-content);-ms-flex-pack:var(--arshida-loop-item-meta-justify-content);justify-content:var(--arshida-loop-item-meta-justify-content);gap:var(--arshida-loop-item-meta-gap);margin-top:auto;padding:5px;font-size:12px;color:var(--arshida-text-secondary-color);--arshida-icon-width:16px}.arshida-loop-item .post-meta span{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.arshida-loop-item .post-meta a{color:var(--arshida-text-secondary-color);border-bottom:1px dashed transparent}.arshida-loop-item .post-meta a:hover{color:var(--arshida-primary-color);border-bottom-color:var(--arshida-primary-color)}.arshida-loop-item .post-meta .post-author img{width:20px;height:20px;border-radius:50%;border:1px solid var(--arshida-border-color)}.arshida-loop-item .arshida-loop-item-actions{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;gap:5px;position:absolute;top:5px;left:5px;--arshida-icon-width:23px}.arshida-loop-item .arshida-loop-item-actions button span{font-size:10px}.arshida-loop-item .arshida-loop-item-actions a:not(.active):not(:hover) svg{fill:#95a5a6}.arshida-loop-item .arshida-loop-item-buttons{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;gap:5px}.arshida-loop-item .arshida-loop-item-buttons:empty{display:none}.arshida-loop-item .arshida-loop-item-permalink{font-size:var(--arshida-loop-item-permalink-font-size);font-weight:var(--arshida-loop-item-permalink-font-weight)}.arshida-loop-item .arshida-loop-item-permalink:hover,.arshida-loop-item .arshida-loop-item-permalink:hover a{color:var(--arshida-loop-item-permalink-hover-color)}.arshida-loop-item .arshida-loop-item-footer{border-top:1px dashed var(--arshida-border-color);padding:5px;padding-top:10px;margin-top:15px}.arshida-loop-item .arshida-term-total-items .count{font-weight:700;color:var(--arshida-primary-color)}.arshida-grid-item{--arshida-loop-item-padding:0 0 5px 0;overflow:hidden;text-align:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.arshida-grid-item .arshida-list-item-primary-category{padding:0 10px;border-radius:5px;background-color:var(--arshida-primary-color);color:#fff}.arshida-grid-item .arshida-loop-item-details{text-align:center}.arshida-grid-item-2 .arshida-flex{-ms-flex-wrap:nowrap;flex-wrap:nowrap}.arshida-grid-item-2 .arshida-flex .arshida-price{text-align:left}.arshida-product-grid-item-1 .arshida-product-add-to-cart{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.arshida-grid-item-large{--arshida-loop-item-padding:0 0 5px 0;--arshida-loop-item-thumbnail-width:100%;--arshida-loop-item-thumbnail-height:250px;--arshida-title-font-size:16px;--arshida-title-font-weight:700;--arshida-loop-item-meta-justify-content:flex-start;--arshida-loop-item-meta-gap:10px;overflow:hidden;text-align:right;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.arshida-list-item-large{--arshida-loop-item-thumbnail-width:150px;--arshida-loop-item-thumbnail-height:150px;--arshida-title-font-size:14px}.arshida-list-item-minimal{--arshida-loop-item-thumbnail-width:72px;--arshida-loop-item-thumbnail-height:72px}.arshida-drawer-body .arshida-list-item-minimal{--arshida-title-max-width:70%}.arshida-list-item-minimal .arshida-loop-item-details .post-meta{padding-left:0;padding-right:0}.arshida-list-item-minimal .arshida-loop-item-details .post-meta .arshida-datetime{gap:2px}.arshida-list-item{--arshida-loop-item-thumbnail-width:100px;--arshida-loop-item-thumbnail-height:100px}.arshida-list-item,.arshida-list-item-large{--arshida-justify-content:flex-start}.arshida-list-item,.arshida-list-item-minimal{--arshida-loop-item-thumbnail-border-radius:5px;--arshida-loop-item-border:1px solid var(--arshida-border-color);--arshida-icon-width:18px}.arshida-list-item-minimal:not(:last-child),.arshida-list-item:not(:last-child){margin-bottom:5px}.arshida-slider:not(.arshida-slider-init){visibility:hidden}.arshida-slider:not(.arshida-slider-init) .arshida-list-items{overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex}.arshida-list-items{position:relative;padding:0;margin:0}.arshida-list-items::after,.arshida-list-items::before{content:" ";display:table}.arshida-list-items::after{clear:both}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items) .arshida-loop-item{float:right;margin:0 0 var(--arshida-loop-item-margin-y) var(--arshida-loop-item-margin-x);padding:var(--arshida-loop-item-padding);position:relative}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-1 .arshida-loop-item{width:calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));-webkit-box-flex:0;-ms-flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)))}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-1 .arshida-loop-item:nth-child(1n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-1 .arshida-loop-item:nth-child(1n+1){clear:both}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-2 .arshida-loop-item{width:calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));-webkit-box-flex:0;-ms-flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)))}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-2 .arshida-loop-item:nth-child(2n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-2 .arshida-loop-item:nth-child(2n+1){clear:both}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-3 .arshida-loop-item{width:calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));-webkit-box-flex:0;-ms-flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)))}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-3 .arshida-loop-item:nth-child(3n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-3 .arshida-loop-item:nth-child(3n+1){clear:both}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-4 .arshida-loop-item,.arshida-list-items.arshida-style-grid:not(.arshida-slider-items):not([class*=columns-]) .arshida-loop-item{width:calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));-webkit-box-flex:0;-ms-flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)))}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-4 .arshida-loop-item:nth-child(4n),.arshida-list-items.arshida-style-grid:not(.arshida-slider-items):not([class*=columns-]) .arshida-loop-item:nth-child(4n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-4 .arshida-loop-item:nth-child(4n+1),.arshida-list-items.arshida-style-grid:not(.arshida-slider-items):not([class*=columns-]) .arshida-loop-item:nth-child(4n+1){clear:both}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-5 .arshida-loop-item{width:calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));-webkit-box-flex:0;-ms-flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)))}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-5 .arshida-loop-item:nth-child(5n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-5 .arshida-loop-item:nth-child(5n+1){clear:both}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-6 .arshida-loop-item{width:calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));-webkit-box-flex:0;-ms-flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)))}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-6 .arshida-loop-item:nth-child(6n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items).columns-6 .arshida-loop-item:nth-child(6n+1){clear:both}@media screen and (max-width:768px){.arshida-list-items.arshida-style-grid:not(.arshida-slider-items)[class*=columns-] .arshida-loop-item{width:calc(50% - 2.5px)!important;float:right;clear:both!important;margin:0 0 5px 5px}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items)[class*=columns-] .arshida-loop-item:nth-child(2n){float:left;margin-left:0!important;clear:none!important}}@media screen and (max-width:768px){.arshida-list-items.arshida-style-grid:not(.arshida-slider-items)[class*=columns-] .arshida-loop-item.arshida-list-item{width:calc(100% - 0px)!important;float:right;clear:both!important;margin:0 0 5px 5px}.arshida-list-items.arshida-style-grid:not(.arshida-slider-items)[class*=columns-] .arshida-loop-item.arshida-list-item:nth-child(2n){float:left;margin-left:0!important;clear:none!important}}.arshida-has-more{-webkit-transition:height 1s ease-in-out;transition:height 1s ease-in-out;overflow:hidden}.arshida-has-more:not(.arshida-show-more){max-height:var(--arshida-has-more-max-height,300px);position:relative}.arshida-has-more.arshida-has-more-minimal:not(.arshida-show-more){max-height:var(--arshida-has-more-max-height,150px)}.arshida-has-more.arshida-has-more-minimal .arshida-show-hide-more{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:start}.arshida-has-more.arshida-has-more-minimal .arshida-show-hide-more::before{content:none}.arshida-has-more.arshida-show-more .arshida-show-hide-more{position:relative;text-decoration:none}.arshida-has-more.arshida-show-more .arshida-show-hide-more:before{-webkit-transform:rotate(90deg);transform:rotate(90deg)}.arshida-has-more .arshida-show-hide-more{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:100%;font-weight:700;position:absolute;z-index:1;bottom:0;right:0;text-align:center;background:-webkit-gradient(linear,left top,left bottom,from(transparent),color-stop(0,transparent),color-stop(24%,var(--arshida-background-secondary-color)),to(var(--arshida-background-secondary-color)));background:linear-gradient(-180deg,transparent 0,transparent 0,var(--arshida-background-secondary-color) 24%,var(--arshida-background-secondary-color) 100%);backdrop-filter:blur(1px);cursor:pointer;padding:5px;text-decoration:none;color:var(--arshida-show-hide-more-color,#3498db);font-weight:var(--arshida-show-hide-more-font-weight)}.arshida-has-more .arshida-show-hide-more:before{line-height:1;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;content:"\276F";font-size:8px;width:18px;height:18px;border:1px solid;border-radius:50%;-webkit-transition:all ease-in-out .3s;transition:all ease-in-out .3s;font-weight:lighter;-webkit-transform:rotate(270deg);transform:rotate(270deg)}.arshida-back-to-top{--arshida-icon-width:15px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:10px;border-radius:5px;width:35px;height:35px;background:var(--arshida-background-secondary-color);cursor:pointer;-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);z-index:99998}.arshida-back-to-top:hover{-webkit-box-shadow:var(--arshida-box-shadow-l);box-shadow:var(--arshida-box-shadow-l);--arshida-icon-color:var(--arshida-primary-color);--arshida-icon-hover-and-active-color:var(--arshida-primary-color)}.arshida-back-to-top:before{content:"";position:absolute;top:-2px;right:-2px;left:-2px;bottom:-2px;border-radius:5px;padding:2px;background:var(--progress-gradient,conic-gradient(var(--arshida-primary-color) 0deg,var(--arshida-primary-color) calc(var(--arshida-scroll-percent,0) * 3.6deg),transparent 0deg));-webkit-mask:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff)) content-box,-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff));-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff)) content-box,-webkit-gradient(linear,left top,left bottom,color-stop(0,#fff));mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;-webkit-transition:all .1s linear;transition:all .1s linear}.arshida-pagination{--arshida-icon-width:18px}.arshida-pagination ul.page-numbers{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0;margin:20px 0 0 0;list-style:none;font-size:12px;text-align:center;padding:2px 17px}.arshida-pagination ul.page-numbers>li{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.arshida-pagination ul.page-numbers a.page-numbers,.arshida-pagination ul.page-numbers a.page-numbers.next,.arshida-pagination ul.page-numbers a.page-numbers.prev,.arshida-pagination ul.page-numbers span.page-numbers,.arshida-pagination ul.page-numbers span.page-numbers.next,.arshida-pagination ul.page-numbers span.page-numbers.prev{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border:0;padding:5px 10px;color:var(--arshida-text-secondary-color)}.arshida-pagination ul.page-numbers a.page-numbers.next:active,.arshida-pagination ul.page-numbers a.page-numbers.next:focus,.arshida-pagination ul.page-numbers a.page-numbers.next:hover,.arshida-pagination ul.page-numbers a.page-numbers.prev:active,.arshida-pagination ul.page-numbers a.page-numbers.prev:focus,.arshida-pagination ul.page-numbers a.page-numbers.prev:hover,.arshida-pagination ul.page-numbers a.page-numbers:active,.arshida-pagination ul.page-numbers a.page-numbers:focus,.arshida-pagination ul.page-numbers a.page-numbers:hover,.arshida-pagination ul.page-numbers span.page-numbers.next:active,.arshida-pagination ul.page-numbers span.page-numbers.next:focus,.arshida-pagination ul.page-numbers span.page-numbers.next:hover,.arshida-pagination ul.page-numbers span.page-numbers.prev:active,.arshida-pagination ul.page-numbers span.page-numbers.prev:focus,.arshida-pagination ul.page-numbers span.page-numbers.prev:hover,.arshida-pagination ul.page-numbers span.page-numbers:active,.arshida-pagination ul.page-numbers span.page-numbers:focus,.arshida-pagination ul.page-numbers span.page-numbers:hover{background:100% 0}.arshida-pagination ul.page-numbers a.page-numbers.current,.arshida-pagination ul.page-numbers span.page-numbers.current{min-width:30px;background:var(--arshida-primary-color);border:1px solid var(--arshida-primary-color);border-radius:3px;color:var(--arshida-color-white)}.arshida-heading{--arshida-icon-width:20px}.arshida-heading .arshida-heading-text{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;justify-self:var(--arshida-heading-text-justify-self);color:var(--arshida-heading-text-color,inherit)}.arshida-heading .arshida-heading-text a{color:inherit}.arshida-heading-underline-center .arshida-heading,.arshida-heading-underline-center.arshida-heading{text-align:center;display:block;margin-bottom:15px;font-size:var(--arshida-font-size-16);font-weight:500;--arshida-heading-text-justify-self:center}.arshida-heading-underline-center .arshida-heading::after,.arshida-heading-underline-center.arshida-heading::after{content:" ";height:1px;background:var(--arshida-primary-color);width:80px;display:block;margin:auto;min-width:30px;max-width:20%;margin-top:5px}.arshida-heading-underline-start .arshida-heading,.arshida-heading-underline-start.arshida-heading{text-align:right;display:block;margin-bottom:15px;font-size:var(--arshida-font-size-16);font-weight:500;--arshida-heading-text-justify-self:start}.arshida-heading-underline-start .arshida-heading::after,.arshida-heading-underline-start.arshida-heading::after{content:" ";height:1px;background:var(--arshida-primary-color);width:80px;display:block;margin:0 0 0 auto;min-width:30px;max-width:20%;margin-top:5px}.arshida-heading-underline-end .arshida-heading,.arshida-heading-underline-end.arshida-heading{text-align:left;display:block;margin-bottom:15px;font-size:var(--arshida-font-size-16);font-weight:500;--arshida-heading-text-justify-self:end}.arshida-heading-underline-end .arshida-heading::after,.arshida-heading-underline-end.arshida-heading::after{content:" ";height:1px;background:var(--arshida-primary-color);width:80px;display:block;margin:0 auto 0 0;min-width:30px;max-width:20%;margin-top:5px}.arshida-heading-divider-line .arshida-heading,.arshida-heading-divider-line.arshida-heading{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px}.arshida-heading-divider-line .arshida-heading:after,.arshida-heading-divider-line.arshida-heading:after{content:" ";-webkit-box-flex:1;-ms-flex:1;flex:1;height:2px;background:var(--arshida-primary-color)}.arshida-heading-side-line .arshida-heading,.arshida-heading-side-line.arshida-heading{border-color:var(--arshida-primary-color);border-style:solid;border-width:0 3px 0 0;padding:0 5px 0 0}.arshida-heading-sidebar{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;gap:15px}.arshida-heading-sidebar .arshida-heading{-webkit-box-flex:0;-ms-flex:0 0 auto;flex:0 0 auto}.arshida-heading-sidebar .arshida-heading .arshida-heading-text{font-weight:900;font-size:24px}.arshida-heading-sidebar .arshida-view-all{border:0;background:#fff;padding:7px 10px;color:#000;--arshida-icon-width:14px;--arshida-icon-color:#000}.arshida-heading-sidebar .arshida-slider-arrow svg{width:10px;height:10px}.arshida-title-divider{display:-webkit-box!important;display:-ms-flexbox!important;display:flex!important;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px}.arshida-title-divider:after{content:" ";-webkit-box-flex:1;-ms-flex:1;flex:1;height:2px;background:#ecf0f1}.arshida-underline-center-grow:after{content:"";display:block;width:0%;height:2px;position:absolute;-webkit-transform:translateX(50%) translateY(0);transform:translateX(50%) translateY(0);opacity:0;right:50%;background:var(--arshida-primary-color);-webkit-transition:width .7s cubic-bezier(.2,.9,.3,1),opacity .6s ease 0s,-webkit-transform .25s cubic-bezier(.2,.9,.6,1) 1s;transition:width .7s cubic-bezier(.2,.9,.3,1),opacity .6s ease 0s,-webkit-transform .25s cubic-bezier(.2,.9,.6,1) 1s;transition:width .7s cubic-bezier(.2,.9,.3,1),transform .25s cubic-bezier(.2,.9,.6,1) 1s,opacity .6s ease 0s;transition:width .7s cubic-bezier(.2,.9,.3,1),transform .25s cubic-bezier(.2,.9,.6,1) 1s,opacity .6s ease 0s,-webkit-transform .25s cubic-bezier(.2,.9,.6,1) 1s}.arshida-underline-center-grow:hover:after{width:100%;opacity:1}.arshida-list-style-check-mark,.arshida-theme #tab-description ul,.arshida-theme .woocommerce-product-details__short-description ul{list-style:none}.arshida-list-style-check-mark li,.arshida-theme #tab-description ul li,.arshida-theme .woocommerce-product-details__short-description ul li{position:relative}.arshida-list-style-check-mark li:before,.arshida-theme #tab-description ul li:before,.arshida-theme .woocommerce-product-details__short-description ul li:before{content:"\2714";font-size:inherit;color:var(--arshida-primary-color);padding:0 0 0 5px}.arshida-theme ul.products:not(.arshida-slider-items) li.product{float:right;margin:0 0 var(--arshida-loop-item-margin-y) var(--arshida-loop-item-margin-x);padding:var(--arshida-loop-item-padding);position:relative}.arshida-theme ul.products:not(.arshida-slider-items).columns-1 li.product{width:calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));-webkit-box-flex:0;-ms-flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)))}.arshida-theme ul.products:not(.arshida-slider-items).columns-1 li.product:nth-child(1n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme ul.products:not(.arshida-slider-items).columns-1 li.product:nth-child(1n+1){clear:both}.arshida-theme ul.products:not(.arshida-slider-items).columns-2 li.product{width:calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));-webkit-box-flex:0;-ms-flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)))}.arshida-theme ul.products:not(.arshida-slider-items).columns-2 li.product:nth-child(2n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme ul.products:not(.arshida-slider-items).columns-2 li.product:nth-child(2n+1){clear:both}.arshida-theme ul.products:not(.arshida-slider-items).columns-3 li.product{width:calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));-webkit-box-flex:0;-ms-flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)))}.arshida-theme ul.products:not(.arshida-slider-items).columns-3 li.product:nth-child(3n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme ul.products:not(.arshida-slider-items).columns-3 li.product:nth-child(3n+1){clear:both}.arshida-theme ul.products:not(.arshida-slider-items).columns-4 li.product,.arshida-theme ul.products:not(.arshida-slider-items):not([class*=columns-]) li.product{width:calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));-webkit-box-flex:0;-ms-flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)))}.arshida-theme ul.products:not(.arshida-slider-items).columns-4 li.product:nth-child(4n),.arshida-theme ul.products:not(.arshida-slider-items):not([class*=columns-]) li.product:nth-child(4n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme ul.products:not(.arshida-slider-items).columns-4 li.product:nth-child(4n+1),.arshida-theme ul.products:not(.arshida-slider-items):not([class*=columns-]) li.product:nth-child(4n+1){clear:both}.arshida-theme ul.products:not(.arshida-slider-items).columns-5 li.product{width:calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));-webkit-box-flex:0;-ms-flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)))}.arshida-theme ul.products:not(.arshida-slider-items).columns-5 li.product:nth-child(5n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme ul.products:not(.arshida-slider-items).columns-5 li.product:nth-child(5n+1){clear:both}.arshida-theme ul.products:not(.arshida-slider-items).columns-6 li.product{width:calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));-webkit-box-flex:0;-ms-flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)))}.arshida-theme ul.products:not(.arshida-slider-items).columns-6 li.product:nth-child(6n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme ul.products:not(.arshida-slider-items).columns-6 li.product:nth-child(6n+1){clear:both}.arshida-theme li.product li.product{float:right;margin:0 0 var(--arshida-loop-item-margin-y) var(--arshida-loop-item-margin-x);padding:var(--arshida-loop-item-padding);position:relative}.arshida-theme.columns-1 li.product li.product{width:calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));-webkit-box-flex:0;-ms-flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)))}.arshida-theme.columns-1 li.product li.product:nth-child(1n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme.columns-1 li.product li.product:nth-child(1n+1){clear:both}.arshida-theme.columns-2 li.product li.product{width:calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));-webkit-box-flex:0;-ms-flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)))}.arshida-theme.columns-2 li.product li.product:nth-child(2n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme.columns-2 li.product li.product:nth-child(2n+1){clear:both}.arshida-theme.columns-3 li.product li.product{width:calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));-webkit-box-flex:0;-ms-flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)))}.arshida-theme.columns-3 li.product li.product:nth-child(3n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme.columns-3 li.product li.product:nth-child(3n+1){clear:both}.arshida-theme.columns-4 li.product li.product,.arshida-theme:not([class*=columns-]) li.product li.product{width:calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));-webkit-box-flex:0;-ms-flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)))}.arshida-theme.columns-4 li.product li.product:nth-child(4n),.arshida-theme:not([class*=columns-]) li.product li.product:nth-child(4n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme.columns-4 li.product li.product:nth-child(4n+1),.arshida-theme:not([class*=columns-]) li.product li.product:nth-child(4n+1){clear:both}.arshida-theme.columns-5 li.product li.product{width:calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));-webkit-box-flex:0;-ms-flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)))}.arshida-theme.columns-5 li.product li.product:nth-child(5n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme.columns-5 li.product li.product:nth-child(5n+1){clear:both}.arshida-theme.columns-6 li.product li.product{width:calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));-webkit-box-flex:0;-ms-flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)))}.arshida-theme.columns-6 li.product li.product:nth-child(6n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-theme.columns-6 li.product li.product:nth-child(6n+1){clear:both}.product .arshida-thumbnail{position:relative}.arshida-rating{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.arshida-rating .star-rating{float:unset}.arshida-rating .arshida-rating-average{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;--arshida-icon-width:16px}.arshida-price-template-2{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.arshida-price-template-2 del{display:block;font-size:90%}.arshida-datetime{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;-ms-flex-wrap:wrap;flex-wrap:wrap;font-size:10px}.arshida-datetime .arshida-icon{--arshida-icon-width:15px;-webkit-transform:translateY(-1px);transform:translateY(-1px)}.arshida-thumbnail{position:relative}.arshida-thumbnail:empty{display:none}.arshida-thumbnail img{max-width:100%;max-height:-webkit-max-content;max-height:-moz-max-content;max-height:max-content}.arshida-thumbnail img:is([sizes=auto i],[sizes^="auto,"i]){content-visibility:auto}.arshida-product-add-to-cart{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px}.arshida-product-add-to-cart .arshida-button-cart-plus{--arshida-icon-width:20px;--arshida-button-min-height:var(--arshida-icon-width);padding:6px}.arshida-loop-position{display:-webkit-box;display:-ms-flexbox;display:flex;gap:5px;-ms-flex-wrap:wrap;flex-wrap:wrap}.arshida-slider-arrows.arshida-slider-arrows-squire-1 .arshida-slider-arrow{border-radius:5px}.arshida-slider-arrows.arshida-slider-arrows-squire-1 .arshida-slider-arrow svg{fill:var(--arshida-slider-arrow-color)}.arshida-primary-header{-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);background:var(--arshida-background-secondary-color);z-index:99;-webkit-transition:all .3s ease;transition:all .3s ease;position:relative}.arshida-primary-header .header-nav{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px;line-height:1;padding-top:5px;padding-bottom:5px}.rtl .arshida-primary-header .header-nav{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.arshida-primary-header .header-nav.template-2 .header-nav-search{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto;min-width:300px}.arshida-primary-header .header-nav.template-2 .arshida-primary-menu{width:auto!important}.arshida-primary-header .header-nav>div{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.rtl .arshida-primary-header .header-nav>div{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}@media screen and (min-width:769px){.arshida-primary-header .header-nav>div.header-nav-icons-2{display:none}.arshida-primary-header .header-nav>div.header-nav-search{-webkit-box-flex:0;-ms-flex:0 0 50%;flex:0 0 50%}}@media screen and (max-width:768px){.arshida-primary-header .header-nav>div.header-nav-search{z-index:99;position:absolute;background:var(--arshida-background-secondary-color);padding:5px;-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);-webkit-transition:all .3s ease;transition:all .3s ease;width:100%;right:0;bottom:-150%}.arshida-primary-header .header-nav>div.header-nav-search:not(.show){display:none;visibility:hidden}.arshida-primary-header .header-nav>div.header-nav-search .arshida-search-form-wrapper{-webkit-box-flex:100%;-ms-flex:100%;flex:100%;max-width:100%}.arshida-primary-header .header-nav>div.arshida-site-logo{display:block;position:absolute;width:100%;text-align:center;z-index:-1;right:0}.arshida-primary-header .header-nav>div.arshida-site-logo img{max-height:45px;-webkit-transition:all .2s;transition:all .2s}}.arshida-primary-header .header-nav .arshida-logo{width:130px;height:31px;-webkit-transition:-webkit-transform .2s ease;transition:-webkit-transform .2s ease;transition:transform .2s ease;transition:transform .2s ease,-webkit-transform .2s ease}.arshida-primary-header .header-nav .arshida-logo:hover{-webkit-transform:scale(1.02);transform:scale(1.02)}#arshida-breadcrumb>.inner{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:2px;--arshida-icon-width:9px;position:relative;overflow-x:auto;white-space:nowrap;font-size:11px;color:var(--arshida-text-primary-color);--arshida-icon-width:11px;--arshida-icon-color:var(--arshida-text-primary-color)}#arshida-breadcrumb>.inner .delimiter{opacity:.4;--arshida-icon-width:9px}#arshida-breadcrumb>.inner>a,#arshida-breadcrumb>.inner>span{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;display:inline-block}@media screen and (max-width:768px){#arshida-breadcrumb>.inner{margin-top:0!important;padding-bottom:5px;font-size:11px;--arshida-icon-width:11px;--arshida-icon-color:var(--arshida-text-primary-color)}}aside.sidebar .sidebar-inner>div{border-radius:5px;-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);background:var(--arshida-background-secondary-color)}aside.sidebar .sidebar-inner>div:not(:last-child){margin-bottom:15px}aside.sidebar .widget.closed .widget-header .widget-title{border-bottom:none}aside.sidebar .widget .widget-header{position:relative;border-radius:0;background-color:transparent;border-bottom:none;cursor:pointer;margin-bottom:10px;text-align:center}aside.sidebar .widget .widget-header .widget-title{position:relative;padding:10px;font-size:14px;font-weight:500;border-bottom:1px solid var(--arshida-border-color)}aside.sidebar .widget .widget-header .widget-title>a{display:block}aside.sidebar .widget>:not(.widget-header){padding:0 10px;margin:0}aside.sidebar .widget>:first-child:not(.widget-header){padding-top:10px}aside.sidebar .widget>:last-child{padding-bottom:10px}#arshida-sidebar-drawer-opener{display:block;background:var(--arshida-primary-color);color:#fff;padding:2px 20px;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);position:fixed;top:70%;z-index:11;left:-20px;border-radius:0 0 5px 5px}#arshida-sidebar-drawer-opener.active{border-radius:5px 5px 0 0;right:-19px;left:auto}.site-main .widget:not(:last-child){margin-bottom:15px}.arshida-site-footer .footer-widgets::after,.arshida-site-footer .footer-widgets::before{content:" ";display:table}.arshida-site-footer .footer-widgets::after{clear:both}.arshida-site-footer .footer-widgets .footer-widget-column{float:right;margin:0 0 var(--arshida-loop-item-margin-y) var(--arshida-loop-item-margin-x);padding:var(--arshida-loop-item-padding);position:relative}.arshida-site-footer .footer-widgets.columns-1 .footer-widget-column{width:calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));-webkit-box-flex:0;-ms-flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)));flex:0 0 calc(100% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 1)))}.arshida-site-footer .footer-widgets.columns-1 .footer-widget-column:nth-child(1n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-site-footer .footer-widgets.columns-1 .footer-widget-column:nth-child(1n+1){clear:both}.arshida-site-footer .footer-widgets.columns-2 .footer-widget-column{width:calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));-webkit-box-flex:0;-ms-flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)));flex:0 0 calc(50% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 2)))}.arshida-site-footer .footer-widgets.columns-2 .footer-widget-column:nth-child(2n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-site-footer .footer-widgets.columns-2 .footer-widget-column:nth-child(2n+1){clear:both}.arshida-site-footer .footer-widgets.columns-3 .footer-widget-column{width:calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));-webkit-box-flex:0;-ms-flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)));flex:0 0 calc(33.3333333333% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 3)))}.arshida-site-footer .footer-widgets.columns-3 .footer-widget-column:nth-child(3n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-site-footer .footer-widgets.columns-3 .footer-widget-column:nth-child(3n+1){clear:both}.arshida-site-footer .footer-widgets.columns-4 .footer-widget-column,.arshida-site-footer .footer-widgets:not([class*=columns-]) .footer-widget-column{width:calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));-webkit-box-flex:0;-ms-flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)));flex:0 0 calc(25% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 4)))}.arshida-site-footer .footer-widgets.columns-4 .footer-widget-column:nth-child(4n),.arshida-site-footer .footer-widgets:not([class*=columns-]) .footer-widget-column:nth-child(4n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-site-footer .footer-widgets.columns-4 .footer-widget-column:nth-child(4n+1),.arshida-site-footer .footer-widgets:not([class*=columns-]) .footer-widget-column:nth-child(4n+1){clear:both}.arshida-site-footer .footer-widgets.columns-5 .footer-widget-column{width:calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));-webkit-box-flex:0;-ms-flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)));flex:0 0 calc(20% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 5)))}.arshida-site-footer .footer-widgets.columns-5 .footer-widget-column:nth-child(5n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-site-footer .footer-widgets.columns-5 .footer-widget-column:nth-child(5n+1){clear:both}.arshida-site-footer .footer-widgets.columns-6 .footer-widget-column{width:calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));-webkit-box-flex:0;-ms-flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)));flex:0 0 calc(16.6666666667% - (var(--arshida-loop-item-margin-x) - (var(--arshida-loop-item-margin-x)/ 6)))}.arshida-site-footer .footer-widgets.columns-6 .footer-widget-column:nth-child(6n){margin:0 0 var(--arshida-loop-item-margin-y) 0}.arshida-site-footer .footer-widgets.columns-6 .footer-widget-column:nth-child(6n+1){clear:both}@media screen and (max-width:768px){.arshida-site-footer .footer-widgets[class*=columns-] .footer-widget-column{width:calc(50% - 2.5px)!important;float:right;clear:both!important;margin:0 0 5px 5px}.arshida-site-footer .footer-widgets[class*=columns-] .footer-widget-column:nth-child(2n){float:left;margin-left:0!important;clear:none!important}}.arshida-site-footer .footer-widgets .widget-title{font-size:15px;font-weight:700}.arshida-site-footer .footer-copyright{background:#2f3030;border-top:1px solid #34495e;padding:10px 0;text-align:center}.arshida-site-footer .footer-copyright a,.arshida-site-footer .footer-copyright p{margin:0;font-weight:500;font-size:12px;color:#fff}.arshida-site-footer .footer-copyright a{font-weight:700;color:var(--arshida-primary-color)}.single .site-main>article,.single article.post{border-radius:5px;-webkit-box-shadow:var(--arshida-box-shadow);box-shadow:var(--arshida-box-shadow);background:var(--arshida-background-secondary-color);padding:15px 30px}.single .site-main>article .entry-header .entry-title,.single article.post .entry-header .entry-title{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:18px;border-bottom:1px solid var(--arshida-border-color);margin-bottom:10px;padding-bottom:10px}.single .site-main>article .entry-header .post-meta,.single article.post .entry-header .post-meta{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:10px;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:5px;font-size:12px;color:var(--arshida-text-secondary-color);--arshida-icon-width:16px}@media screen and (max-width:768px){.single .site-main>article .entry-header .post-meta,.single article.post .entry-header .post-meta{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-bottom:5px;border-bottom:1px solid var(--arshida-border-color);padding-bottom:5px}}.single .site-main>article .entry-header .post-meta span,.single article.post .entry-header .post-meta span{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;gap:5px}.single .site-main>article .entry-header .post-meta a,.single article.post .entry-header .post-meta a{color:var(--arshida-text-secondary-color);border-bottom:1px dashed transparent}.single .site-main>article .entry-header .post-meta a:hover,.single article.post .entry-header .post-meta a:hover{color:var(--arshida-primary-color);border-bottom-color:var(--arshida-primary-color)}.single .site-main>article .entry-header .post-meta .post-author img,.single article.post .entry-header .post-meta .post-author img{width:20px;height:20px;border-radius:50%;border:1px solid var(--arshida-border-color)}.single .site-main>article .arshida-thumbnail img,.single article.post .arshida-thumbnail img{width:100%}.dwqa-container a,
.single-dwqa-question a {
box-shadow: none;
text-decoration: none;
} .entry-header .entry-title {
display: inline-block;
}
.entry-header .edit-link {
display: inline-block;
margin-left: 10px;
}
.entry-header .edit-link a {
background-color: #f0f0f0;
border-radius: 2px;
display: inline-block;
padding: 3px 10px;
}
.entry-header .edit-link a:hover,
.entry-header .edit-link a:focus,
.entry-header .edit-link a:active {
background-color: #4275f4;
box-shadow: none;
color: #fff;
} #dwqa-search {
margin-bottom: 24px;
}
#dwqa-search .ui-autocomplete-input {
border-radius: 0;
border: 2px solid #ddd;
}
#dwqa-search .ui-autocomplete-input:hover,
#dwqa-search .ui-autocomplete-input:focus,
#dwqa-search .ui-autocomplete-input:active {
border-color: #1ba1e2;
}
.dwqa-search input {
font-size: 14px;
padding: 10px 16px 9px;
border-color: #ddd;
} .dwqa-question-filter {
margin-bottom: 23px;
border-top: 1px solid #e7e7e7;
padding-top: 23px;
margin-bottom: 20px;
}
.dwqa-question-filter a {
background: #f4f4f4;
box-shadow: none;
color: #555;
display: inline-block;
font-size: 11px;
text-transform: uppercase;
line-height: 24px;
padding: 0 8px;
margin-right: 5px;
}
.dwqa-question-filter a:hover,
.dwqa-question-filter a:active {
background: #e7e7e7;
box-shadow: none;
}
div.dwqa-question-filter a.active {
background: #1ba1e2;
border: 0 !important;
color: #fff;
}
.dwqa-question-filter a.active:hover,
.dwqa-question-filter a.active:focus,
.dwqa-question-filter a.active:active {
background: #1ba1e2;
color: #fff;
}
.dwqa-question-filter span {
font-weight: 600;
}
.dwqa-question-filter .dwqa-sort-by {
background: #fff;
border: 1px solid #e7e7e7;
border-radius: 2px;
color: #555 !important;
line-height: 24px;
font-size: 14px !important; outline: none;
} .dwqa-questions-list {
border-top: 0;
}
div.dwqa-questions-list .dwqa-question-item {
background-color: #f0f0f0;
border: 0;
margin-bottom: 10px;
padding: 20px 200px 20px 70px;
position: relative;
} .dwqa-question-item .dwqa-question-title a {
color: #272829;
font-size: 1.2rem;
font-weight: 600;
line-height: 1.2;
}
.dwqa-question-item .dwqa-question-title a:hover,
.dwqa-question-item .dwqa-question-title a:focus,
.dwqa-question-item .dwqa-question-title a:active {
color: #1ba1e2;
}
.dwqa-question-item .dwqa-question-meta {
overflow: hidden;
margin-top: 10px;
}
.dwqa-questions-list .dwqa-question-item .avatar {
border: 2px solid #fff;
box-shadow: none;
height: 18px;
margin: 0 5px 0 0;
vertical-align: middle;
width: 18px;
}
@media (min-width: 480px) {
.dwqa-questions-list.hidden-status .dwqa-question-item .avatar {
height: 48px;
top: 22px;
}
}
.dwqa-questions-list .dwqa-question-item .dwqa-question-stats > span {
background-color: #fff;
border: 0;
border-radius: 2px;
color: #666;
font-size: 10px;
height: auto;
padding: 5px;
min-width: 60px;
text-transform: uppercase;
text-align: center;
}
.dwqa-questions-list .dwqa-question-item .dwqa-question-stats > span strong {
font-weight: 600;
color: #333;
letter-spacing: 1px;
} .dwqa-question-item .dwqa-question-meta .dwqa-status {
border-radius: 0;
}
.dwqa-question-item .dwqa-question-meta a {
color: #1ba1e2;
margin-right: 3px;
} .dwqa-question-item .dwqa-status:after {
color: #fff;
}
.dwqa-question-item .dwqa-status {
box-shadow: none;
}
.dwqa-question-item .dwqa-status-answered {
background: #1ba1e2;
border: 0;
}
.dwqa-question-item .dwqa-status-open {
background: #e67e22;
}
.dwqa-question-item .dwqa-status-resolved {
background: #666;
}
.dwqa-question-item .dwqa-status-closed {
background-color: #666;
} .dwqa-questions-footer .dwqa-pagination a {
background-color: #f0f0f0;
border: 0;
color: #666;
}
.dwqa-questions-footer .dwqa-pagination a:hover,
.dwqa-questions-footer .dwqa-pagination a:focus,
.dwqa-questions-footer .dwqa-pagination a:active {
background-color: #ddd;
color: #333;
}
.dwqa-questions-footer .dwqa-pagination .dwqa-current {
background-color: #1ba1e2;
border: 0;
color: #fff;
}
.dwqa-questions-footer .dwqa-ask-question a {
background-color: #1ba1e2;
border: 0;
color: #fff;
font-weight: 600;
text-transform: uppercase;
}  .entry-header h1 {
font-weight: 600;
}
.dwqa-breadcrumbs {
color: #999;
}
.dwqa-breadcrumbs a {
color: #333;
display: inline-block;
border-bottom: 1px solid #eee;
margin-right: 5px;
}
.dwqa-breadcrumbs a:hover,
.dwqa-breadcrumbs a:focus,
.dwqa-breadcrumbs a:active {
border-bottom: 1px solid #1ba1e2;
color: #1ba1e2;
}
.dwqa-container .dwqa-question-item {
border: 2px solid #1ba1e2;
padding: 20px;
padding-left: 90px;
}
.single-dwqa-question .dwqa-question-item .avatar {
box-shadow: none;
padding: 0;
left: 15px;
top: 25px;
}
.dwqa-container .dwqa-single-question .dwqa-question-meta img {
border-radius: 0;
} .dwqa-question-vote {
top: 90px;
left: 26px;
}
.dwqa-question-vote .dwqa-vote-count {
top: 2px;
}
.dwqa-question-vote .dwqa-vote-down {
bottom: 6px;
} .dwqa-question-footer .dwqa-question-tag {
} .dwqa-answers-title {
font-weight: 600;
}
.dwqa-question-item.dwqa-best-answer {
}
.dwqa-answer-item .avatar {
box-shadow: none;
border-radius: 0;
} .dwqa-answer-vote .dwqa-vote-count {
top: 2px;
}
.dwqa-answer-vote .dwqa-vote-down {
bottom: 6px;
}
.dwqa-comments-list .dwqa-comment-meta .avatar {
height: 16px;
vertical-align: middle;
width: 16px;
} .dwqa-answers-login {
background-color: #f0f0f0;
padding: 20px;
}
.dwqa-answers-login label {
font-weight: 500;
}
.dwqa-answers-login input {
border-radius: 0;
border: 1px solid #ddd;
transition: all 0.35s;
}
.dwqa-answers-login input:focus {
border-color: #1ba1e2;
}
.dwqa-answers-login .login-submit #wp-submit {
background-color: #1ba1e2;
box-shadow: none;
border: 0;
color: #fff;
font-weight: 600;
letter-spacing: 1px;
text-transform:uppercase;
} @media (min-width: 768px) {
.dwqa-pick-best-answer {
top: 140px;
}
}
@media (max-width: 768px) {
div.dwqa-questions-list .dwqa-question-item {
padding-right: 60px;
padding-bottom: 45px;
box-shadow: 0 1px 1px -1px rgba(0,0,0,.1);
}
.dwqa-question-filter a {
margin-bottom: 5px;
}
.dwqa-questions-list .dwqa-question-item .dwqa-question-stats > span {
padding: 0px 10px;
}
.dwqa-questions-list .dwqa-question-item .dwqa-question-stats {
bottom: 10px;
}
.dwqa-container .dwqa-question-item {
padding-left: 10px;
}
}
@media (max-width: 480px) {
.dwqa-questions-list .dwqa-question-item .dwqa-status {
border-radius: 0;
height: 70px;
left: auto;
margin-top: 0;
position: absolute;
right: -50px;
top: -35px;
width: 70px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
}
.dwqa-questions-list .dwqa-question-item .dwqa-status:after {
left: 12px;
top: 42px;
transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
}
div.dwqa-questions-list .dwqa-question-item {
padding-left: 15px;
overflow: hidden;
}
.dwqa-question-item .dwqa-question-actions {
left: 10px;
top: 10px;
}
.single-dwqa-question .dwqa-question-item .dwqa-question-vote {
top: 5px;
}
} @media (max-width: 480px) {
.rtl .dwqa-pick-best-answer {
left: auto;
right: 0;
}
.rtl .dwqa-answer-vote .dwqa-vote-count,
.rtl .dwqa-question-vote .dwqa-vote-count {
top: 0px;
}
.rtl.single-dwqa-question .dwqa-question-vote,
.rtl.single-dwqa-question .dwqa-answer-vote {
right: 0;
left: 0;
}
}
@media (min-width: 480px) {
.rtl .dwqa-question-vote .dwqa-vote,
.rtl .dwqa-answer-vote .dwqa-vote {
right: 6px;
}
}
@media (max-width: 768px) {
.rtl .dwqa-questions-list .dwqa-question-item {
padding-right: 50px;
}
.rtl .dwqa-questions-list .dwqa-question-item .dwqa-question-stats {
position: relative;
margin-top: 24px;
}
}