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

 .animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.animated{
opacity: 0;
}
.animation{
opacity: 1;
}
.animation-duration-5 {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
}
.animation-duration-15 {
-webkit-animation-duration: 1.5s;
animation-duration: 1.5s;
}
.animation-duration-20 {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animation-duration-25 {
-webkit-animation-duration: 2.5s;
animation-duration: 2.5s;
}
.animation-duration-30 {
-webkit-animation-duration: 3s;
animation-duration: 3s;
}
.animation-delay-25{
-webkit-animation-delay: 0.25s;
animation-delay: 0.25s;
}
.animation-delay-50{
-webkit-animation-delay: 0.5s;
animation-delay: 0.5s;
}
.animation-delay-75{
-webkit-animation-delay: 0.75s;
animation-delay: 0.75s;
}
.animation-delay-100{
-webkit-animation-delay: 1s;
animation-delay: 1s;
}
.animation-delay-150{
-webkit-animation-delay: 1.5s;
animation-delay: 1.5s;
}
.animation-delay-200{
-webkit-animation-delay: 2s;
animation-delay: 2s;
}
.animation-delay-250{
-webkit-animation-delay: 2.5s;
animation-delay: 2.5s;
}
.animation-delay-300{
-webkit-animation-delay: 3s;
animation-delay: 3s;
}
.animation-delay-350{
-webkit-animation-delay: 3.5s;
animation-delay: 3.5s;
}
.animation-delay-400{
-webkit-animation-delay: 4s;
animation-delay: 4s;
}
.animation-delay-500{
-webkit-animation-delay: 5s;
animation-delay: 5s;
}
.animated.infinite {
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
}
.animated.hinge {
-webkit-animation-duration: 2s;
animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
.animated.flipOutX,
.animated.flipOutY {
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
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: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
} @-webkit-keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes jello {
11.1% {
-webkit-transform: none;
transform: none
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg)
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg)
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
}
100% {
-webkit-transform: none;
transform: none
}
}
@keyframes jello {
11.1% {
-webkit-transform: none;
transform: none
}
22.2% {
-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
transform: skewX(-12.5deg) skewY(-12.5deg)
}
33.3% {
-webkit-transform: skewX(6.25deg) skewY(6.25deg);
transform: skewX(6.25deg) skewY(6.25deg)
}
44.4% {
-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
transform: skewX(-3.125deg) skewY(-3.125deg)
}
55.5% {
-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
transform: skewX(1.5625deg) skewY(1.5625deg)
}
66.6% {
-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
transform: skewX(-0.78125deg) skewY(-0.78125deg)
}
77.7% {
-webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
transform: skewX(0.390625deg) skewY(0.390625deg)
}
88.8% {
-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
}
100% {
-webkit-transform: none;
transform: none
}
}
.jello{
-webkit-animation-name:jello;
animation-name:jello;
-webkit-transform-origin: center;
transform-origin: center
}
@-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(25px, 0, 0);
transform: translate3d(25px, 0, 0);
}
75% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
90% {
-webkit-transform: translate3d(5px, 0, 0);
transform: translate3d(5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 0, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(-25px, 0, 0);
transform: translate3d(-25px, 0, 0);
}
75% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
90% {
-webkit-transform: translate3d(-5px, 0, 0);
transform: translate3d(-5px, 0, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
} @-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
} @-webkit-keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
visibility: visible;
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
100% {
visibility: hidden;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
@-webkit-keyframes fadeInUpMenu {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 35px, 0);
transform: translate3d(0, 35px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpMenu {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 35px, 0);
transform: translate3d(0, 35px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpMenu {
-webkit-animation-name: fadeInUpMenu;
animation-name: fadeInUpMenu;
} [class*="hint--"] {
display: inline-block;
position: relative;
}
[class*="hint--"]::before, [class*="hint--"]::after {
opacity: 0;
pointer-events: none;
position: absolute;
transform: translate3d(0px, 0px, 0px);
transition: all 0.3s ease 0ms;
visibility: hidden;
z-index: 1000000;
}
[class*="hint--"]:hover::before, [class*="hint--"]:hover::after {
opacity: 1;
visibility: visible;
}
[class*="hint--"]:hover::before, [class*="hint--"]:hover::after {
transition-delay: 100ms;
}
[class*="hint--"]::before {
background: transparent none repeat scroll 0 0;
border: 6px solid transparent;
content: "";
position: absolute;
z-index: 1000001;
}
[class*="hint--"]::after {
background: #383838 none repeat scroll 0 0;
color: white;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 12px;
line-height: 12px;
padding: 8px 10px;
white-space: nowrap;
}
[class*="hint--"][aria-label]::after {
content: attr(aria-label);
}
[class*="hint--"][data-hint]::after {
content: attr(data-hint);
}
[aria-label=""]::before, [aria-label=""]::after, [data-hint=""]::before, [data-hint=""]::after {
display: none !important;
}
.hint--top-left::before {
border-top-color: #383838;
}
.hint--top-right::before {
border-top-color: #383838;
}
.hint--top::before {
border-top-color: #383838;
}
.hint--bottom-left::before {
border-bottom-color: #383838;
}
.hint--bottom-right::before {
border-bottom-color: #383838;
}
.hint--bottom::before {
border-bottom-color: #383838;
}
.hint--left::before {
border-left-color: #383838;
}
.hint--right::before {
border-right-color: #383838;
}
.hint--top::before {
margin-bottom: -11px;
}
.hint--top::before, .hint--top::after {
bottom: 100%;
left: 50%;
}
.hint--top::before {
left: calc(50% - 6px);
}
.hint--top::after {
transform: translateX(-50%);
}
.hint--top:hover::before {
transform: translateY(-8px);
}
.hint--top:hover::after {
transform: translateX(-50%) translateY(-8px);
}
.hint--bottom::before {
margin-top: -11px;
}
.hint--bottom::before, .hint--bottom::after {
left: 50%;
top: 100%;
}
.hint--bottom::before {
left: calc(50% - 6px);
}
.hint--bottom::after {
transform: translateX(-50%);
}
.hint--bottom:hover::before {
transform: translateY(8px);
}
.hint--bottom:hover::after {
transform: translateX(-50%) translateY(8px);
}
.hint--right::before {
margin-bottom: -6px;
margin-left: -11px;
}
.hint--right::after {
margin-bottom: -14px;
}
.hint--right::before, .hint--right::after {
bottom: 50%;
left: 100%;
}
.hint--right:hover::before {
transform: translateX(8px);
}
.hint--right:hover::after {
transform: translateX(8px);
}
.hint--left::before {
margin-bottom: -6px;
margin-right: -11px;
}
.hint--left::after {
margin-bottom: -14px;
}
.hint--left::before, .hint--left::after {
bottom: 50%;
right: 100%;
}
.hint--left:hover::before {
transform: translateX(-8px);
}
.hint--left:hover::after {
transform: translateX(-8px);
}
.hint--top-left::before {
margin-bottom: -11px;
}
.hint--top-left::before, .hint--top-left::after {
bottom: 100%;
left: 50%;
}
.hint--top-left::before {
left: calc(50% - 6px);
}
.hint--top-left::after {
transform: translateX(-100%);
}
.hint--top-left::after {
margin-left: 12px;
}
.hint--top-left:hover::before {
transform: translateY(-8px);
}
.hint--top-left:hover::after {
transform: translateX(-100%) translateY(-8px);
}
.hint--top-right::before {
margin-bottom: -11px;
}
.hint--top-right::before, .hint--top-right::after {
bottom: 100%;
left: 50%;
}
.hint--top-right::before {
left: calc(50% - 6px);
}
.hint--top-right::after {
transform: translateX(0px);
}
.hint--top-right::after {
margin-left: -12px;
}
.hint--top-right:hover::before {
transform: translateY(-8px);
}
.hint--top-right:hover::after {
transform: translateY(-8px);
}
.hint--bottom-left::before {
margin-top: -11px;
}
.hint--bottom-left::before, .hint--bottom-left::after {
left: 50%;
top: 100%;
}
.hint--bottom-left::before {
left: calc(50% - 6px);
}
.hint--bottom-left::after {
transform: translateX(-100%);
}
.hint--bottom-left::after {
margin-left: 12px;
}
.hint--bottom-left:hover::before {
transform: translateY(8px);
}
.hint--bottom-left:hover::after {
transform: translateX(-100%) translateY(8px);
}
.hint--bottom-right::before {
margin-top: -11px;
}
.hint--bottom-right::before, .hint--bottom-right::after {
left: 50%;
top: 100%;
}
.hint--bottom-right::before {
left: calc(50% - 6px);
}
.hint--bottom-right::after {
transform: translateX(0px);
}
.hint--bottom-right::after {
margin-left: -12px;
}
.hint--bottom-right:hover::before {
transform: translateY(8px);
}
.hint--bottom-right:hover::after {
transform: translateY(8px);
}
.hint--small::after, .hint--medium::after, .hint--large::after {
line-height: 1.4em;
white-space: normal;
}
.hint--small::after {
width: 80px;
}
.hint--medium::after {
width: 150px;
}
.hint--large::after {
width: 300px;
}
[class*="hint--"] {
}
[class*="hint--"]::after {
border-radius: 2px;
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15);
}
.hint--error::after {
background-color: #b34e4d;
}
.hint--error.hint--top-left::before {
border-top-color: #b34e4d;
}
.hint--error.hint--top-right::before {
border-top-color: #b34e4d;
}
.hint--error.hint--top::before {
border-top-color: #b34e4d;
}
.hint--error.hint--bottom-left::before {
border-bottom-color: #b34e4d;
}
.hint--error.hint--bottom-right::before {
border-bottom-color: #b34e4d;
}
.hint--error.hint--bottom::before {
border-bottom-color: #b34e4d;
}
.hint--error.hint--left::before {
border-left-color: #b34e4d;
}
.hint--error.hint--right::before {
border-right-color: #b34e4d;
}
.hint--warning::after {
background-color: #c09854;
}
.hint--warning.hint--top-left::before {
border-top-color: #c09854;
}
.hint--warning.hint--top-right::before {
border-top-color: #c09854;
}
.hint--warning.hint--top::before {
border-top-color: #c09854;
}
.hint--warning.hint--bottom-left::before {
border-bottom-color: #c09854;
}
.hint--warning.hint--bottom-right::before {
border-bottom-color: #c09854;
}
.hint--warning.hint--bottom::before {
border-bottom-color: #c09854;
}
.hint--warning.hint--left::before {
border-left-color: #c09854;
}
.hint--warning.hint--right::before {
border-right-color: #c09854;
}
.hint--info::after {
background-color: #3986ac;
}
.hint--info.hint--top-left::before {
border-top-color: #3986ac;
}
.hint--info.hint--top-right::before {
border-top-color: #3986ac;
}
.hint--info.hint--top::before {
border-top-color: #3986ac;
}
.hint--info.hint--bottom-left::before {
border-bottom-color: #3986ac;
}
.hint--info.hint--bottom-right::before {
border-bottom-color: #3986ac;
}
.hint--info.hint--bottom::before {
border-bottom-color: #3986ac;
}
.hint--info.hint--left::before {
border-left-color: #3986ac;
}
.hint--info.hint--right::before {
border-right-color: #3986ac;
}
.hint--success::after {
background-color: #9AC100;
}
.hint--success.hint--top-left::before {
border-top-color: #9AC100;
}
.hint--success.hint--top-right::before {
border-top-color: #9AC100;
}
.hint--success.hint--top::before {
border-top-color: #9AC100;
}
.hint--success.hint--bottom-left::before {
border-bottom-color: #9AC100;
}
.hint--success.hint--bottom-right::before {
border-bottom-color: #9AC100;
}
.hint--success.hint--bottom::before {
border-bottom-color: #9AC100;
}
.hint--success.hint--left::before {
border-left-color: #9AC100;
}
.hint--success.hint--right::before {
border-right-color: #9AC100;
}
.hint--always::after, .hint--always::before {
opacity: 1;
visibility: visible;
}
.hint--always.hint--top::before {
transform: translateY(-8px);
}
.hint--always.hint--top::after {
transform: translateX(-50%) translateY(-8px);
}
.hint--always.hint--top-left::before {
transform: translateY(-8px);
}
.hint--always.hint--top-left::after {
transform: translateX(-100%) translateY(-8px);
}
.hint--always.hint--top-right::before {
transform: translateY(-8px);
}
.hint--always.hint--top-right::after {
transform: translateY(-8px);
}
.hint--always.hint--bottom::before {
transform: translateY(8px);
}
.hint--always.hint--bottom::after {
transform: translateX(-50%) translateY(8px);
}
.hint--always.hint--bottom-left::before {
transform: translateY(8px);
}
.hint--always.hint--bottom-left::after {
transform: translateX(-100%) translateY(8px);
}
.hint--always.hint--bottom-right::before {
transform: translateY(8px);
}
.hint--always.hint--bottom-right::after {
transform: translateY(8px);
}
.hint--always.hint--left::before {
transform: translateX(-8px);
}
.hint--always.hint--left::after {
transform: translateX(-8px);
}
.hint--always.hint--right::before {
transform: translateX(8px);
}
.hint--always.hint--right::after {
transform: translateX(8px);
}
.hint--rounded::after {
border-radius: 4px;
}
.hint--no-animate::before, .hint--no-animate::after {
transition-duration: 0ms;
}
.hint--bounce::before, .hint--bounce::after {
transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24) 0s;
}
   html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
audio:not([controls]) {
display: none;
height: 0;
}
[hidden],
template {
display: none;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
abbr[title] {
border-bottom: 1px dotted;
}
b,
strong {
font-weight: bold;
}
dfn {
font-style: italic;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
mark {
background: #ff0;
color: #000;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
sub {
bottom: -0.25em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
box-sizing: content-box;
height: 0;
}
pre {
overflow: auto;
}
code,
kbd,
pre,
samp {
font-family: monospace, monospace;
font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
border: 0;
padding: 0;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
input[type="search"] {
-webkit-appearance: textfield;
box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
legend {
border: 0;
padding: 0;
}
textarea {
overflow: auto;
}
optgroup {
font-weight: bold;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
} @media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important;
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group;
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
.navbar {
display: none;
}
.btn>.caret,
.dropup>.btn>.caret {
border-top-color: #000 !important;
}
.label {
border: 1px solid #000;
}
.table,
table {
border-collapse: collapse !important;
}
.table td,
table td,
.table th,
table th {
background-color: #fff !important;
}
.table-bordered th,
table th,
.table-bordered td,
table td {
border: 1px solid #ddd !important;
}
}  * {
box-sizing: border-box;
}
*:before,
*:after {
box-sizing: border-box;
}
html {
font-size: 10px;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
line-height: 1.5;
color: #666;
background-color: #fff;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
color: #999;
text-decoration: none;
}
a:hover,
a:focus {
color: #9ac100;
text-decoration: underline;
}
a:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
.img-responsive {
display: block;
max-width: 100%;
height: auto;
}
.img-rounded {
border-radius: 6px;
}
.img-thumbnail {
padding: 4px;
line-height: 1.5;
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
transition: all 0.2s ease-in-out;
display: inline-block;
max-width: 100%;
height: auto;
}
.img-circle {
border-radius: 50%;
}
hr {
margin-top: 22px;
margin-bottom: 22px;
border: 0;
border-top: 1px solid #eeeeee;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
position: static;
width: auto;
height: auto;
margin: 0;
overflow: visible;
clip: auto;
}
[role="button"] {
cursor: pointer;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
line-height: 1.1;
color: inherit;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
font-weight: normal;
line-height: 1;
color: #777777;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
margin-top: 22px;
margin-bottom: 11px;
}
h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
font-size: 65%;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
margin-top: 11px;
margin-bottom: 11px;
}
h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .small,
.h6 small,
.h6 .small {
font-size: 75%;
}
h1,
.h1 {
font-size: 32px;
}
h2,
.h2 {
font-size: 26px;
}
h3,
.h3 {
font-size: 22px;
}
h4,
.h4 {
font-size: 18px;
}
h5,
.h5 {
font-size: 15px;
}
h6,
.h6 {
font-size: 14px;
}
p {
margin: 0 0 11px;
}
.lead {
margin-bottom: 22px;
font-size: 17px;
font-weight: 300;
line-height: 1.4;
}
@media (min-width: 768px) {
.lead {
font-size: 22.5px;
}
}
small,
.small {
font-size: 86%;
}
mark,
.mark {
background-color: #fcf8e3;
padding: .2em;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-nowrap {
white-space: nowrap;
}
.text-lowercase {
text-transform: lowercase;
}
.text-uppercase,
.initialism {
text-transform: uppercase;
}
.text-capitalize {
text-transform: capitalize;
}
.text-muted {
color: #777777;
}
.text-primary {
color: #337ab7;
}
a.text-primary:hover,
a.text-primary:focus {
color: #286090;
}
.text-success {
color: #3c763d;
}
a.text-success:hover,
a.text-success:focus {
color: #2b542c;
}
.text-info {
color: #31708f;
}
a.text-info:hover,
a.text-info:focus {
color: #245269;
}
.text-warning {
color: #8a6d3b;
}
a.text-warning:hover,
a.text-warning:focus {
color: #66512c;
}
.text-danger {
color: #a94442;
}
a.text-danger:hover,
a.text-danger:focus {
color: #843534;
}
.bg-primary {
color: #fff;
}
.bg-primary {
background-color: #337ab7;
}
a.bg-primary:hover,
a.bg-primary:focus {
background-color: #286090;
}
.bg-success {
background-color: #dff0d8;
}
a.bg-success:hover,
a.bg-success:focus {
background-color: #c1e2b3;
}
.bg-info {
background-color: #d9edf7;
}
a.bg-info:hover,
a.bg-info:focus {
background-color: #afd9ee;
}
.bg-warning {
background-color: #fcf8e3;
}
a.bg-warning:hover,
a.bg-warning:focus {
background-color: #f7ecb5;
}
.bg-danger {
background-color: #f2dede;
}
a.bg-danger:hover,
a.bg-danger:focus {
background-color: #e4b9b9;
}
.page-header {
padding-bottom: 10px;
margin: 44px 0 22px;
border-bottom: 1px solid #eeeeee;
}
ul,
ol {
margin-top: 0;
margin-bottom: 11px;
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0;
}
.list-unstyled {
padding-left: 0;
list-style: none;
}
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
.list-inline>li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
dl {
margin-top: 0;
margin-bottom: 22px;
}
dt,
dd {
line-height: 1.5;
}
dt {
font-weight: bold;
}
dd {
margin-left: 0;
}
.dl-horizontal dd:before,
.dl-horizontal dd:after {
content: " ";
display: table;
}
.dl-horizontal dd:after {
clear: both;
}
@media (min-width: 768px) {
.dl-horizontal dt {
float: left;
width: 160px;
clear: left;
text-align: right;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dl-horizontal dd {
margin-left: 180px;
}
}
abbr[title],
abbr[data-original-title] {
cursor: help;
border-bottom: 1px dotted #777777;
}
.initialism {
font-size: 90%;
}
blockquote {
padding: 11px 22px;
margin: 0 0 22px;
font-size: 18.75px;
border-left: 5px solid #eeeeee;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.5;
color: #777777;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: '\2014 \00A0';
}
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eeeeee;
border-left: 0;
text-align: right;
}
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
content: '';
}
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
content: '\00A0 \2014';
}
address {
margin-bottom: 22px;
font-style: normal;
line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
text-transform: uppercase;
}
p {
margin-bottom: 20px;
}
a {
transition: all 0.2s ease-in-out;
}
a:hover,
a:active,
a:focus {
text-decoration: none;
color: #9ac100;
}
img {
max-width: 100%;
height: auto;
vertical-align: middle;
}
ul,
ol {
padding-left: 15px;
}
ul li,
ol li {
margin-bottom: 10px;
position: relative;
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-top: 10px;
}
::-moz-selection {
background: #9ac100;
color: #fff;
}
::selection {
background: #9ac100;
color: #fff;
}
::-moz-selection {
background: #9ac100;
color: #fff;
}
html,
body {
overflow-x: hidden;
} code,
kbd,
pre,
samp {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
}
kbd {
padding: 2px 4px;
font-size: 90%;
color: #fff;
background-color: #333;
border-radius: 3px;
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}
kbd kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
box-shadow: none;
}
pre {
display: block;
padding: 10.5px;
margin: 0 0 11px;
font-size: 14px;
line-height: 1.5;
word-break: break-all;
word-wrap: break-word;
color: #333333;
background-color: #f5f5f5;
border: 1px solid #ccc;
border-radius: 4px;
}
pre code {
padding: 0;
font-size: inherit;
color: inherit;
white-space: pre-wrap;
background-color: transparent;
border-radius: 0;
}
.pre-scrollable {
max-height: 340px;
overflow-y: scroll;
} .container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
.container:before,
.container:after {
content: " ";
display: table;
}
.container:after {
clear: both;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.container-fluid {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
.container-fluid:before,
.container-fluid:after {
content: " ";
display: table;
}
.container-fluid:after {
clear: both;
}
.row {
margin-left: -15px;
margin-right: -15px;
}
.row:before,
.row:after {
content: " ";
display: table;
}
.row:after {
clear: both;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
float: left;
}
.col-xs-1 {
width: 8.33333%;
}
.col-xs-2 {
width: 16.66667%;
}
.col-xs-3 {
width: 25%;
}
.col-xs-4 {
width: 33.33333%;
}
.col-xs-5 {
width: 41.66667%;
}
.col-xs-6 {
width: 50%;
}
.col-xs-7 {
width: 58.33333%;
}
.col-xs-8 {
width: 66.66667%;
}
.col-xs-9 {
width: 75%;
}
.col-xs-10 {
width: 83.33333%;
}
.col-xs-11 {
width: 91.66667%;
}
.col-xs-12 {
width: 100%;
}
.col-xs-pull-0 {
right: auto;
}
.col-xs-pull-1 {
right: 8.33333%;
}
.col-xs-pull-2 {
right: 16.66667%;
}
.col-xs-pull-3 {
right: 25%;
}
.col-xs-pull-4 {
right: 33.33333%;
}
.col-xs-pull-5 {
right: 41.66667%;
}
.col-xs-pull-6 {
right: 50%;
}
.col-xs-pull-7 {
right: 58.33333%;
}
.col-xs-pull-8 {
right: 66.66667%;
}
.col-xs-pull-9 {
right: 75%;
}
.col-xs-pull-10 {
right: 83.33333%;
}
.col-xs-pull-11 {
right: 91.66667%;
}
.col-xs-pull-12 {
right: 100%;
}
.col-xs-push-0 {
left: auto;
}
.col-xs-push-1 {
left: 8.33333%;
}
.col-xs-push-2 {
left: 16.66667%;
}
.col-xs-push-3 {
left: 25%;
}
.col-xs-push-4 {
left: 33.33333%;
}
.col-xs-push-5 {
left: 41.66667%;
}
.col-xs-push-6 {
left: 50%;
}
.col-xs-push-7 {
left: 58.33333%;
}
.col-xs-push-8 {
left: 66.66667%;
}
.col-xs-push-9 {
left: 75%;
}
.col-xs-push-10 {
left: 83.33333%;
}
.col-xs-push-11 {
left: 91.66667%;
}
.col-xs-push-12 {
left: 100%;
}
.col-xs-offset-0 {
margin-left: 0%;
}
.col-xs-offset-1 {
margin-left: 8.33333%;
}
.col-xs-offset-2 {
margin-left: 16.66667%;
}
.col-xs-offset-3 {
margin-left: 25%;
}
.col-xs-offset-4 {
margin-left: 33.33333%;
}
.col-xs-offset-5 {
margin-left: 41.66667%;
}
.col-xs-offset-6 {
margin-left: 50%;
}
.col-xs-offset-7 {
margin-left: 58.33333%;
}
.col-xs-offset-8 {
margin-left: 66.66667%;
}
.col-xs-offset-9 {
margin-left: 75%;
}
.col-xs-offset-10 {
margin-left: 83.33333%;
}
.col-xs-offset-11 {
margin-left: 91.66667%;
}
.col-xs-offset-12 {
margin-left: 100%;
}
@media (min-width: 768px) {
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12 {
float: left;
}
.col-sm-1 {
width: 8.33333%;
}
.col-sm-2 {
width: 16.66667%;
}
.col-sm-3 {
width: 25%;
}
.col-sm-4 {
width: 33.33333%;
}
.col-sm-5 {
width: 41.66667%;
}
.col-sm-6 {
width: 50%;
}
.col-sm-7 {
width: 58.33333%;
}
.col-sm-8 {
width: 66.66667%;
}
.col-sm-9 {
width: 75%;
}
.col-sm-10 {
width: 83.33333%;
}
.col-sm-11 {
width: 91.66667%;
}
.col-sm-12 {
width: 100%;
}
.col-sm-pull-0 {
right: auto;
}
.col-sm-pull-1 {
right: 8.33333%;
}
.col-sm-pull-2 {
right: 16.66667%;
}
.col-sm-pull-3 {
right: 25%;
}
.col-sm-pull-4 {
right: 33.33333%;
}
.col-sm-pull-5 {
right: 41.66667%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-pull-7 {
right: 58.33333%;
}
.col-sm-pull-8 {
right: 66.66667%;
}
.col-sm-pull-9 {
right: 75%;
}
.col-sm-pull-10 {
right: 83.33333%;
}
.col-sm-pull-11 {
right: 91.66667%;
}
.col-sm-pull-12 {
right: 100%;
}
.col-sm-push-0 {
left: auto;
}
.col-sm-push-1 {
left: 8.33333%;
}
.col-sm-push-2 {
left: 16.66667%;
}
.col-sm-push-3 {
left: 25%;
}
.col-sm-push-4 {
left: 33.33333%;
}
.col-sm-push-5 {
left: 41.66667%;
}
.col-sm-push-6 {
left: 50%;
}
.col-sm-push-7 {
left: 58.33333%;
}
.col-sm-push-8 {
left: 66.66667%;
}
.col-sm-push-9 {
left: 75%;
}
.col-sm-push-10 {
left: 83.33333%;
}
.col-sm-push-11 {
left: 91.66667%;
}
.col-sm-push-12 {
left: 100%;
}
.col-sm-offset-0 {
margin-left: 0%;
}
.col-sm-offset-1 {
margin-left: 8.33333%;
}
.col-sm-offset-2 {
margin-left: 16.66667%;
}
.col-sm-offset-3 {
margin-left: 25%;
}
.col-sm-offset-4 {
margin-left: 33.33333%;
}
.col-sm-offset-5 {
margin-left: 41.66667%;
}
.col-sm-offset-6 {
margin-left: 50%;
}
.col-sm-offset-7 {
margin-left: 58.33333%;
}
.col-sm-offset-8 {
margin-left: 66.66667%;
}
.col-sm-offset-9 {
margin-left: 75%;
}
.col-sm-offset-10 {
margin-left: 83.33333%;
}
.col-sm-offset-11 {
margin-left: 91.66667%;
}
.col-sm-offset-12 {
margin-left: 100%;
}
}
@media (min-width: 992px) {
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
float: left;
}
.col-md-1 {
width: 8.33333%;
}
.col-md-2 {
width: 16.66667%;
}
.col-md-3 {
width: 25%;
}
.col-md-4 {
width: 33.33333%;
}
.col-md-5 {
width: 41.66667%;
}
.col-md-6 {
width: 50%;
}
.col-md-7 {
width: 58.33333%;
}
.col-md-8 {
width: 66.66667%;
}
.col-md-9 {
width: 75%;
}
.col-md-10 {
width: 83.33333%;
}
.col-md-11 {
width: 91.66667%;
}
.col-md-12 {
width: 100%;
}
.col-md-pull-0 {
right: auto;
}
.col-md-pull-1 {
right: 8.33333%;
}
.col-md-pull-2 {
right: 16.66667%;
}
.col-md-pull-3 {
right: 25%;
}
.col-md-pull-4 {
right: 33.33333%;
}
.col-md-pull-5 {
right: 41.66667%;
}
.col-md-pull-6 {
right: 50%;
}
.col-md-pull-7 {
right: 58.33333%;
}
.col-md-pull-8 {
right: 66.66667%;
}
.col-md-pull-9 {
right: 75%;
}
.col-md-pull-10 {
right: 83.33333%;
}
.col-md-pull-11 {
right: 91.66667%;
}
.col-md-pull-12 {
right: 100%;
}
.col-md-push-0 {
left: auto;
}
.col-md-push-1 {
left: 8.33333%;
}
.col-md-push-2 {
left: 16.66667%;
}
.col-md-push-3 {
left: 25%;
}
.col-md-push-4 {
left: 33.33333%;
}
.col-md-push-5 {
left: 41.66667%;
}
.col-md-push-6 {
left: 50%;
}
.col-md-push-7 {
left: 58.33333%;
}
.col-md-push-8 {
left: 66.66667%;
}
.col-md-push-9 {
left: 75%;
}
.col-md-push-10 {
left: 83.33333%;
}
.col-md-push-11 {
left: 91.66667%;
}
.col-md-push-12 {
left: 100%;
}
.col-md-offset-0 {
margin-left: 0%;
}
.col-md-offset-1 {
margin-left: 8.33333%;
}
.col-md-offset-2 {
margin-left: 16.66667%;
}
.col-md-offset-3 {
margin-left: 25%;
}
.col-md-offset-4 {
margin-left: 33.33333%;
}
.col-md-offset-5 {
margin-left: 41.66667%;
}
.col-md-offset-6 {
margin-left: 50%;
}
.col-md-offset-7 {
margin-left: 58.33333%;
}
.col-md-offset-8 {
margin-left: 66.66667%;
}
.col-md-offset-9 {
margin-left: 75%;
}
.col-md-offset-10 {
margin-left: 83.33333%;
}
.col-md-offset-11 {
margin-left: 91.66667%;
}
.col-md-offset-12 {
margin-left: 100%;
}
}
@media (min-width: 1200px) {
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12 {
float: left;
}
.col-lg-1 {
width: 8.33333%;
}
.col-lg-2 {
width: 16.66667%;
}
.col-lg-3 {
width: 25%;
}
.col-lg-4 {
width: 33.33333%;
}
.col-lg-5 {
width: 41.66667%;
}
.col-lg-6 {
width: 50%;
}
.col-lg-7 {
width: 58.33333%;
}
.col-lg-8 {
width: 66.66667%;
}
.col-lg-9 {
width: 75%;
}
.col-lg-10 {
width: 83.33333%;
}
.col-lg-11 {
width: 91.66667%;
}
.col-lg-12 {
width: 100%;
}
.col-lg-pull-0 {
right: auto;
}
.col-lg-pull-1 {
right: 8.33333%;
}
.col-lg-pull-2 {
right: 16.66667%;
}
.col-lg-pull-3 {
right: 25%;
}
.col-lg-pull-4 {
right: 33.33333%;
}
.col-lg-pull-5 {
right: 41.66667%;
}
.col-lg-pull-6 {
right: 50%;
}
.col-lg-pull-7 {
right: 58.33333%;
}
.col-lg-pull-8 {
right: 66.66667%;
}
.col-lg-pull-9 {
right: 75%;
}
.col-lg-pull-10 {
right: 83.33333%;
}
.col-lg-pull-11 {
right: 91.66667%;
}
.col-lg-pull-12 {
right: 100%;
}
.col-lg-push-0 {
left: auto;
}
.col-lg-push-1 {
left: 8.33333%;
}
.col-lg-push-2 {
left: 16.66667%;
}
.col-lg-push-3 {
left: 25%;
}
.col-lg-push-4 {
left: 33.33333%;
}
.col-lg-push-5 {
left: 41.66667%;
}
.col-lg-push-6 {
left: 50%;
}
.col-lg-push-7 {
left: 58.33333%;
}
.col-lg-push-8 {
left: 66.66667%;
}
.col-lg-push-9 {
left: 75%;
}
.col-lg-push-10 {
left: 83.33333%;
}
.col-lg-push-11 {
left: 91.66667%;
}
.col-lg-push-12 {
left: 100%;
}
.col-lg-offset-0 {
margin-left: 0%;
}
.col-lg-offset-1 {
margin-left: 8.33333%;
}
.col-lg-offset-2 {
margin-left: 16.66667%;
}
.col-lg-offset-3 {
margin-left: 25%;
}
.col-lg-offset-4 {
margin-left: 33.33333%;
}
.col-lg-offset-5 {
margin-left: 41.66667%;
}
.col-lg-offset-6 {
margin-left: 50%;
}
.col-lg-offset-7 {
margin-left: 58.33333%;
}
.col-lg-offset-8 {
margin-left: 66.66667%;
}
.col-lg-offset-9 {
margin-left: 75%;
}
.col-lg-offset-10 {
margin-left: 83.33333%;
}
.col-lg-offset-11 {
margin-left: 91.66667%;
}
.col-lg-offset-12 {
margin-left: 100%;
}
} table {
background-color: transparent;
}
caption {
padding-top: 8px;
padding-bottom: 8px;
color: #777777;
text-align: left;
}
th {
text-align: left;
}
.table,
table {
width: 100%;
max-width: 100%;
margin-bottom: 22px;
}
.table>thead>tr>th,
table>thead>tr>th,
.table>thead>tr>td,
table>thead>tr>td,
.table>tbody>tr>th,
table>tbody>tr>th,
.table>tbody>tr>td,
table>tbody>tr>td,
.table>tfoot>tr>th,
table>tfoot>tr>th,
.table>tfoot>tr>td,
table>tfoot>tr>td {
padding: 8px;
line-height: 1.5;
vertical-align: top;
border-top: 1px solid #eee;
}
.table>thead>tr>th,
table>thead>tr>th {
vertical-align: bottom;
border-bottom: 2px solid #eee;
}
.table>caption+thead>tr:first-child>th,
table>caption+thead>tr:first-child>th,
.table>caption+thead>tr:first-child>td,
table>caption+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
table>colgroup+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
table>colgroup+thead>tr:first-child>td,
.table>thead:first-child>tr:first-child>th,
table>thead:first-child>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
table>thead:first-child>tr:first-child>td {
border-top: 0;
}
.table>tbody+tbody,
table>tbody+tbody {
border-top: 2px solid #eee;
}
.table .table,
table .table,
.table table,
table table {
background-color: #fff;
}
.table-condensed>thead>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tbody>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>tfoot>tr>td {
padding: 5px;
}
.table-bordered,
table {
border: 1px solid #eee;
}
.table-bordered>thead>tr>th,
table>thead>tr>th,
.table-bordered>thead>tr>td,
table>thead>tr>td,
.table-bordered>tbody>tr>th,
table>tbody>tr>th,
.table-bordered>tbody>tr>td,
table>tbody>tr>td,
.table-bordered>tfoot>tr>th,
table>tfoot>tr>th,
.table-bordered>tfoot>tr>td,
table>tfoot>tr>td {
border: 1px solid #eee;
}
.table-bordered>thead>tr>th,
table>thead>tr>th,
.table-bordered>thead>tr>td,
table>thead>tr>td {
border-bottom-width: 2px;
}
.table-striped>tbody>tr:nth-of-type(odd) {
background-color: #f9f9f9;
}
.table-hover>tbody>tr:hover {
background-color: #f5f5f5;
}
table col[class*="col-"] {
position: static;
float: none;
display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
position: static;
float: none;
display: table-cell;
}
.table>thead>tr>td.active,
table>thead>tr>td.active,
.table>thead>tr>th.active,
table>thead>tr>th.active,
.table>thead>tr.active>td,
table>thead>tr.active>td,
.table>thead>tr.active>th,
table>thead>tr.active>th,
.table>tbody>tr>td.active,
table>tbody>tr>td.active,
.table>tbody>tr>th.active,
table>tbody>tr>th.active,
.table>tbody>tr.active>td,
table>tbody>tr.active>td,
.table>tbody>tr.active>th,
table>tbody>tr.active>th,
.table>tfoot>tr>td.active,
table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
table>tfoot>tr>th.active,
.table>tfoot>tr.active>td,
table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
table>tfoot>tr.active>th {
background-color: #f5f5f5;
}
.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover,
.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr.active:hover>th {
background-color: #e8e8e8;
}
.table>thead>tr>td.success,
table>thead>tr>td.success,
.table>thead>tr>th.success,
table>thead>tr>th.success,
.table>thead>tr.success>td,
table>thead>tr.success>td,
.table>thead>tr.success>th,
table>thead>tr.success>th,
.table>tbody>tr>td.success,
table>tbody>tr>td.success,
.table>tbody>tr>th.success,
table>tbody>tr>th.success,
.table>tbody>tr.success>td,
table>tbody>tr.success>td,
.table>tbody>tr.success>th,
table>tbody>tr.success>th,
.table>tfoot>tr>td.success,
table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
table>tfoot>tr>th.success,
.table>tfoot>tr.success>td,
table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
table>tfoot>tr.success>th {
background-color: #dff0d8;
}
.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover,
.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr.success:hover>th {
background-color: #d0e9c6;
}
.table>thead>tr>td.info,
table>thead>tr>td.info,
.table>thead>tr>th.info,
table>thead>tr>th.info,
.table>thead>tr.info>td,
table>thead>tr.info>td,
.table>thead>tr.info>th,
table>thead>tr.info>th,
.table>tbody>tr>td.info,
table>tbody>tr>td.info,
.table>tbody>tr>th.info,
table>tbody>tr>th.info,
.table>tbody>tr.info>td,
table>tbody>tr.info>td,
.table>tbody>tr.info>th,
table>tbody>tr.info>th,
.table>tfoot>tr>td.info,
table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
table>tfoot>tr>th.info,
.table>tfoot>tr.info>td,
table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
table>tfoot>tr.info>th {
background-color: #d9edf7;
}
.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover,
.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr.info:hover>th {
background-color: #c4e3f3;
}
.table>thead>tr>td.warning,
table>thead>tr>td.warning,
.table>thead>tr>th.warning,
table>thead>tr>th.warning,
.table>thead>tr.warning>td,
table>thead>tr.warning>td,
.table>thead>tr.warning>th,
table>thead>tr.warning>th,
.table>tbody>tr>td.warning,
table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
table>tbody>tr>th.warning,
.table>tbody>tr.warning>td,
table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
table>tbody>tr.warning>th,
.table>tfoot>tr>td.warning,
table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
table>tfoot>tr>th.warning,
.table>tfoot>tr.warning>td,
table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
table>tfoot>tr.warning>th {
background-color: #fcf8e3;
}
.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover,
.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr.warning:hover>th {
background-color: #faf2cc;
}
.table>thead>tr>td.danger,
table>thead>tr>td.danger,
.table>thead>tr>th.danger,
table>thead>tr>th.danger,
.table>thead>tr.danger>td,
table>thead>tr.danger>td,
.table>thead>tr.danger>th,
table>thead>tr.danger>th,
.table>tbody>tr>td.danger,
table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
table>tbody>tr>th.danger,
.table>tbody>tr.danger>td,
table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
table>tbody>tr.danger>th,
.table>tfoot>tr>td.danger,
table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
table>tfoot>tr>th.danger,
.table>tfoot>tr.danger>td,
table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
table>tfoot>tr.danger>th {
background-color: #f2dede;
}
.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover,
.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr.danger:hover>th {
background-color: #ebcccc;
}
.table-responsive {
overflow-x: auto;
min-height: 0.01%;
}
@media screen and (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 16.5px;
overflow-y: hidden;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #eee;
}
.table-responsive>.table,
.table-responsive>table {
margin-bottom: 0;
}
.table-responsive>.table>thead>tr>th,
.table-responsive>table>thead>tr>th,
.table-responsive>.table>thead>tr>td,
.table-responsive>table>thead>tr>td,
.table-responsive>.table>tbody>tr>th,
.table-responsive>table>tbody>tr>th,
.table-responsive>.table>tbody>tr>td,
.table-responsive>table>tbody>tr>td,
.table-responsive>.table>tfoot>tr>th,
.table-responsive>table>tfoot>tr>th,
.table-responsive>.table>tfoot>tr>td,
.table-responsive>table>tfoot>tr>td {
white-space: nowrap;
}
.table-responsive>.table-bordered,
.table-responsive>table {
border: 0;
}
.table-responsive>.table-bordered>thead>tr>th:first-child,
.table-responsive>table>thead>tr>th:first-child,
.table-responsive>.table-bordered>thead>tr>td:first-child,
.table-responsive>table>thead>tr>td:first-child,
.table-responsive>.table-bordered>tbody>tr>th:first-child,
.table-responsive>table>tbody>tr>th:first-child,
.table-responsive>.table-bordered>tbody>tr>td:first-child,
.table-responsive>table>tbody>tr>td:first-child,
.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.table-responsive>table>tfoot>tr>th:first-child,
.table-responsive>.table-bordered>tfoot>tr>td:first-child,
.table-responsive>table>tfoot>tr>td:first-child {
border-left: 0;
}
.table-responsive>.table-bordered>thead>tr>th:last-child,
.table-responsive>table>thead>tr>th:last-child,
.table-responsive>.table-bordered>thead>tr>td:last-child,
.table-responsive>table>thead>tr>td:last-child,
.table-responsive>.table-bordered>tbody>tr>th:last-child,
.table-responsive>table>tbody>tr>th:last-child,
.table-responsive>.table-bordered>tbody>tr>td:last-child,
.table-responsive>table>tbody>tr>td:last-child,
.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.table-responsive>table>tfoot>tr>th:last-child,
.table-responsive>.table-bordered>tfoot>tr>td:last-child,
.table-responsive>table>tfoot>tr>td:last-child {
border-right: 0;
}
.table-responsive>.table-bordered>tbody>tr:last-child>th,
.table-responsive>table>tbody>tr:last-child>th,
.table-responsive>.table-bordered>tbody>tr:last-child>td,
.table-responsive>table>tbody>tr:last-child>td,
.table-responsive>.table-bordered>tfoot>tr:last-child>th,
.table-responsive>table>tfoot>tr:last-child>th,
.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.table-responsive>table>tfoot>tr:last-child>td {
border-bottom: 0;
}
} fieldset {
padding: 0;
margin: 0;
border: 0;
min-width: 0;
}
legend {
display: block;
width: 100%;
padding: 0;
margin-bottom: 22px;
font-size: 22.5px;
line-height: inherit;
color: #333333;
border: 0;
border-bottom: 1px solid #e5e5e5;
}
label {
display: inline-block;
margin-bottom: 5px;
font-weight: 400;
}
input[type="file"] {
display: block;
}
input[type="range"] {
display: block;
width: 100%;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: thin dotted;
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
output {
display: block;
padding-top: 7px;
font-size: 15px;
line-height: 1.5;
color: #555555;
}
select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
display: block;
width: 100%;
height: 40px;
padding: 6px 15px;
font-size: 15px;
line-height: 1.5;
color: #555555;
background-color: #fff;
background-image: none;
border: 2px solid #e1e1e1;
border-radius: 0;
transition: border-color ease-in-out 0.15s;
}
select:hover,
textarea:hover,
input[type="text"]:hover,
input[type="password"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="date"]:hover,
input[type="month"]:hover,
input[type="time"]:hover,
input[type="week"]:hover,
input[type="number"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="color"]:hover {
border-color: #d9d9d9;
}
select:focus,
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
outline: 0;
border-color: #9ac100;
}
.amy-dark-bg select,
.amy-dark-bg textarea,
.amy-dark-bg input[type="text"],
.amy-dark-bg input[type="password"],
.amy-dark-bg input[type="datetime"],
.amy-dark-bg input[type="datetime-local"],
.amy-dark-bg input[type="date"],
.amy-dark-bg input[type="month"],
.amy-dark-bg input[type="time"],
.amy-dark-bg input[type="week"],
.amy-dark-bg input[type="number"],
.amy-dark-bg input[type="email"],
.amy-dark-bg input[type="url"],
.amy-dark-bg input[type="search"],
.amy-dark-bg input[type="tel"],
.amy-dark-bg input[type="color"] {
background: transparent;
color: #fff;
border-color: #f2f2f2;
}
.amy-dark-bg select::-moz-placeholder,
.amy-dark-bg textarea::-moz-placeholder,
.amy-dark-bg input[type="text"]::-moz-placeholder,
.amy-dark-bg input[type="password"]::-moz-placeholder,
.amy-dark-bg input[type="datetime"]::-moz-placeholder,
.amy-dark-bg input[type="datetime-local"]::-moz-placeholder,
.amy-dark-bg input[type="date"]::-moz-placeholder,
.amy-dark-bg input[type="month"]::-moz-placeholder,
.amy-dark-bg input[type="time"]::-moz-placeholder,
.amy-dark-bg input[type="week"]::-moz-placeholder,
.amy-dark-bg input[type="number"]::-moz-placeholder,
.amy-dark-bg input[type="email"]::-moz-placeholder,
.amy-dark-bg input[type="url"]::-moz-placeholder,
.amy-dark-bg input[type="search"]::-moz-placeholder,
.amy-dark-bg input[type="tel"]::-moz-placeholder,
.amy-dark-bg input[type="color"]::-moz-placeholder {
color: #f2f2f2;
opacity: 1;
}
.amy-dark-bg select:-ms-input-placeholder,
.amy-dark-bg textarea:-ms-input-placeholder,
.amy-dark-bg input[type="text"]:-ms-input-placeholder,
.amy-dark-bg input[type="password"]:-ms-input-placeholder,
.amy-dark-bg input[type="datetime"]:-ms-input-placeholder,
.amy-dark-bg input[type="datetime-local"]:-ms-input-placeholder,
.amy-dark-bg input[type="date"]:-ms-input-placeholder,
.amy-dark-bg input[type="month"]:-ms-input-placeholder,
.amy-dark-bg input[type="time"]:-ms-input-placeholder,
.amy-dark-bg input[type="week"]:-ms-input-placeholder,
.amy-dark-bg input[type="number"]:-ms-input-placeholder,
.amy-dark-bg input[type="email"]:-ms-input-placeholder,
.amy-dark-bg input[type="url"]:-ms-input-placeholder,
.amy-dark-bg input[type="search"]:-ms-input-placeholder,
.amy-dark-bg input[type="tel"]:-ms-input-placeholder,
.amy-dark-bg input[type="color"]:-ms-input-placeholder {
color: #f2f2f2;
}
.amy-dark-bg select::-webkit-input-placeholder,
.amy-dark-bg textarea::-webkit-input-placeholder,
.amy-dark-bg input[type="text"]::-webkit-input-placeholder,
.amy-dark-bg input[type="password"]::-webkit-input-placeholder,
.amy-dark-bg input[type="datetime"]::-webkit-input-placeholder,
.amy-dark-bg input[type="datetime-local"]::-webkit-input-placeholder,
.amy-dark-bg input[type="date"]::-webkit-input-placeholder,
.amy-dark-bg input[type="month"]::-webkit-input-placeholder,
.amy-dark-bg input[type="time"]::-webkit-input-placeholder,
.amy-dark-bg input[type="week"]::-webkit-input-placeholder,
.amy-dark-bg input[type="number"]::-webkit-input-placeholder,
.amy-dark-bg input[type="email"]::-webkit-input-placeholder,
.amy-dark-bg input[type="url"]::-webkit-input-placeholder,
.amy-dark-bg input[type="search"]::-webkit-input-placeholder,
.amy-dark-bg input[type="tel"]::-webkit-input-placeholder,
.amy-dark-bg input[type="color"]::-webkit-input-placeholder {
color: #f2f2f2;
}
.amy-dark-bg select:focus,
.amy-dark-bg textarea:focus,
.amy-dark-bg input[type="text"]:focus,
.amy-dark-bg input[type="password"]:focus,
.amy-dark-bg input[type="datetime"]:focus,
.amy-dark-bg input[type="datetime-local"]:focus,
.amy-dark-bg input[type="date"]:focus,
.amy-dark-bg input[type="month"]:focus,
.amy-dark-bg input[type="time"]:focus,
.amy-dark-bg input[type="week"]:focus,
.amy-dark-bg input[type="number"]:focus,
.amy-dark-bg input[type="email"]:focus,
.amy-dark-bg input[type="url"]:focus,
.amy-dark-bg input[type="search"]:focus,
.amy-dark-bg input[type="tel"]:focus,
.amy-dark-bg input[type="color"]:focus {
border-color: #fff;
}
.amy-dark-bg option {
color: #666;
}
textarea {
height: auto;
}
input[type="search"] {
-webkit-appearance: none;
box-sizing: border-box;
}
input[type="date"] {
line-height: 40px;
}
.input-rounded {
border-radius: 20px;
}
.required {
color: #d9534f;
}
.fancybox-skin {
padding: 0 !important;
border-radius: 0 !important;
background: #fff !important;
}
.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-contents {
padding: 5px 25px 25px 25px;
}
.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li {
width: 50%;
text-align: center;
background: #eee;
margin-bottom: 10px;
padding: 1px 0;
}
.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li a {
margin-right: 0;
border-right: none;
padding: 15px !important;
}
.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li.active {
border-top: none;
margin-top: 0;
background: #fff;
}
.fancybox-skin #amy-user-popup .amy-user-tab .amy-tab-nav ul li.active a {
color: #9ac100;
}
.amy-page-user .input[type="password"],
.amy-page-user .input[type="text"] {
border-radius: 0 !important;
}
.amy-page-user .amy-user-tab {
max-width: 100%;
}
.amy-page-user .amy-user-tab .amy-tab-contents {
padding: 20px 0;
text-align: left;
}
.amy-page-user .amy-user-tab .amy-tab-contents #user_login,
.amy-page-user .amy-user-tab .amy-tab-contents #user_email {
border-radius: 0 !important;
}
.amy-page-user .amy-user-tab .amy-tab-nav ul {
border-top: none;
text-align: center;
}
.amy-page-user .amy-user-tab .amy-tab-nav ul li {
text-align: center;
background: #fff;
margin-bottom: 0px;
padding: 1px 10px;
display: inline-block;
float: none;
position: relative;
}
.amy-page-user .amy-user-tab .amy-tab-nav ul li:first-child:after {
background: #eee none repeat scroll 0 0;
content: "";
display: block;
height: 15px;
position: absolute;
right: -4px;
top: 14px;
width: 2px;
}
.amy-page-user .amy-user-tab .amy-tab-nav ul li a {
margin-right: 0;
border-right: none;
padding: 10px 20px !important;
}
.amy-page-user .amy-user-tab .amy-tab-nav ul li.active {
border-top: none;
margin-top: 0;
background: #fff;
}
.amy-page-user .amy-user-tab .amy-tab-nav ul li.active a {
color: #9ac100;
}
.amyui-fancy-select {
position: relative;
}
.amyui-fancy-select .fs-disabled {
opacity: .5;
}
.amyui-fancy-select select:focus+.fs-trigger {
border-color: #9ac100;
}
.amyui-fancy-select .fs-trigger {
cursor: pointer;
display: block;
width: 100%;
height: 40px;
padding: 6px 15px;
padding-right: 30px;
font-size: 15px;
line-height: 1.6;
color: #555555;
background-color: #fff;
background-image: none;
border: 2px solid #e1e1e1;
border-radius: 5px;
transition: border-color ease-in-out 0.15s;
transition: all 0.2s ease-out;
}
.amyui-fancy-select .fs-trigger:hover {
border-color: #d9d9d9;
}
.amyui-fancy-select .fs-trigger:after {
content: "";
display: block;
position: absolute;
width: 0;
height: 0;
border: 5px solid transparent;
border-top-color: #4b5468;
top: 18px;
right: 10px;
}
.amyui-fancy-select .fs-trigger.input-rounded {
border-radius: 20px;
padding-left: 20px;
padding-right: 40px;
}
.amyui-fancy-select .fs-trigger.input-rounded:after {
right: 20px;
}
.amyui-fancy-select .fs-trigger.fs-open {
border-color: #9ac100;
}
.amyui-fancy-select .fs-trigger.fs-open:after {
border-top-color: transparent;
border-bottom-color: #7a8498;
top: 12px;
}
.amyui-fancy-select ul.fs-options {
list-style: none;
margin: 0;
padding: 5px 0;
position: absolute;
top: 40px;
left: 0;
z-index: 50;
overflow: visible;
background: #9ac100;
width: 100%;
min-width: 200px;
border-radius: 4px;
visibility: hidden;
opacity: 0;
transition: opacity 0.3s ease-out, visibility 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.amyui-fancy-select ul.fs-options:after {
bottom: 100%;
right: 20px;
border: solid transparent;
content: "";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: transparent;
border-bottom-color: #9ac100;
border-width: 6px;
margin-left: -6px;
}
.amyui-fancy-select ul.fs-options.fs-open {
visibility: visible;
top: 50px;
opacity: 1;
}
.amyui-fancy-select ul.fs-options.fs-overflowing {
top: auto;
bottom: 40px;
}
.amyui-fancy-select ul.fs-options.fs-overflowing:after {
top: 100%;
border-bottom-color: transparent;
border-top-color: #9ac100;
}
.amyui-fancy-select ul.fs-options.fs-overflowing.fs-open {
top: auto;
bottom: 50px;
}
.amyui-fancy-select ul.fs-options li {
padding: 8px 12px;
margin: 0;
color: #fff;
cursor: pointer;
white-space: nowrap;
transition: all 0.2s ease-out;
}
.amyui-fancy-select ul.fs-options li.fs-selected {
background: #718e00;
}
.amyui-fancy-select ul.fs-options li.fs-hover {
background: #86a800;
}
.amyui-fancy-select ul.fs-options li.fs-optgroup {
cursor: default;
padding: 10px 0 0 0;
}
.amyui-fancy-select ul.fs-options li.fs-optgroup span {
padding-left: 10px;
display: block;
font-style: italic;
opacity: 0.8;
}
.amyui-fancy-select ul.fs-optgroup {
list-style: none;
padding: 5px 0 0 0;
}
.amyui-fancy-select ul.fs-optgroup li {
padding-left: 30px;
}
.amyui-number-input {
display: inline-block;
position: relative;
vertical-align: middle;
}
.amyui-number-input input {
padding-left: 36px;
padding-right: 36px;
width: auto;
-moz-appearance: textfield;
}
.amyui-number-input input::-webkit-outer-spin-button,
.amyui-number-input input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.amyui-number-input span {
position: absolute;
width: 36px;
height: 16px;
line-height: 16px;
z-index: 1;
top: 12px;
color: #e1e1e1;
cursor: pointer;
text-align: center;
vertical-align: middle;
display: inline-block;
}
.amyui-number-input span:hover {
color: #9ac100;
}
.amyui-number-input span.ni-up {
right: 2px;
border-left: 1px solid #e1e1e1;
}
.amyui-number-input span.ni-up:before {
content: "+";
}
.amyui-number-input span.ni-down {
left: 2px;
border-right: 1px solid #e1e1e1;
}
.amyui-number-input span.ni-down:before {
content: "-";
} input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.button,
.widget_tag_cloud .tagcloud a {
color: #9ac100;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
text-transform: uppercase;
background: transparent;
display: inline-block;
line-height: 1;
border: 2px solid #e1e1e1;
padding: 10px 40px;
margin-bottom: 5px;
border-radius: 25px;
vertical-align: bottom;
transition: all 0.2s ease-in-out;
}
input[type="button"]:focus,
input[type="button"]:hover,
input[type="button"]:active,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="reset"]:active,
button:focus,
button:hover,
button:active,
.button:focus,
.widget_tag_cloud .tagcloud a:focus,
.button:hover,
.widget_tag_cloud .tagcloud a:hover,
.button:active,
.widget_tag_cloud .tagcloud a:active {
outline: none;
text-decoration: none;
color: #9ac100;
border-color: #c8c8c8;
}
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
button:active,
.button:active,
.widget_tag_cloud .tagcloud a:active {
position: relative;
top: 2px;
}
input[type="button"].disabled,
input[type="button"][disabled],
input[type="submit"].disabled,
input[type="submit"][disabled],
input[type="reset"].disabled,
input[type="reset"][disabled],
button.disabled,
button[disabled],
.button.disabled,
.widget_tag_cloud .tagcloud a.disabled,
.button[disabled],
.widget_tag_cloud .tagcloud a[disabled] {
cursor: not-allowed;
opacity: 0.5;
}
input[type="button"].disabled:focus,
input[type="button"].disabled:hover,
input[type="button"].disabled:active,
input[type="button"][disabled]:focus,
input[type="button"][disabled]:hover,
input[type="button"][disabled]:active,
input[type="submit"].disabled:focus,
input[type="submit"].disabled:hover,
input[type="submit"].disabled:active,
input[type="submit"][disabled]:focus,
input[type="submit"][disabled]:hover,
input[type="submit"][disabled]:active,
input[type="reset"].disabled:focus,
input[type="reset"].disabled:hover,
input[type="reset"].disabled:active,
input[type="reset"][disabled]:focus,
input[type="reset"][disabled]:hover,
input[type="reset"][disabled]:active,
button.disabled:focus,
button.disabled:hover,
button.disabled:active,
button[disabled]:focus,
button[disabled]:hover,
button[disabled]:active,
.button.disabled:focus,
.widget_tag_cloud .tagcloud a.disabled:focus,
.button.disabled:hover,
.widget_tag_cloud .tagcloud a.disabled:hover,
.button.disabled:active,
.widget_tag_cloud .tagcloud a.disabled:active,
.button[disabled]:focus,
.widget_tag_cloud .tagcloud a[disabled]:focus,
.button[disabled]:hover,
.widget_tag_cloud .tagcloud a[disabled]:hover,
.button[disabled]:active,
.widget_tag_cloud .tagcloud a[disabled]:active {
background-color: inherit;
color: inherit;
}
input[type="button"] i.fa,
input[type="submit"] i.fa,
input[type="reset"] i.fa,
button i.fa,
.button i.fa,
.widget_tag_cloud .tagcloud a i.fa {
margin-right: 5px;
}
.button-primary,
input[type='submit'],
.submit {
color: #fff;
background: #9ac100;
border-color: #9ac100;
}
.button-primary:focus,
input[type='submit']:focus,
.submit:focus,
.button-primary:hover,
input[type='submit']:hover,
.submit:hover,
.button-primary:active,
input[type='submit']:active,
.submit:active {
color: #fff;
background: #aedb00;
border-color: #aedb00;
}
.button-primary.disabled:focus,
input.disabled[type='submit']:focus,
.disabled.submit:focus,
.button-primary.disabled:hover,
input.disabled[type='submit']:hover,
.disabled.submit:hover,
.button-primary.disabled:active,
input.disabled[type='submit']:active,
.disabled.submit:active,
.button-primary[disabled]:focus,
input[disabled][type='submit']:focus,
[disabled].submit:focus,
.button-primary[disabled]:hover,
input[disabled][type='submit']:hover,
[disabled].submit:hover,
.button-primary[disabled]:active,
input[disabled][type='submit']:active,
[disabled].submit:active {
color: #fff;
background: #9ac100;
border-color: #9ac100;
}
.button-success {
color: #fff;
background: #5cb85c;
border-color: #5cb85c;
}
.button-success:focus,
.button-success:hover,
.button-success:active {
color: #fff;
background: #6ec06e;
border-color: #6ec06e;
}
.button-success.disabled:focus,
.button-success.disabled:hover,
.button-success.disabled:active,
.button-success[disabled]:focus,
.button-success[disabled]:hover,
.button-success[disabled]:active {
color: #fff;
background: #5cb85c;
border-color: #5cb85c;
}
.button-info {
color: #fff;
background: #1ba39c;
border-color: #1ba39c;
}
.button-info:focus,
.button-info:hover,
.button-info:active {
color: #fff;
background: #1fb9b1;
border-color: #1fb9b1;
}
.button-info.disabled:focus,
.button-info.disabled:hover,
.button-info.disabled:active,
.button-info[disabled]:focus,
.button-info[disabled]:hover,
.button-info[disabled]:active {
color: #fff;
background: #1ba39c;
border-color: #1ba39c;
}
.button-warning {
color: #fff;
background: #f0ad4e;
border-color: #f0ad4e;
}
.button-warning:focus,
.button-warning:hover,
.button-warning:active {
color: #fff;
background: #f2b866;
border-color: #f2b866;
}
.button-warning.disabled:focus,
.button-warning.disabled:hover,
.button-warning.disabled:active,
.button-warning[disabled]:focus,
.button-warning[disabled]:hover,
.button-warning[disabled]:active {
color: #fff;
background: #f0ad4e;
border-color: #f0ad4e;
}
.button-danger {
color: #fff;
background: #d9534f;
border-color: #d9534f;
}
.button-danger:focus,
.button-danger:hover,
.button-danger:active {
color: #fff;
background: #de6764;
border-color: #de6764;
}
.button-danger.disabled:focus,
.button-danger.disabled:hover,
.button-danger.disabled:active,
.button-danger[disabled]:focus,
.button-danger[disabled]:hover,
.button-danger[disabled]:active {
color: #fff;
background: #d9534f;
border-color: #d9534f;
}
.button-inverse {
color: #fff;
background: #222;
border-color: #222;
}
.button-inverse:focus,
.button-inverse:hover,
.button-inverse:active {
color: #fff;
background: #2f2f2f;
border-color: #2f2f2f;
}
.button-inverse.disabled:focus,
.button-inverse.disabled:hover,
.button-inverse.disabled:active,
.button-inverse[disabled]:focus,
.button-inverse[disabled]:hover,
.button-inverse[disabled]:active {
color: #fff;
background: #222;
border-color: #222;
}
.button-block {
display: block;
width: 100%;
margin-left: 0;
margin-right: 0;
} .clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.pull-right {
float: right !important;
}
.pull-left {
float: left !important;
}
.hide {
display: none !important;
}
.show {
display: block !important;
}
.invisible {
visibility: hidden;
}
.text-hide {
font: 0/0 a;
color: transparent;
text-shadow: none;
background-color: transparent;
border: 0;
}
.hidden {
display: none !important;
}
.affix {
position: fixed;
}
@-ms-viewport {
width: device-width;
}
.visible-xs {
display: none !important;
}
.visible-sm {
display: none !important;
}
.visible-md {
display: none !important;
}
.visible-lg {
display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
display: none !important;
}
@media (max-width: 767px) {
.visible-xs {
display: block !important;
}
table.visible-xs {
display: table !important;
}
tr.visible-xs {
display: table-row !important;
}
th.visible-xs,
td.visible-xs {
display: table-cell !important;
}
}
@media (max-width: 767px) {
.visible-xs-block {
display: block !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline {
display: inline !important;
}
}
@media (max-width: 767px) {
.visible-xs-inline-block {
display: inline-block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm {
display: block !important;
}
table.visible-sm {
display: table !important;
}
tr.visible-sm {
display: table-row !important;
}
th.visible-sm,
td.visible-sm {
display: table-cell !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-block {
display: block !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline {
display: inline !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.visible-sm-inline-block {
display: inline-block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md {
display: block !important;
}
table.visible-md {
display: table !important;
}
tr.visible-md {
display: table-row !important;
}
th.visible-md,
td.visible-md {
display: table-cell !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-block {
display: block !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline {
display: inline !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.visible-md-inline-block {
display: inline-block !important;
}
}
@media (min-width: 1200px) {
.visible-lg {
display: block !important;
}
table.visible-lg {
display: table !important;
}
tr.visible-lg {
display: table-row !important;
}
th.visible-lg,
td.visible-lg {
display: table-cell !important;
}
}
@media (min-width: 1200px) {
.visible-lg-block {
display: block !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline {
display: inline !important;
}
}
@media (min-width: 1200px) {
.visible-lg-inline-block {
display: inline-block !important;
}
}
@media (max-width: 767px) {
.hidden-xs {
display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px) {
.hidden-sm {
display: none !important;
}
}
@media (min-width: 992px) and (max-width: 1199px) {
.hidden-md {
display: none !important;
}
}
@media (min-width: 1200px) {
.hidden-lg {
display: none !important;
}
}
.visible-print {
display: none !important;
}
@media print {
.visible-print {
display: block !important;
}
table.visible-print {
display: table !important;
}
tr.visible-print {
display: table-row !important;
}
th.visible-print,
td.visible-print {
display: table-cell !important;
}
}
.visible-print-block {
display: none !important;
}
@media print {
.visible-print-block {
display: block !important;
}
}
.visible-print-inline {
display: none !important;
}
@media print {
.visible-print-inline {
display: inline !important;
}
}
.visible-print-inline-block {
display: none !important;
}
@media print {
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.hidden-print {
display: none !important;
}
}
.hidden-xs-up {
display: none !important;
}
@media (max-width: 543px) {
.hidden-xs-down {
display: none !important;
}
}
@media (min-width: 544px) {
.hidden-sm-up {
display: none !important;
}
}
@media (max-width: 767px) {
.hidden-sm-down {
display: none !important;
}
}
@media (min-width: 768px) {
.hidden-md-up {
display: none !important;
}
}
@media (max-width: 991px) {
.hidden-md-down {
display: none !important;
}
}
@media (min-width: 992px) {
.hidden-lg-up {
display: none !important;
}
}
@media (max-width: 1199px) {
.hidden-lg-down {
display: none !important;
}
}
@media (min-width: 1200px) {
.hidden-xl-up {
display: none !important;
}
}
.hidden-xl-down {
display: none !important;
}
.visible-print-block {
display: none !important;
}
@media print {
.visible-print-block {
display: block !important;
}
}
.visible-print-inline {
display: none !important;
}
@media print {
.visible-print-inline {
display: inline !important;
}
}
.visible-print-inline-block {
display: none !important;
}
@media print {
.visible-print-inline-block {
display: inline-block !important;
}
}
@media print {
.hidden-print {
display: none !important;
}
}
.screen-reader-text {
display: none;
}
.clear:before,
.clear:after {
content: " ";
display: table;
}
.clear:after {
clear: both;
}
.center-block {
display: block;
margin-left: auto;
margin-right: auto;
}
.alignleft {
float: left;
}
.alignright {
float: right;
}
.aligncenter {
display: block;
margin-left: auto;
margin-right: auto;
}
figure.wp-caption.alignleft,
img.alignleft {
margin: 7px 24px 7px 0;
}
figure.wp-caption.alignright,
img.alignright {
margin: 7px 0 7px 24px;
}
.wp-caption.alignright {
margin: 7px 0 7px 14px;
}
img.aligncenter,
.wp-caption.aligncenter {
margin-top: 7px;
margin-bottom: 7px;
}
.wp-caption {
max-width: 100%;
margin-bottom: 24px;
}
.wp-caption img[class*="wp-image-"] {
display: block;
margin: 0;
}
.wp-caption.alignright img[class*="wp-image-"],
.wp-caption.alignright .wp-caption-text {
padding-left: 10px;
padding-right: 0;
}
.wp-caption-text {
font-size: 13px;
font-style: italic;
margin: 9px 0;
color: #999;
}
.wp-caption .wp-caption-text {
padding-right: 10px;
}
@media (max-width: 640px) {
.amy-main-content .amy-section[class*="vc_custom"] {
padding-top: 40px !important;
padding-bottom: 40px !important;
}
}
.amy-section .custom.tparrows {
width: 54px;
height: 54px;
background: transparent;
border-radius: 50%;
border: 2px solid #fff;
}
.amy-section .custom.tparrows:hover {
background: #fff;
color: #fff;
}
.amy-section .custom.tparrows:hover:before {
color: #9ac100;
}
.amy-section .custom.tparrows:before {
line-height: 51px;
font-weight: bold;
}
.amy-inner {
float: left;
position: relative;
width: 100%;
}
.no-padding {
padding-top: 0;
padding-bottom: 0;
}
.xs-padding {
padding-top: 10px;
padding-bottom: 10px;
}
.sm-padding {
padding-top: 20px;
padding-bottom: 20px;
}
.md-padding {
padding-top: 40px;
padding-bottom: 40px;
}
.lg-padding {
padding-top: 80px;
padding-bottom: 80px;
}
.xl-padding {
padding-top: 160px;
padding-bottom: 160px;
}
.no-margin {
margin-top: 0;
margin-bottom: 0;
}
.xs-margin {
margin-top: 10px;
margin-bottom: 10px;
}
.sm-margin {
margin-top: 20px;
margin-bottom: 20px;
}
.md-margin {
margin-top: 40px;
margin-bottom: 40px;
}
.lg-margin {
margin-top: 80px;
margin-bottom: 80px;
}
.xl-margin {
margin-top: 160px;
margin-bottom: 160px;
}
.amy-section-curved {
position: relative;
}
.amy-section-curved:after {
position: absolute;
left: 0;
right: 0;
bottom: 0;
background: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/curved-bg.png) no-repeat bottom center;
content: "";
height: 30px;
}
.amy-social-icons a {
font-size: 13px;
display: inline-block;
color: #d5d5d5;
border: 1px solid #d5d5d5;
border-radius: 50%;
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
vertical-align: middle;
}
.amy-social-icons a:hover {
color: #fff;
background: #9ac100;
border-color: #fff;
}
.amy-list,
.widget_categories ul,
.widget_product_categories ul,
.widget_archive ul,
.widget_pages ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_recent_entries,
.amy-list ul,
.widget_categories ul ul,
.widget_product_categories ul ul,
.widget_archive ul ul,
.widget_pages ul ul,
.widget_meta ul ul,
.widget_nav_menu ul ul,
.widget_recent_entries ul,
.amy-list-with-icon,
.amy-list-with-icon ul,
.amy-list-with-image,
.amy-list-with-image ul {
list-style: none;
padding: 0;
}
.amy-list li,
.widget_categories ul li,
.widget_product_categories ul li,
.widget_archive ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_nav_menu ul li,
.widget_recent_entries li,
.amy-list-with-icon li,
.amy-list-with-image li {
padding-left: 15px;
margin-bottom: 10px;
}
.amy-list li:before,
.widget_categories ul li:before,
.widget_product_categories ul li:before,
.widget_archive ul li:before,
.widget_pages ul li:before,
.widget_meta ul li:before,
.widget_nav_menu ul li:before,
.widget_recent_entries li:before,
.amy-list-with-icon li:before,
.amy-list-with-image li:before {
position: absolute;
left: 0;
content: '•';
color: #fda901;
}
.amy-list li:hover:before,
.widget_categories ul li:hover:before,
.widget_product_categories ul li:hover:before,
.widget_archive ul li:hover:before,
.widget_pages ul li:hover:before,
.widget_meta ul li:hover:before,
.widget_nav_menu ul li:hover:before,
.widget_recent_entries li:hover:before,
.amy-list-with-icon li:hover:before,
.amy-list-with-image li:hover:before {
color: #9ac100;
}
ol.amy-list,
ol.widget_recent_entries {
counter-reset: li;
}
ol.amy-list li,
ol.widget_recent_entries li {
padding-left: 25px;
}
ol.amy-list li:before,
ol.widget_recent_entries li:before {
content: counter(li, decimal-leading-zero);
counter-increment: li;
}
.amy-list-with-icon li:before,
.amy-list-with-image li:before {
content: "";
}
.amy-list-with-icon li {
padding-left: 20px;
}
.amy-list-with-icon li a {
margin-left: 10px;
}
.amy-list-with-icon li i.fa {
color: #fda901;
position: absolute;
left: 0;
font-size: 14px;
line-height: 1.5;
}
.amy-list-with-image li {
position: relative;
min-height: 30px;
padding-left: 50px;
margin-bottom: 10px;
}
.amy-list-with-image li a {
display: block;
}
.amy-list-with-image li a img {
position: absolute;
left: 0;
top: 0;
max-height: 100%;
max-width: 30px;
}
@keyframes amyFadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
@keyframes amyFadeOut {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.amy-fade-in {
animation: amyFadeIn ease-in 0.3s;
}
.amy-fade-out {
opacity: 0;
animation: amyFadeOut ease-out 0.5s;
}
.text-left {
text-align: left !important;
}
@media (max-width: 640px) {
.amy-organic-custom-content .title-first {
font-size: 26px !important;
}
.amy-organic-custom-content .title-last {
font-size: 26px !important;
}
.amy-organic-heading h3 {
font-size: 26px !important;
}
.amy-shortcode-product .amy-shortcode-title {
font-size: 26px !important;
}
.amy-productcountdown .product-item .product-title a {
font-size: 22px !important;
}
.amy-organic-blog.layout3 .entry-title {
font-size: 18px !important;
}
.amy-testimonials.slide {
margin-bottom: 0;
padding-bottom: 0;
}
.aio-icon-component[class*="vc_custom"] {
padding: 0 !important;
margin: auto auto 20px auto !important;
}
.amy-organic-blog .entry-thumb img {
width: 100%;
}
.amy-organic-heading {
margin-bottom: 30px;
}
.amy-section .vc_column-inner[class*="vc_custom"] {
margin-bottom: 20px;
}
}  #amy-top-bar {
font-size: 13px;
line-height: 36px;
color: #b8b8b8;
padding-top: 6px;
position: absolute;
width: 100%;
z-index: 99999;
}
#amy-top-bar .amy-top-bar-left {
float: left;
}
#amy-top-bar .amy-top-bar-right {
float: right;
}
#amy-top-bar .amy-top-bar-float.amy-top-bar-left,
#amy-top-bar .amy-top-bar-float.amy-top-bar-right {
float: none;
position: absolute;
z-index: 2;
}
#amy-top-bar .amy-top-bar-float .amy-top-bar-left {
left: 0;
}
#amy-top-bar .amy-top-bar-float .amy-top-bar-right {
right: 0;
}
#amy-top-bar .amy-top-bar-float .amy-top-bar-right .amy-module-login .box-user a {
border-right: 1px solid #d3d3d3;
}
#amy-top-bar .amy-inner .amy-cart {
float: right;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart {
height: 40px;
margin-top: -4px;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart .cart-count {
top: 4px;
}
#amy-top-bar .amy-inner .amy-cart:hover .amy-organic-cart-content {
display: block;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content {
display: none;
position: absolute;
right: 0;
top: 30px;
width: 310px;
background: #fff;
z-index: 99;
box-shadow: 0 3px 6px #ccc;
}
@media (max-width: 480px) {
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content {
right: -100%;
}
}
@media (max-width: 480px) {
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content {
right: -182%;
}
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .total {
padding: 0 20px;
text-align: center;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .total .amount {
font-size: 18px;
color: #fda901;
font-family: Dosis;
font-weight: bold;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .buttons {
padding: 0 20px;
text-align: center;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .buttons .button,
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .buttons .widget_tag_cloud .tagcloud a,
.widget_tag_cloud .tagcloud #amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .buttons a {
padding: 10px 20px !important;
border-color: #9ac100;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .buttons .button:hover,
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .buttons .widget_tag_cloud .tagcloud a:hover,
.widget_tag_cloud .tagcloud #amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content .buttons a:hover {
background: #9ac100;
color: #fff;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul {
list-style: none;
position: relative;
border-top: 2px solid #9ac100;
padding: 20px;
display: block;
width: 100%;
margin-bottom: 0;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item {
position: relative;
margin-bottom: 20px;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item:last-child {
border-bottom: 1px dotted #9ac100;
margin-bottom: 0;
padding-bottom: 20px;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item:before {
content: " ";
display: table;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item:after {
content: " ";
display: table;
clear: both;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item a.remove {
position: absolute;
right: 0;
top: -3px;
font-size: 20px;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item a.remove:hover {
color: red;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item a:nth-child(2) {
font-family: Dosis;
font-size: 15px;
text-transform: uppercase;
font-weight: 700;
display: block;
margin-bottom: 10px;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item .quantity .amount {
font-size: 17px;
color: #fda901;
font-family: Dosis;
font-weight: bold;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul li.mini_cart_item .attachment-shop_thumbnail {
width: 92px;
height: 100px;
overflow: hidden;
float: left;
margin-right: 15px;
border: 2px solid #e9e9e9;
}
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul:after {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: transparent transparent #9ac100;
border-image: none;
border-style: solid;
border-width: 4px;
content: "";
height: 17px;
margin-left: 0;
opacity: 1;
pointer-events: none;
position: absolute;
right: 4px;
top: -19px;
transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
visibility: visible;
width: 9px;
}
@media (max-width: 480px) {
#amy-top-bar .amy-inner .amy-cart .amy-organic-cart-content ul:after {
content: none;
}
}
.amy-organic-cart {
display: block;
width: 20px;
height: 16px;
background: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/icons/icon-cart.png) no-repeat center;
text-indent: -9999em;
position: relative;
float: right;
margin-top: 10px;
margin-left: 10px;
}
.amy-organic-cart .cart-count {
position: absolute;
display: block;
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
color: #fff;
top: -9px;
right: -15px;
font-size: 11px;
text-indent: 0;
background: #9ac100;
border-radius: 50%;
}
.box-phone {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
color: #999;
}
.box-phone .fa {
width: 30px;
height: 30px;
line-height: 30px;
text-align: center;
background: #9ac100;
color: #fff;
border-radius: 50%;
margin-right: 3px;
}
.amy-module {
float: left;
padding-left: 10px;
padding-right: 10px;
position: relative;
}
.amy-module:first-child {
padding-left: 0;
}
.amy-module:last-child {
padding-right: 0;
}
.amy-module:after {
background: #d3d3d3;
position: absolute;
content: "";
right: 0;
width: 1px;
height: 12px;
top: 12px;
}
.amy-module:last-child:after {
width: 0;
}
.amy-module .amy-top-module-icon {
margin-right: 5px;
}
.amy-module a {
color: #b8b8b8;
}
.amy-module a:hover,
.amy-module a:active,
.amy-module a:focus {
color: #9ac100;
}
.amy-module-login .box-user span {
padding: 0 10px;
}
.amy-module-login .box-user a {
padding: 0 10px;
}
.amy-module-login .box-user a:nth-child(2) {
border-left: 1px solid #d3d3d3;
}
.amy-module-login .box-user a .fa {
margin-right: 3px;
display: none;
}
.amy-top-modal-trigger:after {
content: "";
pointer-events: none;
position: absolute;
left: 50%;
bottom: -10px;
width: 0;
height: 0;
margin-left: -4px;
border: 5px solid #fff;
border-color: #fff #fff transparent transparent;
transform-origin: 0 0;
transform: rotate(-45deg);
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.125);
opacity: 0;
visibility: hidden;
}
.amy-top-modal:hover .amy-top-modal-trigger:not([data-trigger-event=click]):after,
.amy-opened .amy-top-modal-trigger:after {
opacity: 1;
visibility: visible;
}
.amy-top-modal-content {
display: none;
background-color: #fff;
color: #666;
line-height: 1.5;
padding: 15px;
width: 300px;
position: absolute;
left: -30px;
z-index: 10000;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.125);
}
.amy-top-modal-content .search-form {
position: relative;
}
.amy-top-modal-content .search-form input {
padding-left: 15px;
padding-right: 35px;
background: transparent;
border: none;
}
.amy-top-modal-content .search-form button {
font-size: 16px;
color: #e1e1e1;
background: none;
border: none;
padding: 7px;
margin: 0;
position: absolute;
right: 10px;
top: 0;
}
.amy-top-modal-content .search-form button:hover {
color: #9ac100;
} #masthead {
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
}
.amy-left-logo #amy-site-logo {
float: left;
}
.amy-middle-logo #amy-site-logo {
display: inline-block;
}
.amy-center-logo #amy-site-logo {
text-align: center;
}
.amy-left-logo.amy-bottom-menu #amy-site-logo {
text-align: left;
float: none;
}
#amy-site-logo h1 {
margin: 0;
}
#amy-site-logo a {
color: #9ac100;
display: inline-block;
line-height: 100px;
}
#amy-site-logo .amy-logo2x {
display: none;
}
.amy-float-menu #amy-site-nav {
float: right;
margin-top: 0;
}
.amy-middle-logo #amy-site-nav,
.amy-center-menu #amy-site-nav {
text-align: center;
}
.amy-center-menu #amy-site-nav>ul {
display: inline-block;
margin: 0 auto;
vertical-align: top;
}
#amy-site-nav .amy-primary-menu-left,
#amy-site-nav .amy-primary-menu-right {
margin-top: 0;
}
#amy-site-nav .amy-primary-menu-left {
float: left;
}
#amy-site-nav .amy-primary-menu-right {
float: right;
}
.amy-top-bar-right-float #amy-site-nav .main-navigation,
.amy-top-bar-float #amy-site-nav .main-navigation {
margin-top: 36px;
}
#amy-site-nav ul {
margin: 0;
padding: 0;
list-style-type: none;
}
#amy-site-nav ul li {
text-align: left;
position: relative;
margin: 0;
}
#amy-site-nav ul li ul {
display: none;
position: absolute;
z-index: 300;
top: 100%;
width: 250px;
background-color: #fff;
padding: 5px 15px;
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.07);
}
#amy-site-nav ul li ul li .amy-link {
font-size: 14px;
display: block;
position: relative;
padding: 12px;
color: #575757;
border-top: 1px dotted #9ac100;
transition: all 0.3s;
}
#amy-site-nav ul li ul li .amy-link:hover {
color: #9ac100;
text-decoration: none;
}
#amy-site-nav ul li ul li .amy-link>i {
margin-right: 5px;
}
#amy-site-nav ul li ul li:first-child>.amy-link {
border-top: none;
}
#amy-site-nav ul li ul ul {
top: 0;
left: 100%;
}
#amy-site-nav>ul:before,
#amy-site-nav>ul:after {
content: " ";
display: table;
}
#amy-site-nav>ul:after {
clear: both;
}
#amy-site-nav>ul>li {
float: left;
}
#amy-site-nav>ul>li.menu-item-has-children .sub-menu>li.menu-item-has-children>a {
position: relative;
}
#amy-site-nav>ul>li.menu-item-has-children .sub-menu>li.menu-item-has-children>a:after {
content: "\f0da";
display: inline-block;
font: normal normal normal 12px/1 FontAwesome;
position: absolute;
top: 17px;
right: 0px;
}
#amy-site-nav>ul>li>.amy-link {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 17px;
text-transform: uppercase;
font-weight: 700;
color: #575757;
display: block;
position: relative;
padding-left: 20px;
padding-right: 20px;
line-height: 100px;
}
.amy-bottom-menu #amy-site-nav>ul>li>.amy-link,
.amy-center-menu #amy-site-nav>ul>li>.amy-link {
line-height: 50px;
}
.amy-top-bar-right-float #amy-site-nav>ul>li>.amy-link {
line-height: 64px;
}
#amy-site-nav>ul>li>.amy-link:hover,
#amy-site-nav>ul>li>.amy-link:focus {
color: #9ac100;
text-decoration: none;
}
#amy-site-nav>ul>li>.amy-link:before {
background: #9ac100;
position: absolute;
content: "";
right: -1px;
top: 48.5px;
width: 3px;
height: 3px;
border-radius: 3px;
}
.amy-bottom-menu #amy-site-nav>ul>li>.amy-link:before,
.amy-center-menu #amy-site-nav>ul>li>.amy-link:before {
top: 23.5px;
}
.amy-top-bar-right-float #amy-site-nav>ul>li>.amy-link:before {
top: 30.5px;
}
#amy-site-nav>ul>li>.amy-link>i {
margin-right: 5px;
}
#amy-site-nav>ul>li:first-child>.amy-link {
padding-left: 0;
}
#amy-site-nav>ul>li:last-child>.amy-link {
padding-right: 0;
}
#amy-site-nav>ul>li:last-child>.amy-link:before {
content: none;
}
#amy-site-nav>ul>li.current-menu-ancestor>.amy-link,
#amy-site-nav>ul>li.current-menu-item>.amy-link {
color: #9ac100;
}
#amy-site-nav>ul>li>ul {
border-top: 2px solid #9ac100;
margin-top: -2px;
padding-top: 10px;
padding-bottom: 10px;
}
#amy-site-nav>ul>li>ul>li:first-child>.amy-link {
border-top: none;
}
#amy-site-nav>ul>li.menu-item-has-children>a:after {
bottom: 2px;
left: 49%;
border: solid transparent;
content: "";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-bottom-color: #9ac100;
border-width: 4px;
margin-left: -4px;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s, visibility 0.3s;
}
#amy-site-nav>ul>li:hover>a:after {
opacity: 1;
visibility: visible;
transform: none;
}
#amy-site-nav .amy-menu-cart:last-child a,
#amy-site-nav .amy-menu-search:last-child a {
padding-right: 0;
}
#amy-site-nav .amy-mega-menu {
position: inherit;
}
#amy-site-nav .amy-mega-menu>ul {
width: 100%;
left: 0;
}
#amy-site-nav .amy-mega-menu>ul>li {
float: left !important;
padding: 0 !important;
}
#amy-site-nav .amy-mega-menu>ul>li:last-child {
border: none;
}
#amy-site-nav .amy-mega-menu>ul>li:last-child a {
border-right: none !important;
}
#amy-site-nav .amy-mega-menu>ul>li>.amy-link {
border-top: none;
font-weight: 700;
font-size: 16px;
}
#amy-site-nav .amy-mega-menu>ul>li .amy-title {
font-weight: 700;
text-transform: uppercase;
padding-top: 17px;
padding-bottom: 15px;
border-top: none;
color: #555555;
background-color: #f5f5f5;
}
#amy-site-nav .amy-mega-menu>ul>li .amy-title:hover {
color: inherit;
}
#amy-site-nav .amy-mega-menu>ul>li .amy-title:after {
display: none;
}
#amy-site-nav .amy-mega-menu>ul>li ul {
clear: both;
display: block !important;
position: relative !important;
left: 0 !important;
opacity: 1 !important;
width: 100% !important;
box-shadow: none !important;
}
#amy-site-nav .amy-custom,
#amy-site-nav .amy-natural {
position: relative;
}
#amy-site-nav .amy-col-2>ul {
width: 400px;
}
#amy-site-nav .amy-col-3>ul {
width: 525px;
}
#amy-site-nav .amy-col-4>ul {
width: 600px;
}
#amy-site-nav .amy-col-5>ul {
width: 500px;
}
#amy-site-nav .amy-col-6>ul {
width: 600px;
}
#amy-site-nav .amy-right>ul {
left: auto !important;
right: 0;
}
#amy-site-nav .amy-label {
position: relative;
top: -5px;
left: 3px;
padding: 1px 4px;
font-size: 9px;
text-transform: uppercase;
}
#amy-site-nav .amy-column-title {
cursor: inherit;
}
#amy-site-nav .amy-content {
display: block;
font-size: 11px;
padding-top: 5px;
opacity: 0.7;
filter: alpha(opacity=70);
}
#amy-site-nav .amy-full-content {
margin: 10px;
}
#amy-site-nav .current-menu-ancestor>.amy-link,
#amy-site-nav .current-menu-item>.amy-link {
color: #9ac100;
}
.header-middle {
padding-top: 10px;
}
.header-middle.amy-section-curved {
z-index: 999;
}
.header-middle.amy-section-curved:after {
background-color: transparent;
background-position: center;
bottom: -23px;
}
.header-middle #menu-mainnav-left {
width: 33.33%;
float: left;
}
.header-middle #menu-mainnav-left>li {
float: none;
display: inline-block;
}
.header-middle #menu-mainnav-right {
width: 33.33%;
float: left;
}
.header-middle #menu-mainnav-right>li {
float: none;
display: inline-block;
}
.header-middle #amy-site-logo {
width: 33.33%;
float: left;
}
#amy-menu-toggle {
display: none;
position: absolute;
top: 50%;
margin-top: -10px;
padding: 10px;
right: 5px;
cursor: pointer;
}
#amy-menu-toggle a {
display: block;
position: relative;
margin: 0;
padding: 0px;
font-size: 0;
text-indent: -9999em;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
box-shadow: none;
border-radius: 0;
border: none;
width: 20px;
transition: background 0.3s;
}
#amy-menu-toggle a:focus {
outline: none;
}
#amy-menu-toggle a span,
#amy-menu-toggle a span:before,
#amy-menu-toggle a span:after {
display: block;
width: 100%;
height: 3px;
margin: 2px auto;
background-color: #555;
transition: all 0.1s;
}
#amy-menu-toggle a span:before,
#amy-menu-toggle a span:after {
position: absolute;
content: "";
}
#amy-menu-toggle a span:before {
margin-top: -5px;
}
#amy-menu-toggle a span:after {
margin-top: 5px;
}
#amy-menu-toggle.amy-menu-toggle-open a span {
background: transparent;
}
#amy-menu-toggle.amy-menu-toggle-open a span:before {
transform: rotate(45deg) translate(3px, 3px);
}
#amy-menu-toggle.amy-menu-toggle-open a span:after {
transform: rotate(-45deg) translate(4px, -4px);
}
#amy-navigation-mobile {
display: none;
background-color: #222;
}
#amy-navigation-mobile ul+ul {
padding-top: 0;
margin-top: -20px;
}
#amy-navigation-mobile ul+ul>li:first-child {
border-top: none;
}
#amy-navigation-mobile .amy-dropdown-plus {
position: absolute;
top: 0;
right: 0;
cursor: pointer;
background-color: #222;
transition: all 0.2s;
}
#amy-navigation-mobile .amy-dropdown-plus:hover {
background-color: #1a1a1a;
}
#amy-navigation-mobile .amy-dropdown-plus .fa {
display: block;
text-align: center;
font-size: 13px;
width: 48px;
height: 48px;
line-height: 48px;
color: #555;
transition: all 0.2s;
}
#amy-navigation-mobile .amy-dropdown-times .fa {
color: #fff;
transform: rotate(45deg);
}
#amy-navigation-mobile .current-menu-ancestor>a,
#amy-navigation-mobile .current-menu-item>a {
color: #fff;
}
#amy-navigation-mobile a {
transition: all 0.2s;
text-decoration: none;
}
#amy-navigation-mobile ul {
margin: 0;
padding: 20px 0;
list-style: none;
}
#amy-navigation-mobile ul ul {
position: relative;
display: none;
padding: 0;
margin-left: 0;
}
#amy-navigation-mobile ul ul:before {
content: "";
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid #333;
position: absolute;
top: 5px;
left: 30px;
}
#amy-navigation-mobile ul ul li {
border-left: none;
border-right: none;
}
#amy-navigation-mobile ul ul li:first-child {
border-top-width: 5px;
border-top-color: #333;
}
#amy-navigation-mobile ul ul li:last-child {
border-bottom: none;
}
#amy-navigation-mobile ul ul li a {
padding-left: 30px;
}
#amy-navigation-mobile ul li {
position: relative;
border: 1px solid #333;
border-bottom: none;
margin: 0;
}
#amy-navigation-mobile ul li:last-child {
border-bottom: 1px solid #333;
}
#amy-navigation-mobile ul li a {
display: block;
font-size: 13px;
padding: 15px;
color: #999;
}
#amy-navigation-mobile ul li a:hover {
color: #fff;
}
#amy-navigation-mobile ul li.menu-item-has-children>.amy-dropdown-plus {
display: block;
}
#amy-navigation-mobile ul li.menu-item-has-children>a {
border-right: 1px solid #333;
margin-right: 50px;
}
#amy-navigation-mobile .amy-fancy-mobile-menu {
padding: 20px 0;
}
#amy-navigation-mobile .amy-fancy-mobile-menu ul {
padding-top: 0;
padding-bottom: 0;
}
a:focus {
outline: none;
}
.amy-header-button {
float: right;
margin: 56px 0 0 38px;
}
@media (max-width: 980px) {
.amy-header-button {
margin: 39px 65px 0 0;
}
}
.amy-header-button>div {
display: inline-block;
float: left;
padding: 0 13px;
}
.amy-header-button>div:last-child {
padding-right: 0;
}
.amy-header-button>div:first-child {
padding-left: 0;
}
.amy-header-button .amy-top-modal {
margin-top: -2px;
}
.amy-header-button .amy-cart {
padding-left: 5px;
}
.amy-header-button .amy-organic-cart {
display: block;
width: 20px;
height: 16px;
background: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/icons/icon-cart.png) no-repeat center;
text-indent: -9999em;
position: relative;
margin-top: 0;
}
.amy-header-button .amy-organic-cart .cart-count {
position: absolute;
display: block;
width: 16px;
height: 16px;
line-height: 16px;
text-align: center;
color: #fff;
top: -11px;
right: -11px;
font-size: 11px;
text-indent: 0;
background: #9ac100;
border-radius: 50%;
}
#amy-navbar-toggle {
padding: 2px;
cursor: pointer;
}
#amy-navbar-toggle a {
display: block;
position: relative;
margin: 0;
padding: 0px;
font-size: 0;
text-indent: -9999em;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
box-shadow: none;
border-radius: 0;
border: none;
width: 20px;
height: 20px;
overflow: hidden;
transition: background 0.3s;
}
#amy-navbar-toggle a:focus {
outline: none;
}
#amy-navbar-toggle a:hover span {
left: -200%;
}
#amy-navbar-toggle a:hover span:before {
left: -200%;
}
#amy-navbar-toggle a:hover span:after {
left: -200%;
}
#amy-navbar-toggle a span {
display: block;
width: 300%;
height: 3px;
margin: 2px auto;
background: transparent linear-gradient(to right, #252525 0%, #252525 33.333%, transparent 33.333%, transparent 66.666%, #fda901 66.666%, #fda901 100%) repeat scroll 0 0;
position: absolute;
left: 0;
top: 3px;
transition: all 500ms ease 200ms;
}
#amy-navbar-toggle a span:before {
display: block;
width: 300%;
height: 3px;
margin: 2px auto;
background: transparent linear-gradient(to right, #252525 0%, #252525 33.333%, transparent 33.333%, transparent 66.666%, #fda901 66.666%, #fda901 100%) repeat scroll 0 0;
position: absolute;
left: 0;
top: 0;
transition: all 500ms ease 0s;
}
#amy-navbar-toggle a span:after {
display: block;
width: 300%;
height: 3px;
margin: 2px auto;
background: transparent linear-gradient(to right, #252525 0%, #252525 33.333%, transparent 33.333%, transparent 66.666%, #fda901 66.666%, #fda901 100%) repeat scroll 0 0;
position: absolute;
left: 0;
top: 0;
transition: all 500ms ease 400ms;
}
#amy-navbar-toggle a span:before,
#amy-navbar-toggle a span:after {
position: absolute;
content: "";
}
#amy-navbar-toggle a span:before {
margin-top: -5px;
}
#amy-navbar-toggle a span:after {
margin-top: 5px;
}
#amy-navbar-toggle.amy-navbar-open {
position: fixed;
right: 50px;
top: 55px;
z-index: 9999;
}
#amy-navbar-toggle.amy-navbar-open a {
overflow: visible;
}
#amy-navbar-toggle.amy-navbar-open a:hover span,
#amy-navbar-toggle.amy-navbar-open a:hover span:before,
#amy-navbar-toggle.amy-navbar-open a:hover span:after {
left: 0;
}
#amy-navbar-toggle.amy-navbar-open a span {
background: transparent;
}
#amy-navbar-toggle.amy-navbar-open a span:before {
transform: rotate(45deg) translate(3px, 3px);
width: 20px;
background: #252525;
}
#amy-navbar-toggle.amy-navbar-open a span:after {
transform: rotate(-45deg) translate(4px, -4px);
width: 20px;
background: #252525;
}
.amy-navbar-content {
background: #fff;
color: #666;
height: 100%;
overflow-y: scroll;
position: fixed;
transition: all 500ms ease-in-out 0s;
transform: translateX(100%);
right: 0;
top: 0;
width: 390px;
z-index: 9998;
padding: 110px 50px 50px 50px;
}
.amy-navbar-content.open {
transform: translateX(0px);
}
.amy-navbar-content .amy-menu {
padding-bottom: 20px;
border-bottom: 1px solid #e9e9e9;
}
.amy-navbar-content .amy-menu ul {
margin: 0;
padding: 0;
list-style: none;
}
.amy-navbar-content .amy-menu ul li {
padding: 0 15px;
border-left: 2px solid #9ac100;
line-height: 15px;
margin-bottom: 15px;
}
.amy-navbar-content .amy-module {
float: left;
width: 100%;
margin-bottom: 20px;
}
.amy-navbar-content .amy-module-social ul.amy-social-list {
list-style: none;
margin: 0;
padding: 0;
}
.amy-navbar-content .amy-module-social ul.amy-social-list li {
display: inline-block;
float: left;
margin-right: 20px;
}
@media (min-width: 1620px) {
.home3 .container {
width: 1618px;
}
.home3 .amy-header-button {
margin-left: 25%;
}
}
.home3 .amy-header-button {
margin-left: 15%;
margin-top: 70px;
min-width: 90px;
}
@media (max-width: 480px) {
.home3 .amy-header-button {
margin-left: 0;
margin-right: 3px;
}
}
.home3 .amy-header-button a.amy-organic-cart {
float: left;
margin-top: -12px;
margin-right: 20px;
}
.home3 .amy-header-button .amy-navbar {
position: absolute;
right: 0;
top: -10px;
}
@media (max-width: 980px) {
.home3 .amy-header-button .amy-navbar {
display: none;
}
}
.home3 #amy-site-nav {
margin-top: 39px;
margin-bottom: 8px;
}
.home3 #amy-site-nav>ul>li>.amy-link::before {
top: 23px;
}
.home3 #amy-site-nav>ul>li>.amy-link,
.home3 #amy-site-logo a {
line-height: 51px;
}
.home3 .amy-header-button .amy-organic-cart-content {
top: 27px;
}
@media (max-width: 480px) {
.home3 .amy-header-button .amy-organic-cart-content {
right: -3%;
}
}
.home3 .amy-header-button .amy-organic-cart-content ul:after {
right: 62px;
}
.amy-header-button {
position: relative;
}
.amy-header-button .amy-cart {
height: 44px;
}
.amy-header-button .amy-cart:hover .amy-organic-cart-content {
display: block;
}
.amy-header-button .amy-organic-cart-content {
display: none;
position: absolute;
right: 0;
top: 44px;
width: 310px;
background: #fff;
z-index: 99;
box-shadow: 0 3px 6px #ccc;
}
@media (max-width: 480px) {
.amy-header-button .amy-organic-cart-content {
right: -100%;
}
}
@media (max-width: 480px) {
.amy-header-button .amy-organic-cart-content {
right: -182%;
}
}
.amy-header-button .amy-organic-cart-content .total {
padding: 0 20px;
text-align: center;
}
.amy-header-button .amy-organic-cart-content .total .amount {
font-size: 18px;
color: #fda901;
font-family: Dosis;
font-weight: bold;
}
.amy-header-button .amy-organic-cart-content .buttons {
padding: 0 20px;
text-align: center;
}
.amy-header-button .amy-organic-cart-content .buttons .button,
.amy-header-button .amy-organic-cart-content .buttons .widget_tag_cloud .tagcloud a,
.widget_tag_cloud .tagcloud .amy-header-button .amy-organic-cart-content .buttons a {
padding: 10px 20px !important;
border-color: #9ac100;
}
.amy-header-button .amy-organic-cart-content .buttons .button:hover,
.amy-header-button .amy-organic-cart-content .buttons .widget_tag_cloud .tagcloud a:hover,
.widget_tag_cloud .tagcloud .amy-header-button .amy-organic-cart-content .buttons a:hover {
background: #9ac100;
color: #fff;
}
.amy-header-button .amy-organic-cart-content ul {
list-style: none;
position: relative;
border-top: 2px solid #9ac100;
padding: 20px;
display: block;
width: 100%;
margin-bottom: 0;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item {
position: relative;
margin-bottom: 20px;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item:last-child {
border-bottom: 1px dotted #9ac100;
margin-bottom: 0;
padding-bottom: 20px;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item:before {
content: " ";
display: table;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item:after {
content: " ";
display: table;
clear: both;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item a.remove {
position: absolute;
right: 0;
top: -3px;
font-size: 20px;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item a.remove:hover {
color: red;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item a:nth-child(2) {
font-family: Dosis;
font-size: 15px;
text-transform: uppercase;
font-weight: 700;
display: block;
margin-bottom: 10px;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item .quantity .amount {
font-size: 17px;
color: #fda901;
font-family: Dosis;
font-weight: bold;
}
.amy-header-button .amy-organic-cart-content ul li.mini_cart_item .attachment-shop_thumbnail {
width: 92px;
height: 100px;
overflow: hidden;
float: left;
margin-right: 15px;
border: 2px solid #e9e9e9;
}
.amy-header-button .amy-organic-cart-content ul:after {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
border-color: transparent transparent #9ac100;
border-image: none;
border-style: solid;
border-width: 4px;
content: "";
height: 17px;
margin-left: 0;
opacity: 1;
pointer-events: none;
position: absolute;
right: 4px;
top: -19px;
transition: opacity 0.3s ease 0s, visibility 0.3s ease 0s;
visibility: visible;
width: 9px;
}
@media (max-width: 480px) {
.amy-header-button .amy-organic-cart-content ul:after {
content: none;
}
} #page-header {
background-color: #9ac100;
background-repeat: no-repeat;
background-position: center center;
text-align: center;
overflow-wrap: break-word;
}
#page-header h1 {
color: #fff;
margin: 0;
}
#page-header .amy-breadcrumb {
margin-top: 15px;
}
#page-header .amy-breadcrumb,
#page-header .amy-breadcrumb a {
color: #fff;
}
#page-header .amy-breadcrumb a:hover,
#page-header .amy-breadcrumb a:active,
#page-header .amy-breadcrumb a:focus {
text-decoration: underline;
}
@media (max-width: 767px) {
#page-header {
padding-top: 20px;
padding-bottom: 20px;
}
#page-header h1 {
font-size: 26px;
margin-top: 16px;
}
} .amy-footer-widgets-before {
overflow: hidden;
background-color: #9ac100;
background-image: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/section-bg.png);
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
background-size: initial;
}
.amy-footer-widgets-before .widget_mc4wp_form_widget {
position: relative;
margin-bottom: 0;
padding: 8px 0 20px 0;
}
.amy-footer-widgets-before .widget_mc4wp_form_widget .mc4wp-form-fields p {
display: block;
margin-bottom: 0;
}
.amy-footer-widgets-before .widget_mc4wp_form_widget:before {
content: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/q2.png);
position: absolute;
left: 0;
top: -89px;
}
@media (max-width: 980px) {
.amy-footer-widgets-before .widget_mc4wp_form_widget:before {
content: none;
}
}
.amy-footer-widgets-before .widget_mc4wp_form_widget:after {
content: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/q1.png);
position: absolute;
right: 0;
top: -60px;
}
@media (max-width: 980px) {
.amy-footer-widgets-before .widget_mc4wp_form_widget:after {
content: none;
}
}
.amy-footer-widgets-before .widget_mc4wp_form_widget .amy-widget-title h4 {
font-size: 30px;
color: #fff;
text-transform: uppercase;
text-align: center;
font-weight: bold;
}
.amy-footer-widgets-before .mc4wp-form-fields {
display: block;
position: relative;
max-width: 450px;
margin: 0 auto;
}
.amy-footer-widgets-before .mc4wp-form-fields label {
display: none;
}
.amy-footer-widgets-before .mc4wp-form-fields ::-webkit-input-placeholder {
color: #fff;
font-style: italic;
}
.amy-footer-widgets-before .mc4wp-form-fields :-moz-placeholder {
color: #fff;
font-style: italic;
}
.amy-footer-widgets-before .mc4wp-form-fields ::-moz-placeholder {
color: #fff;
font-style: italic;
}
.amy-footer-widgets-before .mc4wp-form-fields :-ms-input-placeholder {
color: #fff;
font-style: italic;
}
.amy-footer-widgets-before .mc4wp-form-fields input[type="email"] {
display: inline-block;
border-radius: 50px;
max-width: 450px;
padding-left: 20px;
padding-right: 40px;
height: 44px;
background: transparent;
border-color: rgba(255, 255, 255, 0.6);
box-shadow: none;
}
.amy-footer-widgets-before .mc4wp-form-fields input[type="email"]:focus {
border-color: #fff;
box-shadow: none;
}
.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"] {
position: absolute;
border: none;
text-indent: -9999em;
padding: 0;
width: 24px;
height: 24px;
background: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/icons/newsletter-btn.png) no-repeat;
top: 9px;
right: 20px;
opacity: 0.9;
}
.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"]:hover,
.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"]:active,
.amy-footer-widgets-before .mc4wp-form-fields input[type="submit"]:focus {
opacity: 1;
}
@media (max-width: 767px) {
.amy-footer-widgets-before {
padding-top: 20px;
padding-bottom: 20px;
}
}
.amy-footer {
padding-top: 0px;
}
.amy-footer .amy-footer-left {
padding-bottom: 20px;
padding-right: 30px;
padding-top: 30px;
}
.amy-footer .amy-footer-left .amy-widget-module.about .summary {
margin-bottom: 20px;
max-height: 88px;
overflow: hidden;
}
.amy-footer .amy-footer-left .amy-widget-module.about .footer-logo {
margin-bottom: 13px;
}
.amy-footer .amy-footer-left .amy-widget-module.contact .fa {
margin-right: 10px;
}
.amy-footer .amy-footer-left .amy-widget-module.contact div {
margin-bottom: 10px;
}
.amy-footer .amy-footer-left .amy-widget:last-of-type {
margin-bottom: 0;
}
.amy-footer .amy-footer-left .vcard>div {
margin-bottom: 10px;
}
.amy-footer .amy-footer-left .vcard .adr,
.amy-footer .amy-footer-left .vcard .url,
.amy-footer .amy-footer-left .vcard .tel,
.amy-footer .amy-footer-left .vcard .email {
background-repeat: no-repeat;
background-position: left center;
position: relative;
padding-left: 35px;
}
.amy-footer .amy-footer-left .vcard .adr {
background-image: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/icons/paper-airplane.png);
}
.amy-footer .amy-footer-left .vcard .url {
background-image: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/icons/globe.png);
}
.amy-footer .amy-footer-left .vcard .url a {
color: #666;
}
.amy-footer .amy-footer-left .vcard .url a:hover {
color: #9ac100;
}
.amy-footer .amy-footer-left .vcard .tel {
background-image: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/icons/phone.png);
}
.amy-footer .amy-footer-left .vcard .email {
background-image: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/icons/envelop.png);
}
.amy-footer .amy-footer-left .vcard .email a {
color: #666;
}
.amy-footer .amy-footer-left .vcard .email a:hover {
color: #9ac100;
}
.amy-footer .amy-social-icons {
margin-top: 20px;
}
.amy-footer .amy-social-icons a {
width: 36px;
height: 36px;
line-height: 36px;
}
.amy-footer .amy-footer-right {
padding-left: 30px;
padding-top: 68px;
border-left: 1px dotted #9ac100;
margin-top: -8px;
}
.amy-footer .amy-footer-right .amy-widget .amy-widget-title h4 {
margin-bottom: 35px;
}
.amy-footer .amy-footer-right .amy-widgets-4 .amy-widget-module {
margin-bottom: 6px;
}
.amy-footer .amy-footer-right .amy-widgets-4 .amy-widget-module h4.amy-widget-title {
margin-top: 0;
color: #9ac100;
font-size: 20px;
font-weight: bold;
margin-bottom: 20px;
margin-top: 0;
text-transform: uppercase;
}
.amy-footer .amy-footer-right .amy-list-with-icon li {
padding-left: 20px;
}
.amy-footer .amy-footer-right .amy-list-with-icon li a {
color: #999;
}
.amy-footer .amy-footer-right .amy-list-with-icon li a:hover,
.amy-footer .amy-footer-right .amy-list-with-icon li a:active,
.amy-footer .amy-footer-right .amy-list-with-icon li a:focus {
color: #9ac100;
}
.amy-footer .amy-footer-right .amy-copyright {
margin-left: -30px;
padding-left: 30px;
}
.amy-footer .amy-copyright {
border-top: 1px dotted #9ac100;
padding-top: 30px;
padding-bottom: 36px;
}
.amy-footer .amy-copyright p {
margin-bottom: 0;
}
.amy-footer .instagram-images img {
margin-bottom: 3px;
}
@media (max-width: 991px) {
.amy-footer .amy-flex {
display: block;
}
.amy-footer .amy-footer-left {
border-right: 0;
padding-right: 0;
}
.amy-footer .amy-footer-right {
padding-left: 15px;
}
.amy-footer .amy-copyright .pull-left,
.amy-footer .amy-copyright .pull-right {
float: none !important;
text-align: center;
}
.amy-footer .amy-copyright .pull-left p,
.amy-footer .amy-copyright .pull-right p {
margin-bottom: 10px;
}
} .amy-pagination {
text-align: center;
margin-top: 10px;
}
.pagination .page-numbers {
color: #9ac100;
border: 2px solid #e1e1e1;
padding: 8px 14px;
border-radius: 3px;
display: inline-block;
}
.pagination .page-numbers.current {
color: #fff;
text-decoration: none;
background: #9ac100;
border-color: #9ac100;
}
.pagination a.page-numbers:focus {
text-decoration: none;
}
.pagination a.page-numbers:hover,
.pagination a.page-numbers:active {
color: #fff;
text-decoration: none;
background: #9ac100;
border-color: #9ac100;
}
.amy-infinite-scroll {
background: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/loader.gif) no-repeat center center;
display: inline-block;
text-indent: -9999em;
}
.amy-prev-next-pagination:before,
.amy-prev-next-pagination:after {
content: " ";
display: table;
}
.amy-prev-next-pagination:after {
clear: both;
}
.amy-prev-next-pagination .amy-prev {
float: left;
}
.amy-prev-next-pagination .amy-next {
float: right;
}  .footer-logo {
margin-bottom: 12px;
}
.amy-widget {
margin-bottom: 40px;
overflow-wrap: break-word;
}
.amy-widget .amy-widget-title h4 {
margin-top: 0;
font-weight: bold;
text-transform: uppercase;
color: #9ac100;
font-size: 20px;
margin-bottom: 20px;
}
.amy-dark-bg .amy-widget .amy-widget-title h4 {
color: #fff;
}
.widget_categories ul li,
.widget_product_categories ul li,
.widget_archive ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_nav_menu ul li,
.widget_recent_entries li {
color: #d5d5d5;
}
.amy-dark-bg .widget_categories ul li,
.amy-dark-bg .widget_product_categories ul li,
.amy-dark-bg .widget_archive ul li,
.amy-dark-bg .widget_pages ul li,
.amy-dark-bg .widget_meta ul li,
.amy-dark-bg .widget_nav_menu ul li,
.amy-dark-bg .widget_recent_entries li {
color: #e6e6e6;
}
.widget_text a,
.widget_rss a {
color: #9ac100;
}
.amy-dark-bg {
color: white;
}
.amy-dark-bg a {
color: #fff;
}
.amy-social-list ul {
padding: 0;
margin: 0;
list-style: none;
}
.amy-social-list ul li a {
color: #666666;
}
.amy-social-list ul li a .fa {
color: #fda901;
margin-right: 10px;
width: 17px;
display: inline-block;
}
.amy-social-list ul li a:hover {
color: #9ac100;
}
.amy-social-list ul li a:hover .fa {
color: #9ac100;
}
@media (max-width: 991px) {
.sidebar-left {
margin-bottom: 40px;
}
.sidebar-right {
margin-top: 40px;
}
} .widget_search .search-form {
position: relative;
}
.widget_search .search-form input {
border-radius: 20px;
}
.widget_search .search-form button {
color: #e1e1e1;
background: none;
border: none;
padding: 7px;
margin: 0;
position: absolute;
right: 5px;
top: 5px;
}
.widget_search .search-form button:hover,
.widget_search .search-form button:focus,
.widget_search .search-form button:active {
color: #9ac100;
} .widget_calendar caption {
text-align: center;
}
.amy-dark-bg .widget_calendar caption {
color: #fff;
}
.widget_calendar table {
font-size: 14px;
border-top: 1px solid #eee;
}
.widget_calendar table>thead tr>th,
.widget_calendar table>thead tr>td,
.widget_calendar table>tbody tr>th,
.widget_calendar table>tbody tr>td {
text-align: center;
}
.widget_calendar table>thead>tr>th,
.widget_calendar table>thead>tr>td {
border-bottom-width: 2px;
}
.widget_calendar table>thead {
background: #f8f8f8;
}
.amy-dark-bg .widget_calendar table>thead {
color: #9ac100;
}
.widget_calendar table>tfoot tr>td {
border: 0;
}
.widget_calendar table tbody a {
background: #9ac100;
color: #fff;
display: block;
border-radius: 3px;
}
.amy-dark-bg .widget_calendar table tbody a {
background-color: #f8f8f8;
color: #9ac100;
}
.widget_calendar table tbody a:hover {
background: #555;
}
.widget_calendar #next {
text-align: right;
}
.widget_calendar #prev {
text-align: left;
}
.widget_calendar #today {
background-color: #f5f5f5;
}
.amy-dark-bg .widget_calendar #today {
color: #9ac100;
}
@media (min-width: 991px) and (max-width: 1199px) {
.widget_calendar table th,
.widget_calendar table td {
padding: 6px;
}
} .widget_recent_comments ul {
list-style: none;
margin: 0;
padding: 0;
}
.widget_recent_comments ul li {
font-style: italic;
color: #999999;
}
.widget_recent_comments ul li:before {
font-family: FontAwesome;
content: "\f0e5";
font-size: 13px;
margin-right: 7px;
opacity: 0.7;
}
.amy-dark-bg .widget_recent_comments ul li {
color: white;
}
.widget_recent_comments ul li a {
font-style: normal;
} .amy-footer-widgets .widget_nav_menu a {
color: #666 !important;
}
.amy-footer-widgets .widget_nav_menu a:hover {
color: #9ac100 !important;
}
.page-sidebar .widget_nav_menu ul,
.page-sidebar .widget_nav_menu ul ul {
list-style: none;
padding: 0;
margin: 0;
}
.page-sidebar .widget_nav_menu ul li {
margin: 0;
padding: 0;
border-bottom: 1px solid #f2f2f2;
}
.page-sidebar .widget_nav_menu ul li:before {
content: none;
}
.page-sidebar .widget_nav_menu ul li a {
padding: 8px 0;
display: block;
}
.page-sidebar .widget_nav_menu ul li:last-child {
border-bottom: 0;
}
.page-sidebar .widget_nav_menu ul li ul.sub-menu {
padding-left: 20px;
border-top: 1px solid #f2f2f2;
}
.page-sidebar .widget_nav_menu ul .menu-item-has-children>a:after {
font-family: FontAwesome;
content: "\f105";
position: absolute;
right: 0;
color: #cacaca;
}
.page-sidebar .widget_nav_menu ul .menu-item-has-children>a:hover:after {
color: #9ac100;
}
.page-sidebar .widget_nav_menu ul .current-menu-item>a {
color: #9ac100;
}
.page-sidebar .widget_nav_menu ul .current-menu-item>a:after {
transform: rotate(90deg);
} .widget_rss .amy-widget-title img {
margin-bottom: 2px;
}
.widget_rss .rss-date {
color: #999;
font-style: italic;
}
.amy-dark-bg .widget_rss .rss-date {
color: #d5d5d5;
}
.widget_rss .rssSummary {
margin-top: 5px;
} .widget_tag_cloud .tagcloud a {
padding: 5px 12px;
text-transform: none;
font-weight: 400;
font-size: 13px !important;
border-width: 2px;
border-color: #eeeeee;
color: #666;
font-size: 15px;
font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
padding: 8px 15px;
margin-bottom: 6px;
}
.widget_tag_cloud .tagcloud a:hover {
color: #9ac100;
} .sidebar-right {
padding-left: 30px;
}
@media (max-width: 980px) {
.sidebar-right {
padding-left: 0;
}
}
.sidebar-left {
padding-right: 30px;
}
@media (max-width: 980px) {
.sidebar-left {
padding-right: 0;
}
}
.entry-meta .entry-cat-links:before,
.entry-meta .entry-featured:before,
.entry-tags:before,
.entry-meta a:before {
font-size: 13px;
margin-right: 4px;
font-family: 'FontAwesome';
font-style: normal;
font-weight: normal;
display: inline-block;
line-height: 1;
}
.entry-featured:before {
content: "\f041";
}
.entry-date a:before {
content: "\f017";
}
.entry-author-link a:before {
content: "\f007";
}
.entry-cat-links:before {
content: "\f115";
}
.entry-comments-link a:before {
content: "\f0e5";
line-height: 1.5;
vertical-align: top;
}
.entry-edit-link a:before {
content: "\f040";
}
.entry-love a:before {
content: "\f08a";
}
.entry-tags:before {
content: "\f02c";
}
.entry-format-aside a:before {
content: "\f1db";
}
.entry-format-gallery a:before {
content: "\f030";
}
.entry-format-link a:before {
content: "\f0c1";
}
.entry-format-image a:before {
content: "\f03e";
}
.entry-format-quote a:before {
content: "\f10e";
}
.entry-format-status a:before {
content: "\f0a2";
}
.entry-format-video a:before {
content: "\f03d";
}
.entry-format-audio a:before {
content: "\f028";
}
.entry-format-chat a:before {
content: "\f0e6";
}
.comment-meta a,
.entry-tags a,
.entry-title a,
.entry-meta a,
.entry-cat-links {
display: inline;
}
.entry-meta {
color: #999;
font-size: 14px;
font-style: italic;
}
.entry-meta>span {
margin-right: 10px;
}
.entry-meta a {
color: #999;
}
.entry-meta a:hover,
.entry-meta a:active,
.entry-meta a:focus {
color: #9ac100;
}
.entry-title a {
color: #333;
}
.entry-title a:hover,
.entry-title a:active,
.entry-title a:focus {
color: #9ac100;
}
article {
word-wrap: break-word;
}
.entry-summary a,
.entry-content a {
color: #9ac100;
}
.blog .entry-summary p:last-of-type,
.blog .entry-content p:last-of-type {
margin-bottom: 0;
}
.entry-summary embed,
.entry-summary object,
.entry-summary iframe,
.entry-summary video,
.entry-content embed,
.entry-content object,
.entry-content iframe,
.entry-content video {
max-width: 100%;
}
.entry-summary .wp-audio-shortcode,
.entry-summary .wp-video,
.entry-content .wp-audio-shortcode,
.entry-content .wp-video {
margin-bottom: 20px;
}
.entry-read-more {
display: block;
margin-top: 20px;
}
.entry-footer {
margin-top: 24px;
}
.entry-footer .amy-footer-meta {
border-top: 1px dotted #9ac100;
border-bottom: 1px dotted #9ac100;
padding: 10px 0;
line-height: 30px;
}
.entry-footer .amy-footer-meta:before,
.entry-footer .amy-footer-meta:after {
content: " ";
display: table;
}
.entry-footer .amy-footer-meta:after {
clear: both;
}
.entry-footer .amy-footer-meta .amy-post-tag-title,
.entry-footer .amy-footer-meta .amy-post-share-title {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
text-transform: uppercase;
}
.entry-footer .amy-footer-meta .entry-tags {
float: left;
}
.entry-footer .amy-footer-meta .amy-post-share {
float: right;
}
.entry-author {
background-color: #fbfbfc;
padding: 30px;
margin-top: 30px;
}
.entry-author:before,
.entry-author:after {
content: " ";
display: table;
}
.entry-author:after {
clear: both;
}
.entry-author .author-avatar {
float: left;
}
.entry-author .author-avatar img {
border-radius: 50%;
}
.entry-author .author-info {
margin-left: 95px;
}
.entry-author .author-info h2.author-title {
font-size: 18px;
margin-top: 0;
text-transform: none;
}
.post-navigation {
margin-top: 20px;
}
.post-navigation:before,
.post-navigation:after {
content: " ";
display: table;
}
.post-navigation:after {
clear: both;
}
.post-navigation .nav-previous {
float: left;
}
.post-navigation .nav-next {
float: right;
text-align: right;
}
.blog-default article.sticky {
background: #ecf0f1;
padding: 30px;
border-color: transparent;
}
.blog-default .hentry {
padding-bottom: 2px;
margin-bottom: 50px;
}
.blog-default .hentry:last-of-type {
border-bottom: 1px dashed #e5e5e5;
margin-bottom: 20px;
padding-bottom: 20px;
}
.blog-default .entry-header {
margin-bottom: 15px;
}
.blog-default .entry-title {
margin: 0 0 10px 0;
font-size: 20px;
}
.blog-search {
overflow: hidden;
}
.blog-masonry article.sticky {
background: #ecf0f1;
padding: 15px;
}
.blog-masonry .hentry {
margin-bottom: 40px;
}
.blog-masonry .entry-header {
margin-bottom: 15px;
}
.blog-masonry .entry-title {
font-size: 20px;
margin: 10px 0;
}
.single-post .hentry {
margin-bottom: 0;
}
#comments .comments-title {
color: #9ac100;
margin: 50px 0;
}
#comments ol.comment-list {
list-style: none;
margin: 0;
padding: 0;
}
#comments ol.children {
list-style: none;
padding-left: 40px;
}
@media (max-width: 480px) {
#comments ol.children {
padding-left: 0;
}
}
#comments .comment-body {
margin-bottom: 10px;
min-height: 75px;
padding-bottom: 15px;
padding-left: 85px;
position: relative;
background: #fff;
}
#comments .comment-body .comment-avatar {
position: absolute;
left: 0;
}
#comments .comment-body .comment-avatar img {
border-radius: 50%;
}
#comments .comment-body .comment-data {
background: #f8f8f8;
padding: 20px;
border: 1px solid #e1e1e1;
position: relative;
}
#comments .comment-body .comment-data:before,
#comments .comment-body .comment-data:after {
position: absolute;
top: 30px;
right: 100%;
border: 1px solid transparent;
content: " ";
width: 0;
height: 0;
pointer-events: none;
}
#comments .comment-body .comment-data:before {
border-color: rgba(225, 225, 225, 0);
border-right-color: #e1e1e1;
border-width: 9px;
margin-top: -9px;
}
#comments .comment-body .comment-data:after {
border-color: rgba(248, 248, 248, 0);
border-right-color: #f8f8f8;
border-width: 8px;
margin-top: -8px;
}
#comments .comment-body .comment-meta {
padding-bottom: 10px;
border-bottom: 1px solid #e1e1e1;
}
#comments .comment-body .comment-author {
display: inline-block;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
text-transform: uppercase;
margin-right: 20px;
}
#comments .comment-body .comment-metadata {
color: #cfcfcf;
display: inline-block;
font-size: 14px;
font-style: italic;
}
#comments .comment-body .comment-metadata a {
color: #cfcfcf;
}
#comments .comment-body .comment-reply {
opacity: 0;
float: right;
text-transform: uppercase;
font-size: 12px;
transition: opacity 0.2s;
}
#comments .comment-body .comment-data:hover>.comment-meta>.comment-reply {
opacity: 1;
}
#comments .comment-body .comment-content {
padding-top: 15px;
}
#comments .comment-body .comment-content p:last-child {
margin-bottom: 10px;
}
.comment-respond {
margin-top: 50px;
}
.comment-respond .comment-reply-title {
color: #9ac100;
}
.page-links .page-links-title {
font-weight: 700;
border-color: transparent;
background-color: transparent;
color: #666;
}
.page-links span {
color: #9ac100;
padding: 4px 10px;
border-radius: 3px;
display: inline-block;
border: 1px solid #e1e1e1;
}
.page-links a {
display: inline-block;
}
.page-links a:hover span,
.page-links a:focus span,
.page-links a:active span,
.page-links>span {
color: #fff;
text-decoration: none;
background: #9ac100;
border-color: #9ac100;
}
.entry-image {
position: relative;
margin-bottom: 15px;
}
.entry-image img {
max-width: 100%;
height: auto;
}
.entry-image a {
display: inline-block;
position: relative;
width: 100%;
height: 100%;
}
.entry-media {
margin-bottom: 15px;
overflow: hidden;
}
.entry-media .amy-organic-responsive-embed {
position: relative;
padding-bottom: 56.25%;
}
.entry-media .amy-organic-responsive-embed embed,
.entry-media .amy-organic-responsive-embed object,
.entry-media .amy-organic-responsive-embed video,
.entry-media .amy-organic-responsive-embed iframe {
width: 100%;
height: 100%;
position: absolute;
}
.entry-media .wp-playlist {
margin: 0 !important;
}
.wp-playlist-item,
.wp-playlist {
border-color: #e8e8e8;
}
.format-audio .entry-image {
margin-bottom: 0;
}
.entry-gallery {
overflow: hidden;
margin-bottom: 14px;
}
.gallery:before,
.gallery:after {
content: " ";
display: table;
}
.gallery:after {
clear: both;
}
.gallery-item {
float: left;
max-width: 33.33%;
vertical-align: top;
width: 100%;
margin: 0 0 20px 0;
}
.gallery-columns-1 .gallery-item {
max-width: 100%;
}
.gallery-columns-2 .gallery-item {
max-width: 50%;
}
.gallery-columns-4 .gallery-item {
max-width: 25%;
}
.gallery-columns-5 .gallery-item {
max-width: 20%;
}
.gallery-columns-6 .gallery-item {
max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
max-width: 11.11%;
}
.gallery-icon img {
margin: 0 auto;
}
.gallery-caption {
color: #999;
display: block;
font-size: 13px;
font-style: italic;
padding-right: 5px;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
display: none;
}
.amy-chat {
margin: 0;
padding: 0;
list-style: none;
}
.amy-chat-row {
margin-bottom: 15px;
}
.amy-chat-author {
font-weight: 700;
display: inline;
}
.amy-chat-row-even .amy-chat-author {
color: #2980b9;
}
.amy-chat-row-odd .amy-chat-author {
color: #27ae60;
}
.amy-chat-text {
display: inline;
}
.format-quote blockquote {
margin-left: 0;
margin-right: 0;
}
.main-content.blog-layout-default {
padding: 80px 0;
}
@media (max-width: 989px) {
.amy-post-tags .pull-left,
.amy-post-tags .pull-right {
float: none !important;
}
.amy-post-tags .amy-post-share {
margin-top: 10px;
}
.amy-comments-wrapper ul {
padding-left: 20px;
}
.amy-comments-wrapper .comment-body {
padding-left: 60px;
}
.amy-comments-wrapper .comment-body .comment-avatar img {
max-width: 50px;
height: auto;
}
.amy-comments-wrapper .comment-body .comment-data:before,
.amy-comments-wrapper .comment-body .comment-data:after {
top: 20px;
}
}
.amy_widget_custom_posts .amy-list-with-image li {
padding-left: 70px;
min-height: 75px;
}
.amy_widget_custom_posts .amy-list-with-image li a {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
text-transform: uppercase;
}
.amy_widget_custom_posts .amy-list-with-image li a img {
top: 4px;
max-width: 60px;
border-radius: 2px;
}
.amy_widget_custom_posts .post-date,
.amy_widget_custom_posts .post-category {
display: block;
font-size: 11px;
opacity: 0.7;
}
.amy-widget-list .entry-item {
margin-bottom: 20px;
}
.amy-widget-list .entry-item .entry-thumb {
float: left;
margin-right: 20px;
}
.amy-widget-list .entry-item .entry-content h2.entry-title {
font-size: 17px;
}
.amy-widget-list .entry-item .entry-content h2.entry-title a {
color: #333;
}
.amy-widget-list .entry-item .entry-content h2.entry-title a:hover {
color: #9ac100;
}
.woocommerce .clear {
clear: both;
}
.woocommerce span.onsale {
padding: 5px 10px;
border-radius: 0;
top: 20px;
left: -2px;
z-index: 1;
font-weight: normal;
line-height: 1.5;
background-color: #9ac100;
min-width: 0;
min-height: 0;
transition: all 0.2s ease 0s;
}
.woocommerce .product-wrapper:hover .onsale {
padding-left: 15px;
padding-right: 15px;
}
.woocommerce.single-product .onsale {
left: 15px;
}
.woocommerce #respond input#submit,
.woocommerce button.button,
.woocommerce input.button {
color: #9ac100;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
text-transform: uppercase;
background: transparent;
display: inline-block;
line-height: 1;
border: 2px solid #e1e1e1;
padding: 10px 40px;
margin-bottom: 5px;
border-radius: 25px;
transition: all 0.2s ease-in-out;
}
.woocommerce #respond input#submit:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:active,
.woocommerce button.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button:active,
.woocommerce input.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button:active {
outline: none;
text-decoration: none;
color: #9ac100;
border-color: #c8c8c8;
background: none;
}
.woocommerce #respond input#submit:active,
.woocommerce button.button:active,
.woocommerce input.button:active {
position: relative;
top: 2px;
}
.woocommerce #respond input#submit i.fa,
.woocommerce button.button i.fa,
.woocommerce input.button i.fa {
margin-right: 5px;
}
.woocommerce #respond input#submit {
background: #9ac100;
border-color: #9ac100;
color: #fff;
}
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit:active,
.woocommerce #respond input#submit:focus {
background: #a2cb00;
border-color: #a2cb00;
color: #fff;
}
.woocommerce .star-rating {
display: block;
float: none;
overflow: hidden;
font-size: 15px;
line-height: 20px;
position: relative;
font-family: FontAwesome;
height: 20px;
width: 70px;
margin-bottom: 10px;
}
.woocommerce .star-rating:before {
color: #eaeaea;
content: "\f005\f005\f005\f005\f005";
position: absolute;
left: 0;
right: 0;
text-align: center;
}
.woocommerce .star-rating span {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
color: #9ac100;
padding-top: 1.5em;
}
.woocommerce .star-rating span:before {
position: absolute;
content: "\f005\f005\f005\f005\f005";
left: 0;
top: 0;
text-align: center;
}
.woocommerce .price .amount {
color: #fda901;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: bold;
}
.woocommerce .price del {
color: #333;
}
.woocommerce .price del .amount {
color: #333;
font-weight: normal;
font-size: 16px;
font-style: italic;
}
.woocommerce .price ins {
text-decoration: none;
}
.woocommerce .woocommerce-toolbar {
margin-bottom: 30px;
}
.woocommerce .woocommerce-toolbar:before,
.woocommerce .woocommerce-toolbar:after {
content: " ";
display: table;
}
.woocommerce .woocommerce-toolbar:after {
clear: both;
}
.woocommerce .woocommerce-toolbar .woocommerce-result-count {
float: left;
line-height: 40px;
margin-bottom: 0;
}
.woocommerce .woocommerce-toolbar .woocommerce-view-mode {
float: right;
margin-left: 20px;
}
.woocommerce .woocommerce-toolbar .woocommerce-view-mode a {
display: inline-block;
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
vertical-align: middle;
background: #e2e2e2;
color: #999;
border-radius: 4px;
font-size: 16px;
}
.woocommerce .woocommerce-toolbar .woocommerce-view-mode a.active,
.woocommerce .woocommerce-toolbar .woocommerce-view-mode a:hover {
color: #fff;
background: #9ac100;
}
.woocommerce .woocommerce-toolbar form.woocommerce-ordering {
float: right;
width: 250px;
}
.woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.woocommerce .yith-wcwl-wishlistaddedbrowse a,
.woocommerce .yith-wcwl-wishlistexistsbrowse a,
.woocommerce a.compare {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #e5e5e5;
margin-right: 10px;
border-radius: 50%;
z-index: 1;
}
.woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.woocommerce .yith-wcwl-wishlistaddedbrowse a:before,
.woocommerce .yith-wcwl-wishlistexistsbrowse a:before,
.woocommerce a.compare:before {
font-family: FontAwesome;
font-size: 14px;
}
.woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover,
.woocommerce .yith-wcwl-wishlistaddedbrowse a:hover,
.woocommerce .yith-wcwl-wishlistexistsbrowse a:hover,
.woocommerce a.compare:hover {
background: #9ac100;
color: #fff;
}
.woocommerce .yith-wcwl-wishlistaddedbrowse .feedback,
.woocommerce .yith-wcwl-wishlistexistsbrowse .feedback {
display: none;
}
.woocommerce .yith-wcwl-wishlistaddedbrowse a,
.woocommerce .yith-wcwl-wishlistexistsbrowse a {
color: #fda901;
border-color: #fda901;
}
.woocommerce .yith-wcwl-wishlistaddedbrowse a:hover,
.woocommerce .yith-wcwl-wishlistexistsbrowse a:hover {
border-color: #9ac100;
}
.woocommerce .yith-wcwl-add-to-wishlist {
margin-top: 0;
margin-right: -4px;
display: inline-block;
}
.woocommerce .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.woocommerce .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.woocommerce .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
content: "\f004";
}
.woocommerce .yith-wcwl-add-to-wishlist .ajax-loading {
display: none !important;
}
.woocommerce a.compare {
margin-right: 0;
}
.woocommerce a.compare:before {
content: "\f074";
}
.woocommerce .shop-products {
padding-bottom: 40px;
}
.woocommerce .shop-products .product {
background: #fff;
margin-bottom: 40px;
}
.woocommerce .shop-products .product.first {
clear: both;
}
.woocommerce .shop-products .product .star-rating {
margin: 0 auto 10px;
}
.woocommerce .shop-products .product .product-wrapper {
text-align: center;
border: 2px solid transparent;
border-bottom: none;
position: relative;
}
.woocommerce .shop-products .product .product-wrapper:hover {
border-color: #e5e5e5;
}
.woocommerce .shop-products .product .product-wrapper:hover .product-buttons {
opacity: 1;
visibility: visible;
transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.woocommerce .shop-products .product .product-wrapper .product-image-wrapper>a {
position: relative;
display: block;
}
.woocommerce .shop-products .product .product-wrapper .product-image-wrapper>a .secondary-image {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
opacity: 0;
transition: opacity 0.3s ease;
}
.woocommerce .shop-products .product .product-wrapper .product-image-wrapper>a:hover .secondary-image {
opacity: 1;
}
.woocommerce .shop-products .product .product-wrapper .product-description-wrapper {
padding-left: 10px;
padding-right: 10px;
}
.woocommerce .shop-products .product .product-wrapper .product-description-wrapper .product-short-description {
display: none;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons {
background: #fff;
padding: 20px 10px;
position: absolute;
top: 100%;
z-index: 2;
border: 2px solid #e5e5e5;
border-top: none;
left: -2px;
right: -2px;
opacity: 0;
visibility: hidden;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons>div {
position: relative;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons>div:before {
content: "";
position: absolute;
left: 0;
top: 50%;
width: 100%;
z-index: -1;
border-top: 1px dotted #9ac100;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons .add_to_cart_button {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #9ac100;
margin-right: 10px;
border-radius: 50%;
z-index: 1;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons .add_to_cart_button:before {
font-family: FontAwesome;
font-size: 14px;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons .add_to_cart_button:hover {
background: #9ac100;
border-color: #9ac100;
color: #fff;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons a.add_to_cart_button {
width: 40px;
height: 40px;
line-height: 40px;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons a.add_to_cart_button:before {
content: "\f291";
font-size: 15px;
}
.woocommerce .shop-products .product .product-wrapper .product-buttons .compare-button {
display: inline-block;
margin-bottom: 0;
}
.woocommerce .shop-products .product.list-view {
float: none;
width: auto;
}
.woocommerce .shop-products .product.list-view .star-rating {
margin-left: 0;
}
.woocommerce .shop-products .product.list-view .product-wrapper {
border: none;
}
.woocommerce .shop-products .product.list-view .product-image-wrapper {
float: left;
max-width: 31%;
margin-right: 6%;
border: 2px solid #e5e5e5;
}
.woocommerce .shop-products .product.list-view .product-description-wrapper {
text-align: left;
}
.woocommerce .shop-products .product.list-view .product-description-wrapper .product-short-description {
display: block;
margin-top: 20px;
}
.woocommerce .shop-products .product.list-view .product-buttons {
position: relative;
opacity: 1;
visibility: visible;
border: none;
left: auto;
right: auto;
width: auto;
top: auto;
overflow: hidden;
text-align: left;
padding: 10px 0;
}
.woocommerce .shop-products .product.list-view .product-buttons>div {
padding-left: 10px;
}
.woocommerce #content div.product div.images,
.woocommerce #content div.product div.summary {
width: auto;
}
.woocommerce div.product div.images img {
display: block;
width: 100%;
height: auto;
box-shadow: none;
border: 2px solid #e5e5e5;
}
.woocommerce div.product .product_title {
font-size: 24px;
}
.woocommerce div.product .price .amount {
font-size: 24px;
}
.woocommerce div.product .price del .amount {
font-size: 18px;
}
.woocommerce div.product .woocommerce-product-rating {
line-height: 1.5;
margin-top: 10px;
margin-bottom: 10px;
}
.woocommerce div.product .woocommerce-product-rating .star-rating {
margin-top: 0;
float: left;
}
.woocommerce div.product form.cart {
float: left;
margin-bottom: 20px;
}
.woocommerce div.product form.cart div.quantity {
margin-right: 0;
}
.woocommerce div.product form.cart div.quantity .amyui-number-input {
width: 110px;
float: left;
margin-right: 10px;
}
.woocommerce div.product form.cart div.quantity .qty {
width: 100%;
border-radius: 40px;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
background-color: #9ac100;
border-color: #9ac100;
margin-right: 10px;
padding-left: 20px;
padding-right: 20px;
}
.woocommerce div.product form.cart .single_add_to_cart_button:before {
font-family: FontAwesome;
content: "\f291";
margin-right: 10px;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover,
.woocommerce div.product form.cart .single_add_to_cart_button:focus,
.woocommerce div.product form.cart .single_add_to_cart_button:active {
background: #a6d000;
border-color: #a6d000;
color: #fff;
}
.woocommerce div.product .product_meta {
clear: both;
padding-top: 20px;
border-top: 1px dotted #9ac100;
font-weight: bold;
}
.woocommerce div.product .product_meta .posted_in,
.woocommerce div.product .product_meta .tag_as {
display: block;
}
.woocommerce div.product .product_meta .posted_in a,
.woocommerce div.product .product_meta .tag_as a {
font-weight: normal;
}
.woocommerce div.product .product_meta .posted_in a:first-child,
.woocommerce div.product .product_meta .tag_as a:first-child {
margin-left: 5px;
}
.woocommerce div.product .share-post {
border-top: 1px dotted #9ac100;
line-height: 40px;
margin: 15px 0;
padding: 15px 0;
}
.woocommerce div.product .share-product-title {
display: inline-block;
line-height: 40px;
margin-right: 15px;
margin-top: 0;
font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
text-transform: none;
}
.woocommerce div.product .product-socials-share-wrap {
display: inline-block;
}
.woocommerce div.product .product-socials-share-wrap a {
padding-left: 5px;
padding-right: 5px;
color: #999;
}
.woocommerce div.product .product-socials-share-wrap a:hover,
.woocommerce div.product .product-socials-share-wrap a:focus,
.woocommerce div.product .product-socials-share-wrap a:active {
color: #9ac100;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
padding-left: 0;
margin-bottom: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs:before {
border: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
border-color: #e5e5e5;
border-bottom: none;
border-radius: 0;
background-color: #fff;
margin: 0 -5px;
padding-left: 25px;
padding-right: 25px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:first-child {
margin-left: 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
background: #9ac100;
border-color: #9ac100;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
color: #fff;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
text-transform: uppercase;
padding-top: 12px;
padding-bottom: 12px;
transition: none;
}
.woocommerce div.product .woocommerce-tabs .entry-content {
border: 1px solid #e5e5e5;
padding: 20px;
}
.woocommerce div.product table.shop_attributes td {
padding: 8px;
}
.woocommerce div.product #comments h2 {
color: #9ac100;
margin: 10px 0 50px 0;
}
.woocommerce div.product #comments ol {
list-style: none;
padding: 0;
margin: 0;
}
.woocommerce div.product #comments .comment_container {
margin-bottom: 10px;
min-height: 75px;
padding-bottom: 15px;
padding-left: 85px;
position: relative;
background: #fff;
}
.woocommerce div.product #comments .comment_container .avatar {
position: absolute;
left: 0;
border-radius: 50%;
}
.woocommerce div.product #comments .comment-text {
background: #f8f8f8;
padding: 20px;
border: 1px solid #e1e1e1;
position: relative;
}
.woocommerce div.product #comments .comment-text:before,
.woocommerce div.product #comments .comment-text:after {
position: absolute;
top: 30px;
right: 100%;
border: 1px solid transparent;
content: " ";
width: 0;
height: 0;
pointer-events: none;
}
.woocommerce div.product #comments .comment-text:before {
border-color: transparent;
border-right-color: #e1e1e1;
border-width: 9px;
margin-top: -9px;
}
.woocommerce div.product #comments .comment-text:after {
border-color: transparent;
border-right-color: #f8f8f8;
border-width: 8px;
margin-top: -8px;
}
.woocommerce div.product #comments .comment-text .star-rating {
float: right;
}
.woocommerce div.product #comments .comment-text .meta {
font-style: italic;
}
.woocommerce div.product #comments .comment-text .meta time {
color: #cfcfcf;
}
.woocommerce div.product #comments .comment-text .description {
margin-top: 10px;
padding-top: 10px;
}
.woocommerce #review_form h3.comment-reply-title {
color: #9ac100;
margin-bottom: 20px;
}
.woocommerce #review_form #respond p {
margin-bottom: 20px;
}
.woocommerce #review_form p.stars a {
border-right: 1px solid #e1e1e1;
margin-right: 1em;
}
.woocommerce #review_form p.stars a:last-child {
border-right: none;
}
.woocommerce #review_form p.stars a:before {
font-family: FontAwesome;
}
.woocommerce #review_form p.stars a.star-1 {
width: 2em;
}
.woocommerce #review_form p.stars a.star-1:before {
content: "\f006";
}
.woocommerce #review_form p.stars a.star-1.active:before {
content: "\f005";
}
.woocommerce #review_form p.stars a.star-2 {
width: 3em;
}
.woocommerce #review_form p.stars a.star-2:before {
content: "\f006\f006";
}
.woocommerce #review_form p.stars a.star-2.active:before {
content: "\f005\f005";
}
.woocommerce #review_form p.stars a.star-3 {
width: 4em;
}
.woocommerce #review_form p.stars a.star-3:before {
content: "\f006\f006\f006";
}
.woocommerce #review_form p.stars a.star-3.active:before {
content: "\f005\f005\f005";
}
.woocommerce #review_form p.stars a.star-4 {
width: 5em;
}
.woocommerce #review_form p.stars a.star-4:before {
content: "\f006\f006\f006\f006";
}
.woocommerce #review_form p.stars a.star-4.active:before {
content: "\f005\f005\f005\f005";
}
.woocommerce #review_form p.stars a.star-5 {
width: 6em;
}
.woocommerce #review_form p.stars a.star-5:before {
content: "\f006\f006\f006\f006\f006";
}
.woocommerce #review_form p.stars a.star-5.active:before {
content: "\f005\f005\f005\f005\f005";
}
.woocommerce-product-search {
position: relative;
}
.woocommerce-product-search .search-field {
border-radius: 20px;
}
.woocommerce-product-search button {
color: #e1e1e1;
background: none;
border: none;
padding: 7px;
margin: 0;
position: absolute;
right: 5px;
top: 5px;
}
.woocommerce-product-search button:hover,
.woocommerce-product-search button:focus,
.woocommerce-product-search button:active {
color: #9ac100;
}
.widget_product_categories li.cat-has-image {
margin-bottom: 10px;
min-height: 30px;
position: relative;
}
.widget_product_categories li.cat-has-image:before {
content: "";
}
.widget_product_categories li.cat-has-image>a {
line-height: 30px;
padding-left: 40px;
}
.widget_product_categories li.cat-has-image>a img {
left: 0;
max-height: 100%;
max-width: 30px;
position: absolute;
top: 0;
}
.woocommerce .widget_price_filter .price_slider {
margin-bottom: 10px;
}
.woocommerce .widget_price_filter .ui-slider {
position: relative;
text-align: left;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
background-color: #9ac100;
border: 0 none;
border-radius: 1em;
display: block;
position: absolute;
z-index: 1;
}
.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
background-color: #9ac100;
border-color: 1px solid #9ac100;
border-radius: 1em;
cursor: pointer;
font-size: 1em;
height: 10px;
width: 10px;
top: -3px;
outline: none;
position: absolute;
z-index: 2;
margin-left: -5px;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #d5d5d5;
border-radius: 1em;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-horizontal {
height: 4px;
}
.woocommerce .widget_price_filter .price_slider_wrapper .ui-slider-horizontal .ui-slider-range {
height: 100%;
top: 0;
}
.woocommerce .widget_price_filter .price_label {
margin-top: 15px;
margin-bottom: 20px;
text-align: left;
font-size: 15px;
line-height: 1.5;
}
.widget_top_rated_products ul.product_list_widget li,
.widget_recent_reviews ul.product_list_widget li,
.widget_recently_viewed_products ul.product_list_widget li,
.widget_products ul.product_list_widget li,
.widget_shopping_cart ul.product_list_widget li {
min-height: 70px;
padding-left: 80px;
padding-bottom: 20px;
margin-bottom: 15px;
position: relative;
}
.widget_top_rated_products ul.product_list_widget li a,
.widget_recent_reviews ul.product_list_widget li a,
.widget_recently_viewed_products ul.product_list_widget li a,
.widget_products ul.product_list_widget li a,
.widget_shopping_cart ul.product_list_widget li a {
float: left;
width: 100%;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
text-transform: uppercase;
}
.widget_top_rated_products ul.product_list_widget li a img,
.widget_recent_reviews ul.product_list_widget li a img,
.widget_recently_viewed_products ul.product_list_widget li a img,
.widget_products ul.product_list_widget li a img,
.widget_shopping_cart ul.product_list_widget li a img {
position: absolute;
left: 0;
top: 4px;
width: 70px;
border: 2px solid #e5e5e5;
}
.widget_top_rated_products ul.product_list_widget li .star-rating,
.widget_recent_reviews ul.product_list_widget li .star-rating,
.widget_recently_viewed_products ul.product_list_widget li .star-rating,
.widget_products ul.product_list_widget li .star-rating,
.widget_shopping_cart ul.product_list_widget li .star-rating {
margin-left: 0;
font-size: 13px;
width: 60px;
margin-bottom: 5px;
}
.widget_top_rated_products ul.product_list_widget li .amount,
.widget_recent_reviews ul.product_list_widget li .amount,
.widget_recently_viewed_products ul.product_list_widget li .amount,
.widget_products ul.product_list_widget li .amount,
.widget_shopping_cart ul.product_list_widget li .amount {
color: #fda901;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
font-weight: bold;
}
.widget_top_rated_products ul.product_list_widget li del,
.widget_recent_reviews ul.product_list_widget li del,
.widget_recently_viewed_products ul.product_list_widget li del,
.widget_products ul.product_list_widget li del,
.widget_shopping_cart ul.product_list_widget li del {
color: #333;
}
.widget_top_rated_products ul.product_list_widget li del .amount,
.widget_recent_reviews ul.product_list_widget li del .amount,
.widget_recently_viewed_products ul.product_list_widget li del .amount,
.widget_products ul.product_list_widget li del .amount,
.widget_shopping_cart ul.product_list_widget li del .amount {
color: #333;
font-weight: normal;
font-size: 14.4px;
font-style: italic;
}
.widget_top_rated_products ul.product_list_widget li ins,
.widget_recent_reviews ul.product_list_widget li ins,
.widget_recently_viewed_products ul.product_list_widget li ins,
.widget_products ul.product_list_widget li ins,
.widget_shopping_cart ul.product_list_widget li ins {
text-decoration: none;
}
.amy-widget-module ul.amy-social-list {
padding: 0;
margin: 0;
}
.amy-widget-module ul.amy-social-list li {
display: inline-block;
}
.amy-widget-module ul.amy-social-list li a.fa {
display: inline-block;
width: 33px;
height: 33px;
line-height: 30px;
text-align: center;
border-radius: 50%;
border: 2px solid #dcdcdc;
background: #fff;
color: #d5d5d5;
margin-right: 10px;
}
.amy-widget-module ul.amy-social-list li a.fa:hover {
border-color: #9ac100;
color: #9ac100;
}
.amy-widget-module .amy-instagram-wrap ul {
padding: 0;
margin: 0 -2px;
list-style: none;
}
.amy-widget-module .amy-instagram-wrap ul li {
width: 33.33%;
padding: 0 2px;
margin-bottom: 4px;
display: inline-block;
float: left;
max-height: 85px;
overflow: hidden;
}
.page-sidebar .amy-widget {
margin-bottom: 40px !important;
}
.page-sidebar .amy-widget h4.amy-widget-title {
font-size: 20px;
color: #9ac100;
font-weight: bold;
margin-top: 0;
margin-bottom: 20px;
text-transform: uppercase;
}
.page-sidebar .amy-widget.instagram .amy-instagram-wrap ul li {
max-height: 80px;
overflow: hidden;
}  @keyframes spinner {
to {
transform: rotate(360deg);
}
}
.margin-bottom-20 {
margin-bottom: 20px !important;
}
.margin-bottom-15 {
margin-bottom: 15px !important;
}
.amy-main-content .wpb_image_grid .wpb_image_grid_ul li.isotope-item {
margin-right: 30px;
margin-top: 10px;
}
.img-outside-839-486 .vc_column-inner {
padding-left: 0;
padding-right: 0;
width: 839px;
margin-left: -35%;
margin-bottom: -52px;
position: relative;
z-index: 9;
}
.img-outside-839-486 .vc_column-inner .wpb_single_image {
margin-bottom: 0;
}
#parallax-bg1 {
right: 0;
position: fixed;
top: 500px;
width: 100%;
z-index: 1;
}
@media (max-width: 800px) {
#parallax-bg1 {
display: none;
}
}
#parallax-bg1 .vc_single_image-img {
right: 45px;
position: absolute;
top: 915px;
width: 229px;
}
@media (max-width: 1400px) {
#parallax-bg1 .vc_single_image-img {
width: 110px;
right: 22px;
}
}
.amy-contact-wrapper {
width: 590px;
}
@media (max-width: 1280px) {
.amy-contact-wrapper {
width: 100%;
padding-right: 15px;
}
}
.amy-contact-wrapper h3 {
margin-top: 0;
color: #9ac100;
margin-bottom: 25px;
}
.amy-contact-wrapper label {
display: block;
}
.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded {
color: #9ac100 !important;
background-color: #ffffff !important;
background-image: none !important;
border: 2px solid #e1e1e1 !important;
border-radius: 30px !important;
display: inline-block !important;
padding: 12px 40px !important;
font-size: 15px !important;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
text-transform: uppercase !important;
font-weight: bold;
}
.amytooltip.hint--top:before {
left: calc(50% - 12px);
}
.amytooltip.hint--top:after {
bottom: 100%;
left: 35%;
}
.add_to_cart_button {
text-align: -webkit-center !important;
overflow: hidden;
}
.related.products {
margin-bottom: 40px;
padding-bottom: 0 !important;
}
.screen-reader-text {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
height: 1px;
width: 1px;
overflow: hidden;
}
.screen-reader-text:focus {
background-color: #f1f1f1;
border-radius: 3px;
box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
clip: auto !important;
color: #21759b;
display: block;
font-size: 14px;
font-size: 0.875rem;
font-weight: bold;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
} .gallery-caption {
color: #686868;
display: block;
font-size: 13px;
font-size: 0.8125rem;
font-style: italic;
line-height: 1.6153846154;
padding-top: 0.5384615385em;
}
.gallery-columns-6 .gallery-caption,
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
display: none;
}
.bypostauthor>article .fn:after {
content: "";
left: 3px;
position: relative;
top: 5px;
}
pre {
border: 1px solid #d1d1d1;
font-size: 1rem;
line-height: 1.3125;
margin: 0 0 1.75em;
max-width: 100%;
overflow: auto;
padding: 1.75em;
white-space: pre-wrap;
word-wrap: break-word;
} .amy-organic-blog .entry-info {
margin-bottom: 20px;
color: #999999;
font-size: 14px;
font-style: italic;
display:none;
}
.amy-organic-blog .entry-info a {
color: #999;
}
.amy-organic-blog .entry-info a:hover {
color: #9ac100;
}
.amy-organic-blog .entry-info .space {
padding: 0 6px;
}
.amy-organic-blog .entry-info .author a {
padding-left: 3px;
}
.amy-organic-blog .entry-thumb {
overflow: hidden;
}
.amy-organic-blog .entry-thumb img {
transition: all 0.35s ease 0s;
-webkit-transition: all 0.35s ease 0s;
}
.amy-organic-blog .entry-thumb:hover img {
transform: scale(1.15);
-webkit-transform: scale(1.15);
}
.amy-organic-blog.layout1 .entry-item {
margin-bottom: 20px;
}
.amy-organic-blog.layout1 .entry-thumb {
width: 100%;
min-height: 30px;
}
.amy-organic-blog.layout1 .author-avatar {
margin-left: 28px;
margin-top: -28px;
position: relative;
z-index: 99;
display:none;
}
.amy-organic-blog.layout1 .author-avatar img {
border-radius: 50%;
border: 2px solid #ffffff;
}
.amy-organic-blog.layout1 .entry-title {
font-size: 20px;
margin-top: 10px;
margin-bottom: 10px;
}
.amy-organic-blog.layout1 .entry-title a {
color: #333;
}
.amy-organic-blog.layout1 .entry-title a:hover {
color: #9ac100;
}
.amy-organic-blog.layout1 .entry-summary {
color: #716f6c;
font-size: 15px;
max-height: 65px;
overflow: hidden;
}
.amy-organic-blog.layout2 .entry-title {
font-size: 18px;
margin: 16px 0 7px;
}
.amy-organic-blog.layout2 .entry-title a {
color: #000000;
}
.amy-organic-blog.layout2 .entry-title a:hover {
color: #9ac100;
}
.amy-organic-blog.layout2 .entry-summary {
color: #716f6c;
font-size: 15px;
max-height: 45px;
overflow: hidden;
}
@media (max-width: 980px) {
.amy-organic-blog.layout2 .entry-item {
margin-bottom: 20px;
}
}
.amy-organic-blog.layout2 .in .entry-item {
position: relative;
}
.amy-organic-blog.layout2 .in .entry-thumb {
min-height: 602px;
}
@media (max-width: 980px) {
.amy-organic-blog.layout2 .in .entry-thumb {
min-height: 1px;
}
}
.amy-organic-blog.layout2 .in .entry-content {
padding: 150px 40px 40px;
position: absolute;
bottom: 0%;
left: 0;
background: red;
background: linear-gradient(to bottom, transparent, black);
}
@media (max-width: 980px) {
.amy-organic-blog.layout2 .in .entry-content {
padding: 0;
position: inherit;
background: none;
}
}
.amy-organic-blog.layout2 .in .entry-content .entry-title a {
color: #fff;
}
@media (max-width: 980px) {
.amy-organic-blog.layout2 .in .entry-content .entry-title a {
color: #333;
}
}
.amy-organic-blog.layout2 .in .entry-content .entry-title a:hover {
color: #9ac100;
}
.amy-organic-blog.layout2 .in .entry-summary {
color: #fff;
}
@media (max-width: 980px) {
.amy-organic-blog.layout2 .in .entry-summary {
color: #666;
}
}
@media (max-width: 640px) {
.amy-organic-blog.layout3 .col-md-6 .col-md-6:last-child .entry-content {
margin-bottom: 0px;
}
}
@media (max-width: 640px) {
.amy-organic-blog.layout3 .col-md-6 .col-md-6 .entry-content {
margin-bottom: 30px;
}
}
.amy-organic-blog.layout3 .entry-item {
margin-bottom: 30px;
}
.amy-organic-blog.layout3 .entry-title {
font-size: 22px;
margin-top: 5px;
max-height: 45px;
overflow: hidden;
}
.amy-organic-blog.layout3 .entry-title a {
color: #333;
}
.amy-organic-blog.layout3 .entry-title a:hover {
color: #9ac100;
}
.amy-organic-blog.layout3 .entry-summary {
color: #716f6c;
font-size: 15px;
max-height: 45px;
overflow: hidden;
}
.amy-organic-blog.layout3 a.more {
font-size: 13px;
text-transform: uppercase;
color: #b3b3b3;
font-weight: bold;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
display: inline-block;
margin-top: 20px;
position: relative;
}
.amy-organic-blog.layout3 a.more:hover {
color: #9ac100;
}
.amy-organic-blog.layout3 a.more:after {
position: absolute;
content: "\f178";
font-family: FontAwesome;
right: -17px;
top: 2px;
font-size: 11px;
} .line-bottom {
background: transparent url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/line.png) repeat-x scroll center bottom;
padding-bottom: 10px;
}
.amy-slick button:active {
top: inherit !important;
}
.amy-shortcode-product .amy-shortcode-title {
margin-right: -15px;
margin-left: -15px;
text-align: center;
font-size: 38px;
color: #9ac100;
}
.amy-shortcode-product.vertical {
max-width: 360px;
}
.amy-shortcode-product.vertical .amy-shortcode-title {
margin-right: -15px;
margin-left: -15px;
text-align: left;
}
@media (max-width: 768px) {
.amy-shortcode-product.vertical .amy-shortcode-title {
margin-right: 0px;
margin-left: 0px;
}
}
@media (max-width: 768px) {
.amy-shortcode-product.vertical .amy-product-content.row {
margin-right: 0px;
margin-left: 0px;
}
}
.amy-shortcode-product.vertical .amy-item {
border: none;
}
.amy-shortcode-product.vertical .amy-item:hover {
border: none;
}
.amy-shortcode-product.vertical .amy-item:hover .product-hover .yith-wcwl-add-to-wishlist {
opacity: 1;
transform: none;
}
.amy-shortcode-product.vertical .amy-item:hover .product-hover .compare-button {
opacity: 1;
transform: none;
}
.amy-shortcode-product.vertical .amy-item:hover .product-hover .add_to_cart_button {
opacity: 1;
transform: none;
}
.amy-shortcode-product.vertical .amy-item .product-hover:after {
content: none;
}
.amy-shortcode-product.vertical .amy-item .product-hover .add_to_cart_button {
opacity: 0;
transform: translateY(20px);
transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
transition-delay: 0.1s;
}
.amy-shortcode-product.vertical .amy-item .product-hover .yith-wcwl-add-to-wishlist {
opacity: 0;
transform: translateY(20px);
transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
}
.amy-shortcode-product.vertical .amy-item .product-hover .compare-button {
opacity: 0;
transform: translateY(20px);
transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
transition-delay: 0.2s;
}
.amy-shortcode-product.vertical .slick-arrow {
display: none !important;
}
.amy-shortcode-product.vertical .amy-title {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 24px;
color: #9ac100;
font-weight: bold;
margin-bottom: 30px;
}
.amy-shortcode-product.vertical .amy-item {
margin-bottom: 20px;
}
.amy-shortcode-product.vertical .amy-item .product .product-image {
float: left;
margin-right: 20px;
}
.amy-shortcode-product.vertical .amy-item .product .product-image img {
border: 2px solid #e9e9e9;
width: 140px;
height: 150px;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .product-title {
margin-top: 5px;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .product-title a {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 16px;
color: #333;
font-weight: bold;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .product-title a:hover {
color: #9ac100;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .price .amount {
color: #fda901;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: bold;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .price del .amount {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
color: #999;
font-weight: 400;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .price ins {
text-decoration: none;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .price ins .amount {
color: #fda901;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight: bold;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating {
display: block;
float: none;
overflow: hidden;
font-size: 15px;
line-height: 20px;
position: relative;
font-family: FontAwesome;
height: 20px;
width: 70px;
margin-bottom: 10px;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating:before {
color: #eaeaea;
content: "\f005\f005\f005\f005\f005";
position: absolute;
left: 0;
right: 0;
text-align: center;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating span {
overflow: hidden;
position: absolute;
top: 0;
left: 0;
color: #9ac100;
padding-top: 1.5em;
}
.amy-shortcode-product.vertical .amy-item .product .product-description .star-rating span:before {
position: absolute;
content: "\f005\f005\f005\f005\f005";
left: 0;
top: 0;
text-align: center;
}
.amy-shortcode-product.vertical ul.slick-dots {
position: absolute;
top: -60px;
right: 30px !important;
bottom: inherit !important;
right: 0;
width: auto;
height: auto !important;
padding: 0;
}
.amy-shortcode-product.vertical ul.slick-dots:before {
content: "";
height: 1px;
width: 100px;
background: #e9e9e9;
position: absolute;
top: 5px;
left: -120px;
}
.amy-shortcode-product.vertical ul.slick-dots li {
width: auto;
height: auto;
float: left;
}
.amy-shortcode-product.vertical ul.slick-dots li.slick-active button {
background: #9ac100;
opacity: 1;
}
.amy-shortcode-product.vertical ul.slick-dots li button {
padding: 0;
width: 8px !important;
height: 8px !important;
border-radius: 50%;
background: #eaeaea;
opacity: 1;
}
.amy-shortcode-product.vertical ul.slick-dots li button:before {
content: none;
}
.amy-shortcode-product .amy-product-filter ul {
margin: 0;
padding: 0;
text-align: center;
}
.amy-shortcode-product .amy-product-filter ul li {
cursor: pointer;
display: inline-block;
list-style: none;
margin: 0;
padding: 0 10px;
}
.amy-shortcode-product .amy-product-filter ul li span {
font-size: 16px;
}
.amy-shortcode-product .amy-product-filter ul li.active span {
color: #fda901;
}
.amy-shortcode-product .amy-product-content .amy-item {
opacity: 0;
display: none;
transition: all 0.2s ease-out 0s;
}
.amy-shortcode-product .amy-product-content .amy-item.open {
opacity: 1;
display: block;
}
.amy-shortcode-product.border .amy-item {
margin-left: 13px;
margin-right: 13px;
border: 2px solid #e5e5e5;
padding-bottom: 20px;
}
.amy-shortcode-product.border .amy-item:hover .product-hover .yith-wcwl-add-to-wishlist {
opacity: 1;
transform: none;
}
.amy-shortcode-product.border .amy-item:hover .product-hover .compare-button {
opacity: 1;
transform: none;
}
.amy-shortcode-product.border .amy-item .product-hover {
opacity: 1;
}
.amy-shortcode-product.border .amy-item .product-hover .yith-wcwl-add-to-wishlist {
opacity: 0;
transform: translateY(-65px);
transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
}
.amy-shortcode-product.border .amy-item .product-hover .compare-button {
opacity: 0;
transform: translateY(-65px);
transition: transform 0.5s ease 0s, opacity 0.3s ease 0s;
}
.amy-shortcode-product.horizontal.no_border .amy-product-content {
margin: 0 auto;
}
.amy-shortcode-product.horizontal.no_border.amy-isotope [class*="col"] {
width: 310px !important;
}
@media (max-width: 1600px) {
.amy-shortcode-product.horizontal.no_border.amy-isotope [class*="col"] {
width: 250px !important;
}
}
@media (max-width: 1400px) {
.amy-shortcode-product.horizontal.no_border.amy-isotope [class*="col"] {
width: 220px !important;
}
}
.amy-shortcode-product.horizontal.no_border .amy-item {
float: left;
}
@media (max-width: 768px) {
.amy-shortcode-product.horizontal.no_border .amy-item {
position: initial !important;
}
}
.amy-shortcode-product.horizontal.carousel {
max-width: 1626px;
margin: 0 auto;
}
.amy-shortcode-product.horizontal.carousel .slick-track {
margin: 0 auto;
}
.amy-shortcode-product.horizontal.carousel:hover .slick-arrow {
opacity: 1;
}
@media (max-width: 1400px) {
.amy-shortcode-product.horizontal.carousel {
max-width: 1280px;
}
}
@media (max-width: 1280px) {
.amy-shortcode-product.horizontal.carousel {
max-width: 1200px;
padding: 0 30px;
}
}
.amy-shortcode-product.horizontal.carousel.heading-bottom .amy-shortcode-title {
position: relative;
margin-bottom: 40px;
margin-top: 0;
}
.amy-shortcode-product.horizontal.carousel.heading-bottom .amy-shortcode-title:after {
position: absolute;
content: url(//santanaturopatia.com.br/wp-content/themes/amy-organic/images/line-heading-bottom.png);
top: 36px;
left: 0;
right: 0;
margin: 0 auto;
}
.amy-shortcode-product.horizontal.carousel .slick-arrow {
background: #fff;
z-index: 99;
opacity: 0;
}
.amy-shortcode-product.horizontal.carousel .slick-prev {
width: 46px;
height: 46px;
line-height: 40px;
border: 2px solid #c8c8c8;
left: -78px;
top: 50% !important;
position: absolute;
}
@media (max-width: 1400px) {
.amy-shortcode-product.horizontal.carousel .slick-prev {
left: -10px;
}
}
.amy-shortcode-product.horizontal.carousel .slick-prev:before {
font-family: FontAwesome;
color: #c8c8c8;
content: "\f104";
line-height: 40px;
}
.amy-shortcode-product.horizontal.carousel .slick-next {
width: 46px;
height: 46px;
line-height: 40px;
border: 2px solid #c8c8c8;
right: -78px;
top: 50% !important;
position: absolute;
}
@media (max-width: 1400px) {
.amy-shortcode-product.horizontal.carousel .slick-next {
right: -10px;
}
}
.amy-shortcode-product.horizontal.carousel .slick-next:before {
font-family: FontAwesome;
color: #c8c8c8;
content: "\f105";
line-height: 40px;
}
.amy-shortcode-product.horizontal.border .amy-product-filter {
margin-bottom: 40px;
}
@media (max-width: 768px) {
.amy-shortcode-product.horizontal.border .amy-product-filter {
margin-bottom: 20px;
}
}
.amy-shortcode-product.horizontal .amy-product-filter ul li {
padding: 0 30px;
margin-bottom: 10px;
text-transform: uppercase;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
}
.amy-shortcode-product.horizontal .amy-product-filter ul li:hover {
color: #fda901;
}
.amy-shortcode-product.horizontal .amy-product-filter ul li img {
width: 58px;
height: 50px;
}
.amy-shortcode-product.horizontal .amy-product-filter ul li span {
display: block;
margin-top: 10px;
}
@media (max-width: 768px) {
.amy-shortcode-product.horizontal .amy-product-filter ul li span {
font-size: 13px;
}
}
@media (max-width: 768px) {
.amy-shortcode-product.horizontal .amy-product-filter ul li {
padding: 0 20px;
}
}
.amy-shortcode-product.horizontal .amy-item {
margin-bottom: 30px;
}
.amy-shortcode-product.horizontal .amy-item .product {
text-align: center;
}
.amy-shortcode-product.horizontal .amy-item .product .product-image {
min-height: 177px;
}
@media (max-width: 768px) {
.amy-shortcode-product.horizontal .amy-item .product .product-image {
min-height: auto;
}
}
.amy-shortcode-product.horizontal .amy-item .product .product-description {
text-align: center;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .product-title a {
color: #333;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 18px;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .product-title a:hover {
color: #fda901;
}
@media (max-width: 768px) {
.amy-shortcode-product.horizontal .amy-item .product .product-description .product-title a {
font-size: 14px;
}
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .price {
display: block;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .price del .amount {
color: #999;
font-size: 15px;
font-weight: 400;
margin-right: 5px;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .price ins {
text-decoration: none;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .price .amount {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fda901;
font-size: 20px;
font-weight: bold;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading {
font-size: 0;
background: #9ac100;
color: #fff;
display: inline-block;
text-align: center;
vertical-align: middle;
border: 1px solid #9ac100;
border-radius: 50%;
z-index: 1;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button:before,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading:before {
font-family: FontAwesome;
font-size: 14px;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button:hover,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading:hover {
background: #fff;
border-color: #9ac100;
color: #9ac100;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button:hover:after,
.amy-shortcode-product.horizontal .amy-item .product .product-description .add_to_cart_button.loading:hover:after {
border-color: #fff;
transition: all 0.2s ease-in-out 0s;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button {
width: 40px;
height: 40px;
line-height: 40px;
padding: 0;
margin-top: 25px;
position: relative;
z-index: 9;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.loading {
width: 40px !important;
height: 40px !important;
line-height: 40px !important;
font-family: FontAwesome;
animation: spinner 1.5s linear infinite !important;
-webkit-animation: spinner 1.5s linear infinite !important;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.loading:after {
content: none;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.loading:before {
content: "\f021";
font-size: 14px;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button.added {
display: none;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button:after {
content: "";
height: 1px;
width: 165px;
border-top: 1px dotted #9ac100;
position: absolute;
top: 20px;
left: -65px;
z-index: -1;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.add_to_cart_button:before {
content: "\f291";
font-size: 15px;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.added_to_cart {
display: block;
height: 40px;
line-height: 40px;
margin-top: 25px;
margin-bottom: 5px;
padding: 0;
position: relative;
width: 40px;
z-index: 9;
border-radius: 50%;
background: #fda901;
border: 1px solid #fda901;
color: #ffffff;
display: inline-block;
font-size: 0;
text-align: center;
vertical-align: middle;
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.added_to_cart:before {
font-family: FontAwesome;
font-size: 15px;
content: "\f00c";
}
.amy-shortcode-product.horizontal .amy-item .product .product-description a.added_to_cart:after {
content: "";
height: 1px;
width: 165px;
border-top: 1px dotted #fda901;
position: absolute;
top: 20px;
left: -65px;
z-index: -1;
}
@media (max-width: 980px) {
.amy-shortcode-product {
padding: 0 20px;
}
}
.amy-shortcode-product .amy-item {
padding-bottom: 20px;
cursor: pointer;
border: 2px solid rgba(229, 229, 229, 0);
}
.amy-shortcode-product .amy-item:hover {
border: 2px solid #e5e5e5;
}
.amy-shortcode-product .amy-item:hover .product-hover {
opacity: 1;
}
.amy-shortcode-product .amy-item .product-hover {
opacity: 0;
}
.amy-shortcode-product .product-hover {
margin-top: 10px;
position: relative;
}
.amy-shortcode-product .product-hover:after {
content: "";
position: absolute;
display: block;
width: 90%;
height: 1px;
border-top: 1px dotted #9ac100;
top: 22px;
left: 0;
right: 0;
margin: 0 auto;
}
.amy-shortcode-product .compare-button {
display: inline-block;
}
.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a,
.amy-shortcode-product a.compare {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
padding: 0;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #e6e6e6;
margin-right: 10px;
margin-bottom: 0;
border-radius: 50%;
z-index: 99;
position: relative;
}
.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a:hover,
.amy-shortcode-product a.compare:hover {
background: #9ac100;
}
.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover:before,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a:hover:before,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a:hover:before,
.amy-shortcode-product a.compare:hover:before {
color: #fff;
}
.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a:before,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a:before,
.amy-shortcode-product a.compare:before {
font-family: FontAwesome;
font-size: 14px;
}
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse .feedback,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse .feedback {
display: none;
}
.amy-shortcode-product .yith-wcwl-wishlistaddedbrowse a,
.amy-shortcode-product .yith-wcwl-wishlistexistsbrowse a {
color: #fda901;
border-color: #eee;
}
.amy-shortcode-product .yith-wcwl-add-to-wishlist {
margin-top: 0;
margin-right: -4px;
display: inline-block;
}
.amy-shortcode-product .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-shortcode-product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.amy-shortcode-product .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
content: "\f004";
}
.amy-shortcode-product .yith-wcwl-add-to-wishlist .ajax-loading {
display: none !important;
}
.amy-shortcode-product a.compare {
margin-right: 0;
}
.amy-shortcode-product a.compare:before {
content: "\f074";
}
.amy-shortcode-product .product-hover .add_to_cart_button.loading {
width: 40px !important;
height: 40px !important;
line-height: 40px !important;
font: normal normal normal 14px/1 FontAwesome;
animation: spinner 1.5s linear infinite !important;
-webkit-animation: spinner 1.5s linear infinite !important;
}
.amy-shortcode-product .product-hover .add_to_cart_button.loading:before {
content: "\f021";
}
.amy-shortcode-product .product-hover .add_to_cart_button,
.amy-shortcode-product .product-hover .add_to_cart_button.loading,
.amy-shortcode-product .product-hover .added_to_cart {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
padding: 0;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #e6e6e6;
margin-right: 10px;
border-radius: 50%;
z-index: 99;
position: relative;
}
.amy-shortcode-product .product-hover .add_to_cart_button:before,
.amy-shortcode-product .product-hover .add_to_cart_button.loading:before,
.amy-shortcode-product .product-hover .added_to_cart:before {
font-family: FontAwesome;
font-size: 14px;
}
.amy-shortcode-product .product-hover .add_to_cart_button.added {
display: none;
}
.amy-shortcode-product .product-hover .added_to_cart:before {
color: #fda901;
}
.amy-shortcode-product .product-hover a.add_to_cart_button,
.amy-shortcode-product .product-hover a.added_to_cart {
width: 40px;
height: 40px;
line-height: 40px;
}
.amy-shortcode-product .product-hover a.add_to_cart_button:hover,
.amy-shortcode-product .product-hover a.added_to_cart:hover {
background: #9ac100;
}
.amy-shortcode-product .product-hover a.add_to_cart_button:hover:before,
.amy-shortcode-product .product-hover a.added_to_cart:hover:before {
color: #fff;
}
.amy-shortcode-product .product-hover a.add_to_cart_button:before,
.amy-shortcode-product .product-hover a.added_to_cart:before {
content: "\f291";
font-size: 15px;
} .amy-organic-attributes {
position: relative;
}
.amy-organic-atribute-item {
background: #9ac100;
border-radius: 100%;
display: inline-block;
height: 40px;
left: 50%;
margin: -25px 0 0 -25px;
position: absolute;
text-indent: -9999px;
top: 50%;
transition: all 1s ease 0s;
width: 40px;
}
@media (max-width: 1280px) {
.amy-organic-atribute-item.custom {
display: none;
}
}
.amy-organic-atribute-item img {
border-radius: 50%;
}
.amy-organic-atribute-item.has-icon {
text-indent: inherit;
}
.amy-organic-atribute-item.has-icon .amy-atribute-hidden {
text-indent: -999em;
}
.amy-organic-atribute-item.has-icon.active .amy-atribute-hidden {
text-indent: inherit;
}
.amy-organic-atribute-item.has-icon.active>img {
display: none;
}
.amy-organic-atribute-item.tl {
left: 22%;
top: 20%;
}
.amy-organic-atribute-item.tc {
top: 15%;
}
.amy-organic-atribute-item.tr {
left: auto;
right: 10%;
top: 32%;
}
.amy-organic-atribute-item.br {
left: auto;
top: auto;
bottom: 45px;
right: 20%;
}
.amy-organic-atribute-item.bl {
left: 22%;
top: auto;
bottom: 45px;
}
.amy-organic-atribute-item.bc {
left: 50%;
top: auto;
bottom: 45px;
}
.amy-organic-atribute-item.active {
height: 220px;
margin-left: -110px;
margin-top: -110px;
text-indent: inherit;
width: 220px;
}
.amy-organic-atribute-item.active:after,
.amy-organic-atribute-item.active:before {
display: none;
}
.amy-organic-atribute-item:after,
.amy-organic-atribute-item:before {
background-color: #fff;
content: "";
left: 50%;
position: absolute;
top: 50%;
}
.amy-organic-atribute-item:after {
height: 17px;
margin: -8.5px 0 0 -1.5px;
width: 3px;
}
.amy-organic-atribute-item:before {
height: 3px;
margin: -1.5px 0 0 -8.5px;
width: 17px;
}
.amy-organic-atribute-item em.animated {
border: 5px solid rgba(255, 255, 255, 0.5);
border-radius: 50%;
bottom: -5px;
content: "";
left: -5px;
position: absolute;
right: -5px;
top: -5px;
z-index: 2;
background: #9ac100;
}
.amy-organic-atribute-item .amy-atribute-hidden {
border: 3px solid white;
border-radius: 100%;
bottom: 0px;
box-sizing: border-box;
left: 0px;
line-height: 22px;
overflow: hidden;
padding: 0px;
margin: -3px;
position: absolute;
right: 0px;
text-align: center;
top: 0px;
z-index: 3;
cursor: pointer;
color: #ffffff;
}
.amy-organic-atribute-item .amy-atribute-hidden h3 {
margin-top: 50px;
} .bullets {
animation-name: bullets;
animation-duration: 1.5s;
}
@keyframes bullets {
0% {
transform: scale(1);
opacity: 0.6;
}
100% {
transform: scale(2);
opacity: 0;
}
} .amy-productcountdown {
position: relative;
background: #ffffff;
padding: 43px 50px 43px 90px;
box-shadow: 0 0 40px #ccc;
min-height: 424px;
}
@media (max-width: 1280px) {
.amy-productcountdown {
padding: 60px 15px 60px 60px;
}
}
@media (max-width: 768px) {
.amy-productcountdown {
padding: 60px 15px 60px 100px;
}
}
.amy-productcountdown .product-time {
position: absolute;
left: -36px;
top: 30px;
background: #9ac100;
border-radius: 40px;
}
@media (max-width: 768px) {
.amy-productcountdown .product-time {
left: 0;
}
}
.amy-productcountdown .product-time ul {
margin: 0;
padding: 0;
}
.amy-productcountdown .product-time ul li {
list-style: none;
display: block;
padding: 20px 0;
margin: 0 20px;
text-align: center;
font-size: 15px;
font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #fff;
border-bottom: 1px solid #c8dd73;
}
.amy-productcountdown .product-time ul li:last-child {
border-bottom: none;
}
.amy-productcountdown .product-time ul li span {
display: block;
font-size: 26px;
font-weight: 700;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.amy-productcountdown .product-item:after {
clear: both;
content: " ";
display: table;
}
.amy-productcountdown .product-item:before {
content: " ";
display: table;
}
.amy-productcountdown .product-item .saleup {
font-family: "Dancing Script", cursive;
font-size: 25px;
color: #666666;
font-weight: bold;
margin-bottom: 5px;
}
.amy-productcountdown .product-item .saleup .roundprice {
color: #9ac100;
}
.amy-productcountdown .product-item .product-title {
margin-top: 0;
margin-bottom: 15px;
}
.amy-productcountdown .product-item .product-title a {
color: #333;
font-size: 32px;
font-weight: bold;
text-transform: uppercase;
}
.amy-productcountdown .product-item .product-title a:hover {
color: #fda901;
}
.amy-productcountdown .product-item .price {
display: inline-block;
float: left;
}
.amy-productcountdown .product-item .price .amount {
font-size: 32px;
color: #fda901;
font-weight: bold;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
text-decoration: none;
}
.amy-productcountdown .product-item .price del .amount {
color: #999999;
font-size: 17px;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
margin-right: 15px;
}
.amy-productcountdown .product-item .price ins {
text-decoration: none;
}
.amy-productcountdown .product-item .price ins .amount {
font-size: 32px;
color: #fda901;
font-weight: bold;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
text-decoration: none;
}
.amy-productcountdown .product-item .product-description {
margin-bottom: 40px;
}
@media (max-width: 640px) {
.amy-productcountdown .product-item .product-description {
margin-bottom: 20px;
}
}
.amy-productcountdown .product-item .product-description ul {
list-style: none;
padding: 0;
margin: 0;
}
.amy-productcountdown .product-item .product-description ul li {
padding-left: 1em;
text-indent: -.7em;
}
.amy-productcountdown .product-item .product-description ul li:before {
content: "• ";
color: #9ac100;
}
.amy-productcountdown .product-item .product-buttons {
display: inline-block;
float: right;
position: relative;
padding: 0 50px;
}
@media (max-width: 480px) {
.amy-productcountdown .product-item .product-buttons {
padding: 0 20px;
float: none;
margin: 0 auto;
}
}
.amy-productcountdown .product-item .product-buttons:after {
position: absolute;
content: "";
height: 1px;
width: 100%;
border-top: 1px dotted #9ac100;
top: 50%;
left: 0;
z-index: 0;
}
.amy-productcountdown .product-item .product-buttons .add_to_cart_button,
.amy-productcountdown .product-item .product-buttons .add_to_cart_button.loading {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #9ac100;
margin-right: 10px;
border-radius: 50%;
z-index: 1;
}
.amy-productcountdown .product-item .product-buttons .add_to_cart_button:before,
.amy-productcountdown .product-item .product-buttons .add_to_cart_button.loading:before {
font-family: FontAwesome;
font-size: 14px;
}
.amy-productcountdown .product-item .product-buttons .add_to_cart_button:hover,
.amy-productcountdown .product-item .product-buttons .add_to_cart_button.loading:hover {
background: #9ac100;
border-color: #9ac100;
color: #fff;
}
.amy-productcountdown .product-item .product-buttons a.add_to_cart_button {
width: 40px;
height: 40px;
line-height: 40px;
padding: 0;
position: relative;
z-index: 9;
}
.amy-productcountdown .product-item .product-buttons a.add_to_cart_button.loading {
width: 40px !important;
height: 40px !important;
line-height: 40px !important;
font-family: FontAwesome;
animation: spinner 1.5s linear infinite !important;
-webkit-animation: spinner 1.5s linear infinite !important;
}
.amy-productcountdown .product-item .product-buttons a.add_to_cart_button.loading:before {
content: "\f021";
font-size: 14px;
}
.amy-productcountdown .product-item .product-buttons a.add_to_cart_button.added {
display: none;
}
.amy-productcountdown .product-item .product-buttons a.add_to_cart_button:before {
content: "\f291";
font-size: 15px;
}
.amy-productcountdown .product-item .product-buttons .added_to_cart.wc-forward {
display: block;
height: 40px;
line-height: 40px;
margin-right: 10px;
padding: 0;
position: relative;
width: 40px;
z-index: 9;
border-radius: 50%;
background: #fda901;
border: 1px solid #fda901;
color: #ffffff;
display: inline-block;
font-size: 0;
text-align: center;
vertical-align: middle;
}
.amy-productcountdown .product-item .product-buttons .added_to_cart.wc-forward:before {
font-family: FontAwesome;
font-size: 15px;
content: "\f00c";
}
.amy-productcountdown .product-item .product-buttons .added_to_cart.wc-forward:hover {
color: #fda901;
background: #fff;
}
.amy-productcountdown .product-item .product-buttons .compare-button {
display: inline-block;
margin-bottom: 0;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a,
.amy-productcountdown .product-item .product-buttons a.compare {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #9ac100;
margin-right: 10px;
border-radius: 50%;
z-index: 9;
position: relative;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:before,
.amy-productcountdown .product-item .product-buttons a.compare:before {
font-family: FontAwesome;
font-size: 14px;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover,
.amy-productcountdown .product-item .product-buttons a.compare:hover {
background: #9ac100;
color: #fff;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse .feedback,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse .feedback {
display: none;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a {
color: #fda901;
border-color: #fda901;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover {
border-color: #9ac100;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist {
margin-top: 0;
margin-right: -4px;
display: inline-block;
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
content: "\f004";
}
.amy-productcountdown .product-item .product-buttons .yith-wcwl-add-to-wishlist .ajax-loading {
display: none !important;
}
.amy-productcountdown .product-item .product-buttons a.compare {
margin-right: 0;
}
.amy-productcountdown .product-item .product-buttons a.compare:before {
content: "\f074";
}
.amy-productcountdown.default {
background: #9ac100;
color: #ffffff;
}
.amy-productcountdown.default .product-item .saleup {
color: #e5e5e5;
}
.amy-productcountdown.default .product-item .saleup .roundprice {
color: #ffffff;
}
.amy-productcountdown.default .product-item .product-description ul li:before {
content: "• ";
color: #fff;
}
.amy-productcountdown.default .product-item .price del .amount {
color: #e5e5e5;
}
.amy-productcountdown.default .product-item .price ins {
text-decoration: none;
}
.amy-productcountdown.default .product-item .price ins .amount {
color: #f05a29;
}
.amy-productcountdown.default .product-item .product-buttons:after {
border-top: 1px dotted #fff;
}
.amy-productcountdown.default .product-item .product-buttons .add_to_cart_button {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #9ac100;
margin-right: 10px;
border-radius: 50%;
z-index: 1;
}
.amy-productcountdown.default .product-item .product-buttons .add_to_cart_button:before {
font-family: FontAwesome;
font-size: 14px;
}
.amy-productcountdown.default .product-item .product-buttons .add_to_cart_button:hover {
background: #9ac100;
border-color: #9ac100;
color: #fff;
}
.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button {
width: 40px;
height: 40px;
line-height: 40px;
padding: 0;
position: relative;
z-index: 9;
}
.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button.loading {
width: 40px !important;
height: 40px !important;
line-height: 40px !important;
font-family: FontAwesome;
animation: spinner 1.5s linear infinite !important;
-webkit-animation: spinner 1.5s linear infinite !important;
}
.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button.loading:before {
content: "\f021" !important;
font-size: 14px;
}
.amy-productcountdown.default .product-item .product-buttons a.add_to_cart_button:before {
content: "\f291";
font-size: 15px;
}
.amy-productcountdown.default .product-item .product-buttons .added_to_cart.wc-forward:hover {
color: #fda901;
}
.amy-productcountdown.default .product-item .product-buttons .compare-button {
display: inline-block;
margin-bottom: 0;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a,
.amy-productcountdown.default .product-item .product-buttons a.compare {
font-size: 0;
background: #fff;
color: #9ac100;
display: inline-block;
width: 36px;
height: 36px;
line-height: 36px;
text-align: center;
vertical-align: middle;
border: 1px solid #9ac100;
margin-right: 10px;
border-radius: 50%;
z-index: 1;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:before,
.amy-productcountdown.default .product-item .product-buttons a.compare:before {
font-family: FontAwesome;
font-size: 14px;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:hover,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover,
.amy-productcountdown.default .product-item .product-buttons a.compare:hover {
background: #9ac100;
color: #fff;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse .feedback,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse .feedback {
display: none;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a {
color: #fda901;
border-color: #fda901;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistaddedbrowse a:hover,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-wishlistexistsbrowse a:hover {
border-color: #9ac100;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist {
margin-top: 0;
margin-right: -4px;
display: inline-block;
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist a.add_to_wishlist:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a:before,
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a:before {
content: "\f004";
}
.amy-productcountdown.default .product-item .product-buttons .yith-wcwl-add-to-wishlist .ajax-loading {
display: none !important;
}
.amy-productcountdown.default .product-item .product-buttons a.compare {
margin-right: 0;
}
.amy-productcountdown.default .product-item .product-buttons a.compare:before {
content: "\f074";
}
.amy-productcountdown.default .product-time {
background: transparent;
border-radius: 0;
}
.amy-productcountdown.default .product-time ul {
margin: 0;
padding: 0;
}
.amy-productcountdown.default .product-time li {
list-style: none;
display: block;
padding: 5px 18px;
margin: 0 0 20px 0;
text-align: center;
font-size: 15px;
font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
color: #9ac100;
border-bottom: 2px solid #9ac100;
border: 2px solid #9ac100;
background: #ffffff;
border-radius: 10px;
border-bottom-left-radius: 0;
color: #666666;
}
.amy-productcountdown.default .product-time li:last-child {
border-bottom: 2px solid #9ac100;
}
.amy-productcountdown.default .product-time li span {
display: block;
font-size: 26px;
font-weight: 700;
color: #9ac100;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
} .amy-organic-team {
padding: 0;
}
.amy-organic-team .amy-member {
text-align: center;
margin-bottom: 30px;
}
.amy-organic-team .amy-member .entry-avatar {
max-height: 203px;
overflow: hidden;
}
.amy-organic-team .amy-member .entry-avatar img {
border-radius: 50%;
height: 264px;
width: 264px;
border: 3px solid #9ac100;
}
.amy-organic-team .amy-member .entry-content .entry-name {
color: #ffffff;
font-size: 18px;
font-weight: 700;
}
.amy-organic-team .amy-member .entry-content .entry-position {
color: #d7e894;
font-size: 14px;
text-transform: none;
}
.amy-organic-team .amy-member .entry-content .social {
margin-top: 10px;
}
.amy-organic-team .amy-member .entry-content .social ul {
padding: 0;
margin: 0;
}
.amy-organic-team .amy-member .entry-content .social ul li {
list-style: none;
display: inline;
}
.amy-organic-team .amy-member .entry-content .social ul li a {
color: #ffffff;
display: inline-block;
margin: 0 10px;
font-size: 16px;
}
.amy-organic-team .amy-member .entry-content .social ul li a:hover {
color: #fda901;
} .amy-align-center {
text-align: center;
}
.amy-testimonials.slide {
margin-bottom: 25px;
padding-bottom: 35px;
}
.amy-testimonials.slide.row {
margin-right: -45px;
margin-left: -45px;
}
.amy-testimonials.slide .amy-item {
margin-bottom: 0;
padding-left: 45px;
padding-right: 45px;
}
.amy-testimonials.slide .amy-item.one-column {
padding: 0 200px;
}
@media (max-width: 768px) {
.amy-testimonials.slide .amy-item.one-column {
padding: 0 20px;
}
}
.amy-testimonials.slide .amy-item.one-column.avatar-left {
position: relative;
}
.amy-testimonials.slide .amy-item.one-column.avatar-left .amy-testimonial-avatar {
position: absolute;
left: 115px;
top: 40px;
}
.amy-testimonials.slide .amy-item.one-column.avatar-right {
position: relative;
}
.amy-testimonials.slide .amy-item.one-column.avatar-right .amy-testimonial-avatar {
position: absolute;
right: 115px;
top: 40px;
}
.amy-testimonials.slide .amy-item.one-column .amy-testimonial-avatar {
margin-bottom: 15px;
}
.amy-testimonials.slide .amy-item.one-column .amy-testimonial-avatar img {
margin: 0 auto;
width: 68px;
height: 68px;
}
.amy-testimonials.slide .amy-item.one-column .amy-testimonial-testimonial {
font-style: italic;
font-size: 18px;
margin-bottom: 25px;
}
.amy-testimonials.slide .amy-item.one-column .amy-testimonial-testimonial .fa {
margin-bottom: 10px;
}
.amy-testimonials.slide .amy-item.one-column .amy-testimonial-user .amy-testimonial-author .amy-testimonial-name {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
font-size: 20px;
margin-right: 5px;
position: relative;
}
.amy-testimonials.slide .amy-item.one-column .amy-testimonial-user .amy-testimonial-author .amy-testimonial-name:before {
content: "_";
position: absolute;
right: -3px;
bottom: 0;
}
.amy-testimonials.slide .amy-item.one-column .amy-testimonial-user .amy-testimonial-author .amy-testimonial-position {
font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-style: italic;
font-size: 15px;
color: #e5e5e5;
}
.amy-testimonials.slide .amy-item.multi-column.avatar-right .amy-testimonial-content {
width: 78%;
text-align: right;
}
.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content header {
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
font-size: 20px;
color: #fff;
text-transform: uppercase;
margin-bottom: 30px;
}
.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content .amy-testimonial-name {
display: inline-block;
position: relative;
}
.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content .amy-testimonial-name:after {
content: "";
width: 40px;
height: 2px;
background: #ffffff;
position: absolute;
left: 0;
bottom: -15px;
}
.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-content .position {
color: #c6e54a;
}
.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-testimonial {
margin-bottom: 15px;
}
.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-testimonial .fa {
color: #c6e54a;
font-size: 20px;
}
.amy-testimonials.slide .amy-item.multi-column .amy-testimonial-avatar img {
border: 2px solid #ffffff;
}
.amy-testimonials.slide .amy-item.multi-column.avatar-left .amy-testimonial-content {
margin-left: 120px;
}
.amy-testimonials.slide .amy-item.multi-column.avatar-left .amy-testimonial-avatar {
margin-right: 20px;
}
.amy-testimonials.slide .amy-item.multi-column.avatar-left .amy-testimonial-avatar img {
border: 2px solid #ffffff;
}
.amy-testimonials.slide .slick-dots {
bottom: 0;
}
.amy-testimonials.slide .slick-dots li {
width: 10px;
height: 10px;
margin: 0 5px;
}
.amy-testimonials.slide .slick-dots li.slick-active button {
background: #fff;
}
.amy-testimonials.slide .slick-dots li button {
width: 10px;
height: 10px;
background: rgba(255, 255, 255, 0.3);
}
.amy-testimonials.slide .slick-dots li button:before {
content: none;
}
.amy-testimonials .slick-arrow {
display: none !important;
}
.amy-testimonials.list .amy-item {
margin-bottom: 15px;
padding-bottom: 15px;
border-bottom: 1px dotted #f9f9f9;
}
.amy-testimonials.list .amy-item .amy-testimonial-right.right {
width: 89%;
float: left;
margin-right: 0;
text-align: right;
}
.amy-testimonials .amy-testimonial-avatar img {
border-radius: 50% !important;
}
.amy-testimonials.grid .amy-testimonial-content.right {
width: 76%;
text-align: right;
}
.slidesync {
text-align: center;
}
.slidesync .amy-testimonials-nav {
width: 500px;
margin: 0 auto 20px auto;
}
@media (max-width: 480px) {
.slidesync .amy-testimonials-nav {
width: 100%;
}
}
.slidesync .amy-testimonials-nav .slick-arrow {
display: none !important;
}
.slidesync .amy-testimonials-nav .slick-dots {
display: none !important;
}
.slidesync .amy-testimonials-nav .amy-slide-item {
width: 30%;
}
.slidesync .amy-testimonials-nav .amy-slide-item .amy-testimonial-avatar {
width: 100px;
height: 100px;
border-radius: 50%;
margin-top: 10px;
margin-right: auto;
margin-left: auto;
cursor: pointer;
opacity: 0.5;
}
.slidesync .amy-testimonials-nav .amy-slide-item .amy-testimonial-avatar img {
width: 100%;
height: 100%;
}
.slidesync .amy-testimonials-nav .amy-slide-item.slick-active.slick-current .amy-testimonial-avatar {
opacity: 1;
margin-top: 0;
width: 120px;
height: 120px;
}
.slidesync .amy-slider-for {
padding: 0 20px;
}
.slidesync .amy-slider-for .amy-testimonial-testimonial {
font-size: 18px;
}
.slidesync .amy-slider-for .amy-testimonial-name {
font-size: 20px;
color: #fff;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: bold;
position: relative;
margin-top: 30px;
}
.slidesync .amy-slider-for .amy-testimonial-name:before {
content: "";
width: 50px;
height: 2px;
background: #9ac100;
position: absolute;
top: -10px;
left: 0;
right: 0;
margin: 0 auto;
display: inline-block;
}
.slidesync .amy-slider-for .amy-testimonial-name .position {
font-family: ABeeZee, "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 15px;
color: #999;
}
.slidesync .amy-slider-for .slick-dots {
width: 98%;
bottom: -25px;
}
.slidesync .amy-slider-for .slick-dots li.slick-active button {
background: #fff;
}
.slidesync .amy-slider-for .slick-dots li button {
width: 10px;
height: 10px;
background: rgba(255, 255, 255, 0.3);
}
.slidesync .amy-slider-for .slick-dots li button:before {
content: none;
} .amy-organic-heading {
text-align: center;
margin-bottom: 50px;
}
.amy-organic-heading h3 {
margin-top: 0;
line-height: 82%;
}
.amy-organic-heading p {
margin-bottom: 0;
} .amy-organic-image-hover {
text-align: center;
}
@media (max-width: 768px) {
.amy-organic-image-hover {
margin-bottom: 20px;
}
}
.amy-organic-image-hover .hover-img {
display: none;
}
.amy-organic-image-hover .active-img {
display: inline-block;
}
.amy-organic-image-hover:hover .hover-img {
display: inline-block;
}
.amy-organic-image-hover:hover .active-img {
display: none;
} .amy-organic-custom-content .amy-content br {
margin-bottom: 15px;
}
.amy-organic-custom-content .amy-shortcode-title {
position: relative;
display: inline-block;
margin: 0 0 60px 0;
}
.amy-organic-custom-content .title-first {
font-size: 35px;
font-weight: bold;
color: #333;
display: inline-block;
}
.amy-organic-custom-content .title-last {
text-align: right;
font-size: 35px;
font-weight: bold;
color: #9ac100;
position: absolute;
top: 38px;
right: -70px;
}
.amy-organic-custom-content .readmore {
display: block;
font-size: 18px;
font-weight: bold;
color: #9ac100;
font-family: Dosis, "Helvetica Neue", Helvetica, Arial, sans-serif;
position: relative;
padding: 0 25px;
margin-top: 30px;
}
.amy-organic-custom-content .readmore:before {
position: absolute;
left: 0;
top: 5px;
content: "\f178";
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.amy-organic-custom-content .readmore:hover {
color: #fda901;
}