@charset "UTF-8";
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-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-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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body {
  padding: 0;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.alignright {
  float: right;
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

.alignleft {
  float: left;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.bold, strong, b {
  font-weight: bold;
}

.undo-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.undo-li {
  margin-bottom: 0;
  list-style: none;
  list-style-type: none;
}

.undo-p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-height: 100%;
}

.clearfix:after, .cf:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.flat-left {
  padding-left: 0;
}

.flat-right {
  padding-right: 0;
}

.flat-both {
  padding-left: 0;
  padding-right: 0;
}

.flat-top {
  padding-top: 0;
}

.flat-bottom {
  padding-bottom: 0;
}

.flat-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.float-none {
  float: none !important;
}

@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields,
.page-template-form-prize form .gform_body .gform_fields,
.page-template-form-confirmation form .gform_body .gform_fields, #code-form .gform_wrapper .gform_body ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-full,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-full,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-full, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-half,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-half,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-half, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-third,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-third,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-third, .col,
.col-auto, .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, .col-sm,
.col-sm-auto, .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, .col-md,
.col-md-auto, .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, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-full,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-full,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-full, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-half,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-half,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-half, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-third,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-third,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-third {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-third,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-third,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-half,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-half,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Drop shadows
 */
/*
 * Remove mobile/iOS default buttons
 */
/*- Couleurs de noël -*/
/*- Jeu de noel -*/
@font-face {
  font-family: "Trace quebecois";
  src: url("../fonts/Tracequebecois.ttf") format("truetype"), url("../fonts/Tracequebecois.woff") format("woff"), url("../fonts/Tracequebecois.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*- font -*/
/*
 * Fonts
 */
@font-face {
  font-family: "Mont";
  src: url("../../fw/core/login/fonts/Mont/Mont-Regular.woff") format("woff");
}
@font-face {
  font-family: "Mont Bold";
  src: url("../../fw/core/login/fonts/Mont/Mont-Bold.woff") format("woff");
}
@font-face {
  font-family: "Mont Heavy";
  src: url("../../fw/core/login/fonts/Mont/Mont-Heavy.woff") format("woff");
}
/*- Font sizes -*/
/*- transition -*/
/*- margins -*/
html, body {
  font: 20px/2em "rubrik-edge-new", sans-serif;
  color: #032D40;
  overflow-x: hidden;
}
html.active .main-nav, body.active .main-nav {
  transform: translateX(0);
}

body.shop-notice-enabled #header {
  top: 70px;
}
body.shop-notice-enabled #header.shrink {
  top: 0 !important;
}
body.shop-notice-enabled #main {
  margin-top: 70px;
}
body.shop-notice-enabled .half-banner {
  margin-top: -60px;
}

#main {
  position: relative;
  z-index: 50;
  overflow: hidden;
}
#main.shrink .workshop-slice {
  min-height: calc(100vh - 120px);
}

h1 {
  font: 60px/1.22em "fatfrank", sans-serif;
}

h2 {
  font: 42px/1.25em "fatfrank", sans-serif;
}

h3 {
  font: 38px/1.18em "fatfrank", sans-serif;
}

h4 {
  font: 28px/1.25em "fatfrank", sans-serif;
}

h5 {
  font: 26px/1.25em "fatfrank", sans-serif;
}

.the-content, body.single-product .product .woocommerce-product-details__short-description {
  font: 20px/1.5em "rubrik-edge-new", sans-serif;
}
.the-content.small, body.single-product .product form.gift-cards_form .gift-cards-list button.the-content, body.single-product .product .small.woocommerce-product-details__short-description, body.single-product .product form.gift-cards_form .gift-cards-list button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.the-content.delete, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .product a.delete.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.the-content.edit, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product a.edit.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content table td .the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content table td .button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.the-content, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product a.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-product-details__short-description, .woocommerce ul.products .product-block .product-meta .single-product-content a.the-content.button, .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .product a.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce ul.products .product-block .product-meta .single-product-content a.button.woocommerce-product-details__short-description, #footer .footer-primary-nav ul li.is-btn a.the-content, #footer .footer-primary-nav ul li.is-btn body.single-product .product a.woocommerce-product-details__short-description, body.single-product .product #footer .footer-primary-nav ul li.is-btn a.woocommerce-product-details__short-description, .img-icon-split .icon-block .the-content, .img-icon-split .icon-block body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .woocommerce-product-details__short-description {
  font: 18px/1.2em "rubrik-edge-new", sans-serif;
}
.the-content p iframe, body.single-product .product .woocommerce-product-details__short-description p iframe {
  width: 100%;
}

ul, li {
  list-style: none;
}

.color-red {
  color: #FB414D !important;
}

.wrapper {
  position: relative;
  width: 90%;
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.wrapper.big {
  max-width: 1380px;
}
.wrapper.medium {
  max-width: 1280px;
}
.wrapper.very-big {
  width: 100%;
  max-width: none;
  padding: 0 80px;
}
.wrapper.small, body.single-product .product form.gift-cards_form .gift-cards-list button.wrapper, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.wrapper.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.wrapper.edit, body .woocommerce .woocommerce-MyAccount-content table td .wrapper.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wrapper, .woocommerce ul.products .product-block .product-meta .single-product-content a.wrapper.button, #footer .footer-primary-nav ul li.is-btn a.wrapper, .img-icon-split .icon-block .wrapper.the-content, .img-icon-split .icon-block body.single-product .product .wrapper.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .wrapper.woocommerce-product-details__short-description {
  max-width: 960px;
}

.btn, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product .gift_card_template_button button.button, body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .woocommerce-message a.button, body .add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.button, body .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce ul.products li.product .button, body .woocommerce .woocommerce-error a .wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .return-to-shop a, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce form.lost_reset_password button.button, body .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, #code-form .gform_wrapper .gform_footer input, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .woocommerce ul.products .product-block .product-meta .single-product-content a.button, #newsletter-form .gform_wrapper .gform_footer input, .error404 .hero .the-content a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button, #footer .footer-primary-nav ul li.is-btn a, .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .newsletter-form .gform_body .gform_footer input, form#affwp-register-form fieldset p input.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  font: 400 22px/1em "rubrik-edge-new", sans-serif;
  padding: 10px 30px;
  border-radius: 50px;
  background: #666A72;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
.btn.small, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.small[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.small[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.small.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.small.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.small.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.small.button, body.single-product .product .gift_card_template_button button.small.button, body.single-product .product form.gift-cards_form .gift-cards-list button.btn, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .gift_card_template_button button.button, body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list button.small, body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .woocommerce-message a.small.button, body .small.add_to_cart_button, body.single-product .product form.gift-cards_form .gift-cards-list button.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.small.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.small.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .woocommerce #payment .form-row.place-order button.small#place_order, body.single-product .woocommerce #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.small.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.small.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.small.button, body.single-product .woocommerce form.checkout-coupon .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.checkout-coupon button.button, body .woocommerce .woocommerce-form-coupon button.small.button, body.single-product .woocommerce .woocommerce-form-coupon .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.small.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals table.shop_table td a.small.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.small.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.small[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.small.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.small[type=button], body .woocommerce ul.products li.product .small.button, body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list button.button, body .woocommerce .woocommerce-error a .small.wc-backward, body.single-product .woocommerce .woocommerce-error a .product form.gift-cards_form .gift-cards-list button.wc-backward, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-error a button.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.small.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .return-to-shop a.small, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.small.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.small.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.small.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.small.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.small#place_order, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content a.small.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.btn.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-message a.delete.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-error a a.delete.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-backward, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .return-to-shop a.delete, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.small.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content form button.small.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content form.gift-cards_form .gift-cards-list button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.btn.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-message a.edit.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-error a a.edit.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-backward, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .return-to-shop a.edit, body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.small.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content a.small.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.woocommerce-button.edit, body .woocommerce .woocommerce-MyAccount-content table td .btn.button, body .woocommerce .woocommerce-MyAccount-content #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .woocommerce-MyAccount-content table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce .woocommerce-MyAccount-content table td #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content table td input.button[type=button], body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table td a.button.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content table td button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form .woocommerce .woocommerce-MyAccount-content table.variations tr td.value a.button.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content table td button.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content table td button.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content table td button.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content table td button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table td form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table td a.button.checkout-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data .woocommerce-MyAccount-content table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table td button.button, body .woocommerce .woocommerce-cart-form .woocommerce-MyAccount-content table.shop_table td button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], body .woocommerce .woocommerce-cart-form .woocommerce-MyAccount-content table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product .button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-error a .button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table td .button.wc-backward, body .woocommerce .woocommerce-MyAccount-content table td .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .return-to-shop a.button, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap table td input.button, body .woocommerce .woocommerce-MyAccount-content table td #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap table td input.button, body .woocommerce .woocommerce-MyAccount-content table td #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav table td input.button, body .woocommerce .woocommerce-MyAccount-content table td form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account table td button.button, body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order table td button.button#place_order, body .woocommerce .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body .woocommerce .woocommerce-MyAccount-content table td form button.button, body .woocommerce .woocommerce-MyAccount-content form table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-Addresses a.button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td a.button.edit, body .woocommerce .woocommerce-MyAccount-content table td a.button.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .small.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-Addresses a.button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td a.button.edit, body .woocommerce .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content button.small, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.btn, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-error a a.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-backward, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .return-to-shop a, body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.small, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce form.lost_reset_password button.small.button, body.single-product .woocommerce form.lost_reset_password .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td form.lost_reset_password button.button, body .woocommerce form.woocommerce-form-login p.form-row button.small.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.small.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td #customer_login form.woocommerce-form-register p.form-row button.button, #code-form .gform_wrapper .gform_footer input.small, #code-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content table td input.button, body .woocommerce .woocommerce-MyAccount-content table td #code-form .gform_wrapper .gform_footer input.button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.small[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-MyAccount-content table td input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.small[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-MyAccount-content table td input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content table td .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .woocommerce ul.products .product-block .product-meta .single-product-content a.button, #newsletter-form .gform_wrapper .gform_footer input.small, #newsletter-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content table td input.button, body .woocommerce .woocommerce-MyAccount-content table td #newsletter-form .gform_wrapper .gform_footer input.button, .error404 .hero .the-content a.small.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.small.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.small.button, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .error404 .hero .the-content a.button.delete, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .error404 .hero .product .woocommerce-product-details__short-description a.button.delete, body.single-product .product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .error404 .hero .woocommerce-product-details__short-description a.button.delete, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .error404 .hero .the-content a.button.edit, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .error404 .hero .product .woocommerce-product-details__short-description a.button.edit, body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .error404 .hero .woocommerce-product-details__short-description a.button.edit, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-content table td a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content table td a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .error404 .hero .the-content a.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .error404 .hero .product .woocommerce-product-details__short-description a.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content table td .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .error404 .hero .the-content a.button, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .error404 .hero .product .woocommerce-product-details__short-description a.button, body.single-product .product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .error404 .hero .woocommerce-product-details__short-description a.button, #footer .footer-primary-nav ul li.is-btn a, .form .gform_wrapper .gform_footer input.small[type=submit], .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content table td input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content table td .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.small, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce .woocommerce-MyAccount-content table td input.button, body .woocommerce .woocommerce-MyAccount-content table td .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button, .img-icon-split .icon-block .btn.the-content, .img-icon-split .icon-block .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.the-content[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .img-icon-split .icon-block input.the-content[type=button], .img-icon-split .icon-block .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.the-content[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .img-icon-split .icon-block input.the-content[type=button], .img-icon-split .icon-block .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.the-content.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .img-icon-split .icon-block a.the-content.wc-forward, .img-icon-split .icon-block body.single-product .product .woocommerce-variation-add-to-cart button.the-content.button, body.single-product .product .woocommerce-variation-add-to-cart .img-icon-split .icon-block button.the-content.button, .img-icon-split .icon-block body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.the-content.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .img-icon-split .icon-block a.the-content.reset_variations, .img-icon-split .icon-block body.single-product .product #personnaliser-le-livre form.cart button.the-content.button, body.single-product .product #personnaliser-le-livre form.cart .img-icon-split .icon-block button.the-content.button, .img-icon-split .icon-block body.single-product .product .gift_card_template_button button.the-content.button, body.single-product .product .gift_card_template_button .img-icon-split .icon-block button.the-content.button, .img-icon-split .icon-block body.single-product .product form.gift-cards_form .gift-cards-list button.the-content, body.single-product .product form.gift-cards_form .gift-cards-list .img-icon-split .icon-block button.the-content, .img-icon-split .icon-block body.single-product .product .btn.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.woocommerce-product-details__short-description[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .img-icon-split .icon-block body.single-product .product input.woocommerce-product-details__short-description[type=button], .img-icon-split .icon-block body.single-product .product .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.woocommerce-product-details__short-description[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .img-icon-split .icon-block body.single-product .product input.woocommerce-product-details__short-description[type=button], .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-product-details__short-description.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .img-icon-split .icon-block body.single-product .product a.woocommerce-product-details__short-description.wc-forward, .img-icon-split .icon-block body.single-product .product .woocommerce-variation-add-to-cart button.woocommerce-product-details__short-description.button, .img-icon-split .icon-block body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-product-details__short-description.reset_variations, .img-icon-split .icon-block body.single-product .product #personnaliser-le-livre form.cart button.woocommerce-product-details__short-description.button, .img-icon-split .icon-block body.single-product .product .gift_card_template_button button.woocommerce-product-details__short-description.button, .img-icon-split .icon-block body.single-product .product form.gift-cards_form .gift-cards-list button.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .btn.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.woocommerce-product-details__short-description[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body.single-product .product .img-icon-split .icon-block input.woocommerce-product-details__short-description[type=button], body.single-product .product .img-icon-split .icon-block .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.woocommerce-product-details__short-description[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body.single-product .product .img-icon-split .icon-block input.woocommerce-product-details__short-description[type=button], body.single-product .product .img-icon-split .icon-block .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-product-details__short-description.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product .img-icon-split .icon-block a.woocommerce-product-details__short-description.wc-forward, body.single-product .product .img-icon-split .icon-block .woocommerce-variation-add-to-cart button.woocommerce-product-details__short-description.button, body.single-product .product .woocommerce-variation-add-to-cart .img-icon-split .icon-block button.woocommerce-product-details__short-description.button, body.single-product .product .img-icon-split .icon-block #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-product-details__short-description.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .img-icon-split .icon-block a.woocommerce-product-details__short-description.reset_variations, body.single-product .product .img-icon-split .icon-block #personnaliser-le-livre form.cart button.woocommerce-product-details__short-description.button, body.single-product .product #personnaliser-le-livre form.cart .img-icon-split .icon-block button.woocommerce-product-details__short-description.button, body.single-product .product .img-icon-split .icon-block .gift_card_template_button button.woocommerce-product-details__short-description.button, body.single-product .product .gift_card_template_button .img-icon-split .icon-block button.woocommerce-product-details__short-description.button, body.single-product .product .img-icon-split .icon-block form.gift-cards_form .gift-cards-list button.woocommerce-product-details__short-description, body.single-product .product form.gift-cards_form .gift-cards-list .img-icon-split .icon-block button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .woocommerce-message a.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce-message .product a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce-message a.button.woocommerce-product-details__short-description, body.single-product .woocommerce-message .img-icon-split .icon-block a.the-content.button, body.single-product .woocommerce-message .img-icon-split .icon-block .product a.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce-message .img-icon-split .icon-block a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .the-content.add_to_cart_button, .img-icon-split .icon-block body.single-product .product .add_to_cart_button.woocommerce-product-details__short-description, body .img-icon-split .icon-block .the-content.add_to_cart_button, body.single-product .img-icon-split .icon-block .product .add_to_cart_button.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .add_to_cart_button.woocommerce-product-details__short-description, .img-icon-split .icon-block body ul.products li.product-block .product-meta .single-product-content a.the-content.button, .img-icon-split .icon-block body.single-product ul.products li.product-block .product-meta .single-product-content .product a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product ul.products li.product-block .product-meta .single-product-content a.button.woocommerce-product-details__short-description, body ul.products li.product-block .product-meta .single-product-content .img-icon-split .icon-block a.the-content.button, body.single-product ul.products li.product-block .product-meta .single-product-content .img-icon-split .icon-block .product a.button.woocommerce-product-details__short-description, body.single-product .product ul.products li.product-block .product-meta .single-product-content .img-icon-split .icon-block a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .widget .product-search-filter-reset form.product-search-filter-reset-form button.the-content.button, .img-icon-split .icon-block body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.woocommerce-product-details__short-description, body .widget .product-search-filter-reset form.product-search-filter-reset-form .img-icon-split .icon-block button.the-content.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .widget .product-search-filter-reset form.product-search-filter-reset-form .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce #payment .form-row.place-order button.the-content#place_order, .img-icon-split .icon-block body.single-product .woocommerce #payment .form-row.place-order .product button#place_order.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce #payment .form-row.place-order button#place_order.woocommerce-product-details__short-description, body .woocommerce #payment .form-row.place-order .img-icon-split .icon-block button.the-content#place_order, body.single-product .woocommerce #payment .form-row.place-order .img-icon-split .icon-block .product button#place_order.woocommerce-product-details__short-description, body.single-product .product .woocommerce #payment .form-row.place-order .img-icon-split .icon-block button#place_order.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.the-content.woocommerce-remove-coupon, .img-icon-split .icon-block body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .product a.woocommerce-remove-coupon.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.woocommerce-product-details__short-description, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .img-icon-split .icon-block a.the-content.woocommerce-remove-coupon, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .img-icon-split .icon-block .product a.woocommerce-remove-coupon.woocommerce-product-details__short-description, body.single-product .product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .img-icon-split .icon-block a.woocommerce-remove-coupon.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.the-content.woocommerce-remove-coupon, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .product a.woocommerce-remove-coupon.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.woocommerce-product-details__short-description, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .img-icon-split .icon-block a.the-content.woocommerce-remove-coupon, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .img-icon-split .icon-block .product a.woocommerce-remove-coupon.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .img-icon-split .icon-block a.woocommerce-remove-coupon.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce form.checkout-coupon button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce form.checkout-coupon .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce form.checkout-coupon button.button.woocommerce-product-details__short-description, body .woocommerce form.checkout-coupon .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce form.checkout-coupon .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce form.checkout-coupon .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-form-coupon button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-form-coupon .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-form-coupon button.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-form-coupon .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce .woocommerce-form-coupon .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-form-coupon .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button.woocommerce-product-details__short-description, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .cart-collaterals table.shop_table td a.the-content.woocommerce-remove-coupon, .img-icon-split .icon-block body.single-product .woocommerce .cart-collaterals table.shop_table td .product a.woocommerce-remove-coupon.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.woocommerce-product-details__short-description, body .woocommerce .cart-collaterals table.shop_table td .img-icon-split .icon-block a.the-content.woocommerce-remove-coupon, body.single-product .woocommerce .cart-collaterals table.shop_table td .img-icon-split .icon-block .product a.woocommerce-remove-coupon.woocommerce-product-details__short-description, body.single-product .product .woocommerce .cart-collaterals table.shop_table td .img-icon-split .icon-block a.woocommerce-remove-coupon.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .cart-collaterals a.the-content.checkout-button, .img-icon-split .icon-block body.single-product .woocommerce .cart-collaterals .product a.checkout-button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .cart-collaterals a.checkout-button.woocommerce-product-details__short-description, body .woocommerce .cart-collaterals .img-icon-split .icon-block a.the-content.checkout-button, body.single-product .woocommerce .cart-collaterals .img-icon-split .icon-block .product a.checkout-button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .cart-collaterals .img-icon-split .icon-block a.checkout-button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.the-content[type=button], .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .product input[type=button].woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button].woocommerce-product-details__short-description, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .img-icon-split .icon-block input.the-content[type=button], body.single-product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .img-icon-split .icon-block .product input[type=button].woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .img-icon-split .icon-block input[type=button].woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-cart-form table.shop_table button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table button.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-cart-form table.shop_table .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.the-content[type=button], .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .product input[type=button].woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button].woocommerce-product-details__short-description, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .img-icon-split .icon-block input.the-content[type=button], body.single-product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .img-icon-split .icon-block .product input[type=button].woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .img-icon-split .icon-block input[type=button].woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce ul.products li.product .the-content.button, .img-icon-split .icon-block body.single-product .woocommerce ul.products li.product .button.woocommerce-product-details__short-description, body .woocommerce ul.products li.product .img-icon-split .icon-block .the-content.button, body.single-product .woocommerce ul.products li.product .img-icon-split .icon-block .button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-error a .the-content.wc-backward, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-error a .product .wc-backward.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-error a .wc-backward.woocommerce-product-details__short-description, body .woocommerce .woocommerce-error a .img-icon-split .icon-block .the-content.wc-backward, body.single-product .woocommerce .woocommerce-error a .img-icon-split .icon-block .product .wc-backward.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-error a .img-icon-split .icon-block .wc-backward.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .ywgc_enter_code p.form-row button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .ywgc_enter_code p.form-row .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .ywgc_enter_code p.form-row button.button.woocommerce-product-details__short-description, body .woocommerce .ywgc_enter_code p.form-row .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .ywgc_enter_code p.form-row .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .return-to-shop a.the-content, .img-icon-split .icon-block body.single-product .woocommerce .return-to-shop .product a.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .return-to-shop a.woocommerce-product-details__short-description, body .woocommerce .return-to-shop .img-icon-split .icon-block a.the-content, body.single-product .woocommerce .return-to-shop .img-icon-split .icon-block .product a.woocommerce-product-details__short-description, body.single-product .product .woocommerce .return-to-shop .img-icon-split .icon-block a.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .product input.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .img-icon-split .icon-block input.the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .img-icon-split .icon-block .product input.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .img-icon-split .icon-block input.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .product input.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .img-icon-split .icon-block input.the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .img-icon-split .icon-block .product input.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .img-icon-split .icon-block input.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .product input.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .img-icon-split .icon-block input.the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .img-icon-split .icon-block .product input.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .img-icon-split .icon-block input.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content form.edit-account button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content form.edit-account button.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content form.edit-account .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content form.edit-account .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.the-content#place_order, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product button#place_order.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .img-icon-split .icon-block button.the-content#place_order, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .img-icon-split .icon-block .product button#place_order.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .img-icon-split .icon-block button#place_order.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content a.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content .product a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content a.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block a.the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block .product a.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.the-content.delete, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .product a.delete.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .img-icon-split .icon-block a.the-content.delete, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .img-icon-split .icon-block .product a.delete.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .img-icon-split .icon-block a.delete.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content form button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content form .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content form button.button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content form .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content form .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.the-content.edit, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product a.edit.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .img-icon-split .icon-block a.the-content.edit, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .img-icon-split .icon-block .product a.edit.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .img-icon-split .icon-block a.edit.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content a.the-content.woocommerce-button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content .product a.woocommerce-button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block a.the-content.woocommerce-button, body.single-product .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block .product a.woocommerce-button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block a.woocommerce-button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content table td .the-content.button, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content table td .button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content table td .img-icon-split .icon-block .the-content.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .img-icon-split .icon-block .product .button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content table td .img-icon-split .icon-block .button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-content button.the-content, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-content .product button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-content button.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block button.the-content, body.single-product .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block .product button.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-content .img-icon-split .icon-block button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.the-content, .img-icon-split .icon-block body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product a.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-product-details__short-description, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .img-icon-split .icon-block a.the-content, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .img-icon-split .icon-block .product a.woocommerce-product-details__short-description, body.single-product .product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .img-icon-split .icon-block a.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce form.lost_reset_password button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce form.lost_reset_password .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce form.lost_reset_password button.button.woocommerce-product-details__short-description, body .woocommerce form.lost_reset_password .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce form.lost_reset_password .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce form.lost_reset_password .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce form.woocommerce-form-login p.form-row button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce form.woocommerce-form-login p.form-row .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce form.woocommerce-form-login p.form-row button.button.woocommerce-product-details__short-description, body .woocommerce form.woocommerce-form-login p.form-row .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce form.woocommerce-form-login p.form-row .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.the-content.button, .img-icon-split .icon-block body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block body.single-product .product .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button.woocommerce-product-details__short-description, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .img-icon-split .icon-block button.the-content.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .img-icon-split .icon-block .product button.button.woocommerce-product-details__short-description, body.single-product .product .woocommerce #customer_login form.woocommerce-form-register p.form-row .img-icon-split .icon-block button.button.woocommerce-product-details__short-description, .img-icon-split .icon-block #code-form .gform_wrapper .gform_footer input.the-content, .img-icon-split .icon-block #code-form .gform_wrapper .gform_footer body.single-product .product input.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block #code-form .gform_wrapper .gform_footer input.woocommerce-product-details__short-description, #code-form .gform_wrapper .gform_footer .img-icon-split .icon-block input.the-content, #code-form .gform_wrapper .gform_footer .img-icon-split .icon-block body.single-product .product input.woocommerce-product-details__short-description, body.single-product .product #code-form .gform_wrapper .gform_footer .img-icon-split .icon-block input.woocommerce-product-details__short-description, .img-icon-split .icon-block .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.the-content[type=submit], .img-icon-split .icon-block .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body.single-product .product input[type=submit].woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].woocommerce-product-details__short-description, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .img-icon-split .icon-block input.the-content[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .img-icon-split .icon-block body.single-product .product input[type=submit].woocommerce-product-details__short-description, body.single-product .product .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .img-icon-split .icon-block input[type=submit].woocommerce-product-details__short-description, .img-icon-split .icon-block .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.the-content[type=submit], .img-icon-split .icon-block .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body.single-product .product input[type=submit].woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].woocommerce-product-details__short-description, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .img-icon-split .icon-block input.the-content[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .img-icon-split .icon-block body.single-product .product input[type=submit].woocommerce-product-details__short-description, body.single-product .product .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .img-icon-split .icon-block input[type=submit].woocommerce-product-details__short-description, .img-icon-split .icon-block #newsletter-form .gform_wrapper .gform_footer input.the-content, .img-icon-split .icon-block #newsletter-form .gform_wrapper .gform_footer body.single-product .product input.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block #newsletter-form .gform_wrapper .gform_footer input.woocommerce-product-details__short-description, #newsletter-form .gform_wrapper .gform_footer .img-icon-split .icon-block input.the-content, #newsletter-form .gform_wrapper .gform_footer .img-icon-split .icon-block body.single-product .product input.woocommerce-product-details__short-description, body.single-product .product #newsletter-form .gform_wrapper .gform_footer .img-icon-split .icon-block input.woocommerce-product-details__short-description, .img-icon-split .icon-block .error404 .hero .the-content a.the-content.button, .img-icon-split .icon-block .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.the-content.button, body.single-product .product .img-icon-split .icon-block .error404 .hero .woocommerce-product-details__short-description a.the-content.button, .img-icon-split .icon-block .error404 .hero .the-content body.single-product .product a.button.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .error404 .hero .the-content a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .error404 .hero .woocommerce-product-details__short-description a.button.woocommerce-product-details__short-description, .error404 .hero .the-content .img-icon-split .icon-block a.the-content.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .img-icon-split .icon-block a.the-content.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .img-icon-split .icon-block a.the-content.button, .error404 .hero .the-content .img-icon-split .icon-block body.single-product .product a.button.woocommerce-product-details__short-description, body.single-product .product .error404 .hero .the-content .img-icon-split .icon-block a.button.woocommerce-product-details__short-description, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .img-icon-split .icon-block a.button.woocommerce-product-details__short-description, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .img-icon-split .icon-block a.button.woocommerce-product-details__short-description, .img-icon-split .icon-block .form .gform_wrapper .gform_footer input.the-content[type=submit], .img-icon-split .icon-block .form .gform_wrapper .gform_footer body.single-product .product input[type=submit].woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .form .gform_wrapper .gform_footer input[type=submit].woocommerce-product-details__short-description, .form .gform_wrapper .gform_footer .img-icon-split .icon-block input.the-content[type=submit], .form .gform_wrapper .gform_footer .img-icon-split .icon-block body.single-product .product input[type=submit].woocommerce-product-details__short-description, body.single-product .product .form .gform_wrapper .gform_footer .img-icon-split .icon-block input[type=submit].woocommerce-product-details__short-description, .img-icon-split .icon-block .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.the-content, .img-icon-split .icon-block .form .gform_wrapper .newsletter-form .gform_body .gform_footer body.single-product .product input.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.woocommerce-product-details__short-description, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .img-icon-split .icon-block input.the-content, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .img-icon-split .icon-block body.single-product .product input.woocommerce-product-details__short-description, body.single-product .product .form .gform_wrapper .newsletter-form .gform_body .gform_footer .img-icon-split .icon-block input.woocommerce-product-details__short-description, form#affwp-register-form fieldset p input.small.button, form#affwp-register-form fieldset p body .woocommerce .woocommerce-MyAccount-content table td input.button, body .woocommerce .woocommerce-MyAccount-content table td form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p .img-icon-split .icon-block input.button.the-content, form#affwp-register-form fieldset p .img-icon-split .icon-block body.single-product .product input.button.woocommerce-product-details__short-description, body.single-product .product form#affwp-register-form fieldset p .img-icon-split .icon-block input.button.woocommerce-product-details__short-description, .img-icon-split .icon-block form#affwp-register-form fieldset p input.button.the-content, .img-icon-split .icon-block form#affwp-register-form fieldset p body.single-product .product input.button.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block form#affwp-register-form fieldset p input.button.woocommerce-product-details__short-description {
  font-size: 16px;
  padding: 10px 20px;
}
.btn.reverse, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.reverse[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.reverse[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reverse.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.reverse.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reverse.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.reverse.button, body.single-product .product .gift_card_template_button button.reverse.button, body.single-product .product form.gift-cards_form .gift-cards-list button.reverse, body.single-product .woocommerce-message a.reverse.button, body .reverse.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.reverse.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.reverse.button, body .woocommerce #payment .form-row.place-order button.reverse#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.reverse.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.reverse.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.reverse.button, body .woocommerce .woocommerce-form-coupon button.reverse.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.reverse.button, body .woocommerce .cart-collaterals table.shop_table td a.reverse.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.reverse.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.reverse[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.reverse.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.reverse[type=button], body .woocommerce ul.products li.product .reverse.button, body .woocommerce .woocommerce-error a .reverse.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.reverse.button, body .woocommerce .return-to-shop a.reverse, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.reverse.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.reverse.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.reverse.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.reverse.button, body .woocommerce .woocommerce-MyAccount-content a.reverse.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.reverse.delete, body .woocommerce .woocommerce-MyAccount-content form button.reverse.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.reverse.edit, body .woocommerce .woocommerce-MyAccount-content a.reverse.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .reverse.button, body .woocommerce .woocommerce-MyAccount-content button.reverse, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reverse, body .woocommerce form.lost_reset_password button.reverse.button, body .woocommerce form.woocommerce-form-login p.form-row button.reverse.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.reverse.button, #code-form .gform_wrapper .gform_footer input.reverse, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.reverse[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.reverse[type=submit], .woocommerce ul.products .product-block .product-meta .single-product-content a.reverse.button, #newsletter-form .gform_wrapper .gform_footer input.reverse, .error404 .hero .the-content a.reverse.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.reverse.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.reverse.button, #footer .footer-primary-nav ul li.is-btn a, .form .gform_wrapper .gform_footer input.reverse[type=submit], .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.reverse, form#affwp-register-form fieldset p input.reverse.button {
  background: #FFFFFF;
  color: #00ABC0;
}
.btn.red, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.red[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.red[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.red.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.btn.button, body.single-product .product .woocommerce-variation-add-to-cart button.red.button, body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.btn.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations.wc-forward, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.red.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.btn.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart button.red.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product .gift_card_template_button button.btn.button, body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button, body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button, body.single-product .product .gift_card_template_button button.red.button, body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button, body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button, body.single-product .product .gift_card_template_button button.button, body.single-product .product form.gift-cards_form .gift-cards-list button.red, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .gift_card_template_button button.button, body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list button.button, body.single-product .woocommerce-message a.red.button, body.single-product .woocommerce-message .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message a.button.reset_variations, body .btn.add_to_cart_button, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body input.add_to_cart_button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body input.add_to_cart_button[type=button], body .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body a.add_to_cart_button.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button, body.single-product .product .gift_card_template_button button.add_to_cart_button.button, body.single-product .product form.gift-cards_form .gift-cards-list button.add_to_cart_button, body.single-product .woocommerce-message a.add_to_cart_button.button, body .red.add_to_cart_button, body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button, body.single-product .product .gift_card_template_button button.add_to_cart_button.button, body .add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.btn.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body ul.products li.product-block .product-meta .single-product-content a.button.wc-forward, body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations, body.single-product ul.products li.product-block .product-meta .single-product-content .woocommerce-message a.button, body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.red.button, body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations, body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.btn.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.red.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .woocommerce #payment .form-row.place-order button.btn#place_order, body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button, body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button, body .woocommerce #payment .form-row.place-order button.red#place_order, body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button, body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button, body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button, body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.red.button, body.single-product .woocommerce form.checkout-coupon .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon button.button, body.single-product .woocommerce form.checkout-coupon .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon button.button, body.single-product .woocommerce form.checkout-coupon .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon button.button.add_to_cart_button, body .woocommerce form.checkout-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.checkout-coupon button.button#place_order, body .woocommerce .woocommerce-form-coupon button.red.button, body.single-product .woocommerce .woocommerce-form-coupon .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon button.button, body.single-product .woocommerce .woocommerce-form-coupon .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon button.button, body.single-product .woocommerce .woocommerce-form-coupon .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon button.button.add_to_cart_button, body .woocommerce .woocommerce-form-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon button.button#place_order, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.red.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button.add_to_cart_button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button.button#place_order, body .woocommerce .cart-collaterals table.shop_table td a.btn.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce .cart-collaterals table.shop_table td .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td a.red.woocommerce-remove-coupon, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.btn.checkout-button, body .woocommerce .cart-collaterals .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals a.checkout-button.wc-forward, body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations, body.single-product .woocommerce .cart-collaterals .woocommerce-message a.checkout-button.button, body.single-product .woocommerce-message .woocommerce .cart-collaterals a.checkout-button.button, body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button, body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.red.checkout-button, body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations, body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button, body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.red[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button].add_to_cart_button, body .woocommerce .woocommerce-cart-form table.shop_table button.red.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table button.button.add_to_cart_button, body .woocommerce .woocommerce-cart-form table.shop_table .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table button.button#place_order, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.red[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button].add_to_cart_button, body .woocommerce ul.products li.product .btn.button, body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product input.button[type=button], body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product input.button[type=button], body .woocommerce ul.products li.product .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product a.button.wc-forward, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button, body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button, body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list button.button, body.single-product .woocommerce ul.products li.product .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce ul.products li.product a.button, body .woocommerce ul.products li.product .button.add_to_cart_button, body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button, body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button, body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order, body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product form.checkout-coupon button.button, body .woocommerce form.checkout-coupon ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon ul.products li.product button.button, body .woocommerce ul.products li.product .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product button.button, body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button, body .woocommerce ul.products li.product .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td ul.products li.product input.button[type=button], body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper ul.products li.product input.button[type=button], body .woocommerce ul.products li.product .red.button, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button, body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button, body .woocommerce ul.products li.product .button.add_to_cart_button, body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button, body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button, body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order, body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button, body .woocommerce ul.products li.product .button, body .woocommerce .woocommerce-error a .red.wc-backward, body.single-product .woocommerce .woocommerce-error a .product .woocommerce-variation-add-to-cart button.wc-backward.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a button.wc-backward.button, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a a.wc-backward.reset_variations, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.cart button.wc-backward.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a button.wc-backward.button, body.single-product .woocommerce .woocommerce-error a .product .gift_card_template_button button.wc-backward.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .wc-backward.add_to_cart_button, body .woocommerce .woocommerce-error a ul.products li.product-block .product-meta .single-product-content a.wc-backward.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a a.wc-backward.button, body .woocommerce .woocommerce-error a .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a #payment .form-row.place-order button.wc-backward#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-error a button.wc-backward#place_order, body .woocommerce .woocommerce-error a form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .cart-collaterals a.wc-backward.checkout-button, body .woocommerce .cart-collaterals .woocommerce-error a a.wc-backward.checkout-button, body .woocommerce .woocommerce-error a ul.products li.product .wc-backward.button, body .woocommerce ul.products li.product .woocommerce-error a .wc-backward.button, body .woocommerce .ywgc_enter_code p.form-row button.red.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row button.button.add_to_cart_button, body .woocommerce .ywgc_enter_code p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row button.button#place_order, body .woocommerce .ywgc_enter_code p.form-row ul.products li.product button.button, body .woocommerce ul.products li.product .ywgc_enter_code p.form-row button.button, body .woocommerce .return-to-shop a.red, body.single-product .woocommerce .return-to-shop .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop a.reset_variations, body .woocommerce .return-to-shop a.add_to_cart_button, body .woocommerce .return-to-shop ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop a.button, body .woocommerce .return-to-shop form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .return-to-shop a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .return-to-shop a.checkout-button, body .woocommerce .return-to-shop ul.products li.product a.button, body .woocommerce ul.products li.product .return-to-shop a.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.red.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.red.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.red.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.red.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form.edit-account button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.edit-account ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content a.red.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.button.reset_variations, body .woocommerce .woocommerce-MyAccount-content a.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.button.checkout-button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.btn.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-message a.delete.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-error a a.delete.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-backward, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .return-to-shop a.delete, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.red.delete, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content form button.red.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form button.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form button.button, body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.btn.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-message a.edit.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-error a a.edit.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-backward, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .return-to-shop a.edit, body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.red.edit, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content a.red.woocommerce-button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.reset_variations, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.woocommerce-button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.woocommerce-button.checkout-button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.woocommerce-button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.woocommerce-button.edit, body .woocommerce .woocommerce-MyAccount-content table td .red.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content table td button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form .woocommerce .woocommerce-MyAccount-content table.variations tr td.value a.button.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content table td button.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content table td button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table td a.button.checkout-button, body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product .button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-Addresses a.button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td a.button.edit, body .woocommerce .woocommerce-MyAccount-content button.red, body.single-product .woocommerce .woocommerce-MyAccount-content .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content button#place_order, body .woocommerce .woocommerce-MyAccount-content ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.btn, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-error a a.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-backward, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .return-to-shop a, body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.red, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce form.lost_reset_password button.red.button, body.single-product .woocommerce form.lost_reset_password .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password button.button, body.single-product .woocommerce form.lost_reset_password .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password button.button, body.single-product .woocommerce form.lost_reset_password .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password button.button.add_to_cart_button, body .woocommerce form.lost_reset_password .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.lost_reset_password button.button#place_order, body .woocommerce form.lost_reset_password ul.products li.product button.button, body .woocommerce ul.products li.product form.lost_reset_password button.button, body .woocommerce form.woocommerce-form-login p.form-row button.red.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row button.button.add_to_cart_button, body .woocommerce form.woocommerce-form-login p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order, body .woocommerce form.woocommerce-form-login p.form-row ul.products li.product button.button, body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.red.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button.add_to_cart_button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row button.button#place_order, body .woocommerce #customer_login form.woocommerce-form-register p.form-row ul.products li.product button.button, body .woocommerce ul.products li.product #customer_login form.woocommerce-form-register p.form-row button.button, #code-form .gform_wrapper .gform_footer input.red, #code-form .gform_wrapper .gform_footer body input.add_to_cart_button, body #code-form .gform_wrapper .gform_footer input.add_to_cart_button, #code-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product #code-form .gform_wrapper .gform_footer input.button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button, body .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button, body .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .woocommerce ul.products .product-block .product-meta .single-product-content a.red.button, .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce ul.products .product-block .product-meta .single-product-content a.button.reset_variations, .woocommerce ul.products .product-block .product-meta .single-product-content body a.button.add_to_cart_button, body .woocommerce ul.products .product-block .product-meta .single-product-content a.button.add_to_cart_button, .woocommerce body ul.products li.product-block .product-meta .single-product-content a.button, body .woocommerce ul.products li.product-block .product-meta .single-product-content a.button, body .woocommerce ul.products .product-block .product-meta .single-product-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content a.button.checkout-button, body .woocommerce ul.products .product-block .product-meta .single-product-content li.product a.button, body .woocommerce ul.products li.product .product-block .product-meta .single-product-content a.button, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content a.button.delete, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content a.button.edit, body .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content a.button, #newsletter-form .gform_wrapper .gform_footer input.red, #newsletter-form .gform_wrapper .gform_footer body input.add_to_cart_button, body #newsletter-form .gform_wrapper .gform_footer input.add_to_cart_button, #newsletter-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product #newsletter-form .gform_wrapper .gform_footer input.button, .error404 .hero .the-content a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button, #footer .footer-primary-nav ul li.is-btn a.red, #footer .footer-primary-nav ul li.is-btn body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value #footer .footer-primary-nav ul li.is-btn a.reset_variations, #footer .footer-primary-nav ul li.is-btn body a.add_to_cart_button, body #footer .footer-primary-nav ul li.is-btn a.add_to_cart_button, #footer .footer-primary-nav body ul.products li.is-btn li.product-block .product-meta .single-product-content a.button, body #footer .footer-primary-nav ul.products li.is-btn li.product-block .product-meta .single-product-content a.button, #footer .footer-primary-nav body ul.products li.product-block .product-meta .single-product-content li.is-btn a.button, body #footer .footer-primary-nav ul.products li.product-block .product-meta .single-product-content li.is-btn a.button, #footer .footer-primary-nav ul li.is-btn body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon, #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon, #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals #footer .footer-primary-nav ul li.is-btn a.checkout-button, #footer .footer-primary-nav body .woocommerce ul.products li.is-btn li.product a.button, body .woocommerce #footer .footer-primary-nav ul.products li.is-btn li.product a.button, #footer .footer-primary-nav body .woocommerce ul.products li.product li.is-btn a.button, body .woocommerce #footer .footer-primary-nav ul.products li.product li.is-btn a.button, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td #footer .footer-primary-nav ul li.is-btn a.delete, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses #footer .footer-primary-nav ul li.is-btn a.edit, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a, #footer .footer-primary-nav ul li.is-btn .error404 .hero .the-content a.button, #footer .footer-primary-nav ul li.is-btn .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product #footer .footer-primary-nav ul li.is-btn .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content #footer .footer-primary-nav ul li.is-btn a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button, .form .gform_wrapper .gform_footer input.btn[type=submit], .form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .form .gform_wrapper .gform_footer input[type=submit][type=button], .form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .form .gform_wrapper .gform_footer input[type=submit][type=button], .form .gform_wrapper .gform_footer body input[type=submit].add_to_cart_button, body .form .gform_wrapper .gform_footer input[type=submit].add_to_cart_button, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=submit][type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .form .gform_wrapper .gform_footer input[type=submit][type=button], .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=submit][type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .form .gform_wrapper .gform_footer input[type=submit][type=button], .form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-error a input[type=submit].wc-backward, body .woocommerce .woocommerce-error a .form .gform_wrapper .gform_footer input[type=submit].wc-backward, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content table td input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content table td .form .gform_wrapper .gform_footer input[type=submit].button, .form #code-form .gform_wrapper .gform_footer input[type=submit], #code-form .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .form .gform_wrapper .gform_footer input[type=submit], .form #newsletter-form .gform_wrapper .gform_footer input[type=submit], #newsletter-form .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer input.red[type=submit], .form .gform_wrapper .gform_footer body input[type=submit].add_to_cart_button, body .form .gform_wrapper .gform_footer input[type=submit].add_to_cart_button, .form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.red, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body input.add_to_cart_button, body .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.add_to_cart_button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input[type=submit], form#affwp-register-form fieldset p input.red.button, form#affwp-register-form fieldset p body input.button.add_to_cart_button, body form#affwp-register-form fieldset p input.button.add_to_cart_button, form#affwp-register-form fieldset p body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p .form .gform_wrapper .gform_footer input.button[type=submit], .form .gform_wrapper .gform_footer form#affwp-register-form fieldset p input.button[type=submit] {
  background: #FB414D;
  color: #FFFFFF;
}
.btn.red:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.red[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.red[type=button]:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.red.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.btn.button:hover, body.single-product .product .woocommerce-variation-add-to-cart button.red.button:hover, body.single-product .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.btn.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations.wc-forward:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.red.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.btn.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart button.red.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product .gift_card_template_button button.btn.button:hover, body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button button.red.button:hover, body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.red:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .woocommerce-message a.red.button:hover, body.single-product .woocommerce-message .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message a.button.reset_variations:hover, body .btn.add_to_cart_button:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body input.add_to_cart_button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body input.add_to_cart_button[type=button]:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body a.add_to_cart_button.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button:hover, body.single-product .product .gift_card_template_button button.add_to_cart_button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.add_to_cart_button:hover, body.single-product .woocommerce-message a.add_to_cart_button.button:hover, body .red.add_to_cart_button:hover, body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button:hover, body.single-product .product .gift_card_template_button button.add_to_cart_button.button:hover, body .add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content a.btn.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body ul.products li.product-block .product-meta .single-product-content a.button.wc-forward:hover, body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations:hover, body.single-product ul.products li.product-block .product-meta .single-product-content .woocommerce-message a.button:hover, body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content a.red.button:hover, body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations:hover, body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content a.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.btn.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.red.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .woocommerce #payment .form-row.place-order button.btn#place_order:hover, body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button:hover, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order button#place_order:hover, body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button:hover, body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button:hover, body .woocommerce #payment .form-row.place-order button.red#place_order:hover, body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button:hover, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button:hover, body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button:hover, body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button:hover, body .woocommerce #payment .form-row.place-order button#place_order:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout-coupon button.red.button:hover, body.single-product .woocommerce form.checkout-coupon .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon button.button:hover, body.single-product .woocommerce form.checkout-coupon .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon button.button:hover, body.single-product .woocommerce form.checkout-coupon .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon button.button.add_to_cart_button:hover, body .woocommerce form.checkout-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.checkout-coupon button.button#place_order:hover, body .woocommerce .woocommerce-form-coupon button.red.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon button.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon button.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-form-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon button.button#place_order:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.red.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button.add_to_cart_button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button.button#place_order:hover, body .woocommerce .cart-collaterals table.shop_table td a.btn.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce .cart-collaterals table.shop_table td .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button:hover, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td a.red.woocommerce-remove-coupon:hover, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations:hover, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.btn.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals a.checkout-button.wc-forward:hover, body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations:hover, body.single-product .woocommerce .cart-collaterals .woocommerce-message a.checkout-button.button:hover, body.single-product .woocommerce-message .woocommerce .cart-collaterals a.checkout-button.button:hover, body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button:hover, body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.red.checkout-button:hover, body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations:hover, body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button:hover, body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.checkout-button:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.red[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button].add_to_cart_button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.red.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table button.button#place_order:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.red[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button].add_to_cart_button:hover, body .woocommerce ul.products li.product .btn.button:hover, body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product input.button[type=button]:hover, body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product input.button[type=button]:hover, body .woocommerce ul.products li.product .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product a.button.wc-forward:hover, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button:hover, body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button:hover, body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .woocommerce ul.products li.product .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce ul.products li.product a.button:hover, body .woocommerce ul.products li.product .button.add_to_cart_button:hover, body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button:hover, body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button:hover, body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order:hover, body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon ul.products li.product button.button:hover, body .woocommerce ul.products li.product .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product button.button:hover, body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button:hover, body .woocommerce ul.products li.product .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td ul.products li.product input.button[type=button]:hover, body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper ul.products li.product input.button[type=button]:hover, body .woocommerce ul.products li.product .red.button:hover, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button:hover, body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button:hover, body .woocommerce ul.products li.product .button.add_to_cart_button:hover, body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button:hover, body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button:hover, body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order:hover, body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button:hover, body .woocommerce ul.products li.product .button:hover, body .woocommerce .woocommerce-error a .red.wc-backward:hover, body.single-product .woocommerce .woocommerce-error a .product .woocommerce-variation-add-to-cart button.wc-backward.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a button.wc-backward.button:hover, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a a.wc-backward.reset_variations:hover, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.cart button.wc-backward.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a button.wc-backward.button:hover, body.single-product .woocommerce .woocommerce-error a .product .gift_card_template_button button.wc-backward.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .wc-backward.add_to_cart_button:hover, body .woocommerce .woocommerce-error a ul.products li.product-block .product-meta .single-product-content a.wc-backward.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a a.wc-backward.button:hover, body .woocommerce .woocommerce-error a .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a #payment .form-row.place-order button.wc-backward#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-error a button.wc-backward#place_order:hover, body .woocommerce .woocommerce-error a form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .cart-collaterals a.wc-backward.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-error a a.wc-backward.checkout-button:hover, body .woocommerce .woocommerce-error a ul.products li.product .wc-backward.button:hover, body .woocommerce ul.products li.product .woocommerce-error a .wc-backward.button:hover, body .woocommerce .ywgc_enter_code p.form-row button.red.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row button.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row button.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row button.button.add_to_cart_button:hover, body .woocommerce .ywgc_enter_code p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row button.button#place_order:hover, body .woocommerce .ywgc_enter_code p.form-row ul.products li.product button.button:hover, body .woocommerce ul.products li.product .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .return-to-shop a.red:hover, body.single-product .woocommerce .return-to-shop .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop a.reset_variations:hover, body .woocommerce .return-to-shop a.add_to_cart_button:hover, body .woocommerce .return-to-shop ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop a.button:hover, body .woocommerce .return-to-shop form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .return-to-shop a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .return-to-shop a.checkout-button:hover, body .woocommerce .return-to-shop ul.products li.product a.button:hover, body .woocommerce ul.products li.product .return-to-shop a.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.red.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap ul.products li.product input.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.red.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap ul.products li.product input.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.red.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav ul.products li.product input.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form.edit-account button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content a.red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.button.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content a.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.btn.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-message a.delete.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-error a a.delete.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .return-to-shop a.delete:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.red.delete:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content form button.red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.btn.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-message a.edit.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-error a a.edit.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .return-to-shop a.edit:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.red.edit:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content a.red.woocommerce-button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.woocommerce-button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.woocommerce-button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.woocommerce-button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.woocommerce-button.edit:hover, body .woocommerce .woocommerce-MyAccount-content table td .red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content table td button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form .woocommerce .woocommerce-MyAccount-content table.variations tr td.value a.button.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content table td button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table td a.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content table td button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table td a.button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product .button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table td .button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete:hover, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-Addresses a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-content button.red:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.btn:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-error a a.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .return-to-shop a:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table td a.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.red:hover, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce form.lost_reset_password button.red.button:hover, body.single-product .woocommerce form.lost_reset_password .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password button.button:hover, body.single-product .woocommerce form.lost_reset_password .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password button.button:hover, body.single-product .woocommerce form.lost_reset_password .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password button.button.add_to_cart_button:hover, body .woocommerce form.lost_reset_password .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.lost_reset_password button.button#place_order:hover, body .woocommerce form.lost_reset_password ul.products li.product button.button:hover, body .woocommerce ul.products li.product form.lost_reset_password button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.red.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.button.add_to_cart_button:hover, body .woocommerce form.woocommerce-form-login p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order:hover, body .woocommerce form.woocommerce-form-login p.form-row ul.products li.product button.button:hover, body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.red.button:hover, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button.add_to_cart_button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row button.button#place_order:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row ul.products li.product button.button:hover, body .woocommerce ul.products li.product #customer_login form.woocommerce-form-register p.form-row button.button:hover, #code-form .gform_wrapper .gform_footer input.red:hover, #code-form .gform_wrapper .gform_footer body input.add_to_cart_button:hover, body #code-form .gform_wrapper .gform_footer input.add_to_cart_button:hover, #code-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product #code-form .gform_wrapper .gform_footer input.button:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit]:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button:hover, body .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button:hover, body .woocommerce ul.products li.product .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button:hover, body .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button:hover, body .woocommerce ul.products li.product .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button:hover, .woocommerce ul.products .product-block .product-meta .single-product-content a.red.button:hover, .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce ul.products .product-block .product-meta .single-product-content a.button.reset_variations:hover, .woocommerce ul.products .product-block .product-meta .single-product-content body a.button.add_to_cart_button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content a.button.add_to_cart_button:hover, .woocommerce body ul.products li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content a.button.checkout-button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content li.product a.button:hover, body .woocommerce ul.products li.product .product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content a.button.delete:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content a.button:hover, #newsletter-form .gform_wrapper .gform_footer input.red:hover, #newsletter-form .gform_wrapper .gform_footer body input.add_to_cart_button:hover, body #newsletter-form .gform_wrapper .gform_footer input.add_to_cart_button:hover, #newsletter-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product #newsletter-form .gform_wrapper .gform_footer input.button:hover, .error404 .hero .the-content a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button:hover, #footer .footer-primary-nav ul li.is-btn a.red:hover, #footer .footer-primary-nav ul li.is-btn body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value #footer .footer-primary-nav ul li.is-btn a.reset_variations:hover, #footer .footer-primary-nav ul li.is-btn body a.add_to_cart_button:hover, body #footer .footer-primary-nav ul li.is-btn a.add_to_cart_button:hover, #footer .footer-primary-nav body ul.products li.is-btn li.product-block .product-meta .single-product-content a.button:hover, body #footer .footer-primary-nav ul.products li.is-btn li.product-block .product-meta .single-product-content a.button:hover, #footer .footer-primary-nav body ul.products li.product-block .product-meta .single-product-content li.is-btn a.button:hover, body #footer .footer-primary-nav ul.products li.product-block .product-meta .single-product-content li.is-btn a.button:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals #footer .footer-primary-nav ul li.is-btn a.checkout-button:hover, #footer .footer-primary-nav body .woocommerce ul.products li.is-btn li.product a.button:hover, body .woocommerce #footer .footer-primary-nav ul.products li.is-btn li.product a.button:hover, #footer .footer-primary-nav body .woocommerce ul.products li.product li.is-btn a.button:hover, body .woocommerce #footer .footer-primary-nav ul.products li.product li.is-btn a.button:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td #footer .footer-primary-nav ul li.is-btn a.delete:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses #footer .footer-primary-nav ul li.is-btn a.edit:hover, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a:hover, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a:hover, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a:hover, #footer .footer-primary-nav ul li.is-btn .error404 .hero .the-content a.button:hover, #footer .footer-primary-nav ul li.is-btn .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product #footer .footer-primary-nav ul li.is-btn .error404 .hero .woocommerce-product-details__short-description a.button:hover, .error404 .hero .the-content #footer .footer-primary-nav ul li.is-btn a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button:hover, .form .gform_wrapper .gform_footer input[type=submit]:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.red:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body input.add_to_cart_button:hover, body .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.add_to_cart_button:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button:hover, form#affwp-register-form fieldset p input.red.button:hover, form#affwp-register-form fieldset p body input.button.add_to_cart_button:hover, body form#affwp-register-form fieldset p input.button.add_to_cart_button:hover, form#affwp-register-form fieldset p body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product form#affwp-register-form fieldset p input.button:hover, form#affwp-register-form fieldset p .form .gform_wrapper .gform_footer input.button[type=submit]:hover, .form .gform_wrapper .gform_footer form#affwp-register-form fieldset p input.button[type=submit]:hover {
  background: #7940B1;
  color: #FFFFFF !important;
}
.btn.red-outline, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.red-outline[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.red-outline[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.red-outline.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.red-outline.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.red-outline.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.red-outline.button, body.single-product .product .gift_card_template_button button.red-outline.button, body.single-product .product form.gift-cards_form .gift-cards-list button.red-outline, body.single-product .woocommerce-message a.red-outline.button, body .red-outline.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.red-outline.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.red-outline.button, body .woocommerce #payment .form-row.place-order button.red-outline#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red-outline.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red-outline.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.red-outline.button, body .woocommerce .woocommerce-form-coupon button.red-outline.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.red-outline.button, body .woocommerce .cart-collaterals table.shop_table td a.red-outline.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.red-outline.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.red-outline[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.red-outline.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.red-outline[type=button], body .woocommerce ul.products li.product .red-outline.button, body .woocommerce .woocommerce-error a .red-outline.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.red-outline.button, body .woocommerce .return-to-shop a.red-outline, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.red-outline.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.red-outline.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.red-outline.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.red-outline.button, body .woocommerce .woocommerce-MyAccount-content a.red-outline.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.red-outline.delete, body .woocommerce .woocommerce-MyAccount-content form button.red-outline.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.red-outline.edit, body .woocommerce .woocommerce-MyAccount-content a.red-outline.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .red-outline.button, body .woocommerce .woocommerce-MyAccount-content button.red-outline, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.red-outline, body .woocommerce form.lost_reset_password button.red-outline.button, body .woocommerce form.woocommerce-form-login p.form-row button.red-outline.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.red-outline.button, #code-form .gform_wrapper .gform_footer input.red-outline, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.red-outline[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.red-outline[type=submit], .woocommerce ul.products .product-block .product-meta .single-product-content a.red-outline.button, #newsletter-form .gform_wrapper .gform_footer input.red-outline, .error404 .hero .the-content a.red-outline.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.red-outline.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.red-outline.button, #footer .footer-primary-nav ul li.is-btn a.red-outline, .form .gform_wrapper .gform_footer input.red-outline[type=submit], .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.red-outline, form#affwp-register-form fieldset p input.red-outline.button {
  border: 2px solid #FB414D;
  color: #FFFFFF;
  background: transparent;
}
.btn.red-outline:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.red-outline[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.red-outline[type=button]:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.red-outline.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.red-outline.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.red-outline.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.red-outline.button:hover, body.single-product .product .gift_card_template_button button.red-outline.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.red-outline:hover, body.single-product .woocommerce-message a.red-outline.button:hover, body .red-outline.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content a.red-outline.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.red-outline.button:hover, body .woocommerce #payment .form-row.place-order button.red-outline#place_order:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red-outline.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red-outline.woocommerce-remove-coupon:hover, body .woocommerce form.checkout-coupon button.red-outline.button:hover, body .woocommerce .woocommerce-form-coupon button.red-outline.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.red-outline.button:hover, body .woocommerce .cart-collaterals table.shop_table td a.red-outline.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.red-outline.checkout-button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.red-outline.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.red-outline[type=button]:hover, body .woocommerce ul.products li.product .red-outline.button:hover, body .woocommerce .woocommerce-error a .red-outline.wc-backward:hover, body .woocommerce .ywgc_enter_code p.form-row button.red-outline.button:hover, body .woocommerce .return-to-shop a.red-outline:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.red-outline.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.red-outline.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.red-outline.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.red-outline.button:hover, body .woocommerce .woocommerce-MyAccount-content a.red-outline.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.red-outline.delete:hover, body .woocommerce .woocommerce-MyAccount-content form button.red-outline.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.red-outline.edit:hover, body .woocommerce .woocommerce-MyAccount-content a.red-outline.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content table td .red-outline.button:hover, body .woocommerce .woocommerce-MyAccount-content button.red-outline:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.red-outline:hover, body .woocommerce form.lost_reset_password button.red-outline.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.red-outline.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.red-outline.button:hover, #code-form .gform_wrapper .gform_footer input.red-outline:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.red-outline[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.red-outline[type=submit]:hover, .woocommerce ul.products .product-block .product-meta .single-product-content a.red-outline.button:hover, #newsletter-form .gform_wrapper .gform_footer input.red-outline:hover, .error404 .hero .the-content a.red-outline.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.red-outline.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.red-outline.button:hover, #footer .footer-primary-nav ul li.is-btn a.red-outline:hover, .form .gform_wrapper .gform_footer input.red-outline[type=submit]:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.red-outline:hover, form#affwp-register-form fieldset p input.red-outline.button:hover {
  border: 2px solid #7940B1;
  background: #7940B1;
  color: #FFFFFF !important;
}
.btn.blue, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.blue[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.blue[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.blue.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.blue.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.blue.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.blue.button, body.single-product .product .gift_card_template_button button.blue.button, body.single-product .product form.gift-cards_form .gift-cards-list button.blue, body.single-product .woocommerce-message a.blue.button, body .blue.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.blue.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.blue.button, body .woocommerce #payment .form-row.place-order button.blue#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.blue.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.blue.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.blue.button, body .woocommerce .woocommerce-form-coupon button.blue.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.blue.button, body .woocommerce .cart-collaterals table.shop_table td a.blue.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.blue.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.blue[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.blue.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.blue[type=button], body .woocommerce ul.products li.product .blue.button, body .woocommerce .woocommerce-error a .blue.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.blue.button, body .woocommerce .return-to-shop a.btn, body .woocommerce .return-to-shop .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .return-to-shop a.wc-forward, body.single-product .woocommerce .return-to-shop .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop a.reset_variations, body.single-product .woocommerce .return-to-shop .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .return-to-shop a.button, body .woocommerce .return-to-shop a.add_to_cart_button, body .woocommerce .return-to-shop ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop a.button, body .woocommerce .return-to-shop form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .return-to-shop a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .return-to-shop a.checkout-button, body .woocommerce .return-to-shop ul.products li.product a.button, body .woocommerce ul.products li.product .return-to-shop a.button, body .woocommerce .return-to-shop .woocommerce-error a a.wc-backward, body .woocommerce .woocommerce-error a .return-to-shop a.wc-backward, body .woocommerce .return-to-shop a.blue, body .woocommerce .return-to-shop a, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.blue.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.blue.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.btn.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .woocommerce-error a input.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.blue.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.blue.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.blue#place_order, body .woocommerce .woocommerce-MyAccount-content a.blue.button, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.button, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.blue.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .return-to-shop a.delete, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content form button.blue.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.blue.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .return-to-shop a.edit, body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content a.btn.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.woocommerce-button.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.woocommerce-button.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.woocommerce-button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.woocommerce-button.checkout-button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.woocommerce-button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.woocommerce-button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.woocommerce-button.wc-backward, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.woocommerce-button, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.woocommerce-button.edit, body .woocommerce .woocommerce-MyAccount-content a.blue.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.woocommerce-button, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .blue.button, body .woocommerce .woocommerce-MyAccount-content table td .return-to-shop a.button, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav table td input.button, body .woocommerce .woocommerce-MyAccount-content table td a.button.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content button.blue, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.blue, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .return-to-shop a, body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-button, body .woocommerce form.lost_reset_password button.blue.button, body .woocommerce form.woocommerce-form-login p.form-row button.btn.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row button.button.add_to_cart_button, body .woocommerce form.woocommerce-form-login p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order, body .woocommerce form.woocommerce-form-login p.form-row form.checkout-coupon button.button, body .woocommerce form.checkout-coupon form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row ul.products li.product button.button, body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a form.woocommerce-form-login p.form-row button.button.wc-backward, body .woocommerce form.woocommerce-form-login .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row form.lost_reset_password button.button, body .woocommerce form.lost_reset_password form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row button.blue.button, body .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.blue.button, body .woocommerce #customer_login form.woocommerce-form-register form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login #customer_login form.woocommerce-form-register p.form-row button.button, #code-form .gform_wrapper .gform_footer input.blue, #code-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #code-form .gform_wrapper .gform_footer input.button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .woocommerce ul.products .product-block .product-meta .single-product-content a.blue.button, body .woocommerce ul.products .product-block .product-meta .single-product-content .return-to-shop a.button, body .woocommerce .return-to-shop ul.products .product-block .product-meta .single-product-content a.button, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content a.button.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content ul.products .product-block .product-meta .single-product-content a.button.woocommerce-button, #newsletter-form .gform_wrapper .gform_footer input.blue, #newsletter-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #newsletter-form .gform_wrapper .gform_footer input.button, #newsletter-form .gform_wrapper .gform_footer .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph #newsletter-form .gform_wrapper .gform_footer input[type=submit], #newsletter-form .gform_wrapper .gform_footer .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph #newsletter-form .gform_wrapper .gform_footer input[type=submit], .error404 .hero .the-content a.blue.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.blue.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.blue.button, .error404 .hero .the-content body .woocommerce .return-to-shop a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .return-to-shop a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .return-to-shop a.button, body .woocommerce .return-to-shop .error404 .hero .the-content a.button, body.single-product .woocommerce .return-to-shop .error404 .hero .product .woocommerce-product-details__short-description a.button, body.single-product .product .woocommerce .return-to-shop .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-content a.button.woocommerce-button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button.woocommerce-button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .error404 .hero .the-content a.button.woocommerce-button, body.single-product .woocommerce .woocommerce-MyAccount-content .error404 .hero .product .woocommerce-product-details__short-description a.button.woocommerce-button, body.single-product .product .woocommerce .woocommerce-MyAccount-content .error404 .hero .woocommerce-product-details__short-description a.button.woocommerce-button, #footer .footer-primary-nav ul li.is-btn a.blue, #footer .footer-primary-nav ul li.is-btn body .woocommerce .return-to-shop a, body .woocommerce .return-to-shop #footer .footer-primary-nav ul li.is-btn a, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content #footer .footer-primary-nav ul li.is-btn a.woocommerce-button, .form .gform_wrapper .gform_footer input.blue[type=submit], .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .gform_footer .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.blue, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button, form#affwp-register-form fieldset p input.button {
  background: #00ABC0;
  color: #FFFFFF;
}
.btn.blue:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.blue[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.blue[type=button]:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.blue.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.blue.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.blue.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.blue.button:hover, body.single-product .product .gift_card_template_button button.blue.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.blue:hover, body.single-product .woocommerce-message a.blue.button:hover, body .blue.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content a.blue.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.blue.button:hover, body .woocommerce #payment .form-row.place-order button.blue#place_order:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.blue.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.blue.woocommerce-remove-coupon:hover, body .woocommerce form.checkout-coupon button.blue.button:hover, body .woocommerce .woocommerce-form-coupon button.blue.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.blue.button:hover, body .woocommerce .cart-collaterals table.shop_table td a.blue.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.blue.checkout-button:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.blue[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.blue.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.blue[type=button]:hover, body .woocommerce ul.products li.product .blue.button:hover, body .woocommerce .woocommerce-error a .blue.wc-backward:hover, body .woocommerce .ywgc_enter_code p.form-row button.blue.button:hover, body .woocommerce .return-to-shop a.btn:hover, body .woocommerce .return-to-shop .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .return-to-shop a.wc-forward:hover, body.single-product .woocommerce .return-to-shop .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop a.reset_variations:hover, body.single-product .woocommerce .return-to-shop .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .return-to-shop a.button:hover, body .woocommerce .return-to-shop a.add_to_cart_button:hover, body .woocommerce .return-to-shop ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop a.button:hover, body .woocommerce .return-to-shop form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .return-to-shop a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .return-to-shop a.checkout-button:hover, body .woocommerce .return-to-shop ul.products li.product a.button:hover, body .woocommerce ul.products li.product .return-to-shop a.button:hover, body .woocommerce .return-to-shop .woocommerce-error a a.wc-backward:hover, body .woocommerce .woocommerce-error a .return-to-shop a.wc-backward:hover, body .woocommerce .return-to-shop a.blue:hover, body .woocommerce .return-to-shop a:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.blue.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.blue.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.blue.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.blue#place_order:hover, body .woocommerce .woocommerce-MyAccount-content a.blue.button:hover, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.button:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.blue.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .return-to-shop a.delete:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content form button.blue.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.blue.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .return-to-shop a.edit:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content a.btn.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.woocommerce-button.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.woocommerce-button.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.woocommerce-button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.woocommerce-button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.woocommerce-button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.woocommerce-button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.woocommerce-button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.woocommerce-button:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.woocommerce-button.edit:hover, body .woocommerce .woocommerce-MyAccount-content a.blue.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.woocommerce-button:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content table td .blue.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .return-to-shop a.button:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table td a.button:hover, body .woocommerce .woocommerce-MyAccount-content table td a.button.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content button.blue:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.blue:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .return-to-shop a:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-button:hover, body .woocommerce form.lost_reset_password button.blue.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.btn.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.button.add_to_cart_button:hover, body .woocommerce form.woocommerce-form-login p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order:hover, body .woocommerce form.woocommerce-form-login p.form-row form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row ul.products li.product button.button:hover, body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a form.woocommerce-form-login p.form-row button.button.wc-backward:hover, body .woocommerce form.woocommerce-form-login .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.blue.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.blue.button:hover, body .woocommerce #customer_login form.woocommerce-form-register form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login #customer_login form.woocommerce-form-register p.form-row button.button:hover, #code-form .gform_wrapper .gform_footer input.blue:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit]:hover, .woocommerce ul.products .product-block .product-meta .single-product-content a.blue.button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .return-to-shop a.button:hover, body .woocommerce .return-to-shop ul.products .product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content a.button.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products .product-block .product-meta .single-product-content a.button.woocommerce-button:hover, #newsletter-form .gform_wrapper .gform_footer input.blue:hover, #newsletter-form .gform_wrapper .gform_footer .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit]:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph #newsletter-form .gform_wrapper .gform_footer input[type=submit]:hover, #newsletter-form .gform_wrapper .gform_footer .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph #newsletter-form .gform_wrapper .gform_footer input[type=submit]:hover, .error404 .hero .the-content a.blue.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.blue.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.blue.button:hover, .error404 .hero .the-content body .woocommerce .return-to-shop a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .return-to-shop a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .return-to-shop a.button:hover, body .woocommerce .return-to-shop .error404 .hero .the-content a.button:hover, body.single-product .woocommerce .return-to-shop .error404 .hero .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .woocommerce .return-to-shop .error404 .hero .woocommerce-product-details__short-description a.button:hover, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-content a.button.woocommerce-button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button.woocommerce-button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .error404 .hero .the-content a.button.woocommerce-button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .error404 .hero .product .woocommerce-product-details__short-description a.button.woocommerce-button:hover, body.single-product .product .woocommerce .woocommerce-MyAccount-content .error404 .hero .woocommerce-product-details__short-description a.button.woocommerce-button:hover, #footer .footer-primary-nav ul li.is-btn a.blue:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .return-to-shop a:hover, body .woocommerce .return-to-shop #footer .footer-primary-nav ul li.is-btn a:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content #footer .footer-primary-nav ul li.is-btn a.woocommerce-button:hover, .form .gform_wrapper .gform_footer input.blue[type=submit]:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.blue:hover, form#affwp-register-form fieldset p input.button:hover {
  background: #032D40;
}
.btn.purple, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.purple[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.purple[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.btn.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.purple.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.purple.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.purple.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations.wc-forward, body.single-product .product #personnaliser-le-livre form.cart button.purple.button, body.single-product .product .gift_card_template_button button.purple.button, body.single-product .product form.gift-cards_form .gift-cards-list button.btn, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .gift_card_template_button button.button, body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list button.purple, body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .woocommerce-message a.btn.button, body.single-product .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper body.single-product .woocommerce-message a.button.wc-forward, body.single-product .woocommerce-message .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message a.button.reset_variations, body.single-product .woocommerce-message a.purple.button, body.single-product .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper body.single-product .woocommerce-message a.button.wc-forward, body.single-product .woocommerce-message a.button, body .purple.add_to_cart_button, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body a.add_to_cart_button.wc-forward, body.single-product .product form.gift-cards_form .gift-cards-list button.add_to_cart_button, body.single-product .woocommerce-message a.add_to_cart_button.button, body ul.products li.product-block .product-meta .single-product-content a.purple.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body ul.products li.product-block .product-meta .single-product-content a.button.wc-forward, body.single-product ul.products li.product-block .product-meta .single-product-content .woocommerce-message a.button, body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content a.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.purple.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .woocommerce #payment .form-row.place-order button.purple#place_order, body.single-product .woocommerce #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.purple.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.purple.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce form.checkout-coupon button.btn.button, body.single-product .woocommerce form.checkout-coupon .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon button.button, body.single-product .woocommerce form.checkout-coupon .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon button.button, body.single-product .woocommerce form.checkout-coupon .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon button.button, body.single-product .woocommerce form.checkout-coupon .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon button.button.add_to_cart_button, body .woocommerce form.checkout-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.checkout-coupon button.button#place_order, body .woocommerce .woocommerce-form-coupon button.btn.button, body.single-product .woocommerce .woocommerce-form-coupon .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon button.button, body.single-product .woocommerce .woocommerce-form-coupon .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon button.button, body.single-product .woocommerce .woocommerce-form-coupon .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon button.button, body.single-product .woocommerce .woocommerce-form-coupon .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon button.button.add_to_cart_button, body .woocommerce .woocommerce-form-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon button.button#place_order, body .woocommerce form.checkout-coupon button.purple.button, body.single-product .woocommerce form.checkout-coupon .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon form.checkout-coupon button.button, body .woocommerce .woocommerce-form-coupon button.purple.button, body.single-product .woocommerce .woocommerce-form-coupon .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.btn.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button.add_to_cart_button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button.button#place_order, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.purple.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals table.shop_table td a.purple.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce .cart-collaterals table.shop_table td .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button, body .woocommerce .cart-collaterals a.purple.checkout-button, body .woocommerce .cart-collaterals .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals a.checkout-button.wc-forward, body.single-product .woocommerce .cart-collaterals .woocommerce-message a.checkout-button.button, body.single-product .woocommerce-message .woocommerce .cart-collaterals a.checkout-button.button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.purple[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.btn.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table button.button.add_to_cart_button, body .woocommerce .woocommerce-cart-form table.shop_table .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table button.button#place_order, body .woocommerce .woocommerce-cart-form table.shop_table form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table button.purple.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.purple[type=button], body .woocommerce ul.products li.product .purple.button, body .woocommerce ul.products li.product .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product a.button.wc-forward, body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list button.button, body.single-product .woocommerce ul.products li.product .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce ul.products li.product a.button, body .woocommerce ul.products li.product form.checkout-coupon button.button, body .woocommerce form.checkout-coupon ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon ul.products li.product button.button, body .woocommerce ul.products li.product .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product button.button, body .woocommerce .woocommerce-error a .btn.wc-backward, body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.wc-backward[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-error a input.wc-backward[type=button], body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.wc-backward[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-error a input.wc-backward[type=button], body .woocommerce .woocommerce-error a .woocommerce-notices-wrapper .woocommerce-message a.wc-backward.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-error a a.wc-backward.wc-forward, body.single-product .woocommerce .woocommerce-error a .product .woocommerce-variation-add-to-cart button.wc-backward.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a button.wc-backward.button, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a a.wc-backward.reset_variations, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.cart button.wc-backward.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a button.wc-backward.button, body.single-product .woocommerce .woocommerce-error a .product .gift_card_template_button button.wc-backward.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a button.wc-backward.button, body.single-product .woocommerce .woocommerce-error a .product form.gift-cards_form .gift-cards-list button.wc-backward, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-error a button.wc-backward, body.single-product .woocommerce .woocommerce-error a .woocommerce-message a.wc-backward.button, body.single-product .woocommerce-message .woocommerce .woocommerce-error a a.wc-backward.button, body .woocommerce .woocommerce-error a .wc-backward.add_to_cart_button, body .woocommerce .woocommerce-error a ul.products li.product-block .product-meta .single-product-content a.wc-backward.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a a.wc-backward.button, body .woocommerce .woocommerce-error a .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a #payment .form-row.place-order button.wc-backward#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-error a button.wc-backward#place_order, body .woocommerce .woocommerce-error a form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a form.checkout-coupon button.wc-backward.button, body .woocommerce form.checkout-coupon .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .woocommerce-form-coupon button.wc-backward.button, body .woocommerce .woocommerce-form-coupon .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .cart-collaterals form.woocommerce-shipping-calculator button.wc-backward.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .cart-collaterals a.wc-backward.checkout-button, body .woocommerce .cart-collaterals .woocommerce-error a a.wc-backward.checkout-button, body .woocommerce .woocommerce-error a .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.wc-backward[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .woocommerce-error a input.wc-backward[type=button], body .woocommerce .woocommerce-error a .woocommerce-cart-form table.shop_table button.wc-backward.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.wc-backward[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .woocommerce-error a input.wc-backward[type=button], body .woocommerce .woocommerce-error a ul.products li.product .wc-backward.button, body .woocommerce ul.products li.product .woocommerce-error a .wc-backward.button, body .woocommerce .woocommerce-error a .purple.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-notices-wrapper .woocommerce-message a.wc-backward.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-error a a.wc-backward.wc-forward, body.single-product .woocommerce .woocommerce-error a .product form.gift-cards_form .gift-cards-list button.wc-backward, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-error a button.wc-backward, body.single-product .woocommerce .woocommerce-error a .woocommerce-message a.wc-backward.button, body.single-product .woocommerce-message .woocommerce .woocommerce-error a a.wc-backward.button, body .woocommerce .woocommerce-error a form.checkout-coupon button.wc-backward.button, body .woocommerce form.checkout-coupon .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .woocommerce-form-coupon button.wc-backward.button, body .woocommerce .woocommerce-form-coupon .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .cart-collaterals form.woocommerce-shipping-calculator button.wc-backward.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .woocommerce-cart-form table.shop_table button.wc-backward.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-error a button.wc-backward.button, body .woocommerce .woocommerce-error a .wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.btn.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row button.button.add_to_cart_button, body .woocommerce .ywgc_enter_code p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row button.button#place_order, body .woocommerce .ywgc_enter_code p.form-row form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row ul.products li.product button.button, body .woocommerce ul.products li.product .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a .ywgc_enter_code p.form-row button.button.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.purple.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a .ywgc_enter_code p.form-row button.button.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .return-to-shop a.purple, body .woocommerce .return-to-shop .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .return-to-shop a.wc-forward, body.single-product .woocommerce .return-to-shop .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .return-to-shop a.button, body .woocommerce .return-to-shop .woocommerce-error a a.wc-backward, body .woocommerce .woocommerce-error a .return-to-shop a.wc-backward, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.purple.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .woocommerce-error a input.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.purple.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .woocommerce-error a input.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.purple.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .woocommerce-error a input.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.purple.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form.edit-account button.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content form.edit-account .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.purple#place_order, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.checkout-coupon button#place_order.button, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-form-coupon button#place_order.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button#place_order.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-cart-form table.shop_table button#place_order.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-error a button#place_order.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.wc-backward, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .ywgc_enter_code p.form-row button#place_order.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, body .woocommerce .woocommerce-MyAccount-content a.btn.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.button.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.button.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content a.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.button.checkout-button, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.button, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content a.purple.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.button.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.purple.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-message a.delete.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-error a a.delete.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-backward, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content form button.purple.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content form.gift-cards_form .gift-cards-list button.button, body .woocommerce .woocommerce-MyAccount-content form.checkout-coupon button.button, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content form.woocommerce-shipping-calculator button.button, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form button.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content form .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.purple.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-message a.edit.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-error a a.edit.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-backward, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, body .woocommerce .woocommerce-MyAccount-content a.purple.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.woocommerce-button.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.woocommerce-button.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.woocommerce-button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.woocommerce-button.wc-backward, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content table td .purple.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table td a.button.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content table td button.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table td button.button, body .woocommerce .woocommerce-cart-form .woocommerce-MyAccount-content table.shop_table td button.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-error a .button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table td .button.wc-backward, body .woocommerce .woocommerce-MyAccount-content table td .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content button.purple, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-content form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content button.wc-backward, body .woocommerce .woocommerce-MyAccount-content .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.purple, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-error a a.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-backward, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce form.lost_reset_password button.btn.button, body.single-product .woocommerce form.lost_reset_password .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password button.button, body.single-product .woocommerce form.lost_reset_password .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password button.button, body.single-product .woocommerce form.lost_reset_password .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password button.button, body.single-product .woocommerce form.lost_reset_password .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password button.button.add_to_cart_button, body .woocommerce form.lost_reset_password .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.lost_reset_password button.button#place_order, body .woocommerce form.lost_reset_password form.checkout-coupon button.button, body .woocommerce form.checkout-coupon form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table form.lost_reset_password button.button, body .woocommerce form.lost_reset_password ul.products li.product button.button, body .woocommerce ul.products li.product form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a form.lost_reset_password button.button.wc-backward, body .woocommerce form.lost_reset_password .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.lost_reset_password button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content table td button.button, body .woocommerce .woocommerce-MyAccount-content table td form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content button.button, body .woocommerce .woocommerce-MyAccount-content form.lost_reset_password button.button, body .woocommerce form.lost_reset_password button.purple.button, body.single-product .woocommerce form.lost_reset_password .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password form.checkout-coupon button.button, body .woocommerce form.checkout-coupon form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a form.lost_reset_password button.button.wc-backward, body .woocommerce form.lost_reset_password .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row form.lost_reset_password button.button, body .woocommerce form.lost_reset_password button.button, body .woocommerce form.woocommerce-form-login p.form-row button.purple.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row form.checkout-coupon button.button, body .woocommerce form.checkout-coupon form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a form.woocommerce-form-login p.form-row button.button.wc-backward, body .woocommerce form.woocommerce-form-login .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row form.lost_reset_password button.button, body .woocommerce form.lost_reset_password form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.purple.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row form.checkout-coupon button.button, body .woocommerce form.checkout-coupon #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a #customer_login form.woocommerce-form-register p.form-row button.button.wc-backward, body .woocommerce #customer_login form.woocommerce-form-register .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row form.lost_reset_password button.button, body .woocommerce form.lost_reset_password #customer_login form.woocommerce-form-register p.form-row button.button, #code-form .gform_wrapper .gform_footer input.purple, #code-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-error a input.wc-backward, body .woocommerce .woocommerce-error a #code-form .gform_wrapper .gform_footer input.wc-backward, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.purple[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-error a input[type=submit].wc-backward, body .woocommerce .woocommerce-error a .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].wc-backward, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.purple[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-error a input[type=submit].wc-backward, body .woocommerce .woocommerce-error a .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].wc-backward, .woocommerce ul.products .product-block .product-meta .single-product-content a.purple.button, .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products .product-block .product-meta .single-product-content a.button.wc-forward, .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce ul.products .product-block .product-meta .single-product-content a.button, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-error a a.button.wc-backward, body .woocommerce .woocommerce-error a ul.products .product-block .product-meta .single-product-content a.button.wc-backward, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content ul.products .product-block .product-meta .single-product-content a.button, #newsletter-form .gform_wrapper .gform_footer input.purple, #newsletter-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-error a input.wc-backward, body .woocommerce .woocommerce-error a #newsletter-form .gform_wrapper .gform_footer input.wc-backward, .error404 .hero .the-content a.purple.button, .error404 .hero .the-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .error404 .hero .the-content a.button.wc-forward, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.purple.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button.wc-forward, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.purple.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button.wc-forward, .error404 .hero .the-content body.single-product .woocommerce-message a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body.single-product .woocommerce-message a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body.single-product .woocommerce-message a.button, body.single-product .woocommerce-message .error404 .hero .the-content a.button, body.single-product .woocommerce-message .error404 .hero .product .woocommerce-product-details__short-description a.button, body.single-product .product .woocommerce-message .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content body .woocommerce .woocommerce-error a a.button.wc-backward, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-error a a.button.wc-backward, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-error a a.button.wc-backward, body .woocommerce .woocommerce-error a .error404 .hero .the-content a.button.wc-backward, body.single-product .woocommerce .woocommerce-error a .error404 .hero .product .woocommerce-product-details__short-description a.button.wc-backward, body.single-product .product .woocommerce .woocommerce-error a .error404 .hero .woocommerce-product-details__short-description a.button.wc-backward, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-content a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .error404 .hero .the-content a.button, body.single-product .woocommerce .woocommerce-MyAccount-content .error404 .hero .product .woocommerce-product-details__short-description a.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content .error404 .hero .woocommerce-product-details__short-description a.button, #footer .footer-primary-nav ul li.is-btn a.purple, #footer .footer-primary-nav ul li.is-btn .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message #footer .footer-primary-nav ul li.is-btn a.wc-forward, #footer .footer-primary-nav ul li.is-btn body.single-product .woocommerce-message a.button, body.single-product .woocommerce-message #footer .footer-primary-nav ul li.is-btn a.button, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-error a a.wc-backward, body .woocommerce .woocommerce-error a #footer .footer-primary-nav ul li.is-btn a.wc-backward, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content #footer .footer-primary-nav ul li.is-btn a.button, .form .gform_wrapper .gform_footer input.purple[type=submit], .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-error a input[type=submit].wc-backward, body .woocommerce .woocommerce-error a .form .gform_wrapper .gform_footer input[type=submit].wc-backward, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.purple, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce .woocommerce-error a input.wc-backward, body .woocommerce .woocommerce-error a .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.wc-backward, form#affwp-register-form fieldset p input.purple.button, form#affwp-register-form fieldset p body .woocommerce .woocommerce-error a input.button.wc-backward, body .woocommerce .woocommerce-error a form#affwp-register-form fieldset p input.button.wc-backward {
  background: #7940B1;
  color: #FFFFFF;
}
.btn.purple:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.purple[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.purple[type=button]:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.btn.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.purple.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.purple.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.purple.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations.wc-forward:hover, body.single-product .product #personnaliser-le-livre form.cart button.purple.button:hover, body.single-product .product .gift_card_template_button button.purple.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.btn:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.purple:hover, body.single-product .product form.gift-cards_form .gift-cards-list button:hover, body.single-product .woocommerce-message a.btn.button:hover, body.single-product .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper body.single-product .woocommerce-message a.button.wc-forward:hover, body.single-product .woocommerce-message .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message a.button.reset_variations:hover, body.single-product .woocommerce-message a.purple.button:hover, body.single-product .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper body.single-product .woocommerce-message a.button.wc-forward:hover, body.single-product .woocommerce-message a.button:hover, body .purple.add_to_cart_button:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body a.add_to_cart_button.wc-forward:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.add_to_cart_button:hover, body.single-product .woocommerce-message a.add_to_cart_button.button:hover, body ul.products li.product-block .product-meta .single-product-content a.purple.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body ul.products li.product-block .product-meta .single-product-content a.button.wc-forward:hover, body.single-product ul.products li.product-block .product-meta .single-product-content .woocommerce-message a.button:hover, body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content a.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.purple.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .woocommerce #payment .form-row.place-order button.purple#place_order:hover, body.single-product .woocommerce #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order button#place_order:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.purple.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.purple.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce form.checkout-coupon button.btn.button:hover, body.single-product .woocommerce form.checkout-coupon .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon button.button:hover, body.single-product .woocommerce form.checkout-coupon .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon button.button:hover, body.single-product .woocommerce form.checkout-coupon .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon button.button:hover, body.single-product .woocommerce form.checkout-coupon .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon button.button.add_to_cart_button:hover, body .woocommerce form.checkout-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.checkout-coupon button.button#place_order:hover, body .woocommerce .woocommerce-form-coupon button.btn.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon button.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon button.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon button.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-form-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon button.button#place_order:hover, body .woocommerce form.checkout-coupon button.purple.button:hover, body.single-product .woocommerce form.checkout-coupon .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon form.checkout-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon button.purple.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.btn.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button.add_to_cart_button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button.button#place_order:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.purple.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals table.shop_table td a.purple.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce .cart-collaterals table.shop_table td .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button:hover, body .woocommerce .cart-collaterals a.purple.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals a.checkout-button.wc-forward:hover, body.single-product .woocommerce .cart-collaterals .woocommerce-message a.checkout-button.button:hover, body.single-product .woocommerce-message .woocommerce .cart-collaterals a.checkout-button.button:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.purple[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.btn.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table button.button#place_order:hover, body .woocommerce .woocommerce-cart-form table.shop_table form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.purple.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.purple[type=button]:hover, body .woocommerce ul.products li.product .purple.button:hover, body .woocommerce ul.products li.product .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product a.button.wc-forward:hover, body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .woocommerce ul.products li.product .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce ul.products li.product a.button:hover, body .woocommerce ul.products li.product form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon ul.products li.product button.button:hover, body .woocommerce ul.products li.product .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product button.button:hover, body .woocommerce .woocommerce-error a .btn.wc-backward:hover, body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.wc-backward[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-error a input.wc-backward[type=button]:hover, body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.wc-backward[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-error a input.wc-backward[type=button]:hover, body .woocommerce .woocommerce-error a .woocommerce-notices-wrapper .woocommerce-message a.wc-backward.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-error a a.wc-backward.wc-forward:hover, body.single-product .woocommerce .woocommerce-error a .product .woocommerce-variation-add-to-cart button.wc-backward.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a button.wc-backward.button:hover, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a a.wc-backward.reset_variations:hover, body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.cart button.wc-backward.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a button.wc-backward.button:hover, body.single-product .woocommerce .woocommerce-error a .product .gift_card_template_button button.wc-backward.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a button.wc-backward.button:hover, body.single-product .woocommerce .woocommerce-error a .product form.gift-cards_form .gift-cards-list button.wc-backward:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-error a button.wc-backward:hover, body.single-product .woocommerce .woocommerce-error a .woocommerce-message a.wc-backward.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-error a a.wc-backward.button:hover, body .woocommerce .woocommerce-error a .wc-backward.add_to_cart_button:hover, body .woocommerce .woocommerce-error a ul.products li.product-block .product-meta .single-product-content a.wc-backward.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a a.wc-backward.button:hover, body .woocommerce .woocommerce-error a .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a #payment .form-row.place-order button.wc-backward#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-error a button.wc-backward#place_order:hover, body .woocommerce .woocommerce-error a form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a form.checkout-coupon button.wc-backward.button:hover, body .woocommerce form.checkout-coupon .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .woocommerce-form-coupon button.wc-backward.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .cart-collaterals form.woocommerce-shipping-calculator button.wc-backward.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .cart-collaterals a.wc-backward.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-error a a.wc-backward.checkout-button:hover, body .woocommerce .woocommerce-error a .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.wc-backward[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .woocommerce-error a input.wc-backward[type=button]:hover, body .woocommerce .woocommerce-error a .woocommerce-cart-form table.shop_table button.wc-backward.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.wc-backward[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .woocommerce-error a input.wc-backward[type=button]:hover, body .woocommerce .woocommerce-error a ul.products li.product .wc-backward.button:hover, body .woocommerce ul.products li.product .woocommerce-error a .wc-backward.button:hover, body .woocommerce .woocommerce-error a .purple.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-notices-wrapper .woocommerce-message a.wc-backward.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-error a a.wc-backward.wc-forward:hover, body.single-product .woocommerce .woocommerce-error a .product form.gift-cards_form .gift-cards-list button.wc-backward:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-error a button.wc-backward:hover, body.single-product .woocommerce .woocommerce-error a .woocommerce-message a.wc-backward.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-error a a.wc-backward.button:hover, body .woocommerce .woocommerce-error a form.checkout-coupon button.wc-backward.button:hover, body .woocommerce form.checkout-coupon .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .woocommerce-form-coupon button.wc-backward.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .cart-collaterals form.woocommerce-shipping-calculator button.wc-backward.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .woocommerce-cart-form table.shop_table button.wc-backward.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-error a button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .wc-backward:hover, body .woocommerce .ywgc_enter_code p.form-row button.btn.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row button.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row button.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row button.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row button.button.add_to_cart_button:hover, body .woocommerce .ywgc_enter_code p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row button.button#place_order:hover, body .woocommerce .ywgc_enter_code p.form-row form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row ul.products li.product button.button:hover, body .woocommerce ul.products li.product .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a .ywgc_enter_code p.form-row button.button.wc-backward:hover, body .woocommerce .ywgc_enter_code p.form-row button.purple.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a .ywgc_enter_code p.form-row button.button.wc-backward:hover, body .woocommerce .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .return-to-shop a.purple:hover, body .woocommerce .return-to-shop .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .return-to-shop a.wc-forward:hover, body.single-product .woocommerce .return-to-shop .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .return-to-shop a.button:hover, body .woocommerce .return-to-shop .woocommerce-error a a.wc-backward:hover, body .woocommerce .woocommerce-error a .return-to-shop a.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.purple.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .woocommerce-error a input.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.purple.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .woocommerce-error a input.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.purple.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .woocommerce-error a input.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.purple.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form.edit-account button.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.purple#place_order:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.checkout-coupon button#place_order.button:hover, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-form-coupon button#place_order.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button#place_order.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-cart-form table.shop_table button#place_order.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-error a button#place_order.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .ywgc_enter_code p.form-row button#place_order.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content a.btn.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.button.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.button.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content a.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content .return-to-shop a.button:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content a.purple.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.button.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.purple.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-message a.delete.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-error a a.delete.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content form button.purple.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product .woocommerce .woocommerce-MyAccount-content form.gift-cards_form .gift-cards-list button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout-coupon button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form button.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content form .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.purple.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-message a.edit.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-error a a.edit.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content a.purple.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content a.woocommerce-button.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-message a.woocommerce-button.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a a.woocommerce-button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content a.woocommerce-button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .purple.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table td a.button.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content table td button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table td a.button:hover, body .woocommerce .woocommerce-MyAccount-content table td form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table td button.button:hover, body .woocommerce .woocommerce-cart-form .woocommerce-MyAccount-content table.shop_table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-error a .button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table td .button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content table td .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td a.button:hover, body .woocommerce .woocommerce-MyAccount-content button.purple:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content button:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-error a button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.purple:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-error a a.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce form.lost_reset_password button.btn.button:hover, body.single-product .woocommerce form.lost_reset_password .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password button.button:hover, body.single-product .woocommerce form.lost_reset_password .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password button.button:hover, body.single-product .woocommerce form.lost_reset_password .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password button.button:hover, body.single-product .woocommerce form.lost_reset_password .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password button.button.add_to_cart_button:hover, body .woocommerce form.lost_reset_password .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.lost_reset_password button.button#place_order:hover, body .woocommerce form.lost_reset_password form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password ul.products li.product button.button:hover, body .woocommerce ul.products li.product form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a form.lost_reset_password button.button.wc-backward:hover, body .woocommerce form.lost_reset_password .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.lost_reset_password button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password button.purple.button:hover, body.single-product .woocommerce form.lost_reset_password .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a form.lost_reset_password button.button.wc-backward:hover, body .woocommerce form.lost_reset_password .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.purple.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a form.woocommerce-form-login p.form-row button.button.wc-backward:hover, body .woocommerce form.woocommerce-form-login .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.purple.button:hover, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a #customer_login form.woocommerce-form-register p.form-row button.button.wc-backward:hover, body .woocommerce #customer_login form.woocommerce-form-register .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code #customer_login form.woocommerce-form-register p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row form.lost_reset_password button.button:hover, body .woocommerce form.lost_reset_password #customer_login form.woocommerce-form-register p.form-row button.button:hover, #code-form .gform_wrapper .gform_footer input.purple:hover, #code-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-error a input.wc-backward:hover, body .woocommerce .woocommerce-error a #code-form .gform_wrapper .gform_footer input.wc-backward:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.purple[type=submit]:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-error a input[type=submit].wc-backward:hover, body .woocommerce .woocommerce-error a .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].wc-backward:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.purple[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-error a input[type=submit].wc-backward:hover, body .woocommerce .woocommerce-error a .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].wc-backward:hover, .woocommerce ul.products .product-block .product-meta .single-product-content a.purple.button:hover, .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products .product-block .product-meta .single-product-content a.button.wc-forward:hover, .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce ul.products .product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-error a a.button.wc-backward:hover, body .woocommerce .woocommerce-error a ul.products .product-block .product-meta .single-product-content a.button.wc-backward:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content ul.products .product-block .product-meta .single-product-content a.button:hover, #newsletter-form .gform_wrapper .gform_footer input.purple:hover, #newsletter-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-error a input.wc-backward:hover, body .woocommerce .woocommerce-error a #newsletter-form .gform_wrapper .gform_footer input.wc-backward:hover, .error404 .hero .the-content a.purple.button:hover, .error404 .hero .the-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .error404 .hero .the-content a.button.wc-forward:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.purple.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button.wc-forward:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.purple.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button.wc-forward:hover, .error404 .hero .the-content body.single-product .woocommerce-message a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body.single-product .woocommerce-message a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body.single-product .woocommerce-message a.button:hover, body.single-product .woocommerce-message .error404 .hero .the-content a.button:hover, body.single-product .woocommerce-message .error404 .hero .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .woocommerce-message .error404 .hero .woocommerce-product-details__short-description a.button:hover, .error404 .hero .the-content body .woocommerce .woocommerce-error a a.button.wc-backward:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-error a a.button.wc-backward:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-error a a.button.wc-backward:hover, body .woocommerce .woocommerce-error a .error404 .hero .the-content a.button.wc-backward:hover, body.single-product .woocommerce .woocommerce-error a .error404 .hero .product .woocommerce-product-details__short-description a.button.wc-backward:hover, body.single-product .product .woocommerce .woocommerce-error a .error404 .hero .woocommerce-product-details__short-description a.button.wc-backward:hover, .error404 .hero .the-content body .woocommerce .woocommerce-MyAccount-content a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description body .woocommerce .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content .error404 .hero .the-content a.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .error404 .hero .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .woocommerce .woocommerce-MyAccount-content .error404 .hero .woocommerce-product-details__short-description a.button:hover, #footer .footer-primary-nav ul li.is-btn a.purple:hover, #footer .footer-primary-nav ul li.is-btn .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message #footer .footer-primary-nav ul li.is-btn a.wc-forward:hover, #footer .footer-primary-nav ul li.is-btn body.single-product .woocommerce-message a.button:hover, body.single-product .woocommerce-message #footer .footer-primary-nav ul li.is-btn a.button:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-error a a.wc-backward:hover, body .woocommerce .woocommerce-error a #footer .footer-primary-nav ul li.is-btn a.wc-backward:hover, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content #footer .footer-primary-nav ul li.is-btn a.button:hover, .form .gform_wrapper .gform_footer input.purple[type=submit]:hover, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-error a input[type=submit].wc-backward:hover, body .woocommerce .woocommerce-error a .form .gform_wrapper .gform_footer input[type=submit].wc-backward:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.purple:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce .woocommerce-error a input.wc-backward:hover, body .woocommerce .woocommerce-error a .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.wc-backward:hover, form#affwp-register-form fieldset p input.purple.button:hover, form#affwp-register-form fieldset p body .woocommerce .woocommerce-error a input.button.wc-backward:hover, body .woocommerce .woocommerce-error a form#affwp-register-form fieldset p input.button.wc-backward:hover {
  background: #00ABC0;
}
.btn.white, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.white[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.white[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.white.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.white.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.white.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.white.button, body.single-product .product .gift_card_template_button button.white.button, body.single-product .product form.gift-cards_form .gift-cards-list button.white, body.single-product .woocommerce-message a.white.button, body .white.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.white.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.white.button, body .woocommerce #payment .form-row.place-order button.white#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.white.button, body .woocommerce .woocommerce-form-coupon button.white.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.white.button, body .woocommerce .cart-collaterals table.shop_table td a.white.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.white.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.white[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.white.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.white[type=button], body .woocommerce ul.products li.product .white.button, body .woocommerce .woocommerce-error a .white.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.white.button, body .woocommerce .return-to-shop a.white, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.white.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.white.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.white.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.white.button, body .woocommerce .woocommerce-MyAccount-content a.white.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.white.delete, body .woocommerce .woocommerce-MyAccount-content form button.white.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.white.edit, body .woocommerce .woocommerce-MyAccount-content a.white.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .white.button, body .woocommerce .woocommerce-MyAccount-content button.white, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.white, body .woocommerce form.lost_reset_password button.white.button, body .woocommerce form.woocommerce-form-login p.form-row button.white.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.white.button, #code-form .gform_wrapper .gform_footer input.white, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.white[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.white[type=submit], .woocommerce ul.products .product-block .product-meta .single-product-content a.white.button, #newsletter-form .gform_wrapper .gform_footer input.white, .error404 .hero .the-content a.white.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.white.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.white.button, #footer .footer-primary-nav ul li.is-btn a.white, .form .gform_wrapper .gform_footer input.white[type=submit], .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.white, form#affwp-register-form fieldset p input.white.button {
  background: #FFFFFF;
  color: #032D40;
}
.btn.white:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.white[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.white[type=button]:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.white.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.white.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.white.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.white.button:hover, body.single-product .product .gift_card_template_button button.white.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.white:hover, body.single-product .woocommerce-message a.white.button:hover, body .white.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content a.white.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.white.button:hover, body .woocommerce #payment .form-row.place-order button.white#place_order:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white.woocommerce-remove-coupon:hover, body .woocommerce form.checkout-coupon button.white.button:hover, body .woocommerce .woocommerce-form-coupon button.white.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.white.button:hover, body .woocommerce .cart-collaterals table.shop_table td a.white.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.white.checkout-button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.white.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.white[type=button]:hover, body .woocommerce ul.products li.product .white.button:hover, body .woocommerce .woocommerce-error a .white.wc-backward:hover, body .woocommerce .ywgc_enter_code p.form-row button.white.button:hover, body .woocommerce .return-to-shop a.white:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.white.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.white.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.white.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.white.button:hover, body .woocommerce .woocommerce-MyAccount-content a.white.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.white.delete:hover, body .woocommerce .woocommerce-MyAccount-content form button.white.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.white.edit:hover, body .woocommerce .woocommerce-MyAccount-content a.white.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content table td .white.button:hover, body .woocommerce .woocommerce-MyAccount-content button.white:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.white:hover, body .woocommerce form.lost_reset_password button.white.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.white.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.white.button:hover, #code-form .gform_wrapper .gform_footer input.white:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.white[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.white[type=submit]:hover, .woocommerce ul.products .product-block .product-meta .single-product-content a.white.button:hover, #newsletter-form .gform_wrapper .gform_footer input.white:hover, .error404 .hero .the-content a.white.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.white.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.white.button:hover, #footer .footer-primary-nav ul li.is-btn a.white:hover, .form .gform_wrapper .gform_footer input.white[type=submit]:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.white:hover, form#affwp-register-form fieldset p input.white.button:hover {
  background: #032D40;
  color: #FFFFFF;
}
.btn.white-pink, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.white-pink[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.white-pink[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.white-pink.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.white-pink.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.white-pink.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.white-pink.button, body.single-product .product .gift_card_template_button button.white-pink.button, body.single-product .product form.gift-cards_form .gift-cards-list button.white-pink, body.single-product .woocommerce-message a.white-pink.button, body .white-pink.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.white-pink.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.white-pink.button, body .woocommerce #payment .form-row.place-order button.white-pink#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white-pink.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white-pink.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.white-pink.button, body .woocommerce .woocommerce-form-coupon button.white-pink.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.white-pink.button, body .woocommerce .cart-collaterals table.shop_table td a.white-pink.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.white-pink.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.white-pink[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.white-pink.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.white-pink[type=button], body .woocommerce ul.products li.product .white-pink.button, body .woocommerce .woocommerce-error a .white-pink.wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.white-pink.button, body .woocommerce .return-to-shop a.white-pink, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.white-pink.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.white-pink.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.white-pink.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.white-pink.button, body .woocommerce .woocommerce-MyAccount-content a.white-pink.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.white-pink.delete, body .woocommerce .woocommerce-MyAccount-content form button.white-pink.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.white-pink.edit, body .woocommerce .woocommerce-MyAccount-content a.white-pink.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .white-pink.button, body .woocommerce .woocommerce-MyAccount-content button.white-pink, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.white-pink, body .woocommerce form.lost_reset_password button.white-pink.button, body .woocommerce form.woocommerce-form-login p.form-row button.white-pink.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.white-pink.button, #code-form .gform_wrapper .gform_footer input.white-pink, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.white-pink[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.white-pink[type=submit], .woocommerce ul.products .product-block .product-meta .single-product-content a.white-pink.button, #newsletter-form .gform_wrapper .gform_footer input.white-pink, .error404 .hero .the-content a.white-pink.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.white-pink.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.white-pink.button, #footer .footer-primary-nav ul li.is-btn a.white-pink, .form .gform_wrapper .gform_footer input.white-pink[type=submit], .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.white-pink, form#affwp-register-form fieldset p input.white-pink.button {
  background: #FFFFFF;
  color: #FB414D;
}
.btn.white-pink:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.white-pink[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.white-pink[type=button]:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.white-pink.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.white-pink.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.white-pink.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.white-pink.button:hover, body.single-product .product .gift_card_template_button button.white-pink.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.white-pink:hover, body.single-product .woocommerce-message a.white-pink.button:hover, body .white-pink.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content a.white-pink.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.white-pink.button:hover, body .woocommerce #payment .form-row.place-order button.white-pink#place_order:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white-pink.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.white-pink.woocommerce-remove-coupon:hover, body .woocommerce form.checkout-coupon button.white-pink.button:hover, body .woocommerce .woocommerce-form-coupon button.white-pink.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.white-pink.button:hover, body .woocommerce .cart-collaterals table.shop_table td a.white-pink.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.white-pink.checkout-button:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.white-pink.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.white-pink[type=button]:hover, body .woocommerce ul.products li.product .white-pink.button:hover, body .woocommerce .woocommerce-error a .white-pink.wc-backward:hover, body .woocommerce .ywgc_enter_code p.form-row button.white-pink.button:hover, body .woocommerce .return-to-shop a.white-pink:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.white-pink.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.white-pink.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.white-pink.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.white-pink.button:hover, body .woocommerce .woocommerce-MyAccount-content a.white-pink.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.white-pink.delete:hover, body .woocommerce .woocommerce-MyAccount-content form button.white-pink.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.white-pink.edit:hover, body .woocommerce .woocommerce-MyAccount-content a.white-pink.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content table td .white-pink.button:hover, body .woocommerce .woocommerce-MyAccount-content button.white-pink:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.white-pink:hover, body .woocommerce form.lost_reset_password button.white-pink.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.white-pink.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.white-pink.button:hover, #code-form .gform_wrapper .gform_footer input.white-pink:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.white-pink[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.white-pink[type=submit]:hover, .woocommerce ul.products .product-block .product-meta .single-product-content a.white-pink.button:hover, #newsletter-form .gform_wrapper .gform_footer input.white-pink:hover, .error404 .hero .the-content a.white-pink.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.white-pink.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.white-pink.button:hover, #footer .footer-primary-nav ul li.is-btn a.white-pink:hover, .form .gform_wrapper .gform_footer input.white-pink[type=submit]:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.white-pink:hover, form#affwp-register-form fieldset p input.white-pink.button:hover {
  background: #FB414D;
  color: #FFFFFF;
}
.btn.green, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.btn[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.green[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.btn[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.green[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.green.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.green.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.green.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.green.button, body.single-product .product .gift_card_template_button button.green.button, body.single-product .product form.gift-cards_form .gift-cards-list button.green, body.single-product .woocommerce-message a.green.button, body .green.add_to_cart_button, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body input.add_to_cart_button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body input.add_to_cart_button[type=button], body ul.products li.product-block .product-meta .single-product-content a.green.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.green.button, body .woocommerce #payment .form-row.place-order button.green#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.green.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.green.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.green.button, body .woocommerce .woocommerce-form-coupon button.green.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.green.button, body .woocommerce .cart-collaterals table.shop_table td a.green.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.green.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.green[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .mwb_mwc_class input[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.green.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.green[type=button], body .woocommerce .woocommerce-cart-form table.shop_table #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce ul.products li.product .green.button, body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product input.button[type=button], body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product input.button[type=button], body .woocommerce .woocommerce-error a .green.wc-backward, body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.wc-backward[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-error a input.wc-backward[type=button], body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.wc-backward[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-error a input.wc-backward[type=button], body .woocommerce .ywgc_enter_code p.form-row button.green.button, body .woocommerce .return-to-shop a.green, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.btn.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .woocommerce-error a input.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.green.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.btn.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .woocommerce-error a input.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.green.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.green.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button], body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.btn.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form.edit-account button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form.edit-account button.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content form.edit-account .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.green.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.green#place_order, body .woocommerce .woocommerce-MyAccount-content a.green.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.green.delete, body .woocommerce .woocommerce-MyAccount-content form button.btn.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content form.gift-cards_form .gift-cards-list button.button, body .woocommerce .woocommerce-MyAccount-content form button.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form button.button, body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.checkout-coupon button.button, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content form.woocommerce-shipping-calculator button.button, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-error a button.button.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form button.button.wc-backward, body .woocommerce .woocommerce-MyAccount-content form .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form button.green.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.green.edit, body .woocommerce .woocommerce-MyAccount-content a.green.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .green.button, body .woocommerce .woocommerce-MyAccount-content #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .woocommerce-MyAccount-content table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce .woocommerce-MyAccount-content table td #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content table td input.button[type=button], body .woocommerce .woocommerce-MyAccount-content table td #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap table td input.button, body .woocommerce .woocommerce-MyAccount-content table td #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap table td input.button, body .woocommerce .woocommerce-MyAccount-content table td form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account table td button.button, body .woocommerce .woocommerce-MyAccount-content table td form button.button, body .woocommerce .woocommerce-MyAccount-content form table td button.button, body .woocommerce .woocommerce-MyAccount-content button.green, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.green, body .woocommerce form.lost_reset_password button.green.button, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.lost_reset_password button.button, body .woocommerce .woocommerce-MyAccount-content form.lost_reset_password button.button, body .woocommerce form.woocommerce-form-login p.form-row button.green.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.woocommerce-form-login p.form-row button.button, body .woocommerce .woocommerce-MyAccount-content form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, #code-form .gform_wrapper .gform_footer input.green, #code-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td #code-form .gform_wrapper .gform_footer input[type=button], #code-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class #code-form .gform_wrapper .gform_footer input[type=button], #code-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap #code-form .gform_wrapper .gform_footer input.button, #code-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap #code-form .gform_wrapper .gform_footer input.button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.green[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.green[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .woocommerce ul.products .product-block .product-meta .single-product-content a.green.button, #newsletter-form .gform_wrapper .gform_footer input.green, #newsletter-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td #newsletter-form .gform_wrapper .gform_footer input[type=button], #newsletter-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class #newsletter-form .gform_wrapper .gform_footer input[type=button], #newsletter-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap #newsletter-form .gform_wrapper .gform_footer input.button, #newsletter-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap #newsletter-form .gform_wrapper .gform_footer input.button, .error404 .hero .the-content a.green.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.green.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.green.button, #footer .footer-primary-nav ul li.is-btn a.green, .form .gform_wrapper .gform_footer input.green[type=submit], .form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .form .gform_wrapper .gform_footer input[type=submit][type=button], .form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=submit][type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .form .gform_wrapper .gform_footer input[type=submit][type=button], .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input[type=submit].button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .form .gform_wrapper .gform_footer input[type=submit].button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.green, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .form .gform_wrapper .newsletter-form .gform_body .gform_footer input[type=button], .form .gform_wrapper .newsletter-form .gform_body .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .form .gform_wrapper .newsletter-form .gform_body .gform_footer input[type=button], .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button, form#affwp-register-form fieldset p input.green.button, form#affwp-register-form fieldset p .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td form#affwp-register-form fieldset p input.button[type=button], form#affwp-register-form fieldset p .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class form#affwp-register-form fieldset p input.button[type=button], form#affwp-register-form fieldset p body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap form#affwp-register-form fieldset p input.button {
  background: #5ece7c;
  color: #FFFFFF;
}
.btn.green:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.btn[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.green[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.btn[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class table.mwb-woo-smc-shop_table tr td input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .mwb_mwc_class input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.green[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class table.mwb-woo-smc-shop_table tr td input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .mwb_mwc_class input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button]:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.green.wc-forward:hover, body.single-product .product .woocommerce-variation-add-to-cart button.green.button:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.green.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.cart button.green.button:hover, body.single-product .product .gift_card_template_button button.green.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list button.green:hover, body.single-product .woocommerce-message a.green.button:hover, body .green.add_to_cart_button:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body input.add_to_cart_button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body input.add_to_cart_button[type=button]:hover, body ul.products li.product-block .product-meta .single-product-content a.green.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.green.button:hover, body .woocommerce #payment .form-row.place-order button.green#place_order:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.green.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.green.woocommerce-remove-coupon:hover, body .woocommerce form.checkout-coupon button.green.button:hover, body .woocommerce .woocommerce-form-coupon button.green.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.green.button:hover, body .woocommerce .cart-collaterals table.shop_table td a.green.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals a.green.checkout-button:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.green[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .mwb_mwc_class input[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class table.mwb-woo-smc-shop_table tbody tr td input[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table button.green.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.green[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td.product-remove .mwb_woo_smc_cart_wrapper input[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button]:hover, body .woocommerce ul.products li.product .green.button:hover, body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product input.button[type=button]:hover, body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product input.button[type=button]:hover, body .woocommerce .woocommerce-error a .green.wc-backward:hover, body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.wc-backward[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-error a input.wc-backward[type=button]:hover, body .woocommerce .woocommerce-error a #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.wc-backward[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-error a input.wc-backward[type=button]:hover, body .woocommerce .ywgc_enter_code p.form-row button.green.button:hover, body .woocommerce .return-to-shop a.green:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.green.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button]:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button[type=button]:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.btn.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form.edit-account button.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.green.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content a.green.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.green.delete:hover, body .woocommerce .woocommerce-MyAccount-content form button.btn.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product .woocommerce .woocommerce-MyAccount-content form.gift-cards_form .gift-cards-list button.button:hover, body .woocommerce .woocommerce-MyAccount-content form button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout-coupon button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-error a button.button.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content form button.button.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content form .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form button.green.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.green.edit:hover, body .woocommerce .woocommerce-MyAccount-content a.green.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content table td .green.button:hover, body .woocommerce .woocommerce-MyAccount-content #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .woocommerce-MyAccount-content table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, body .woocommerce .woocommerce-MyAccount-content table td #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-MyAccount-content table td input.button[type=button]:hover, body .woocommerce .woocommerce-MyAccount-content table td form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td form button.button:hover, body .woocommerce .woocommerce-MyAccount-content form table td button.button:hover, body .woocommerce .woocommerce-MyAccount-content button.green:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form button.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.green:hover, body .woocommerce form.lost_reset_password button.green.button:hover, body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.lost_reset_password button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.lost_reset_password button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row button.green.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.woocommerce-form-login p.form-row button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, #code-form .gform_wrapper .gform_footer input.green:hover, #code-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td #code-form .gform_wrapper .gform_footer input[type=button]:hover, #code-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class #code-form .gform_wrapper .gform_footer input[type=button]:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.green[type=submit]:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=submit][type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button]:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=submit][type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.green[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=submit][type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=submit][type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit][type=button]:hover, .woocommerce ul.products .product-block .product-meta .single-product-content a.green.button:hover, #newsletter-form .gform_wrapper .gform_footer input.green:hover, #newsletter-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td #newsletter-form .gform_wrapper .gform_footer input[type=button]:hover, #newsletter-form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class #newsletter-form .gform_wrapper .gform_footer input[type=button]:hover, .error404 .hero .the-content a.green.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.green.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.green.button:hover, #footer .footer-primary-nav ul li.is-btn a.green:hover, .form .gform_wrapper .gform_footer input.green[type=submit]:hover, .form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=submit][type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .form .gform_wrapper .gform_footer input[type=submit][type=button]:hover, .form .gform_wrapper .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=submit][type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .form .gform_wrapper .gform_footer input[type=submit][type=button]:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.green:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .form .gform_wrapper .newsletter-form .gform_body .gform_footer input[type=button]:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .form .gform_wrapper .newsletter-form .gform_body .gform_footer input[type=button]:hover, form#affwp-register-form fieldset p input.green.button:hover, form#affwp-register-form fieldset p .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td form#affwp-register-form fieldset p input.button[type=button]:hover, form#affwp-register-form fieldset p .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class form#affwp-register-form fieldset p input.button[type=button]:hover {
  background: #BAEECE;
  color: #5ece7c;
}

.btn-spacing {
  margin: 40px 0;
}

.notice-slider {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 80;
}
.notice-slider .notice-boutique {
  text-decoration: none;
  height: 100%;
}
.notice-slider .notice-boutique.slick-slide {
  height: 100%;
  padding: 20px;
}
.notice-slider .notice-boutique .notice-content {
  text-decoration: none;
}
.notice-slider .notice-boutique .notice-content .the-content, .notice-slider .notice-boutique .notice-content body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .notice-slider .notice-boutique .notice-content .woocommerce-product-details__short-description {
  text-align: center;
}

#page {
  margin-top: 180px;
  padding: 40px 0;
}

.the-content *:last-child, body.single-product .product .woocommerce-product-details__short-description *:last-child {
  margin: 0;
}
.the-content > p, body.single-product .product .woocommerce-product-details__short-description > p {
  margin-bottom: 25px;
}
.the-content > h1, body.single-product .product .woocommerce-product-details__short-description > h1 {
  margin-bottom: 25px;
  color: #00ABC0;
}
.the-content > h2, body.single-product .product .woocommerce-product-details__short-description > h2 {
  margin-bottom: 25px;
}
.the-content > h2 + h3, body.single-product .product .woocommerce-product-details__short-description > h2 + h3 {
  color: #00ABC0;
}
.the-content > h3, body.single-product .product .woocommerce-product-details__short-description > h3 {
  font-size: 26px;
  margin-bottom: 25px;
}
.the-content > h3 strong, body.single-product .product .woocommerce-product-details__short-description > h3 strong {
  color: #7940B1;
}
.the-content > h4, body.single-product .product .woocommerce-product-details__short-description > h4 {
  margin-bottom: 25px;
}
.the-content > h5, body.single-product .product .woocommerce-product-details__short-description > h5 {
  margin-bottom: 25px;
}
.the-content > h6, body.single-product .product .woocommerce-product-details__short-description > h6 {
  margin-bottom: 25px;
}
.the-content a, body.single-product .product .woocommerce-product-details__short-description a {
  color: #00ABC0;
  font-weight: bold;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
.the-content a:hover, body.single-product .product .woocommerce-product-details__short-description a:hover {
  color: #FB414D;
}

.flipbook {
  display: none;
  padding: 40px;
  overflow: hidden;
}
.flipbook .flipbook-inner {
  width: 700px;
  height: 420px;
  background: rgba(0, 171, 192, 0.1);
}
.flipbook .page {
  width: 100%;
  height: 100%;
}
.flipbook .page-wrapper {
  perspective: 2000px;
}
.flipbook .hard {
  background: #ccc !important;
  color: #333;
  box-shadow: inset 0 0 5px #666;
}
.flipbook .odd {
  background-image: linear-gradient(right, #FFF 95%, #C4C4C4 100%);
  box-shadow: inset 0 0 5px #666;
}
.flipbook .even {
  background-image: linear-gradient(left, #fff 95%, #dadada 100%);
  box-shadow: inset 0 0 5px #666;
}

form#affwp-register-form fieldset legend {
  font: 30px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 18px;
  text-align: center;
  width: 100%;
}
form#affwp-register-form fieldset p {
  margin-bottom: 20px;
}
form#affwp-register-form fieldset p label {
  font: 24px/1em "fatfrank", sans-serif;
  margin-bottom: 4px;
  color: #00ABC0;
}
form#affwp-register-form fieldset p input {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
}
form#affwp-register-form fieldset p input:focus, form#affwp-register-form fieldset p input:active {
  outline: 0;
}
form#affwp-register-form fieldset p textarea {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  font: 400 20px/1em "rubrik-edge-new", sans-serif;
  border-radius: 30px;
  padding: 12px 24px;
  resize: vertical;
  color: #032D40;
}
form#affwp-register-form fieldset p textarea:focus, form#affwp-register-form fieldset p textarea:active {
  outline: 0;
}
form#affwp-register-form fieldset p label.affwp-tos {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  position: relative;
  padding: 6px 20px 12px 40px;
}
form#affwp-register-form fieldset p label.affwp-tos input[type=checkbox] {
  display: none;
}
form#affwp-register-form fieldset p label.affwp-tos input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form#affwp-register-form fieldset p label.affwp-tos:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
form#affwp-register-form fieldset p label.affwp-tos:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
form#affwp-register-form fieldset p label.affwp-tos a {
  margin-left: 8px;
  text-decoration: none;
  font: 20px/1em "fatfrank", sans-serif;
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
form#affwp-register-form fieldset p label.affwp-tos a:hover {
  color: #7940B1;
}
form#affwp-register-form fieldset p input.button {
  cursor: pointer;
  border: 0px;
  box-shadow: none;
}
form#affwp-register-form fieldset p input.button:hover {
  background: #7940B1;
}

body:not(.home):not(.page-template-page-noel):not(.shop-notice-enabled) #main {
  padding-top: 220px;
}
body:not(.home):not(.page-template-page-noel) #main {
  padding: 220px 0 60px 0;
}
body:not(.home):not(.page-template-page-noel) #header {
  background: #00ABC0;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  transition: all all 0.3s ease-in-out;
  z-index: 99;
  background: rgba(0, 171, 192, 0);
}
#header.shrink {
  height: 120px;
  background: #00abc0;
}
#header #site-logo {
  display: block;
  height: 102px;
  width: 305px;
}
#header .partner-logo {
  display: block;
  width: 60px;
  margin-left: 30px;
}
#header #site-burger {
  position: relative;
  height: auto;
  width: 55px;
  margin-left: 20px;
  transform: scale(-1, 1);
}
#header #site-burger:hover .bar-1, #header #site-burger:hover .bar-2, #header #site-burger:hover .bar-3 {
  background: #032D40;
}
#header #site-burger:hover .bar-1 {
  width: 55px;
}
#header #site-burger:hover .bar-2 {
  width: 35px;
}
#header #site-burger:hover .bar-3 {
  width: 45px;
}
#header #site-burger .bar-1, #header #site-burger .bar-2, #header #site-burger .bar-3 {
  position: relative;
  display: block;
  margin: 8px 0;
  height: 5px;
  background: #FFFFFF;
  border-radius: 16px;
  transition: all all 0.3s ease-in-out;
}
#header #site-burger .bar-1 {
  width: 45px;
}
#header #site-burger .bar-2 {
  width: 55px;
}
#header #site-burger .bar-3 {
  width: 35px;
}
#header #site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: calc(100% - 305px);
  padding-left: 50px;
}
#header #site-nav .user {
  position: relative;
  cursor: pointer;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .user.woocommerce .woocommerce-MyAccount-navigation .sub-menu li.woocommerce-MyAccount-navigation-link--0 a {
  display: inline-block;
  color: #FFFFFF;
}
#header #site-nav .user:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 15px);
  z-index: 1;
}
#header #site-nav .user:hover .user-name {
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .user:hover svg {
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .user:hover svg path {
  fill: #032D40;
}
#header #site-nav .user:hover .sub-menu {
  display: block;
}
#header #site-nav .user a {
  display: flex;
  align-items: center;
  margin: 0 20px;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .user a svg {
  display: block;
  width: 50px;
  height: 50px;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .user a svg path {
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .user-name {
  font: 600 22px/1.2em "rubrik-edge-new", sans-serif;
  color: #FFFFFF;
  margin-right: 20px;
}
#header #site-nav .cart {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 40px 0 20px;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
  text-decoration: none;
}
#header #site-nav .cart:hover {
  color: #032D40;
}
#header #site-nav .cart:hover .total {
  color: #032D40;
}
#header #site-nav .cart:hover svg path {
  fill: #032D40;
}
#header #site-nav .cart .total {
  font: 600 22px/1.2em "rubrik-edge-new", sans-serif;
  margin-right: 20px;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .cart svg {
  display: block;
  width: 32px;
  height: 32px;
}
#header #site-nav .cart svg path {
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .sub-menu {
  display: none;
  position: absolute;
  width: 100%;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #BAECF2;
  padding: 24px 8px;
  border-radius: 30px;
  z-index: 3;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .sub-menu li a {
  text-decoration: none;
  line-height: 1em;
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .sub-menu li a:hover {
  color: #032D40;
}
#header #site-nav .lang {
  margin: 0 20px;
}
#header #site-nav .lang ul {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 8px 16px;
  background: #032D40;
  border-radius: 50px;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .lang ul:hover {
  background: #FB414D;
}
#header #site-nav .lang ul:hover .switch {
  left: 68px;
}
#header #site-nav .lang ul:hover .switch svg path {
  fill: #FB414D;
}
#header #site-nav .lang ul:hover .switch:lang(en) {
  left: 16px;
}
#header #site-nav .lang ul:hover .switch:lang(en) svg path {
  fill: #032D40;
}
#header #site-nav .lang ul .switch {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 14px;
  transition: all all 0.3s ease-in-out;
  cursor: pointer;
}
#header #site-nav .lang ul .switch svg {
  display: block;
  height: 40px;
  width: 40px;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .lang ul .switch svg path {
  fill: #032D40;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .lang ul .switch:lang(en) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 68px;
  transition: all all 0.3s ease-in-out;
  cursor: pointer;
}
#header #site-nav .lang ul .switch:lang(en) svg {
  display: block;
  height: 40px;
  width: 40px;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .lang ul .switch:lang(en) svg path {
  fill: #FB414D;
  transition: all all 0.3s ease-in-out;
}
#header #site-nav .lang ul li {
  position: relative;
  margin: 0 12px;
}
#header #site-nav .lang ul li a {
  text-decoration: none;
  font: 600 20px/1em "rubrik-edge-new", sans-serif;
  color: #FFFFFF;
}
#header #site-nav .lang ul:lang(en) {
  background: #FB414D;
}
#header #site-nav .lang ul:lang(en):hover {
  background: #032D40;
}

.cart-pop-up {
  margin-bottom: 30px;
}
.cart-pop-up a {
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  margin-bottom: 15px;
}
.cart-pop-up a.red, .cart-pop-up body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .cart-pop-up a.reset_variations, .cart-pop-up body a.add_to_cart_button, body .cart-pop-up a.add_to_cart_button, .cart-pop-up body ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .cart-pop-up a.button, .cart-pop-up body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-pop-up a.woocommerce-remove-coupon, .cart-pop-up body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-pop-up a.woocommerce-remove-coupon, .cart-pop-up body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .cart-pop-up a.woocommerce-remove-coupon, .cart-pop-up body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .cart-pop-up a.checkout-button, .cart-pop-up body .woocommerce ul.products li.product a.button, body .woocommerce ul.products li.product .cart-pop-up a.button, .cart-pop-up body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-pop-up a.delete, .cart-pop-up body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-pop-up a.edit, .cart-pop-up body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-pop-up a, .cart-pop-up .error404 .hero .the-content a.button, .cart-pop-up .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .cart-pop-up .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content .cart-pop-up a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .cart-pop-up a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .cart-pop-up a.button, .cart-pop-up a.blue, .cart-pop-up body .woocommerce .return-to-shop a, body .woocommerce .return-to-shop .cart-pop-up a, .cart-pop-up body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .cart-pop-up a.woocommerce-button {
  color: white !important;
}

.cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #FB414D;
  color: #FFFFFF;
  height: 22px;
  width: 22px;
  right: -12px;
  top: -14px;
  border-radius: 50%;
  font: 700 12px/1em "rubrik-edge-new", sans-serif;
  transition: all all 0.3s ease-in-out;
}

.user-sign-in {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
  font: 600 26px/1em "rubrik-edge-new", sans-serif;
  padding: 16px;
  border-radius: 50px;
  border: 3px solid #FFFFFF;
}
.user-sign-in:hover {
  border-color: #FB414D;
  color: #FB414D;
}

.inner-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 120px;
  margin-bottom: 60px;
}

.main-nav {
  z-index: 100;
  height: 100%;
  width: 900px;
  position: fixed;
  top: 0;
  right: 0;
  padding: 50px 120px 100px;
  background: #032D40;
  transform: translateX(100%);
  overflow-y: auto;
  margin-right: -17px;
  padding-right: 17px;
  transition: all all 0.3s ease-in-out;
}
.main-nav .inner-cart {
  position: absolute;
  top: 60px;
  right: 220px;
  display: block;
}
.main-nav .inner-cart .cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
  text-decoration: none;
}
.main-nav .inner-cart .cart:hover {
  color: #00ABC0;
}
.main-nav .inner-cart .cart:hover .total {
  color: #00ABC0;
}
.main-nav .inner-cart .cart:hover svg path {
  fill: #00ABC0;
}
.main-nav .inner-cart .cart .total {
  font: 600 22px/1.2em "rubrik-edge-new", sans-serif;
  margin-right: 20px;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
.main-nav .inner-cart .cart svg {
  display: block;
  width: 32px;
  height: 32px;
}
.main-nav .inner-cart .cart svg path {
  transition: all all 0.3s ease-in-out;
}
.main-nav .mobile-nav-trigger {
  position: fixed;
  z-index: 101;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  right: 120px;
  top: 50px;
  transition: all all 0.3s ease-in-out;
}
.main-nav .mobile-nav-trigger #close-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #032d40;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 5px solid #FB414D;
  padding: 4px;
  transition: all all 0.3s ease-in-out;
}
.main-nav .mobile-nav-trigger #close-nav:hover {
  background: white;
}
.main-nav .mobile-nav-trigger #close-nav:hover .x-bars {
  transform: rotate(360deg);
}
.main-nav .mobile-nav-trigger #close-nav .x-bars {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all all 0.3s ease-in-out;
}
.main-nav .mobile-nav-trigger #close-nav .x-bars .bar-1 {
  position: absolute;
  height: 24px;
  width: 5px;
  background: #FB414D;
  border-radius: 8px;
  transform: rotate(45deg);
}
.main-nav .mobile-nav-trigger #close-nav .x-bars .bar-2 {
  position: absolute;
  height: 24px;
  width: 5px;
  background: #FB414D;
  border-radius: 8px;
  transform: rotate(-45deg);
}
.main-nav .inner-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
}
.main-nav .inner-user .user:hover a .user-name {
  color: #00ABC0;
}
.main-nav .inner-user .user:hover a svg path {
  fill: #00ABC0;
}
.main-nav .inner-user .user:hover .sub-menu {
  display: block;
}
.main-nav .inner-user .user:after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #FB414D;
  border-radius: 20px;
  margin: 12px 0;
}
.main-nav .inner-user .user a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.main-nav .inner-user .user a .user-name {
  font: 600 22px/1.2em "rubrik-edge-new", sans-serif;
  color: #FFFFFF;
  margin-right: 20px;
  transition: all all 0.3s ease-in-out;
}
.main-nav .inner-user .user a svg {
  display: block;
  width: 50px;
  height: 50px;
}
.main-nav .inner-user .user a svg path {
  transition: all all 0.3s ease-in-out;
}
.main-nav .inner-user .user.woocommerce .woocommerce-MyAccount-navigation {
  width: 100%;
  margin-bottom: 12px;
}
.main-nav .inner-user .user.woocommerce .woocommerce-MyAccount-navigation ul li {
  padding: 6px 6px 6px 64px;
  border-top: 0px;
}
.main-nav .inner-user .user.woocommerce .woocommerce-MyAccount-navigation ul li:after {
  left: 6px;
}
.main-nav .inner-user .user.woocommerce .woocommerce-MyAccount-navigation .sub-menu {
  background: none;
}
.main-nav .inner-user .user.woocommerce .woocommerce-MyAccount-navigation .sub-menu li.woocommerce-MyAccount-navigation-link--0 {
  padding: 6px;
}
.main-nav .inner-user .user.woocommerce .woocommerce-MyAccount-navigation .sub-menu li.woocommerce-MyAccount-navigation-link--0 a {
  display: inline-block;
}
.main-nav .inner-user .sub-menu {
  display: none;
  transition: all all 0.3s ease-in-out;
}
.main-nav .inner-user .sub-menu li a {
  text-decoration: none;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
.main-nav .inner-user .sub-menu li a:hover {
  color: #00ABC0;
}
.main-nav .inner-primary-menu {
  overflow: hidden;
}
.main-nav .inner-primary-menu ul li {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.main-nav .inner-primary-menu ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font: 600 26px/1.65em "rubrik-edge-new", sans-serif;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
.main-nav .inner-primary-menu ul li a:hover {
  color: #FB414D;
  padding-left: 30px;
}
.main-nav .inner-primary-menu ul li.highlight-link a {
  font-size: 34px;
}
.main-nav .inner-primary-menu ul li.highlight-link:after {
  content: "";
  display: block;
  width: calc(100% - 120px);
  height: 4px;
  background: #7940B1;
  margin: 50px 0;
  border-radius: 20px;
}
.main-nav .partner-logo {
  display: block;
  width: 100px;
  margin-left: 0px;
  margin-bottom: 80px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  width: calc(100% - 120px);
}

.lang ul {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  padding: 12px 18px;
  background: #00ABC0;
  border-radius: 50px;
  transition: all all 0.3s ease-in-out;
}
.lang ul:hover {
  background: #FB414D;
}
.lang ul:hover .switch {
  left: 76px;
}
.lang ul:hover .switch svg path {
  fill: #FB414D;
}
.lang ul:hover .switch:lang(en) {
  left: 16px;
}
.lang ul:hover .switch:lang(en) svg path {
  fill: #00ABC0;
}
.lang ul .switch {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 16px;
  transition: all all 0.3s ease-in-out;
  cursor: pointer;
}
.lang ul .switch svg {
  display: block;
  height: 46px;
  width: 46px;
  transition: all all 0.3s ease-in-out;
}
.lang ul .switch svg path {
  transition: all all 0.3s ease-in-out;
}
.lang ul .switch:lang(en) {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 76px;
  transition: all all 0.3s ease-in-out;
  cursor: pointer;
}
.lang ul .switch:lang(en) svg {
  display: block;
  height: 46px;
  width: 46px;
  transition: all all 0.3s ease-in-out;
}
.lang ul .switch:lang(en) svg path {
  fill: #FB414D;
  transition: all all 0.3s ease-in-out;
}
.lang ul li {
  position: relative;
  margin: 0 12px;
}
.lang ul li a {
  text-decoration: none;
  font: 600 26px/1em "rubrik-edge-new", sans-serif;
  color: #FFFFFF;
}
.lang ul:lang(en) {
  background: #FB414D;
}
.lang ul:lang(en):hover {
  background: #00ABC0;
}

.inner-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 0;
}
.inner-socials .social-icons ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00ABC0;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: all all 0.3s ease-in-out;
}
.inner-socials .social-icons ul li:hover {
  transform: scale(1.1);
}
.inner-socials .social-icons ul li:first-child {
  background: #7940B1;
}
.inner-socials .social-icons ul li:last-child {
  background: #FB414D;
}
.inner-socials .social-icons ul li a:hover svg {
  path: #FFFFFF !important;
}
.inner-socials .social-icons ul li a svg {
  path: #FFFFFF !important;
}

.half-banner {
  position: relative;
  height: 540px;
  margin-bottom: 80px;
  background: #D4EDFA;
}
.half-banner .half-hero {
  position: relative;
  height: 100%;
}
.half-banner .half-hero > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.half-banner .half-hero:before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -10%;
  right: -10%;
  background: #FFFFFF;
  height: 140px;
  border-radius: 50%;
  z-index: 4;
  overflow-x: hidden;
}
.half-banner .half-hero .half-featured-img {
  position: relative;
  display: block;
  z-index: 5;
}
.half-banner .half-hero .half-featured-img > img {
  display: block;
  position: relative;
  margin: 0 auto;
  max-width: 700px;
  width: 100%;
  z-index: 5;
}

.hero-slider {
  height: 800px;
}
.hero-slider .slick-next {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: inherit;
  bottom: 100px;
  right: 40px;
  height: 28px;
  width: 28px;
  border: 0px;
  font-size: 0;
  cursor: pointer;
  transition: all all 0.3s ease-in-out;
  z-index: 10;
  background-image: url("../images/next-button-w.svg");
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-slider .slick-prev {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: inherit;
  bottom: 100px;
  left: 40px;
  height: 28px;
  width: 28px;
  border: 0px;
  font-size: 0;
  cursor: pointer;
  transition: all all 0.3s ease-in-out;
  z-index: 10;
  background-image: url("../images/prev-button-w.svg");
  background-color: transparent;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-slider .slick-list {
  height: 100%;
}
.hero-slider .slick-list .slick-track {
  height: 100%;
}
.hero-slider .slick-list .slick-track .hero {
  position: relative;
  height: 100%;
}
.hero-slider .slick-list .slick-track .hero > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slider .slick-list .slick-track .hero > .wrapper {
  z-index: 7;
}
.hero-slider .slick-list .slick-track .hero .row, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul {
  height: 100%;
}
.hero-slider .slick-list .slick-track .hero .row div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address div[class*=col-], .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields div[class*=col-], .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields div[class*=col-],
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields div[class*=col-],
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields div[class*=col-],
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields div[class*=col-],
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields div[class*=col-], .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul div[class*=col-], #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul div[class*=col-] {
  height: 100%;
}
.hero-slider .slick-list .slick-track .hero .row .hero-inner, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-inner, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-inner,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-inner,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-inner, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-inner {
  margin: 0 auto;
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}
.hero-slider .slick-list .slick-track .hero .row .hero-featured-img, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-featured-img, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-featured-img,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-featured-img,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-featured-img, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-featured-img {
  height: 100%;
  z-index: 10;
}
.hero-slider .slick-list .slick-track .hero .row .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-featured-img > img, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-featured-img > img {
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.hero {
  opacity: 0;
  transition: all all 0.3s ease-in-out;
}
.hero.init {
  opacity: 1;
}
.hero:before {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -10%;
  right: -10%;
  background: #FFFFFF;
  height: 140px;
  border-radius: 50%;
  z-index: 6;
  overflow-x: hidden;
}
.hero > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-row {
  position: relative;
}
.content-row .content-row-inner {
  position: relative;
  z-index: 1;
}
.content-row .curve {
  position: absolute;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 132px;
  overflow: hidden;
}
.content-row .curve.top {
  top: 138px;
}
.content-row .curve.bottom {
  bottom: 140px;
}
.content-row .curve svg {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.content-row.banner .curve.bottom, .content-row.xmas-banner .curve.bottom {
  bottom: 0px;
}
.content-row.info-block .curve.top {
  top: 0px;
}
.content-row.info-block .curve.bottom {
  bottom: 0px;
}

.slice-intro {
  position: relative;
  text-align: center;
  z-index: 20;
}
.slice-intro .slice-content {
  max-width: 900px;
  margin: 0 auto;
}
.slice-intro h2 {
  color: #00ABC0;
}
.slice-intro h4 {
  color: #FB414D;
}
.slice-intro h4 a {
  color: #FB414D;
  text-decoration: none;
  font: 23px/1.175em "fatfrank", sans-serif;
  transition: all all 0.3s ease-in-out;
}
.slice-intro h4 a:hover {
  color: #7940B1;
}
.slice-intro h5 {
  color: #032D40;
  font: 26px/1.2em "rubrik-edge-new", sans-serif;
  margin-top: 12px;
}
.slice-intro.padding-both {
  padding-top: 80px;
  padding-bottom: 80px;
}
.slice-intro.padding-top {
  padding-top: 80px;
}
.slice-intro.padding-bottom {
  padding-bottom: 80px;
}
.slice-intro.padding-none {
  padding: 0;
}

.slice-outro {
  text-align: center;
}
.slice-outro h5 {
  color: #032D40;
  font: 26px/1.2em "rubrik-edge-new", sans-serif;
  margin-bottom: 30px;
}
.slice-outro.padding-both {
  padding-top: 80px;
  padding-bottom: 80px;
}
.slice-outro.padding-top {
  padding-top: 80px;
}
.slice-outro.padding-bottom {
  padding-bottom: 80px;
}
.slice-outro.padding-none {
  padding: 0;
}

.top-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.top-img .step-title {
  font: 88px/1.65em "fatfrank", sans-serif;
  position: absolute;
  color: #FB414D;
  top: 0;
  left: 25px;
  z-index: 3;
}
.top-img .img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  z-index: 2;
}
.top-img .bg-blob {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.steps .step-block {
  text-align: center;
  padding: 40px;
}
.steps .step-block h5 {
  font: 24px/1.2em "rubrik-edge-new", sans-serif;
  color: #032D40;
  margin-top: 20px;
}

.c2a-section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0;
}
.c2a-section > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c2a-section:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -10%;
  right: -10%;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: 6;
  overflow: hidden;
}
.c2a-section:after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -10%;
  left: -10%;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: 6;
  overflow: hidden;
}
.c2a-section > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.c2a-section > .wrapper {
  z-index: 5;
}

.c2a-content {
  text-align: center;
}
.c2a-content > .the-content, body.single-product .product .c2a-content > .woocommerce-product-details__short-description {
  margin: 30px 0 40px 0;
  padding: 0 12px;
}

.c2a-content-img {
  width: 100%;
  max-width: 250px;
}

.c2a-section-block {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  margin: 80px 0;
}
.c2a-section-block > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c2a-section-block > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 30px;
}
.c2a-section-block > .wrapper {
  z-index: 5;
}
.c2a-section-block > img {
  border-radius: 30px;
}
.c2a-section-block h2 {
  color: #FFFFFF;
}
.c2a-section-block .c2a-content > .btn-spacing {
  margin: 40px 0 0 0;
}
.c2a-section-block .c2a-feature-img {
  text-align: center;
}

.sidebar-left h2,
.sidebar-right h2 {
  color: #00ABC0;
  font: 38px/1.18em "fatfrank", sans-serif;
}
.sidebar-left h2:after,
.sidebar-right h2:after {
  content: "";
  display: block;
  width: 100%;
  background: #C3CCD3;
  height: 1px;
  margin: 20px 0;
}
.sidebar-left h3,
.sidebar-right h3 {
  font: 24px/1em "fatfrank", sans-serif;
  color: #032D40;
  margin-bottom: 30px;
}

.c2a-sidebar {
  text-align: center;
}
.c2a-sidebar h4 {
  color: #00ABC0;
  font: 28px/1.2em "fatfrank", sans-serif;
}

.sidebar-left .boutique-sidebar {
  margin-bottom: 30px;
}
.sidebar-left .boutique-sidebar ul li {
  display: flex;
  margin-bottom: 20px;
}
.sidebar-left .boutique-sidebar ul li:last-child {
  margin-bottom: 0px;
}
.sidebar-left .boutique-sidebar ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  font: 24px/1.2em "rubrik-edge-new", sans-serif;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
.sidebar-left .boutique-sidebar ul li a.active .label, .sidebar-left .boutique-sidebar ul li a:hover .label {
  color: #00ABC0;
}
.sidebar-left .boutique-sidebar ul li a.active .circle, .sidebar-left .boutique-sidebar ul li a:hover .circle {
  background: #00abc0;
  border-color: #00ABC0;
}
.sidebar-left .boutique-sidebar ul li .theme-icon svg {
  display: block;
  height: 32px;
  width: auto;
}
.sidebar-left .boutique-sidebar ul li .label {
  margin-left: 12px;
}
.sidebar-left .boutique-sidebar ul li .circle {
  content: "";
  display: inline-block;
  text-decoration: none;
  background: rgba(0, 171, 192, 0);
  color: #768791;
  border: 2px solid #C3CCD3;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  margin-right: 12px;
  transition: all all 0.3s ease-in-out;
}
.sidebar-left .boutique-sidebar ul li:hover {
  color: #00ABC0;
}
.sidebar-left .boutique-sidebar ul li:hover .circle {
  border-color: #00ABC0;
  background: #00abc0;
  color: #FFFFFF;
}

.product-grid .product-block {
  position: relative;
  padding: 30px;
  text-align: center;
  transition: all all 0.3s ease-in-out;
  z-index: 1;
}
.product-grid .product-block:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 20px 0;
  opacity: 0.6;
  height: 100%;
  width: 100%;
  background-image: url("../images/tlth-blob.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center top;
  z-index: 0;
  transition: all all 0.3s ease-in-out;
}
.product-grid .product-block:hover:before {
  opacity: 1;
  transform: scale(1.02);
}
.product-grid .product-block:hover > a {
  transform: rotate(0deg) scale(1.05);
}
.product-grid .product-block:hover .product-btn {
  transform: translateY(0);
  opacity: 1;
}
.product-grid .product-block.static {
  margin: 40px 0;
}
.product-grid .product-block.static:before {
  display: none;
}
.product-grid .product-block > a {
  display: block;
  transform: rotate(-17deg);
  transition: all all 0.3s ease-in-out;
}
.product-grid .product-block > a img {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 380px;
  max-width: 330px;
  object-fit: contain;
  object-position: center center;
  z-index: 2;
}
.product-grid .product-block h2 {
  font-size: 24px;
  line-height: 1.2em;
  color: #00ABC0;
  margin: 20px 0 12px 0;
}
.product-grid .product-block h4 {
  font: 20px/1.5em "rubrik-edge-new", sans-serif;
  color: #032D40;
}
.product-grid .product-block .product-btn {
  transform: translateY(-100%);
  transition: all all 0.3s ease-in-out;
  z-index: -1;
  opacity: 0;
}
.product-grid .product-block .product-themes ul {
  position: relative;
}
.product-grid .product-block .product-themes ul li a.product-theme-icon {
  text-decoration: none;
  color: #032D40;
  background: none !important;
  transition: all all 0.3s ease-in-out;
}
.product-grid .product-block .product-themes ul li a.product-theme-icon:hover {
  color: #7940B1;
}
.product-grid .product-block .product-themes ul li a.product-theme-icon span.img {
  display: none;
}
.product-grid .product-block .product-themes ul li a.product-theme-icon svg {
  display: none;
}
.product-grid .product-block .product-themes ul li a.product-theme-icon span.label {
  display: block;
  color: #032D40;
  font: 400 15px/1em "rubrik-edge-new", sans-serif;
  margin: 0 auto;
  transition: all all 0.3s ease-in-out;
}
.product-grid .product-block .product-themes ul li a.product-theme-icon span.label:hover {
  color: #7940B1;
}

.img-icon-split {
  padding: 40px 0;
}
.img-icon-split .icon-block {
  padding: 40px;
  text-align: center;
}
.img-icon-split .icon-block h4 {
  color: #00ABC0;
  line-height: 1.2em;
  margin-bottom: 20px;
}
.testimonials {
  position: relative;
  margin: 40px 0;
}
.testimonials .testimonial-block {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 560px;
  padding: 50px;
  margin: 40px;
  border: 2px solid #00ABC0;
  border-radius: 38px;
  text-align: center;
}
.testimonials .testimonial-block:before {
  content: "";
  display: block;
  position: absolute;
  top: -16px;
  left: 50px;
  height: 32px;
  width: 38px;
  background-image: url("../images/tlth-quote-left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.testimonials .testimonial-block:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -16px;
  right: 50px;
  height: 32px;
  width: 38px;
  background-image: url("../images/tlth-quote-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.testimonials .testimonial-block .stars {
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .testimonial-block .stars .star {
  content: url("../images/icon-star.svg");
  display: block;
  height: 48px;
  width: 48px;
  margin: 0 10px;
}
.testimonials .testimonial-block .the-content, .testimonials .testimonial-block body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .testimonials .testimonial-block .woocommerce-product-details__short-description {
  font-size: 18px;
}
.testimonials .testimonial-block h5 {
  color: #00ABC0;
}
.testimonials .testimonials-slider .slick-dots {
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .testimonials-slider .slick-dots:focus, .testimonials .testimonials-slider .slick-dots:active {
  outline: none;
}
.testimonials .testimonials-slider .slick-dots button {
  font-size: 0;
  height: 18px;
  width: 18px;
  border-radius: 50px;
  background: #BAECF2;
  border: 0px;
  margin: 0 10px;
  cursor: pointer;
}
.testimonials .testimonials-slider .slick-dots button:focus, .testimonials .testimonials-slider .slick-dots button:active {
  outline: none;
}
.testimonials .testimonials-slider .slick-dots .slick-active button {
  background: #00ABC0;
}
.testimonials .testimonials-slider .slick-next {
  background-image: url("../images/next-button.svg");
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  height: 35px;
  width: 35px;
  border: 0px;
  background-color: transparent;
  background-size: cover;
  font-size: 0;
  cursor: pointer;
  z-index: 10;
}
.testimonials .testimonials-slider .slick-prev {
  background-image: url("../images/prev-button.svg");
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  height: 35px;
  width: 35px;
  border: 0px;
  background-color: transparent;
  background-size: cover;
  font-size: 0;
  cursor: pointer;
  z-index: 10;
}

.page-top {
  margin-top: 60px;
}
.page-top .page-title h1 {
  text-align: center;
  color: #00ABC0;
}
.page-top .page-title h1 a {
  text-decoration: none;
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
.page-top .page-title h1 a:hover {
  color: #FB414D;
}
.page-top .top-content {
  text-align: center;
  max-width: 600px;
  padding: 40px 0;
}
.page-top .top-content h2 {
  font: 38px/1.2em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 30px;
}
.page-top .top-content .the-content h1, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description h1, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description h1,
.page-top .top-content .the-content h2,
.page-top .top-content body.single-product .product .woocommerce-product-details__short-description h2,
body.single-product .product .page-top .top-content .woocommerce-product-details__short-description h2,
.page-top .top-content .the-content h3,
.page-top .top-content body.single-product .product .woocommerce-product-details__short-description h3,
body.single-product .product .page-top .top-content .woocommerce-product-details__short-description h3,
.page-top .top-content .the-content h4,
.page-top .top-content body.single-product .product .woocommerce-product-details__short-description h4,
body.single-product .product .page-top .top-content .woocommerce-product-details__short-description h4,
.page-top .top-content .the-content h5,
.page-top .top-content body.single-product .product .woocommerce-product-details__short-description h5,
body.single-product .product .page-top .top-content .woocommerce-product-details__short-description h5,
.page-top .top-content .the-content h6,
.page-top .top-content body.single-product .product .woocommerce-product-details__short-description h6,
body.single-product .product .page-top .top-content .woocommerce-product-details__short-description h6 {
  display: block;
  margin: 20px 0 18px 0;
  font: 28px/1.2em "fatfrank", sans-serif;
  color: #00ABC0;
}
.page-top .top-content .the-content img, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description img, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description img {
  border-radius: 30px;
}
.page-top .top-content .the-content ul, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description ul, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description ul {
  margin: 30px 0;
}
.page-top .top-content .the-content li, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description li, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description li {
  position: relative;
  margin-left: 20px;
}
.page-top .top-content .the-content li:before, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description li:before, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description li:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  content: "";
  display: block;
  left: -20px;
  width: 8px;
  height: 8px;
  background-image: url("../images/tlth-blog-list-item.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.page-top .top-content .the-content ol, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description ol, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description ol {
  margin: 30px 0;
}
.page-top .top-content .the-content ol li, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description ol li, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description ol li {
  list-style: decimal;
}
.page-top .top-content .the-content ol li:before, .page-top .top-content body.single-product .product .woocommerce-product-details__short-description ol li:before, body.single-product .product .page-top .top-content .woocommerce-product-details__short-description ol li:before {
  display: none;
}
.page-top .one-col {
  max-width: 100%;
}
.page-top .page-top-img {
  text-align: center;
}

.inner-page-content {
  padding: 60px 0;
}
.inner-page-content h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.team {
  text-align: center;
}
.team .team-member {
  padding: 0 60px;
}
.team .team-member > .top-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}
.team .team-member > .top-img:before {
  content: "";
  display: block;
  padding-top: 70%;
}
.team .team-member > .top-img > .img {
  position: relative;
  width: 65%;
  height: 65%;
  object-fit: contain;
  z-index: 2;
}
.team .team-member > .top-img > .bg-blob {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  object-fit: contain;
}
.team h2 {
  font: 38px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
}
.team h4 {
  font: 400 25px/1.3em "rubrik-edge-new", sans-serif;
  color: #FB414D;
  margin-bottom: 40px;
}

.dropdown {
  margin-bottom: 24px;
  padding: 24px;
  color: #00ABC0;
  background: rgba(186, 236, 242, 0.5);
  border-radius: 20px;
  transition: all all 0.3s ease-in-out;
  cursor: pointer;
}
.dropdown.active {
  background: #FB414D;
  color: #FFFFFF;
}
.dropdown.active .open-drop .line.horizontal {
  fill: #FFFFFF;
}
.dropdown.active .open-drop .line.vertical {
  opacity: 0;
}
.dropdown .open-drop {
  margin-left: 30px;
  transition: all all 0.3s ease-in-out;
}
.dropdown .open-drop .line {
  fill: #FB414D;
}
.dropdown .open-drop .line.vertical {
  opacity: 1;
}
.dropdown .open-drop svg {
  display: block;
  height: 24px;
  width: 24px;
  transition: all all 0.3s ease-in-out;
}
.dropdown h5 {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
}
.dropdown .the-content, .dropdown body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .dropdown .woocommerce-product-details__short-description {
  display: none;
  font-size: 18px;
  max-width: 800px;
  margin-top: 20px;
}

a.chosen-single {
  color: #032D40;
  border-radius: 30px;
  padding: 12px 24px;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
}

.form {
  margin-bottom: 120px;
  text-align: center;
}
.form h2 {
  font: 38px/1.18em "fatfrank", sans-serif;
  color: #1D86BC;
  margin-bottom: 20px;
}
.form .the-content, .form body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .form .woocommerce-product-details__short-description {
  margin-bottom: 40px;
}
.form .gform_wrapper .newsletter-form div.validation_error {
  color: #FB414D;
  background: rgba(251, 65, 77, 0.4);
  border: 2px solid #FB414D;
  border-radius: 16px;
  padding: 20px;
}
.form .gform_wrapper .newsletter-form h3.gform_title {
  font-weight: 60px/1.2em "fatfrank", sans-serif !important;
  color: #1D86BC;
}
.form .gform_wrapper .newsletter-form .gform_heading {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
.form .gform_wrapper .newsletter-form .gform_heading .gform_title {
  font-weight: 60px/1.2em "fatfrank", sans-serif !important;
  color: #1D86BC;
}
.form .gform_wrapper .newsletter-form .gform_heading .gform_description {
  font: 400 24px/1.2em "rubrik-edge-new", sans-serif;
  margin-bottom: 40px;
}
.form .gform_wrapper .newsletter-form form {
  text-align: center;
}
.form .gform_wrapper .newsletter-form .gform_body ul li.gfield {
  padding: 0 0 !important;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .validation_message {
  color: #FB414D;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .gfield_error {
  background: none;
  border: 0px;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .gfield_label {
  margin-top: 40px !important;
  color: #1D86BC !important;
  font: 28px/1em "fatfrank", sans-serif;
}
.form .gform_wrapper .newsletter-form .gform_body ul li input {
  display: block;
  position: relative;
  border: 2px solid #1D86BC !important;
  background: rgba(212, 237, 250, 0.75) !important;
  border-radius: 30px !important;
  padding: 12px 24px !important;
  width: 100% !important;
  max-width: 800px !important;
  height: 50px !important;
  margin: 0 auto !important;
  font: 400 16px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40 !important;
  transition: all all 0.3s ease-in-out !important;
}
.form .gform_wrapper .newsletter-form .gform_body ul li input:focus, .form .gform_wrapper .newsletter-form .gform_body ul li input:active {
  outline: 0;
  background: rgba(212, 237, 250, 0.5) !important;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul li {
  display: inline-flex;
  align-items: center;
  margin: 0 12px;
  font: 24px/1em "rubrik-edge-new", sans-serif;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul li label {
  max-width: 100%;
  width: 100%;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul li input[type=checkbox] {
  display: none;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul li label {
  position: relative;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul li label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #1D86BC !important;
  background: #FFFFFF !important;
}
.form .gform_wrapper .newsletter-form .gform_body ul li .ginput_container_checkbox ul li label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark-medblue.svg") !important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
.form .gform_wrapper .newsletter-form .gform_body .gform_footer input {
  color: #FFFFFF;
  background: #DE0E18;
  cursor: pointer;
  border: 0px;
  transition: all all 0.3s ease-in-out;
}
.form .gform_wrapper .newsletter-form .gform_body .gform_footer input:hover {
  background: #1D86BC;
}
.form .gform_wrapper .ginput_container span:not(.ginput_price) {
  display: inline-block;
  margin-bottom: 0px;
}
.form .gform_wrapper .top_label div.ginput_container {
  margin-top: 0px !important;
  line-height: 1.2em;
}
.form .gform_wrapper .gform_body .gform_fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.form .gform_wrapper .gform_body .gform_fields .gfield {
  padding: 0 4px;
  width: 100%;
}
.form .gform_wrapper .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
.form .gform_wrapper .gform_body .gform_fields .gfield label.gfield_label {
  font: 24px/1em "fatfrank", sans-serif;
  color: #00ABC0;
  text-align: center;
  margin: 0 auto;
  position: relative;
  display: block;
  width: 100%;
}
.form .gform_wrapper .gform_body .gform_fields .gfield input,
.form .gform_wrapper .gform_body .gform_fields .gfield input[type=tel],
.form .gform_wrapper .gform_body .gform_fields .gfield input[type=email] {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
.form .gform_wrapper .gform_body .gform_fields .gfield input:focus, .form .gform_wrapper .gform_body .gform_fields .gfield input:active,
.form .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:focus,
.form .gform_wrapper .gform_body .gform_fields .gfield input[type=tel]:active,
.form .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:focus,
.form .gform_wrapper .gform_body .gform_fields .gfield input[type=email]:active {
  outline: 0;
}
.form .gform_wrapper .gform_body .gform_fields .gfield textarea {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 16px;
  padding: 12px 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1.25em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
  resize: vertical;
}
.form .gform_wrapper .gform_body .gform_fields .gfield textarea:focus, .form .gform_wrapper .gform_body .gform_fields .gfield textarea:active {
  outline: 0;
}
.form .gform_wrapper .gform_body .gform_fields .gfield select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border: 2px solid #BAECF2;
  background-color: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container {
  width: 100% !important;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 23px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #BAECF2;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #00ABC0 transparent transparent transparent;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-results {
  position: relative;
  top: -8px;
  background: #FFFFFF;
  border: 2px solid #BAECF2;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 18px/1em "rubrik-edge-new", sans-serif;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li {
  display: inline-flex;
  align-items: center;
  margin: 0 12px;
  font: 24px/1em "rubrik-edge-new", sans-serif;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li label {
  max-width: 100%;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li input[type=checkbox] {
  display: none;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li label {
  position: relative;
  padding: 0px 20px 0 40px;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li label:before {
  display: block;
  z-index: 1;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li label:after {
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent input[type=checkbox] {
  display: none;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label {
  position: relative;
  padding-left: 40px;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label:before {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label:after {
  opacity: 0;
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a {
  text-decoration: none;
  font: 20px/1em "fatfrank", sans-serif;
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a:hover {
  color: #032D40;
}
.form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a:focus, .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a:active {
  outline: none;
}
.form .gform_wrapper .gform_footer {
  text-align: center;
}
.form .gform_wrapper .gform_footer input[type=submit] {
  cursor: pointer;
  border: 0px;
  width: auto;
}

.info-block {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #FFFFFF;
}
.info-block > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.info-block:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -10%;
  right: -10%;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: 6;
  overflow: hidden;
}
.info-block:after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -10%;
  left: -10%;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50%;
  z-index: 6;
  overflow: hidden;
}
.info-block > .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.info-block > .wrapper {
  z-index: 5;
}
.info-block h2 {
  font: 38px/1.18em "fatfrank", sans-serif;
}
.info-block .the-content, .info-block body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .info-block .woocommerce-product-details__short-description {
  margin: 30px 0 0 0;
}
.info-block .info-no-col {
  max-width: 1180px;
}
.info-block .info-col {
  padding: 0 60px;
}
.info-block .info-block-inner {
  padding: 140px 0;
}
.info-block .info-img {
  position: relative;
}
.info-block .info-img > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.info-block .info-img > img {
  position: relative;
  display: block;
  width: 100%;
  height: 200px;
}
.info-block .info-img > img:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.contact-block {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0;
  margin-bottom: 40px;
}
.contact-block > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-block > img {
  border-radius: 30px;
}
.contact-block .contact-content {
  text-align: center;
}
.contact-block .contact-content .inner-contact {
  margin: 0 auto;
}
.contact-block .contact-content .inner-contact h3 {
  line-height: 1.2em;
}
.contact-block .contact-content .inner-contact .the-content, .contact-block .contact-content .inner-contact body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .contact-block .contact-content .inner-contact .woocommerce-product-details__short-description {
  line-height: 1.25em;
  padding: 0 16px;
  margin: 30px 0;
}
.contact-block .contact-content .inner-contact .tel {
  font: 28px/1.2em "fatfrank", sans-serif;
  text-decoration: none;
  color: #FB414D;
  transition: all all 0.3s ease-in-out;
}
.contact-block .contact-content .inner-contact .tel:hover {
  color: #7940B1;
}

.affiliate {
  position: relative;
  padding: 80px 0;
  background: #FFFFFF;
}
.affiliate .affiliate-content {
  text-align: center;
  max-width: 600px;
}
.affiliate .affiliate-content h2 {
  font: 38px/1.2em "fatfrank", sans-serif;
  color: #FB414D;
}
.affiliate .affiliate-content h3 {
  font: 28px/1.2em "fatfrank", sans-serif;
  color: #00ABC0;
}
.affiliate .affiliate-content .the-content, .affiliate .affiliate-content body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .affiliate .affiliate-content .woocommerce-product-details__short-description {
  margin: 20px 0 40px 0;
}
.affiliate .affiliate-content .the-content:after, .affiliate .affiliate-content body.single-product .product .woocommerce-product-details__short-description:after, body.single-product .product .affiliate .affiliate-content .woocommerce-product-details__short-description:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #BAECF2;
  margin: 30px 0;
}
.affiliate .affiliate-content .btn-title {
  color: #00ABC0;
}

.promo-block {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0;
  margin-bottom: 40px;
  border-radius: 30px;
}
.promo-block > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.promo-block > img {
  border-radius: 30px;
}
.promo-block .promo-block-content {
  position: relative;
}
.promo-block .promo-block-content .promo-inner {
  position: relative;
  padding: 60px 20px;
  width: 100%;
  text-align: center;
}
.promo-block .promo-block-content .promo-inner h2 {
  color: #FB414D;
}
.promo-block .promo-block-content .promo-inner h3 {
  font: 28px/1.2em "fatfrank", sans-serif;
}

.post-categories {
  list-style: none;
}
.post-categories li {
  display: inline-block;
  list-style: none;
}
.post-categories li a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  background: #7940B1;
  padding: 12px 20px;
  font: 15px/1em "rubrik-edge-new", sans-serif;
  border-radius: 30px;
  transition: all all 0.3s ease-in-out;
}
.post-categories li a:hover {
  background: #00ABC0;
}

.the-content .post-categories, body.single-product .product .woocommerce-product-details__short-description .post-categories {
  list-style: none;
}

.blog-directory {
  margin: 60px 0 180px 0;
}
.blog-directory .blog-articles .featured-block .featured-block-preview .post-categories {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 10;
}
.blog-directory .recents {
  margin-bottom: 30px;
}
.blog-directory .recents:after {
  content: "";
  display: block;
  width: 100%;
  background: #C3CCD3;
  height: 1px;
  margin: 30px 0;
}
.blog-directory .recents:last-child:after {
  display: none;
}
.blog-directory .recents ul li {
  display: flex;
  align-items: center;
  line-height: 1em;
  margin-bottom: 30px;
}
.blog-directory .recents ul li .recents-block-img {
  position: relative;
  position: relative;
  margin-right: 20px;
}
.blog-directory .recents ul li .recents-block-img > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-directory .recents ul li .recents-block-img > img {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 75px;
  object-position: center;
  border-radius: 50%;
  margin: 0 auto;
}
.blog-directory .recents ul li .recents-block-img > img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.blog-directory .recents ul li a {
  display: block;
  font: 15px/1em "rubrik-edge-new", sans-serif;
  text-decoration: none;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
  max-width: 180px;
}
.blog-directory .recents ul li a:hover {
  color: #7940B1;
}
.blog-directory .recents ul li .blog-date {
  font: 15px/1em "rubrik-edge-new", sans-serif;
  margin-top: 12px;
  color: #C3CCD3;
}
.blog-directory .categories {
  margin-bottom: 30px;
}
.blog-directory .categories ul li {
  margin-bottom: 20px;
}
.blog-directory .categories ul li:last-child {
  margin-bottom: 0px;
}
.blog-directory .categories ul li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font: 24px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
.blog-directory .categories ul li a:focus, .blog-directory .categories ul li a.active, .blog-directory .categories ul li a:hover {
  outline: none;
}
.blog-directory .categories ul li a:focus .label, .blog-directory .categories ul li a.active .label, .blog-directory .categories ul li a:hover .label {
  color: #00ABC0;
}
.blog-directory .categories ul li a:focus .label:before, .blog-directory .categories ul li a.active .label:before, .blog-directory .categories ul li a:hover .label:before {
  border-color: #00ABC0;
  background: #00ABC0;
}
.blog-directory .categories ul li a .label {
  position: relative;
  padding-left: 50px;
}
.blog-directory .categories ul li a .label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 32px;
  width: 32px;
  border: 2px solid #E8EEFF;
  border-radius: 50%;
  transition: all all 0.3s ease-in-out;
}
.blog-directory .featured-block-img {
  display: block;
}
.blog-directory .featured-block-img > img {
  border-radius: 30px;
}
.blog-directory .featured-block-img .blog-post-info {
  display: flex;
  align-items: center;
}
.blog-directory .featured-block-img .blog-post-info .post-categories {
  display: block;
  margin-right: 12px;
}
.blog-directory .featured-block-img .blog-post-info .the-content.blog-date, .blog-directory .featured-block-img .blog-post-info body.single-product .product .blog-date.woocommerce-product-details__short-description, body.single-product .product .blog-directory .featured-block-img .blog-post-info .blog-date.woocommerce-product-details__short-description {
  font: 15px/1em "rubrik-edge-new", sans-serif;
  color: #C3CCD3;
}

.single-post .blog-directory {
  margin: 60px 0;
}
.single-post .page-top .page-title {
  text-align: center;
}
.single-post .blog-directory .featured-block-img {
  margin-bottom: 40px;
}
.single-post .blog-see-all {
  display: inline-block;
  text-decoration: none;
  color: #FB414D;
  font: 20px/1em "rubrik-edge-new", sans-serif;
  text-align: center;
  transition: all all 0.3s ease-in-out;
}
.single-post .blog-see-all:hover {
  color: #7940B1;
}
.single-post .blog-article {
  padding-right: 60px;
}
.single-post .blog-article h1,
.single-post .blog-article h2,
.single-post .blog-article h3,
.single-post .blog-article h4,
.single-post .blog-article h5,
.single-post .blog-article h6 {
  display: block;
  margin: 60px 0 30px 0;
  font: 28px/1.2em "fatfrank", sans-serif;
  color: #00ABC0;
}
.single-post .blog-article img {
  border-radius: 30px;
}
.single-post .blog-article ul {
  margin: 30px 0;
}
.single-post .blog-article li {
  position: relative;
  margin-left: 20px;
}
.single-post .blog-article li:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  content: "";
  display: block;
  left: -20px;
  width: 8px;
  height: 8px;
  background-image: url("../images/tlth-blog-list-item.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}

.featured-block .featured-block-preview {
  margin: 0 0 100px 0;
  text-align: center;
}
.featured-block .featured-block-preview .feat-img-block {
  position: relative;
}
.featured-block .featured-block-preview h3 .blog-title {
  text-decoration: none;
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
.featured-block .featured-block-preview h3 .blog-title:hover {
  color: #7940B1;
}
.featured-block .featured-block-preview h3 .blog-title.mobile {
  display: none;
}
.featured-block .featured-block-preview .featured-block-img {
  position: relative;
  display: block;
}
.featured-block .featured-block-preview .featured-block-img > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featured-block .featured-block-preview .featured-block-img > img {
  position: relative;
  border-radius: 30px;
  width: 100%;
  max-height: 450px;
  object-position: center;
  margin-bottom: 40px;
}
.featured-block .featured-block-preview .featured-block-img > img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.featured-block .featured-block-preview .featured-block-content {
  padding: 0 40px;
}
.featured-block .featured-block-preview .featured-block-content h3 .blog-title {
  text-decoration: none;
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
.featured-block .featured-block-preview .featured-block-content h3 .blog-title:hover {
  color: #7940B1;
}
.featured-block .featured-block-preview .featured-block-content h3 .blog-title.desktop {
  display: block;
}
.featured-block .featured-block-preview .featured-block-content .blog-date {
  color: #C3CCD3;
  font: 15px/1em "rubrik-edge-new", sans-serif;
  display: block;
  margin: 40px 0;
}
.featured-block .featured-block-preview .featured-block-content .blog-excerpt {
  margin-bottom: 30px;
}

.featured-article-section {
  margin: 120px 0 0 0;
}
.featured-article-section h2 {
  font: 38px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 60px;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-img {
  position: relative;
  display: block;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-img > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-img > img {
  position: relative;
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  object-position: center;
  z-index: 2;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-img > img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-content h3 {
  font: 28px/1.2em "fatfrank", sans-serif;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-content h3 a {
  text-decoration: none;
  color: #00ABC0;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-content .the-content.blog-date, .featured-article-section .featured-articles .featured-block-preview .featured-block-content body.single-product .product .blog-date.woocommerce-product-details__short-description, body.single-product .product .featured-article-section .featured-articles .featured-block-preview .featured-block-content .blog-date.woocommerce-product-details__short-description {
  font: 15px/1em "rubrik-edge-new", sans-serif;
  margin: 16px 0 30px 0;
  color: #C3CCD3;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-content a {
  text-decoration: none;
  color: #FB414D;
  transition: all all 0.3s ease-in-out;
}
.featured-article-section .featured-articles .featured-block-preview .featured-block-content a:hover {
  color: #7940B1;
  margin-top: 40px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 12px;
  text-decoration: none;
  background: rgba(0, 171, 192, 0);
  color: #768791;
  font: 16px/1em "rubrik-edge-new", sans-serif;
  border: 2px solid #C3CCD3;
  border-radius: 50%;
  height: 32px;
  width: 32px;
  transition: all all 0.3s ease-in-out;
}
.pagination .page-numbers:hover {
  border-color: #00ABC0;
  background: #00abc0;
  color: #FFFFFF;
}
.pagination .page-numbers.current {
  border-color: #00ABC0;
  background: #00abc0;
  color: #FFFFFF;
}

#subfooter {
  position: relative;
  z-index: 10;
  padding: 30px;
}

#footer {
  position: relative;
  z-index: 9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  left: 0;
  padding: 20px 0;
}
#footer > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 171, 192, 0.8);
  z-index: 1;
  z-index: 1;
}
#footer:after {
  content: "";
  position: absolute;
  top: -40px;
  left: -10%;
  right: -10%;
  background: #FFFFFF;
  height: 140px;
  border-radius: 50%;
  z-index: 1;
  overflow: hidden;
}
#footer .footer-content {
  position: relative;
  text-align: center;
  font-size: 16px;
  line-height: 1.5em;
  color: #FFFFFF;
  margin: 0 0 40px 0;
  z-index: 3;
}
#footer .footer-primary-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
#footer .footer-primary-nav ul li {
  margin: 40px 0;
}
#footer .footer-primary-nav ul li.is-btn {
  margin: 0 12px;
}
#footer .footer-primary-nav ul li.is-btn a {
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
  margin: 0 20px;
}
#footer .footer-primary-nav ul li a {
  color: #FFFFFF;
  text-decoration: none;
  margin: 0 12px;
  transition: all all 0.3s ease-in-out;
}
#footer .footer-primary-nav ul li a:hover {
  color: #032D40;
}
#footer .footer-icons {
  margin: 40px 0;
}
#footer .footer-copy .policy {
  display: inline-block;
  margin-bottom: 40px;
}
#footer .footer-copy a {
  text-decoration: none;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
#footer .footer-copy a:hover {
  color: #032D40;
}

.additional-links ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto 40px auto;
}
.additional-links ul li {
  margin: 0 12px;
}
.additional-links ul li a {
  color: #FFFFFF;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
.additional-links ul li a:hover {
  color: #032D40;
}

.footer-buttons ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-buttons ul li {
  text-decoration: none;
  margin: 0 12px;
}
.footer-buttons ul li a {
  display: inline-block;
  font: 400 14px/1em "rubrik-edge-new", sans-serif;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 50px;
  background: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
.footer-buttons ul li a:hover {
  color: #032D40;
}
.footer-buttons ul li a.red, .footer-buttons ul li body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .footer-buttons ul li a.reset_variations, .footer-buttons ul li body a.add_to_cart_button, body .footer-buttons ul li a.add_to_cart_button, .footer-buttons body ul.products li.product-block .product-meta .single-product-content a.button, body .footer-buttons ul.products li.product-block .product-meta .single-product-content a.button, .footer-buttons ul li body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .footer-buttons ul li a.woocommerce-remove-coupon, .footer-buttons ul li body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .footer-buttons ul li a.woocommerce-remove-coupon, .footer-buttons ul li body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .footer-buttons ul li a.woocommerce-remove-coupon, .footer-buttons ul li body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .footer-buttons ul li a.checkout-button, .footer-buttons body .woocommerce ul.products li.product a.button, body .woocommerce .footer-buttons ul.products li.product a.button, .footer-buttons ul li body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .footer-buttons ul li a.delete, .footer-buttons ul li body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .footer-buttons ul li a.edit, .footer-buttons body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation .footer-buttons ul li.woocommerce-MyAccount-navigation-link--0 a, .footer-buttons ul li .error404 .hero .the-content a.button, .footer-buttons ul li .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .footer-buttons ul li .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content .footer-buttons ul li a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .footer-buttons ul li a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .footer-buttons ul li a.button {
  color: #FB414D;
}
.footer-buttons ul li a.red:hover, .footer-buttons ul li body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .footer-buttons ul li a.reset_variations:hover, .footer-buttons ul li body a.add_to_cart_button:hover, body .footer-buttons ul li a.add_to_cart_button:hover, .footer-buttons body ul.products li.product-block .product-meta .single-product-content a.button:hover, body .footer-buttons ul.products li.product-block .product-meta .single-product-content a.button:hover, .footer-buttons ul li body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .footer-buttons ul li a.woocommerce-remove-coupon:hover, .footer-buttons ul li body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .footer-buttons ul li a.woocommerce-remove-coupon:hover, .footer-buttons ul li body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .footer-buttons ul li a.woocommerce-remove-coupon:hover, .footer-buttons ul li body .woocommerce .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .footer-buttons ul li a.checkout-button:hover, .footer-buttons body .woocommerce ul.products li.product a.button:hover, body .woocommerce .footer-buttons ul.products li.product a.button:hover, .footer-buttons ul li body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .footer-buttons ul li a.delete:hover, .footer-buttons ul li body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .footer-buttons ul li a.edit:hover, .footer-buttons body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce .woocommerce-MyAccount-navigation .footer-buttons ul li.woocommerce-MyAccount-navigation-link--0 a:hover, .footer-buttons ul li .error404 .hero .the-content a.button:hover, .footer-buttons ul li .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .footer-buttons ul li .error404 .hero .woocommerce-product-details__short-description a.button:hover, .error404 .hero .the-content .footer-buttons ul li a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .footer-buttons ul li a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .footer-buttons ul li a.button:hover {
  color: #7940B1;
}
.footer-buttons ul li a.blue, .footer-buttons ul li body .woocommerce .return-to-shop a, body .woocommerce .return-to-shop .footer-buttons ul li a, .footer-buttons ul li body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .footer-buttons ul li a.woocommerce-button {
  color: #00ABC0;
}
.footer-buttons ul li a.blue:hover, .footer-buttons ul li body .woocommerce .return-to-shop a:hover, body .woocommerce .return-to-shop .footer-buttons ul li a:hover, .footer-buttons ul li body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .footer-buttons ul li a.woocommerce-button:hover {
  color: #032D40;
}

.social-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icons ul li {
  margin: 0 8px;
}
.social-icons ul li:last-child {
  margin-right: 0;
}
.social-icons ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all all 0.3s ease-in-out;
}
.social-icons ul li a:hover svg {
  transform: scale(1.1);
}
.social-icons ul li a svg {
  display: block;
  height: 30px;
  width: 30px;
  transition: all all 0.3s ease-in-out;
}

.error404 .hero {
  padding: 200px 0;
  opacity: 1 !important;
}
.error404 .hero:before {
  content: none;
  display: none;
}
.error404 .hero .the-content, .error404 .hero body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .error404 .hero .woocommerce-product-details__short-description {
  display: inline-block;
  width: 50%;
  text-align: center;
}
.error404 .hero .the-content h1, .error404 .hero body.single-product .product .woocommerce-product-details__short-description h1, body.single-product .product .error404 .hero .woocommerce-product-details__short-description h1 {
  color: #00ABC0;
  margin-bottom: 30px;
}
.error404 .hero .the-content a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button {
  display: inline-block;
  margin: 40px 8px 0;
}
.error404 .hero .the-content img, .error404 .hero body.single-product .product .woocommerce-product-details__short-description img, body.single-product .product .error404 .hero .woocommerce-product-details__short-description img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.popup {
  display: none;
}

.newsletter-tab {
  position: fixed;
  display: block;
  left: 20px;
  bottom: 20px;
  padding: 12px;
  z-index: 80;
}
.newsletter-tab .newsletter-pop svg {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 160px;
}
.newsletter-tab .newsletter-pop img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 160px;
}
.newsletter-tab .close-tab {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  z-index: 81;
}
.newsletter-tab .close-tab.closed {
  display: none;
}
.newsletter-tab .close-tab:hover svg path {
  fill: #7940B1;
}
.newsletter-tab .close-tab svg {
  display: block;
  height: 16px;
  width: 16px;
}
.newsletter-tab .close-tab svg path {
  transition: all all 0.3s ease-in-out;
}
.newsletter-tab .newsletter-pop:focus, .newsletter-tab .newsletter-pop:active {
  outline: none;
}
.newsletter-tab .newsletter-pop.closed {
  display: none;
}

#newsletter-form {
  position: relative;
  border-radius: 30px;
  background: #FFFFFF;
  border: 5px solid #1D86BC;
  padding: 100px 200px;
  max-width: 85%;
  margin: 0 auto;
}
#newsletter-form .news-img {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}
#newsletter-form .news-img img, #newsletter-form .news-img svg {
  display: block;
  height: 100%;
  width: 100%;
  max-width: 100%;
}
#newsletter-form .gform_confirmation_wrapper {
  margin: 0 0 0 0;
}
#newsletter-form .gform_wrapper {
  position: relative;
  z-index: 2;
}
#newsletter-form .gform_wrapper div.validation_error {
  color: #FB414D;
  background: rgba(251, 65, 77, 0.4);
  border: 2px solid #FB414D;
  border-radius: 16px;
  padding: 20px;
}
#newsletter-form .gform_wrapper h3.gform_title {
  font-weight: 60px/1.2em "fatfrank", sans-serif !important;
  color: #1D86BC;
}
#newsletter-form .gform_wrapper .gform_heading {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
#newsletter-form .gform_wrapper .gform_heading .gform_title {
  font-weight: 60px/1.2em "fatfrank", sans-serif !important;
  color: #1D86BC;
}
#newsletter-form .gform_wrapper .gform_heading .gform_description {
  font: 400 24px/1.2em "rubrik-edge-new", sans-serif;
  margin-bottom: 40px;
}
#newsletter-form .gform_wrapper form {
  text-align: center;
}
#newsletter-form .gform_wrapper .gform_body ul li.gfield {
  padding: 0 0 !important;
}
#newsletter-form .gform_wrapper .gform_body ul li .validation_message {
  color: #FB414D;
}
#newsletter-form .gform_wrapper .gform_body ul li .gfield_error {
  background: none;
  border: 0px;
}
#newsletter-form .gform_wrapper .gform_body ul li .gfield_label {
  margin-top: 40px;
  color: #1D86BC;
  font: 28px/1em "fatfrank", sans-serif;
}
#newsletter-form .gform_wrapper .gform_body ul li input[type=text],
#newsletter-form .gform_wrapper .gform_body ul li input[type=tel],
#newsletter-form .gform_wrapper .gform_body ul li input[type=email] {
  border: 2px solid #1D86BC;
  background: rgba(212, 237, 250, 0.75);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 680px;
  max-width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 16px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
#newsletter-form .gform_wrapper .gform_body ul li input[type=text]:focus, #newsletter-form .gform_wrapper .gform_body ul li input[type=text]:active,
#newsletter-form .gform_wrapper .gform_body ul li input[type=tel]:focus,
#newsletter-form .gform_wrapper .gform_body ul li input[type=tel]:active,
#newsletter-form .gform_wrapper .gform_body ul li input[type=email]:focus,
#newsletter-form .gform_wrapper .gform_body ul li input[type=email]:active {
  outline: 0;
  background: rgba(212, 237, 250, 0.5);
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li {
  display: inline-flex;
  align-items: center;
  margin: 0 12px;
  font: 24px/1em "rubrik-edge-new", sans-serif;
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label {
  max-width: 100%;
  width: 100%;
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li input[type=checkbox] {
  display: none;
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label {
  position: relative;
  padding: 0px 20px 12px 40px;
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #1D86BC;
  background: #FFFFFF;
}
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark-medblue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
#newsletter-form .gform_wrapper .gform_footer input {
  color: #FFFFFF;
  background: #DE0E18;
  cursor: pointer;
  border: 0px;
  transition: all all 0.3s ease-in-out;
}
#newsletter-form .gform_wrapper .gform_footer input:hover {
  background: #1D86BC;
}

.fancybox-button {
  transition: all all 0.3s ease-in-out;
}
.fancybox-button:before {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  display: block;
  height: 50px;
  width: 50px;
  background-image: url("../images/icon-close.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all all 0.3s ease-in-out;
}
.fancybox-button svg {
  display: none;
}

.fancybox-container .fancybox-bg {
  background: #032d40;
}

/*
 * To be placed in WooCommerce.scss afterwards
 */
.woocommerce ul.products .product-block {
  position: relative;
  display: flex;
  border-radius: 30px;
  padding: 20px !important;
  margin-bottom: 15px !important;
  background: rgba(232, 238, 255, 0.4);
}
.woocommerce ul.products .product-block .product-themes ul li {
  margin-bottom: 12px;
}
.woocommerce ul.products .product-block .product-themes ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  transition: all all 0.3s ease-in-out;
}
.woocommerce ul.products .product-block .product-themes ul li a:hover {
  transform: scale(1.1);
}
.woocommerce ul.products .product-block .product-themes ul li a svg {
  display: block;
  width: 70%;
  height: 70%;
}
.woocommerce ul.products .product-block .product-themes ul li a svg path {
  fill: #FFFFFF;
}
.woocommerce ul.products .product-block .product-meta .single-product-img {
  position: relative;
  display: block;
  text-align: center;
  z-index: 2;
}
.woocommerce ul.products .product-block .product-meta .single-product-img > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.woocommerce ul.products .product-block .product-meta .single-product-img > img {
  position: relative;
  object-fit: contain;
  padding: 24px;
}
.woocommerce ul.products .product-block .product-meta .single-product-img > img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.woocommerce ul.products .product-block .product-meta .single-product-content .product-title h2 {
  display: inline-block;
  text-decoration: none;
  font: 28px/1.2em "fatfrank", sans-serif;
  color: #032D40;
  margin-bottom: 18px;
  padding: 0 0;
  transition: all all 0.3s ease-in-out;
}
.woocommerce ul.products .product-block .product-meta .single-product-content .product-title h2:hover {
  color: #00ABC0;
}
.woocommerce ul.products .product-block .product-meta .single-product-content .price {
  display: block;
  margin-bottom: 18px;
}
.woocommerce ul.products .product-block .product-meta .single-product-content .product-prev-price {
  display: inline-block;
  margin-left: 20px;
  font: 25px/1.2em "rubrik-edge-new", sans-serif;
  color: #666A72;
  text-decoration: line-through;
}
.woocommerce ul.products .product-block .product-meta .single-product-content .product-desc {
  margin-bottom: 30px;
}
#instagram-feed {
  position: relative;
  margin-top: 80px;
}
#instagram-feed:before {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  top: -80px;
  background: #020024;
  background: linear-gradient(180deg, rgba(3, 45, 64, 0.05) 0%, white 100%);
}
#instagram-feed #sb_instagram {
  padding: 60px 0;
}
#instagram-feed #sb_instagram .sb_instagram_header {
  display: none !important;
}
#instagram-feed #sb_instagram #sbi_images {
  padding: 8px;
}
#instagram-feed #sb_instagram .sbi_photo {
  -webkit-box-shadow: 0px 4px 5px rgba(102, 106, 114, 0.3);
  -moz-box-shadow: 0px 4px 5px rgba(102, 106, 114, 0.3);
  box-shadow: 0px 4px 5px rgba(102, 106, 114, 0.3);
  border-radius: 24px;
  border: 4px solid #FFFFFF;
}

.page-template-page-mailpoet .mailpoet-content-block, .single-mailpoet_page .mailpoet-content-block {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0;
}
.page-template-page-mailpoet .mailpoet-content-block p strong a, .single-mailpoet_page .mailpoet-content-block p strong a {
  position: relative;
  color: #00ABC0;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
.page-template-page-mailpoet .mailpoet-content-block p strong a:hover, .single-mailpoet_page .mailpoet-content-block p strong a:hover {
  color: #7940B1;
}
.page-template-page-mailpoet .mailpoet_confirm_unsubscribe a, .single-mailpoet_page .mailpoet_confirm_unsubscribe a {
  position: relative;
  color: #00ABC0;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
.page-template-page-mailpoet .mailpoet_confirm_unsubscribe a:hover, .single-mailpoet_page .mailpoet_confirm_unsubscribe a:hover {
  color: #7940B1;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph {
  margin-bottom: 20px;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph:last-child, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph:last-child {
  margin-bottom: 0px;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph label, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph label {
  position: relative;
  display: block;
  font: 24px/1em "fatfrank", sans-serif;
  width: 100%;
  color: #00ABC0;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph label strong, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph label strong {
  font-size: 22px;
  color: #032D40;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_text_label, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_text_label {
  font: 700 20px/1em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 6px;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=text], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=text] {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=text]:focus, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=text]:active, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=text]:focus, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=text]:active {
  outline: 0;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_select_label, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_select_label {
  font: 700 20px/1em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 6px;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph select, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border: 2px solid #BAECF2;
  background-color: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container {
  width: 100% !important;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 23px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single span, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #BAECF2;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single div, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single div b, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #00ABC0 transparent transparent transparent;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-drop, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-drop .chosen-search, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-drop .chosen-search input[type=text], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-results, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-results {
  position: relative;
  top: -8px;
  background: #FFFFFF;
  border: 2px solid #BAECF2;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 18px/1em "rubrik-edge-new", sans-serif;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-results li, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-results li.active-result.hightlighted, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_segment_label, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_segment_label {
  display: block;
  font: 700 20px/1em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-top: 5px;
  margin-bottom: 15px;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_radio_label, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_checkbox_label, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_radio_label, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .mailpoet_checkbox_label {
  display: block;
  font: 400 20px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  margin-top: 5px;
  margin-bottom: 15px;
}
.page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit] {
  cursor: pointer;
}

.page-template-workshop.shop-notice-enabled #main {
  margin-top: 10px;
}
.page-template-workshop .newsletter-tab,
.page-template-workshop #fb-root,
.page-template-workshop #subfooter,
.page-template-workshop #footer {
  display: none;
}
.page-template-workshop #main {
  padding-bottom: 0 !important;
}

.workshop-slice {
  position: relative;
  min-height: calc(100vh - 120px);
  padding: 100px 0;
}
.workshop-slice > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.workshop-slice > .bg {
  object-position: bottom center;
}
.workshop-slice .buttons {
  margin: 25px -5px 0 -5px;
  text-align: center;
  padding-right: 30px;
}
.workshop-slice .buttons .btn, .workshop-slice .buttons .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .workshop-slice .buttons input[type=button], .workshop-slice .buttons .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .workshop-slice .buttons input[type=button], .workshop-slice .buttons .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .workshop-slice .buttons a.wc-forward, .workshop-slice .buttons body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .workshop-slice .buttons button.button, .workshop-slice .buttons body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .workshop-slice .buttons a.reset_variations, .workshop-slice .buttons body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .workshop-slice .buttons button.button, .workshop-slice .buttons body.single-product .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .workshop-slice .buttons button.button, .workshop-slice .buttons body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .product form.gift-cards_form .gift-cards-list .workshop-slice .buttons button, .workshop-slice .buttons body.single-product .woocommerce-message a.button, body.single-product .woocommerce-message .workshop-slice .buttons a.button, .workshop-slice .buttons body .add_to_cart_button, body .workshop-slice .buttons .add_to_cart_button, .workshop-slice .buttons body ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .workshop-slice .buttons a.button, .workshop-slice .buttons body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order .workshop-slice .buttons button#place_order, .workshop-slice .buttons body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .workshop-slice .buttons a.woocommerce-remove-coupon, .workshop-slice .buttons body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .workshop-slice .buttons a.woocommerce-remove-coupon, .workshop-slice .buttons body .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .workshop-slice .buttons a.woocommerce-remove-coupon, .workshop-slice .buttons body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .workshop-slice .buttons a.checkout-button, .workshop-slice .buttons body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .workshop-slice .buttons input[type=button], .workshop-slice .buttons body .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .workshop-slice .buttons input[type=button], .workshop-slice .buttons body .woocommerce ul.products li.product .button, body .woocommerce ul.products li.product .workshop-slice .buttons .button, .workshop-slice .buttons body .woocommerce .woocommerce-error a .wc-backward, body .woocommerce .woocommerce-error a .workshop-slice .buttons .wc-backward, .workshop-slice .buttons body .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce .return-to-shop a, body .woocommerce .return-to-shop .workshop-slice .buttons a, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .workshop-slice .buttons input.button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .workshop-slice .buttons input.button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .workshop-slice .buttons input.button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .workshop-slice .buttons a.button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .workshop-slice .buttons a.delete, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .workshop-slice .buttons a.edit, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .workshop-slice .buttons a.woocommerce-button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content table td .workshop-slice .buttons .button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-content .workshop-slice .buttons button, .workshop-slice .buttons body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .workshop-slice .buttons a, .workshop-slice .buttons body .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .workshop-slice .buttons button.button, .workshop-slice .buttons body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .workshop-slice .buttons button.button, .workshop-slice .buttons #code-form .gform_wrapper .gform_footer input, #code-form .gform_wrapper .gform_footer .workshop-slice .buttons input, .workshop-slice .buttons form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p .workshop-slice .buttons input.button, .workshop-slice .buttons .form .gform_wrapper .newsletter-form .gform_body .gform_footer input, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .workshop-slice .buttons input, .workshop-slice .buttons .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer .workshop-slice .buttons input[type=submit], .workshop-slice .buttons #footer .footer-primary-nav ul li.is-btn a, #footer .footer-primary-nav ul li.is-btn .workshop-slice .buttons a, .workshop-slice .buttons .error404 .hero .the-content a.button, .workshop-slice .buttons .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .workshop-slice .buttons .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content .workshop-slice .buttons a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .workshop-slice .buttons a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .workshop-slice .buttons a.button, .workshop-slice .buttons #newsletter-form .gform_wrapper .gform_footer input, #newsletter-form .gform_wrapper .gform_footer .workshop-slice .buttons input, .workshop-slice .buttons .woocommerce ul.products .product-block .product-meta .single-product-content a.button, .woocommerce ul.products .product-block .product-meta .single-product-content .workshop-slice .buttons a.button, .workshop-slice .buttons .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .workshop-slice .buttons input[type=submit], .workshop-slice .buttons .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .workshop-slice .buttons input[type=submit] {
  display: inline-block;
  margin: 5px;
}
.workshop-slice .stage-under {
  margin-top: 50px;
}
.workshop-slice .character {
  display: flex;
  align-items: flex-start;
}
.workshop-slice .character .img {
  flex: 1;
}
.workshop-slice .ws-intro .character-1 .img {
  text-align: right;
}
.workshop-slice .form-steps .step {
  display: none;
}
.workshop-slice .form-steps .step.active {
  display: block;
}

.dialog {
  position: relative;
  background: #FFFFFF;
  border: 4px solid #C3CCD3;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
}
.dialog.loading {
  width: 100%;
  min-height: 100px;
  background-image: url("../images/loader.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50px 50px;
}
.dialog.loading > * {
  display: none !important;
}
.dialog .the-content + .btn, .dialog .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .the-content + input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .dialog .the-content + input[type=button], .dialog .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .the-content + input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .dialog .the-content + input[type=button], .dialog .woocommerce .woocommerce-notices-wrapper .woocommerce-message .the-content + a.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .dialog .the-content + a.wc-forward, .dialog body.single-product .product .woocommerce-variation-add-to-cart .the-content + button.button, body.single-product .product .woocommerce-variation-add-to-cart .dialog .the-content + button.button, .dialog body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .the-content + a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .dialog .the-content + a.reset_variations, .dialog body.single-product .product #personnaliser-le-livre form.cart .the-content + button.button, body.single-product .product #personnaliser-le-livre form.cart .dialog .the-content + button.button, .dialog body.single-product .product .gift_card_template_button .the-content + button.button, body.single-product .product .gift_card_template_button .dialog .the-content + button.button, .dialog body.single-product .product form.gift-cards_form .gift-cards-list .the-content + button, body.single-product .product form.gift-cards_form .gift-cards-list .dialog .the-content + button, .dialog body.single-product .product .woocommerce-product-details__short-description + .btn, .dialog body.single-product .product .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-product-details__short-description + input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .dialog body.single-product .product .woocommerce-product-details__short-description + input[type=button], .dialog body.single-product .product .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-product-details__short-description + input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .dialog body.single-product .product .woocommerce-product-details__short-description + input[type=button], .dialog body.single-product .product .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-product-details__short-description + a.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .dialog body.single-product .product .woocommerce-product-details__short-description + a.wc-forward, .dialog body.single-product .product .woocommerce-variation-add-to-cart .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-product-details__short-description + a.reset_variations, .dialog body.single-product .product #personnaliser-le-livre form.cart .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .gift_card_template_button .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-product-details__short-description + button, body.single-product .product .dialog .woocommerce-product-details__short-description + .btn, body.single-product .product .dialog .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .woocommerce-product-details__short-description + input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body.single-product .product .dialog .woocommerce-product-details__short-description + input[type=button], body.single-product .product .dialog .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-product-details__short-description + input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body.single-product .product .dialog .woocommerce-product-details__short-description + input[type=button], body.single-product .product .dialog .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-product-details__short-description + a.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product .dialog .woocommerce-product-details__short-description + a.wc-forward, body.single-product .product .dialog .woocommerce-variation-add-to-cart .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce-variation-add-to-cart .dialog .woocommerce-product-details__short-description + button.button, body.single-product .product .dialog #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-product-details__short-description + a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .dialog .woocommerce-product-details__short-description + a.reset_variations, body.single-product .product .dialog #personnaliser-le-livre form.cart .woocommerce-product-details__short-description + button.button, body.single-product .product #personnaliser-le-livre form.cart .dialog .woocommerce-product-details__short-description + button.button, body.single-product .product .dialog .gift_card_template_button .woocommerce-product-details__short-description + button.button, body.single-product .product .gift_card_template_button .dialog .woocommerce-product-details__short-description + button.button, body.single-product .product .dialog form.gift-cards_form .gift-cards-list .woocommerce-product-details__short-description + button, body.single-product .product form.gift-cards_form .gift-cards-list .dialog .woocommerce-product-details__short-description + button, .dialog body.single-product .woocommerce-message .the-content + a.button, .dialog body.single-product .woocommerce-message .product .woocommerce-product-details__short-description + a.button, .dialog body.single-product .product .woocommerce-message .woocommerce-product-details__short-description + a.button, body.single-product .woocommerce-message .dialog .the-content + a.button, body.single-product .woocommerce-message .dialog .product .woocommerce-product-details__short-description + a.button, body.single-product .product .woocommerce-message .dialog .woocommerce-product-details__short-description + a.button, .dialog body .the-content + .add_to_cart_button, .dialog body.single-product .product .woocommerce-product-details__short-description + .add_to_cart_button, body .dialog .the-content + .add_to_cart_button, body.single-product .dialog .product .woocommerce-product-details__short-description + .add_to_cart_button, body.single-product .product .dialog .woocommerce-product-details__short-description + .add_to_cart_button, .dialog body ul.products li.product-block .product-meta .single-product-content .the-content + a.button, .dialog body.single-product ul.products li.product-block .product-meta .single-product-content .product .woocommerce-product-details__short-description + a.button, .dialog body.single-product .product ul.products li.product-block .product-meta .single-product-content .woocommerce-product-details__short-description + a.button, body ul.products li.product-block .product-meta .single-product-content .dialog .the-content + a.button, body.single-product ul.products li.product-block .product-meta .single-product-content .dialog .product .woocommerce-product-details__short-description + a.button, body.single-product .product ul.products li.product-block .product-meta .single-product-content .dialog .woocommerce-product-details__short-description + a.button, .dialog body .widget .product-search-filter-reset form.product-search-filter-reset-form .the-content + button.button, .dialog body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce-product-details__short-description + button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .dialog .the-content + button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .widget .product-search-filter-reset form.product-search-filter-reset-form .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce #payment .form-row.place-order .the-content + button#place_order, .dialog body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-product-details__short-description + button#place_order, .dialog body.single-product .product .woocommerce #payment .form-row.place-order .woocommerce-product-details__short-description + button#place_order, body .woocommerce #payment .form-row.place-order .dialog .the-content + button#place_order, body.single-product .woocommerce #payment .form-row.place-order .dialog .product .woocommerce-product-details__short-description + button#place_order, body.single-product .product .woocommerce #payment .form-row.place-order .dialog .woocommerce-product-details__short-description + button#place_order, .dialog body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .the-content + a.woocommerce-remove-coupon, .dialog body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .product .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, .dialog body.single-product .product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .dialog .the-content + a.woocommerce-remove-coupon, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .dialog .product .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, body.single-product .product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .dialog .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, .dialog body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .the-content + a.woocommerce-remove-coupon, .dialog body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .product .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, .dialog body.single-product .product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .dialog .the-content + a.woocommerce-remove-coupon, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .dialog .product .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, body.single-product .product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .dialog .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, .dialog body .woocommerce form.checkout-coupon .the-content + button.button, .dialog body.single-product .woocommerce form.checkout-coupon .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce form.checkout-coupon .woocommerce-product-details__short-description + button.button, body .woocommerce form.checkout-coupon .dialog .the-content + button.button, body.single-product .woocommerce form.checkout-coupon .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce form.checkout-coupon .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce .woocommerce-form-coupon .the-content + button.button, .dialog body.single-product .woocommerce .woocommerce-form-coupon .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce .woocommerce-form-coupon .woocommerce-product-details__short-description + button.button, body .woocommerce .woocommerce-form-coupon .dialog .the-content + button.button, body.single-product .woocommerce .woocommerce-form-coupon .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce .woocommerce-form-coupon .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .the-content + button.button, .dialog body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-product-details__short-description + button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .dialog .the-content + button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce .cart-collaterals table.shop_table td .the-content + a.woocommerce-remove-coupon, .dialog body.single-product .woocommerce .cart-collaterals table.shop_table td .product .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, .dialog body.single-product .product .woocommerce .cart-collaterals table.shop_table td .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .dialog .the-content + a.woocommerce-remove-coupon, body.single-product .woocommerce .cart-collaterals table.shop_table td .dialog .product .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, body.single-product .product .woocommerce .cart-collaterals table.shop_table td .dialog .woocommerce-product-details__short-description + a.woocommerce-remove-coupon, .dialog body .woocommerce .cart-collaterals .the-content + a.checkout-button, .dialog body.single-product .woocommerce .cart-collaterals .product .woocommerce-product-details__short-description + a.checkout-button, .dialog body.single-product .product .woocommerce .cart-collaterals .woocommerce-product-details__short-description + a.checkout-button, body .woocommerce .cart-collaterals .dialog .the-content + a.checkout-button, body.single-product .woocommerce .cart-collaterals .dialog .product .woocommerce-product-details__short-description + a.checkout-button, body.single-product .product .woocommerce .cart-collaterals .dialog .woocommerce-product-details__short-description + a.checkout-button, .dialog body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .the-content + input[type=button], .dialog body.single-product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .product .woocommerce-product-details__short-description + input[type=button], .dialog body.single-product .product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .woocommerce-product-details__short-description + input[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .dialog .the-content + input[type=button], body.single-product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .dialog .product .woocommerce-product-details__short-description + input[type=button], body.single-product .product .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .dialog .woocommerce-product-details__short-description + input[type=button], .dialog body .woocommerce .woocommerce-cart-form table.shop_table .the-content + button.button, .dialog body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-product-details__short-description + button.button, body .woocommerce .woocommerce-cart-form table.shop_table .dialog .the-content + button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .the-content + input[type=button], .dialog body.single-product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .product .woocommerce-product-details__short-description + input[type=button], .dialog body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .woocommerce-product-details__short-description + input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .dialog .the-content + input[type=button], body.single-product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .dialog .product .woocommerce-product-details__short-description + input[type=button], body.single-product .product .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .dialog .woocommerce-product-details__short-description + input[type=button], .dialog body .woocommerce ul.products li.product .the-content + .button, .dialog body.single-product .woocommerce ul.products li.product .woocommerce-product-details__short-description + .button, body .woocommerce ul.products li.product .dialog .the-content + .button, body.single-product .woocommerce ul.products li.product .dialog .woocommerce-product-details__short-description + .button, .dialog body .woocommerce .woocommerce-error a .the-content + .wc-backward, .dialog body.single-product .woocommerce .woocommerce-error a .product .woocommerce-product-details__short-description + .wc-backward, .dialog body.single-product .product .woocommerce .woocommerce-error a .woocommerce-product-details__short-description + .wc-backward, body .woocommerce .woocommerce-error a .dialog .the-content + .wc-backward, body.single-product .woocommerce .woocommerce-error a .dialog .product .woocommerce-product-details__short-description + .wc-backward, body.single-product .product .woocommerce .woocommerce-error a .dialog .woocommerce-product-details__short-description + .wc-backward, .dialog body .woocommerce .ywgc_enter_code p.form-row .the-content + button.button, .dialog body.single-product .woocommerce .ywgc_enter_code p.form-row .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce .ywgc_enter_code p.form-row .woocommerce-product-details__short-description + button.button, body .woocommerce .ywgc_enter_code p.form-row .dialog .the-content + button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce .ywgc_enter_code p.form-row .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce .return-to-shop .the-content + a, .dialog body.single-product .woocommerce .return-to-shop .product .woocommerce-product-details__short-description + a, .dialog body.single-product .product .woocommerce .return-to-shop .woocommerce-product-details__short-description + a, body .woocommerce .return-to-shop .dialog .the-content + a, body.single-product .woocommerce .return-to-shop .dialog .product .woocommerce-product-details__short-description + a, body.single-product .product .woocommerce .return-to-shop .dialog .woocommerce-product-details__short-description + a, .dialog body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .the-content + input.button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .product .woocommerce-product-details__short-description + input.button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .woocommerce-product-details__short-description + input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .dialog .the-content + input.button, body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .dialog .product .woocommerce-product-details__short-description + input.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .dialog .woocommerce-product-details__short-description + input.button, .dialog body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .the-content + input.button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .product .woocommerce-product-details__short-description + input.button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .woocommerce-product-details__short-description + input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .dialog .the-content + input.button, body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .dialog .product .woocommerce-product-details__short-description + input.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .dialog .woocommerce-product-details__short-description + input.button, .dialog body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .the-content + input.button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .product .woocommerce-product-details__short-description + input.button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .woocommerce-product-details__short-description + input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .dialog .the-content + input.button, body.single-product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .dialog .product .woocommerce-product-details__short-description + input.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .dialog .woocommerce-product-details__short-description + input.button, .dialog body .woocommerce .woocommerce-MyAccount-content form.edit-account .the-content + button.button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-product-details__short-description + button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .dialog .the-content + button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content form.edit-account .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce .woocommerce-MyAccount-content .the-content + a.button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content .product .woocommerce-product-details__short-description + a.button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-product-details__short-description + a.button, body .woocommerce .woocommerce-MyAccount-content .dialog .the-content + a.button, body.single-product .woocommerce .woocommerce-MyAccount-content .dialog .product .woocommerce-product-details__short-description + a.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content .dialog .woocommerce-product-details__short-description + a.button, .dialog body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .the-content + a.delete, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .product .woocommerce-product-details__short-description + a.delete, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-product-details__short-description + a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .dialog .the-content + a.delete, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .dialog .product .woocommerce-product-details__short-description + a.delete, body.single-product .product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .dialog .woocommerce-product-details__short-description + a.delete, .dialog body .woocommerce .woocommerce-MyAccount-content form .the-content + button.button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content form .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content form .woocommerce-product-details__short-description + button.button, body .woocommerce .woocommerce-MyAccount-content form .dialog .the-content + button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce .woocommerce-MyAccount-content form .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .the-content + a.edit, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product .woocommerce-product-details__short-description + a.edit, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-product-details__short-description + a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .dialog .the-content + a.edit, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .dialog .product .woocommerce-product-details__short-description + a.edit, body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .dialog .woocommerce-product-details__short-description + a.edit, .dialog body .woocommerce .woocommerce-MyAccount-content .the-content + a.woocommerce-button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content .product .woocommerce-product-details__short-description + a.woocommerce-button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-product-details__short-description + a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .dialog .the-content + a.woocommerce-button, body.single-product .woocommerce .woocommerce-MyAccount-content .dialog .product .woocommerce-product-details__short-description + a.woocommerce-button, body.single-product .product .woocommerce .woocommerce-MyAccount-content .dialog .woocommerce-product-details__short-description + a.woocommerce-button, .dialog body .woocommerce .woocommerce-MyAccount-content table td .the-content + .button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .woocommerce-product-details__short-description + .button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content table td .woocommerce-product-details__short-description + .button, body .woocommerce .woocommerce-MyAccount-content table td .dialog .the-content + .button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .dialog .product .woocommerce-product-details__short-description + .button, body.single-product .product .woocommerce .woocommerce-MyAccount-content table td .dialog .woocommerce-product-details__short-description + .button, .dialog body .woocommerce .woocommerce-MyAccount-content .the-content + button, .dialog body.single-product .woocommerce .woocommerce-MyAccount-content .product .woocommerce-product-details__short-description + button, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-content .woocommerce-product-details__short-description + button, body .woocommerce .woocommerce-MyAccount-content .dialog .the-content + button, body.single-product .woocommerce .woocommerce-MyAccount-content .dialog .product .woocommerce-product-details__short-description + button, body.single-product .product .woocommerce .woocommerce-MyAccount-content .dialog .woocommerce-product-details__short-description + button, .dialog body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .the-content + a, .dialog body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product .woocommerce-product-details__short-description + a, .dialog body.single-product .product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-product-details__short-description + a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .dialog .the-content + a, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .dialog .product .woocommerce-product-details__short-description + a, body.single-product .product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .dialog .woocommerce-product-details__short-description + a, .dialog body .woocommerce form.lost_reset_password .the-content + button.button, .dialog body.single-product .woocommerce form.lost_reset_password .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce form.lost_reset_password .woocommerce-product-details__short-description + button.button, body .woocommerce form.lost_reset_password .dialog .the-content + button.button, body.single-product .woocommerce form.lost_reset_password .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce form.lost_reset_password .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce form.woocommerce-form-login p.form-row .the-content + button.button, .dialog body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce form.woocommerce-form-login p.form-row .woocommerce-product-details__short-description + button.button, body .woocommerce form.woocommerce-form-login p.form-row .dialog .the-content + button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce form.woocommerce-form-login p.form-row .dialog .woocommerce-product-details__short-description + button.button, .dialog body .woocommerce #customer_login form.woocommerce-form-register p.form-row .the-content + button.button, .dialog body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .woocommerce-product-details__short-description + button.button, .dialog body.single-product .product .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-product-details__short-description + button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .dialog .the-content + button.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .dialog .product .woocommerce-product-details__short-description + button.button, body.single-product .product .woocommerce #customer_login form.woocommerce-form-register p.form-row .dialog .woocommerce-product-details__short-description + button.button, .dialog #code-form .gform_wrapper .gform_footer .the-content + input, .dialog #code-form .gform_wrapper .gform_footer body.single-product .product .woocommerce-product-details__short-description + input, body.single-product .product .dialog #code-form .gform_wrapper .gform_footer .woocommerce-product-details__short-description + input, #code-form .gform_wrapper .gform_footer .dialog .the-content + input, #code-form .gform_wrapper .gform_footer .dialog body.single-product .product .woocommerce-product-details__short-description + input, body.single-product .product #code-form .gform_wrapper .gform_footer .dialog .woocommerce-product-details__short-description + input, .dialog form#affwp-register-form fieldset p .the-content + input.button, .dialog form#affwp-register-form fieldset p body.single-product .product .woocommerce-product-details__short-description + input.button, body.single-product .product .dialog form#affwp-register-form fieldset p .woocommerce-product-details__short-description + input.button, form#affwp-register-form fieldset p .dialog .the-content + input.button, form#affwp-register-form fieldset p .dialog body.single-product .product .woocommerce-product-details__short-description + input.button, body.single-product .product form#affwp-register-form fieldset p .dialog .woocommerce-product-details__short-description + input.button, .dialog .form .gform_wrapper .newsletter-form .gform_body .gform_footer .the-content + input, .dialog .form .gform_wrapper .newsletter-form .gform_body .gform_footer body.single-product .product .woocommerce-product-details__short-description + input, body.single-product .product .dialog .form .gform_wrapper .newsletter-form .gform_body .gform_footer .woocommerce-product-details__short-description + input, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .dialog .the-content + input, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .dialog body.single-product .product .woocommerce-product-details__short-description + input, body.single-product .product .form .gform_wrapper .newsletter-form .gform_body .gform_footer .dialog .woocommerce-product-details__short-description + input, .dialog .form .gform_wrapper .gform_footer .the-content + input[type=submit], .dialog .form .gform_wrapper .gform_footer body.single-product .product .woocommerce-product-details__short-description + input[type=submit], body.single-product .product .dialog .form .gform_wrapper .gform_footer .woocommerce-product-details__short-description + input[type=submit], .form .gform_wrapper .gform_footer .dialog .the-content + input[type=submit], .form .gform_wrapper .gform_footer .dialog body.single-product .product .woocommerce-product-details__short-description + input[type=submit], body.single-product .product .form .gform_wrapper .gform_footer .dialog .woocommerce-product-details__short-description + input[type=submit], .dialog #footer .footer-primary-nav ul li.is-btn .the-content + a, .dialog #footer .footer-primary-nav ul li.is-btn body.single-product .product .woocommerce-product-details__short-description + a, body.single-product .product .dialog #footer .footer-primary-nav ul li.is-btn .woocommerce-product-details__short-description + a, #footer .footer-primary-nav ul li.is-btn .dialog .the-content + a, #footer .footer-primary-nav ul li.is-btn .dialog body.single-product .product .woocommerce-product-details__short-description + a, body.single-product .product #footer .footer-primary-nav ul li.is-btn .dialog .woocommerce-product-details__short-description + a, .dialog .error404 .hero .the-content .the-content + a.button, .dialog .error404 .hero body.single-product .product .woocommerce-product-details__short-description .the-content + a.button, body.single-product .product .dialog .error404 .hero .woocommerce-product-details__short-description .the-content + a.button, .dialog .error404 .hero .the-content body.single-product .product .woocommerce-product-details__short-description + a.button, body.single-product .product .dialog .error404 .hero .the-content .woocommerce-product-details__short-description + a.button, .dialog .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce-product-details__short-description + a.button, body.single-product .product .dialog .error404 .hero .woocommerce-product-details__short-description .woocommerce-product-details__short-description + a.button, .error404 .hero .the-content .dialog .the-content + a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .dialog .the-content + a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .dialog .the-content + a.button, .error404 .hero .the-content .dialog body.single-product .product .woocommerce-product-details__short-description + a.button, body.single-product .product .error404 .hero .the-content .dialog .woocommerce-product-details__short-description + a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .dialog .woocommerce-product-details__short-description + a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .dialog .woocommerce-product-details__short-description + a.button, .dialog #newsletter-form .gform_wrapper .gform_footer .the-content + input, .dialog #newsletter-form .gform_wrapper .gform_footer body.single-product .product .woocommerce-product-details__short-description + input, body.single-product .product .dialog #newsletter-form .gform_wrapper .gform_footer .woocommerce-product-details__short-description + input, #newsletter-form .gform_wrapper .gform_footer .dialog .the-content + input, #newsletter-form .gform_wrapper .gform_footer .dialog body.single-product .product .woocommerce-product-details__short-description + input, body.single-product .product #newsletter-form .gform_wrapper .gform_footer .dialog .woocommerce-product-details__short-description + input, .dialog .woocommerce ul.products .product-block .product-meta .single-product-content .the-content + a.button, .dialog .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .product .woocommerce-product-details__short-description + a.button, body.single-product .product .dialog .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-product-details__short-description + a.button, .woocommerce ul.products .product-block .product-meta .single-product-content .dialog .the-content + a.button, .woocommerce ul.products .product-block .product-meta .single-product-content .dialog body.single-product .product .woocommerce-product-details__short-description + a.button, body.single-product .product .woocommerce ul.products .product-block .product-meta .single-product-content .dialog .woocommerce-product-details__short-description + a.button, .dialog .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .the-content + input[type=submit], .dialog .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body.single-product .product .woocommerce-product-details__short-description + input[type=submit], body.single-product .product .dialog .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce-product-details__short-description + input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .dialog .the-content + input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .dialog body.single-product .product .woocommerce-product-details__short-description + input[type=submit], body.single-product .product .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .dialog .woocommerce-product-details__short-description + input[type=submit], .dialog .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .the-content + input[type=submit], .dialog .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body.single-product .product .woocommerce-product-details__short-description + input[type=submit], body.single-product .product .dialog .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .woocommerce-product-details__short-description + input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .dialog .the-content + input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .dialog body.single-product .product .woocommerce-product-details__short-description + input[type=submit], body.single-product .product .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .dialog .woocommerce-product-details__short-description + input[type=submit] {
  display: inline-block;
  margin-top: 15px !important;
}
.dialog .the-content + .buttons, .dialog body.single-product .product .woocommerce-product-details__short-description + .buttons, body.single-product .product .dialog .woocommerce-product-details__short-description + .buttons {
  margin-top: 15px;
  padding-right: 0;
}
.dialog input {
  width: 100%;
  height: 100%;
  font: bold 14px/1em "rubrik-edge-new", sans-serif;
  color: #000000;
  border: 0;
  padding: 0;
  outline: none !important;
}
.dialog input.invalid {
  color: #FB414D;
}
.dialog input.invalid + span {
  color: #FB414D;
}
.dialog .faux-radios > p {
  margin-bottom: 25px;
}
.dialog .faux-radios .faux-radio {
  display: block;
  margin-bottom: 10px;
}
.dialog .faux-radios .faux-radio:hover span {
  background: #C3CCD3;
}
.dialog .faux-radios .faux-radio:last-child {
  margin-bottom: 0;
}
.dialog .faux-radios .faux-radio input {
  display: none;
}
.dialog .faux-radios .faux-radio input:checked + span {
  background: #C3CCD3;
}
.dialog .faux-radios .faux-radio span {
  display: block;
  background: #FFFFFF;
  color: #032D40;
  padding: 20px;
  font: bold 20px/1.3em "rubrik-edge-new", sans-serif;
  text-align: center;
  border-radius: 25px;
  border: 4px solid #C3CCD3;
  cursor: pointer;
  transition: all all 0.3s ease-in-out;
}

.dialog-left .dialog {
  margin-left: 30px;
}
.dialog-left .dialog:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 30px 25px 0;
  border-color: transparent #C3CCD3 transparent transparent;
}
.dialog-left .dialog:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 30px 25px 0;
  border-color: transparent #FFFFFF transparent transparent;
}

.dialog-right .dialog {
  margin-right: 30px;
}
.dialog-right .dialog:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -30px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 30px;
  border-color: transparent transparent transparent #C3CCD3;
}
.dialog-right .dialog:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 30px;
  border-color: transparent transparent transparent #FFFFFF;
}

.dialog-size-small .dialog {
  max-width: 160px;
  padding: 20px;
}
.dialog-size-small .dialog .the-content h1, .dialog-size-small .dialog body.single-product .product .woocommerce-product-details__short-description h1, body.single-product .product .dialog-size-small .dialog .woocommerce-product-details__short-description h1, .dialog-size-small .dialog .the-content h2, .dialog-size-small .dialog body.single-product .product .woocommerce-product-details__short-description h2, body.single-product .product .dialog-size-small .dialog .woocommerce-product-details__short-description h2, .dialog-size-small .dialog .the-content h3, .dialog-size-small .dialog body.single-product .product .woocommerce-product-details__short-description h3, body.single-product .product .dialog-size-small .dialog .woocommerce-product-details__short-description h3, .dialog-size-small .dialog .the-content h4, .dialog-size-small .dialog body.single-product .product .woocommerce-product-details__short-description h4, body.single-product .product .dialog-size-small .dialog .woocommerce-product-details__short-description h4, .dialog-size-small .dialog .the-content h5, .dialog-size-small .dialog body.single-product .product .woocommerce-product-details__short-description h5, body.single-product .product .dialog-size-small .dialog .woocommerce-product-details__short-description h5, .dialog-size-small .dialog .the-content h6, .dialog-size-small .dialog body.single-product .product .woocommerce-product-details__short-description h6, body.single-product .product .dialog-size-small .dialog .woocommerce-product-details__short-description h6 {
  font-size: 18px;
}
.dialog-size-small .dialog .the-content p, .dialog-size-small .dialog body.single-product .product .woocommerce-product-details__short-description p, body.single-product .product .dialog-size-small .dialog .woocommerce-product-details__short-description p {
  font-size: 14px;
}

.dialog-size-normal .dialog {
  max-width: 400px;
}

.book-block {
  margin-bottom: 40px;
}
.book-block .top a {
  display: block;
}
.book-block .bottom h2 {
  font-size: 22px;
  margin-bottom: 20px;
}
.book-block .bottom h2 a {
  color: #000000;
  text-decoration: none;
}
.book-block .bottom .buttons {
  margin: 25px -5px 0 -5px;
}
.book-block .bottom .buttons .btn, .book-block .bottom .buttons .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .book-block .bottom .buttons input[type=button], .book-block .bottom .buttons .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .book-block .bottom .buttons input[type=button], .book-block .bottom .buttons .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .book-block .bottom .buttons a.wc-forward, .book-block .bottom .buttons body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .book-block .bottom .buttons button.button, .book-block .bottom .buttons body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .book-block .bottom .buttons a.reset_variations, .book-block .bottom .buttons body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .book-block .bottom .buttons button.button, .book-block .bottom .buttons body.single-product .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .book-block .bottom .buttons button.button, .book-block .bottom .buttons body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .product form.gift-cards_form .gift-cards-list .book-block .bottom .buttons button, .book-block .bottom .buttons body.single-product .woocommerce-message a.button, body.single-product .woocommerce-message .book-block .bottom .buttons a.button, .book-block .bottom .buttons body .add_to_cart_button, body .book-block .bottom .buttons .add_to_cart_button, .book-block .bottom .buttons body ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .book-block .bottom .buttons a.button, .book-block .bottom .buttons body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order .book-block .bottom .buttons button#place_order, .book-block .bottom .buttons body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .book-block .bottom .buttons a.woocommerce-remove-coupon, .book-block .bottom .buttons body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .book-block .bottom .buttons a.woocommerce-remove-coupon, .book-block .bottom .buttons body .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .book-block .bottom .buttons a.woocommerce-remove-coupon, .book-block .bottom .buttons body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .book-block .bottom .buttons a.checkout-button, .book-block .bottom .buttons body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .book-block .bottom .buttons input[type=button], .book-block .bottom .buttons body .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .book-block .bottom .buttons input[type=button], .book-block .bottom .buttons body .woocommerce ul.products li.product .button, body .woocommerce ul.products li.product .book-block .bottom .buttons .button, .book-block .bottom .buttons body .woocommerce .woocommerce-error a .wc-backward, body .woocommerce .woocommerce-error a .book-block .bottom .buttons .wc-backward, .book-block .bottom .buttons body .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce .return-to-shop a, body .woocommerce .return-to-shop .book-block .bottom .buttons a, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .book-block .bottom .buttons input.button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .book-block .bottom .buttons input.button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .book-block .bottom .buttons input.button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .book-block .bottom .buttons a.button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .book-block .bottom .buttons a.delete, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .book-block .bottom .buttons a.edit, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .book-block .bottom .buttons a.woocommerce-button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content table td .book-block .bottom .buttons .button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-content .book-block .bottom .buttons button, .book-block .bottom .buttons body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .book-block .bottom .buttons a, .book-block .bottom .buttons body .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .book-block .bottom .buttons button.button, .book-block .bottom .buttons body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .book-block .bottom .buttons button.button, .book-block .bottom .buttons #code-form .gform_wrapper .gform_footer input, #code-form .gform_wrapper .gform_footer .book-block .bottom .buttons input, .book-block .bottom .buttons form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p .book-block .bottom .buttons input.button, .book-block .bottom .buttons .form .gform_wrapper .newsletter-form .gform_body .gform_footer input, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .book-block .bottom .buttons input, .book-block .bottom .buttons .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer .book-block .bottom .buttons input[type=submit], .book-block .bottom .buttons #footer .footer-primary-nav ul li.is-btn a, #footer .footer-primary-nav ul li.is-btn .book-block .bottom .buttons a, .book-block .bottom .buttons .error404 .hero .the-content a.button, .book-block .bottom .buttons .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .book-block .bottom .buttons .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content .book-block .bottom .buttons a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .book-block .bottom .buttons a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .book-block .bottom .buttons a.button, .book-block .bottom .buttons #newsletter-form .gform_wrapper .gform_footer input, #newsletter-form .gform_wrapper .gform_footer .book-block .bottom .buttons input, .book-block .bottom .buttons .woocommerce ul.products .product-block .product-meta .single-product-content a.button, .woocommerce ul.products .product-block .product-meta .single-product-content .book-block .bottom .buttons a.button, .book-block .bottom .buttons .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .book-block .bottom .buttons input[type=submit], .book-block .bottom .buttons .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .book-block .bottom .buttons input[type=submit] {
  margin: 5px;
}

.confirmation-holder,
.workshop-book-holder {
  position: relative;
  min-height: 400px;
}
.confirmation-holder.loading:after,
.workshop-book-holder.loading:after {
  opacity: 1;
}
.confirmation-holder:after,
.workshop-book-holder:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  transition: all all 0.3s ease-in-out;
  opacity: 0;
  pointer-events: none;
  padding: 10px;
  border-radius: 50%;
  background-image: url("../images/loader.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #FFFFFF;
}
.confirmation-holder .spread,
.workshop-book-holder .spread {
  display: none;
  position: relative;
}
.confirmation-holder .spread.active,
.workshop-book-holder .spread.active {
  display: block;
}
.confirmation-holder .spread.is-confirmation .pages .book-page.image > img,
.workshop-book-holder .spread.is-confirmation .pages .book-page.image > img {
  display: block !important;
}
.confirmation-holder .spread:first-child .pages .book-page.blank,
.workshop-book-holder .spread:first-child .pages .book-page.blank {
  background: transparent;
}
.confirmation-holder .spread .pages,
.workshop-book-holder .spread .pages {
  position: relative;
  margin-bottom: 30px;
}
.confirmation-holder .spread .pages .workshop-book-nav,
.workshop-book-holder .spread .pages .workshop-book-nav {
  position: absolute;
  z-index: 99;
  top: 50%;
  margin-top: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #7940B1;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
.confirmation-holder .spread .pages .workshop-book-nav:hover,
.workshop-book-holder .spread .pages .workshop-book-nav:hover {
  background-color: #FB414D;
}
.confirmation-holder .spread .pages .workshop-book-nav.prev,
.workshop-book-holder .spread .pages .workshop-book-nav.prev {
  left: -25px;
  background-image: url("../images/prev-button-w.svg");
}
.confirmation-holder .spread .pages .workshop-book-nav.next,
.workshop-book-holder .spread .pages .workshop-book-nav.next {
  right: -25px;
  background-image: url("../images/next-button-w.svg");
}
.confirmation-holder .spread .pages .workshop-book-nav.hidden,
.workshop-book-holder .spread .pages .workshop-book-nav.hidden {
  display: none;
}
.confirmation-holder .spread .pages .book-page,
.workshop-book-holder .spread .pages .book-page {
  position: relative;
}
.confirmation-holder .spread .pages .book-page:before,
.workshop-book-holder .spread .pages .book-page:before {
  content: "";
  display: block;
  padding-top: 121%;
}
.confirmation-holder .spread .pages .book-page.blank,
.workshop-book-holder .spread .pages .book-page.blank {
  background: #FFFFFF;
}
.confirmation-holder .spread .pages .book-page.message, .confirmation-holder .spread .pages .book-page.content,
.workshop-book-holder .spread .pages .book-page.message,
.workshop-book-holder .spread .pages .book-page.content {
  background: #FFFFFF;
}
.confirmation-holder .spread .pages .book-page.message .page-content, .confirmation-holder .spread .pages .book-page.content .page-content,
.workshop-book-holder .spread .pages .book-page.message .page-content,
.workshop-book-holder .spread .pages .book-page.content .page-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  font: 14px/1.35em "Trace quebecois", sans-serif;
  text-align: left;
  color: #000000;
}
.confirmation-holder .spread .pages .book-page.message .page-content p, .confirmation-holder .spread .pages .book-page.content .page-content p,
.workshop-book-holder .spread .pages .book-page.message .page-content p,
.workshop-book-holder .spread .pages .book-page.content .page-content p {
  margin-bottom: 1.5em;
}
.confirmation-holder .spread .pages .book-page.message .page-content *:last-of-child, .confirmation-holder .spread .pages .book-page.content .page-content *:last-of-child,
.workshop-book-holder .spread .pages .book-page.message .page-content *:last-of-child,
.workshop-book-holder .spread .pages .book-page.content .page-content *:last-of-child {
  margin-bottom: 0;
}
.confirmation-holder .spread .pages .book-page.message .page-content,
.workshop-book-holder .spread .pages .book-page.message .page-content {
  font-size: 18px !important;
}
.confirmation-holder .spread .pages .book-page.cover > img,
.workshop-book-holder .spread .pages .book-page.cover > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.confirmation-holder .spread .pages .book-page.image,
.workshop-book-holder .spread .pages .book-page.image {
  background-color: #C3CCD3;
}
.confirmation-holder .spread .pages .book-page.image:after,
.workshop-book-holder .spread .pages .book-page.image:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  opacity: 0.2;
  z-index: 1;
  left: 50%;
  margin-left: -50px;
  width: 100px;
  height: 100px;
  background-image: url("../images/icon-image-placeholder.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.confirmation-holder .spread .pages .book-page.image.correct > img,
.workshop-book-holder .spread .pages .book-page.image.correct > img {
  display: block;
}
.confirmation-holder .spread .pages .book-page.image > img,
.workshop-book-holder .spread .pages .book-page.image > img {
  display: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.confirmation-holder .spread .image-sets,
.workshop-book-holder .spread .image-sets {
  margin-top: 30px;
}
.confirmation-holder .spread .image-sets .active[data-status=incorrect],
.workshop-book-holder .spread .image-sets .active[data-status=incorrect] {
  outline: 4px solid #FB414D;
}
.confirmation-holder .spread .image-sets .active[data-status=correct],
.workshop-book-holder .spread .image-sets .active[data-status=correct] {
  outline: 4px solid #5ece7c;
}
.confirmation-holder .spread .image-sets a,
.workshop-book-holder .spread .image-sets a {
  display: block;
  position: relative;
  transition: all all 0.3s ease-in-out;
  outline: 4px solid transparent;
}
.confirmation-holder .spread .image-sets a:before,
.workshop-book-holder .spread .image-sets a:before {
  content: "";
  display: block;
  padding-top: 121%;
}
.confirmation-holder .spread .image-sets a > img,
.workshop-book-holder .spread .image-sets a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.confirmation-holder .spread .messages,
.workshop-book-holder .spread .messages {
  margin-top: 30px;
}
.confirmation-holder .spread .messages.active,
.workshop-book-holder .spread .messages.active {
  display: block;
}
.confirmation-holder .spread .messages p,
.workshop-book-holder .spread .messages p {
  display: none;
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  color: #FFFFFF;
  font: 20px/1.65em "rubrik-edge-new", sans-serif;
}
.confirmation-holder .spread .messages p.incorrect,
.workshop-book-holder .spread .messages p.incorrect {
  background: #FB414D;
}
.confirmation-holder .spread .messages p.correct,
.workshop-book-holder .spread .messages p.correct {
  background: #5ece7c;
}
.confirmation-holder .spread .messages p.active,
.workshop-book-holder .spread .messages p.active {
  display: block;
}

#workshop-confirmation-book {
  display: none;
  width: 90%;
  max-width: 1024px;
  text-align: center;
}

.confirmation-holder {
  margin-bottom: 15px;
}

.book-added-message {
  padding: 25px;
  border-radius: 25px;
  text-align: center;
  color: #FFFFFF;
  font: 20px/1.65em "rubrik-edge-new", sans-serif;
  background: #5ece7c;
  margin-bottom: 30px;
}

#page {
  margin-top: 180px;
  padding: 40px 0;
}

.the-content *:last-child, body.single-product .product .woocommerce-product-details__short-description *:last-child {
  margin: 0;
}
.the-content > p, body.single-product .product .woocommerce-product-details__short-description > p {
  margin-bottom: 16px;
}
.the-content > h1, body.single-product .product .woocommerce-product-details__short-description > h1 {
  margin-bottom: 25px;
  color: #00ABC0;
}
.the-content > h2, body.single-product .product .woocommerce-product-details__short-description > h2 {
  margin-bottom: 25px;
}
.the-content > h2 + h3, body.single-product .product .woocommerce-product-details__short-description > h2 + h3 {
  color: #00ABC0;
}
.the-content > h3, body.single-product .product .woocommerce-product-details__short-description > h3 {
  font-size: 26px;
  margin-bottom: 25px;
}
.the-content > h4, body.single-product .product .woocommerce-product-details__short-description > h4 {
  margin-bottom: 25px;
}
.the-content > h5, body.single-product .product .woocommerce-product-details__short-description > h5 {
  margin-bottom: 25px;
}
.the-content > h6, body.single-product .product .woocommerce-product-details__short-description > h6 {
  margin-bottom: 25px;
}
.the-content a, body.single-product .product .woocommerce-product-details__short-description a {
  color: #00ABC0;
  font-weight: bold;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
.the-content a:hover, body.single-product .product .woocommerce-product-details__short-description a:hover {
  color: #FB414D;
}

.free-shipping-badge {
  display: inline-block;
  padding: 10px;
  font: 10px/1em "rubrik-edge-new", sans-serif;
  text-transform: uppercase;
  color: #FFFFFF;
  background: #7940B1;
  border-radius: 20px;
  letter-spacing: 2px;
  margin: 5px 0;
}

.partner-block {
  position: relative;
  position: relative;
  display: block;
}
.partner-block:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.partner-block > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.flexible-content {
  position: relative;
  z-index: 2;
}

.video-slice {
  position: relative;
  margin: 0 auto;
  padding: 40px 0;
  width: 80%;
}
.video-slice .image {
  position: relative;
  position: relative;
  display: block;
}
.video-slice .image:before {
  content: "";
  display: block;
  padding-top: 54%;
}
.video-slice .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-slice .image > img {
  -webkit-box-shadow: 0px 4px 5px rgba(102, 106, 114, 0.3);
  -moz-box-shadow: 0px 4px 5px rgba(102, 106, 114, 0.3);
  box-shadow: 0px 4px 5px rgba(102, 106, 114, 0.3);
  border-radius: 40px;
}
.video-slice .image .video-icon {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 40px;
  right: 40px;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
}
.video-slice .image .video-icon:focus, .video-slice .image .video-icon:active {
  outline: none;
}
.video-slice .image .video-icon:hover span {
  color: #032D40;
}
.video-slice .image .video-icon:hover svg path {
  fill: #032D40;
}
.video-slice .image .video-icon span {
  font: 32px/1em "fatfrank", sans-serif;
  color: #FB414D;
  margin-right: 20px;
  transition: all all 0.3s ease-in-out;
}
.video-slice .image .video-icon svg {
  display: block;
  width: 90px;
  height: 90px;
  transition: all all 0.3s ease-in-out;
}
.video-slice .image .video-icon svg path {
  transition: all all 0.3s ease-in-out;
}

.page-template-promo-code #main {
  padding: 220px 0 60px;
}
.page-template-promo-code .page-top .content-block {
  position: relative;
  display: block;
  margin: 65px auto 80px;
  text-align: center;
}
.page-template-promo-code .promo-code-block {
  position: relative;
  background: #E8EEFF;
  border-radius: 18px;
  padding: 40px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}
.page-template-promo-code .promo-code-block .percent {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  height: 100%;
  font: 105px/1.22em "fatfrank", sans-serif;
  color: #FB414D;
}
.page-template-promo-code .promo-code-block .text-container {
  padding: 0 20px 0 40px;
  display: block;
  color: #032D40;
}
.page-template-promo-code .promo-code-block .text-container h3 {
  font-size: 38px;
}
.page-template-promo-code .promo-code-block .buttons {
  position: relative;
  width: 90%;
  margin: 0 0 0 auto;
  display: flex;
  align-items: center;
}
.page-template-promo-code .promo-code-block .buttons .dummy-button {
  position: absolute;
  display: block;
  left: -8px;
  font: 400 22px/1em "rubrik-edge-new", sans-serif;
  padding: 20px 100px 20px 60px;
  border-radius: 50px;
  background: rgba(251, 65, 77, 0.5);
  color: #FFFFFF;
  text-decoration: none;
  transition: all all 0.3s ease-in-out;
  z-index: 1;
}
.page-template-promo-code .promo-code-block .buttons .dummy-button span {
  display: block;
  text-align: right;
  right: -75px;
  position: relative;
}
.page-template-promo-code .promo-code-block .promo-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 400 22px/1em "rubrik-edge-new", sans-serif;
  padding: 14px 110px 14px 0;
  border-radius: 50px;
  background: #FB414D;
  color: #FFFFFF;
  text-decoration: none;
  z-index: 5;
  transition: all all 0.3s ease-in-out;
}
.page-template-promo-code .promo-code-block .promo-button:hover {
  padding-right: 90px;
}
.page-template-promo-code .promo-code-block .promo-button span {
  position: relative;
  left: 30px;
}
.page-template-promo-code .promo-code-block .promo-button svg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  height: 50px;
  width: 50px;
}
.page-template-promo-code .button-container {
  margin: 100px auto;
  justify-content: center;
  text-align: center;
}

#code-form {
  position: relative;
  border-radius: 30px;
  background: #FFFFFF;
  border: 5px solid #00ABC0;
  padding: 100px 200px;
  max-width: 1280px;
  margin: 0 auto;
}
#code-form .inner {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
#code-form .inner h3 {
  color: #00ABC0;
  text-align: center;
}
#code-form .inner .the-content, #code-form .inner body.single-product .product .woocommerce-product-details__short-description, body.single-product .product #code-form .inner .woocommerce-product-details__short-description {
  text-align: center;
  font-size: 20px;
  margin: 30px 0;
}
#code-form .inner .text-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
#code-form .inner .text-container span {
  display: block;
  color: #FB414D;
  text-align: center;
  font: 400 20px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
}
#code-form .gform_confirmation_wrapper {
  margin: 0 auto;
  text-align: center;
  padding: 30px 0;
}
#code-form .gform_confirmation_wrapper .gform_confirmation_message {
  color: #032D40;
  font: 24px/1.2em "fatfrank", sans-serif;
  text-align: center;
}
#code-form .gform_wrapper {
  position: relative;
  z-index: 2;
}
#code-form .gform_wrapper div.validation_error {
  color: #FB414D;
  background: rgba(251, 65, 77, 0.4);
  border: 2px solid #FB414D;
  border-radius: 16px;
  padding: 20px;
}
#code-form .gform_wrapper h3.gform_title {
  font-weight: 60px/1.2em "fatfrank", sans-serif !important;
  color: #1D86BC;
}
#code-form .gform_wrapper .gform_heading {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
#code-form .gform_wrapper .gform_heading .gform_title {
  font-weight: 60px/1.2em "fatfrank", sans-serif !important;
  color: #1D86BC;
}
#code-form .gform_wrapper .gform_heading .gform_description {
  font: 400 24px/1.2em "rubrik-edge-new", sans-serif;
  margin-bottom: 40px;
}
#code-form .gform_wrapper form {
  text-align: center;
}
#code-form .gform_wrapper .gform_body ul li .validation_message {
  color: #FB414D;
}
#code-form .gform_wrapper .gform_body ul li .gfield_error {
  background: none;
  border: 0px;
}
#code-form .gform_wrapper .gform_body ul li .gfield_label {
  margin-top: 40px;
  color: #1D86BC;
  font: 28px/1em "fatfrank", sans-serif;
}
#code-form .gform_wrapper .gform_body ul li input[type=text],
#code-form .gform_wrapper .gform_body ul li input[type=tel],
#code-form .gform_wrapper .gform_body ul li input[type=email] {
  border: 2px solid #00ABC0;
  background: rgba(212, 237, 250, 0.75);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 100%;
  max-width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 16px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
#code-form .gform_wrapper .gform_body ul li input[type=text]:focus, #code-form .gform_wrapper .gform_body ul li input[type=text]:active,
#code-form .gform_wrapper .gform_body ul li input[type=tel]:focus,
#code-form .gform_wrapper .gform_body ul li input[type=tel]:active,
#code-form .gform_wrapper .gform_body ul li input[type=email]:focus,
#code-form .gform_wrapper .gform_body ul li input[type=email]:active {
  outline: 0;
  background: rgba(212, 237, 250, 0.5);
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li {
  display: inline-flex;
  align-items: center;
  margin: 0 12px;
  font: 24px/1em "rubrik-edge-new", sans-serif;
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label {
  max-width: 100%;
  width: 100%;
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li input[type=checkbox] {
  display: none;
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label {
  position: relative;
  padding: 0px 20px 12px 40px;
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #1D86BC;
  background: #FFFFFF;
}
#code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark-medblue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
#code-form .gform_wrapper .gform_footer input {
  color: #FFFFFF;
  background: #DE0E18;
  cursor: pointer;
  border: 0px;
  transition: all all 0.3s ease-in-out;
}
#code-form .gform_wrapper .gform_footer input:hover {
  background: #1D86BC;
}

.single-product .gform_confirmation_message {
  display: none !important;
}

/*- Landing page Noël -*/
.page-template-page-noel #subfooter {
  display: none;
}
.page-template-page-noel .slice-intro h2 {
  color: #009A7E;
}
.page-template-page-noel .color-red {
  color: #FA404D !important;
}
.page-template-page-noel #header.shrink {
  background-color: #009A7E;
}
.page-template-page-noel .btn.red, .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.red[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .page-template-page-noel input.red[type=button], .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.red[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .page-template-page-noel input.red[type=button], .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.red.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel a.red.wc-forward, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.btn.button, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.btn.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.red.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.red.button, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.btn.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations.wc-forward, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.btn.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.reset_variations.wc-forward, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.red.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.red.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.btn.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.btn.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart .page-template-page-noel button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.red.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.red.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart .page-template-page-noel button.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.button, .page-template-page-noel body.single-product .product .gift_card_template_button button.btn.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .page-template-page-noel button.btn.button, body.single-product .product .gift_card_template_button .page-template-page-noel .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button .page-template-page-noel button.button, body.single-product .product .gift_card_template_button .page-template-page-noel #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button .page-template-page-noel button.button, .page-template-page-noel body.single-product .product .gift_card_template_button button.red.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .page-template-page-noel button.red.button, body.single-product .product .gift_card_template_button .page-template-page-noel .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button .page-template-page-noel button.button, body.single-product .product .gift_card_template_button .page-template-page-noel #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button .page-template-page-noel button.button, body.single-product .product .gift_card_template_button .page-template-page-noel button.button, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list button.red, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list button.button, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list button.button, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel button.red, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list .page-template-page-noel button.button, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list .page-template-page-noel button.button, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel .gift_card_template_button button.button, body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list .page-template-page-noel button.button, .page-template-page-noel body.single-product .woocommerce-message a.red.button, .page-template-page-noel body.single-product .woocommerce-message .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message a.button.reset_variations, body.single-product .woocommerce-message .page-template-page-noel a.red.button, body.single-product .woocommerce-message .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message .page-template-page-noel a.button.reset_variations, .page-template-page-noel body .btn.add_to_cart_button, .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .page-template-page-noel body input.add_to_cart_button[type=button], .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .page-template-page-noel body input.add_to_cart_button[type=button], .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel body a.add_to_cart_button.wc-forward, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button, .page-template-page-noel body.single-product .product .gift_card_template_button button.add_to_cart_button.button, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list button.add_to_cart_button, .page-template-page-noel body.single-product .woocommerce-message a.add_to_cart_button.button, body .page-template-page-noel .btn.add_to_cart_button, body .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body .page-template-page-noel input.add_to_cart_button[type=button], body .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body .page-template-page-noel input.add_to_cart_button[type=button], body .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body .page-template-page-noel a.add_to_cart_button.wc-forward, body.single-product .page-template-page-noel .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.add_to_cart_button.button, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.add_to_cart_button.reset_variations, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.cart button.add_to_cart_button.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.add_to_cart_button.button, body.single-product .page-template-page-noel .product .gift_card_template_button button.add_to_cart_button.button, body.single-product .product .gift_card_template_button .page-template-page-noel button.add_to_cart_button.button, body.single-product .page-template-page-noel .product form.gift-cards_form .gift-cards-list button.add_to_cart_button, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel button.add_to_cart_button, body.single-product .page-template-page-noel .woocommerce-message a.add_to_cart_button.button, body.single-product .woocommerce-message .page-template-page-noel a.add_to_cart_button.button, .page-template-page-noel body .red.add_to_cart_button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button, .page-template-page-noel body.single-product .product .gift_card_template_button button.add_to_cart_button.button, .page-template-page-noel body .add_to_cart_button, body .page-template-page-noel .red.add_to_cart_button, body.single-product .page-template-page-noel .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.add_to_cart_button.button, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.add_to_cart_button.reset_variations, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.cart button.add_to_cart_button.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.add_to_cart_button.button, body.single-product .page-template-page-noel .product .gift_card_template_button button.add_to_cart_button.button, body.single-product .product .gift_card_template_button .page-template-page-noel button.add_to_cart_button.button, body .page-template-page-noel .add_to_cart_button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.btn.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button.wc-forward, .page-template-page-noel body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations, .page-template-page-noel body.single-product ul.products li.product-block .product-meta .single-product-content .woocommerce-message a.button, .page-template-page-noel body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.btn.button, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.wc-forward, body.single-product ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.reset_variations, body.single-product ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-message a.button, body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.add_to_cart_button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.red.button, .page-template-page-noel body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.red.button, body.single-product ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.reset_variations, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.btn.button, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product form.gift-cards_form .gift-cards-list button.button, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.btn.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product form.gift-cards_form .gift-cards-list button.button, body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button.add_to_cart_button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.red.button, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.red.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button.add_to_cart_button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, .page-template-page-noel body .woocommerce #payment .form-row.place-order button.btn#place_order, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button, .page-template-page-noel body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button, body .woocommerce #payment .form-row.place-order .page-template-page-noel button.btn#place_order, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product form.gift-cards_form .gift-cards-list button#place_order, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order, body .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button, body .woocommerce #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, .page-template-page-noel body .woocommerce #payment .form-row.place-order button.red#place_order, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button, .page-template-page-noel body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order .page-template-page-noel button.red#place_order, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button, body .woocommerce #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward, .page-template-page-noel body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.btn.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward, .page-template-page-noel body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.btn.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon, .page-template-page-noel body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.red.woocommerce-remove-coupon, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon, .page-template-page-noel body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.red.woocommerce-remove-coupon, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout-coupon button.red.button, .page-template-page-noel body.single-product .woocommerce form.checkout-coupon .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon button.button, .page-template-page-noel body.single-product .woocommerce form.checkout-coupon .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon button.button, .page-template-page-noel body.single-product .woocommerce form.checkout-coupon .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon button.button, .page-template-page-noel body .woocommerce form.checkout-coupon button.button.add_to_cart_button, .page-template-page-noel body .woocommerce form.checkout-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon button.button, .page-template-page-noel body .woocommerce form.checkout-coupon #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order form.checkout-coupon button.button#place_order, body .woocommerce form.checkout-coupon .page-template-page-noel button.red.button, body.single-product .woocommerce form.checkout-coupon .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon .page-template-page-noel button.button, body.single-product .woocommerce form.checkout-coupon .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon .page-template-page-noel button.button, body.single-product .woocommerce form.checkout-coupon .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon .page-template-page-noel button.button, body .woocommerce form.checkout-coupon .page-template-page-noel button.button.add_to_cart_button, body .woocommerce form.checkout-coupon .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon .page-template-page-noel button.button, body .woocommerce form.checkout-coupon .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.checkout-coupon .page-template-page-noel button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-form-coupon button.red.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-form-coupon .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-form-coupon .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-form-coupon .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon button.button, .page-template-page-noel body .woocommerce .woocommerce-form-coupon button.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-form-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon button.button, .page-template-page-noel body .woocommerce .woocommerce-form-coupon #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon button.button#place_order, body .woocommerce .woocommerce-form-coupon .page-template-page-noel button.red.button, body.single-product .woocommerce .woocommerce-form-coupon .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-form-coupon .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-form-coupon .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button, body .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button.add_to_cart_button, body .woocommerce .woocommerce-form-coupon .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button, body .woocommerce .woocommerce-form-coupon .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon .page-template-page-noel button.button#place_order, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.red.button, .page-template-page-noel body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, .page-template-page-noel body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, .page-template-page-noel body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button.add_to_cart_button, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button.button#place_order, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.red.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button.add_to_cart_button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button#place_order, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.btn.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.wc-forward, .page-template-page-noel body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .woocommerce .cart-collaterals table.shop_table td .woocommerce-message a.woocommerce-remove-coupon.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.btn.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.wc-forward, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel .woocommerce-message a.woocommerce-remove-coupon.button, body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.button, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.button, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.red.woocommerce-remove-coupon, .page-template-page-noel body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.red.woocommerce-remove-coupon, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.button, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals a.btn.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals a.checkout-button.wc-forward, .page-template-page-noel body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations, .page-template-page-noel body.single-product .woocommerce .cart-collaterals .woocommerce-message a.checkout-button.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .cart-collaterals a.checkout-button.button, .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .page-template-page-noel a.btn.checkout-button, body .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals .page-template-page-noel a.checkout-button.wc-forward, body.single-product .woocommerce .cart-collaterals .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.reset_variations, body.single-product .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-message a.checkout-button.button, body.single-product .woocommerce-message .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.button, body .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.add_to_cart_button, body .woocommerce .cart-collaterals .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.checkout-button.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.button, body .woocommerce .cart-collaterals .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .page-template-page-noel table.shop_table td a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals a.red.checkout-button, .page-template-page-noel body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations, .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .page-template-page-noel a.red.checkout-button, body.single-product .woocommerce .cart-collaterals .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.reset_variations, body .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.add_to_cart_button, body .woocommerce .cart-collaterals .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.checkout-button.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.button, body .woocommerce .cart-collaterals .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .page-template-page-noel table.shop_table td a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.checkout-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.red[type=button], .page-template-page-noel body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button].add_to_cart_button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .page-template-page-noel input.red[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .page-template-page-noel input[type=button].add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table button.red.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table button.button, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table button.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table button.button, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table button.button#place_order, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.red.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button.add_to_cart_button, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table .page-template-page-noel button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.red[type=button], .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button].add_to_cart_button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .page-template-page-noel input.red[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .page-template-page-noel input[type=button].add_to_cart_button, .page-template-page-noel body .woocommerce ul.products li.product .btn.button, .page-template-page-noel body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product input.button[type=button], .page-template-page-noel body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product input.button[type=button], .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product a.button.wc-forward, .page-template-page-noel body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button, .page-template-page-noel body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list button.button, .page-template-page-noel body.single-product .woocommerce ul.products li.product .woocommerce-message a.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce ul.products li.product a.button, .page-template-page-noel body .woocommerce ul.products li.product .button.add_to_cart_button, .page-template-page-noel body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button, .page-template-page-noel body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order, .page-template-page-noel body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products li.product form.checkout-coupon button.button, .page-template-page-noel body .woocommerce form.checkout-coupon ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-form-coupon button.button, .page-template-page-noel body .woocommerce .woocommerce-form-coupon ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals form.woocommerce-shipping-calculator button.button, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], .page-template-page-noel body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td ul.products li.product input.button[type=button], .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table button.button, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper ul.products li.product input.button[type=button], body .woocommerce ul.products li.product .page-template-page-noel .btn.button, body .woocommerce ul.products li.product .page-template-page-noel #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product .page-template-page-noel input.button[type=button], body .woocommerce ul.products li.product .page-template-page-noel #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product .page-template-page-noel input.button[type=button], body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product .page-template-page-noel a.button.wc-forward, body.single-product .woocommerce ul.products li.product .page-template-page-noel .woocommerce-variation-add-to-cart button.button, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart .page-template-page-noel button.button, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.button.reset_variations, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.cart button.button, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart .page-template-page-noel button.button, body.single-product .woocommerce ul.products li.product .page-template-page-noel .gift_card_template_button button.button, body.single-product .woocommerce ul.products li.product .gift_card_template_button .page-template-page-noel button.button, body.single-product .woocommerce ul.products li.product .page-template-page-noel form.gift-cards_form .gift-cards-list button.button, body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list .page-template-page-noel button.button, body.single-product .woocommerce ul.products li.product .page-template-page-noel .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce ul.products li.product .page-template-page-noel a.button, body .woocommerce ul.products li.product .page-template-page-noel .button.add_to_cart_button, body .woocommerce ul.products li.product .page-template-page-noel li.product-block .product-meta .single-product-content a.button, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product .page-template-page-noel a.button, body .woocommerce ul.products li.product .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product .page-template-page-noel button.button, body .woocommerce ul.products li.product .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order ul.products li.product .page-template-page-noel button.button#place_order, body .woocommerce ul.products li.product .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .page-template-page-noel form.checkout-coupon button.button, body .woocommerce form.checkout-coupon ul.products li.product .page-template-page-noel button.button, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon ul.products li.product .page-template-page-noel button.button, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product .page-template-page-noel button.button, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals ul.products li.product .page-template-page-noel a.button.checkout-button, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td ul.products li.product .page-template-page-noel input.button[type=button], body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product .page-template-page-noel button.button, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper ul.products li.product .page-template-page-noel input.button[type=button], .page-template-page-noel body .woocommerce ul.products li.product .red.button, .page-template-page-noel body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button, .page-template-page-noel body .woocommerce ul.products li.product .button.add_to_cart_button, .page-template-page-noel body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button, .page-template-page-noel body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order, .page-template-page-noel body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button, .page-template-page-noel body .woocommerce ul.products li.product .button, body .woocommerce ul.products li.product .page-template-page-noel .red.button, body.single-product .woocommerce ul.products li.product .page-template-page-noel .woocommerce-variation-add-to-cart button.button, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart .page-template-page-noel button.button, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.button.reset_variations, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.cart button.button, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart .page-template-page-noel button.button, body.single-product .woocommerce ul.products li.product .page-template-page-noel .gift_card_template_button button.button, body.single-product .woocommerce ul.products li.product .gift_card_template_button .page-template-page-noel button.button, body .woocommerce ul.products li.product .page-template-page-noel .button.add_to_cart_button, body .woocommerce ul.products li.product .page-template-page-noel li.product-block .product-meta .single-product-content a.button, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product .page-template-page-noel a.button, body .woocommerce ul.products li.product .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product .page-template-page-noel button.button, body .woocommerce ul.products li.product .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order ul.products li.product .page-template-page-noel button.button#place_order, body .woocommerce ul.products li.product .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals ul.products li.product .page-template-page-noel a.button.checkout-button, body .woocommerce ul.products li.product .page-template-page-noel .button, .page-template-page-noel body .woocommerce .woocommerce-error a .red.wc-backward, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product .woocommerce-variation-add-to-cart button.wc-backward.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a button.wc-backward.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a a.wc-backward.reset_variations, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.cart button.wc-backward.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a button.wc-backward.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product .gift_card_template_button button.wc-backward.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a button.wc-backward.button, .page-template-page-noel body .woocommerce .woocommerce-error a .wc-backward.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-error a ul.products li.product-block .product-meta .single-product-content a.wc-backward.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a a.wc-backward.button, .page-template-page-noel body .woocommerce .woocommerce-error a .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a button.wc-backward.button, .page-template-page-noel body .woocommerce .woocommerce-error a #payment .form-row.place-order button.wc-backward#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-error a button.wc-backward#place_order, .page-template-page-noel body .woocommerce .woocommerce-error a form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-error a .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a a.wc-backward.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-error a .cart-collaterals a.wc-backward.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-error a a.wc-backward.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-error a ul.products li.product .wc-backward.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-error a .wc-backward.button, body .woocommerce .woocommerce-error a .page-template-page-noel .red.wc-backward, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product .woocommerce-variation-add-to-cart button.wc-backward.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a .page-template-page-noel a.wc-backward.reset_variations, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product #personnaliser-le-livre form.cart button.wc-backward.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product .gift_card_template_button button.wc-backward.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button, body .woocommerce .woocommerce-error a .page-template-page-noel .wc-backward.add_to_cart_button, body .woocommerce .woocommerce-error a .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.wc-backward.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a .page-template-page-noel a.wc-backward.button, body .woocommerce .woocommerce-error a .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button, body .woocommerce .woocommerce-error a .page-template-page-noel #payment .form-row.place-order button.wc-backward#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-error a .page-template-page-noel button.wc-backward#place_order, body .woocommerce .woocommerce-error a .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a .page-template-page-noel a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a .page-template-page-noel a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .page-template-page-noel .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a .page-template-page-noel a.wc-backward.woocommerce-remove-coupon, body .woocommerce .woocommerce-error a .page-template-page-noel .cart-collaterals a.wc-backward.checkout-button, body .woocommerce .cart-collaterals .woocommerce-error a .page-template-page-noel a.wc-backward.checkout-button, body .woocommerce .woocommerce-error a .page-template-page-noel ul.products li.product .wc-backward.button, body .woocommerce ul.products li.product .woocommerce-error a .page-template-page-noel .wc-backward.button, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row button.red.button, .page-template-page-noel body.single-product .woocommerce .ywgc_enter_code p.form-row .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row button.button, .page-template-page-noel body.single-product .woocommerce .ywgc_enter_code p.form-row .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row button.button, .page-template-page-noel body.single-product .woocommerce .ywgc_enter_code p.form-row .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row button.button, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row button.button.add_to_cart_button, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row button.button, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row button.button#place_order, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.red.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button, body.single-product .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button.add_to_cart_button, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row .page-template-page-noel button.button#place_order, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel ul.products li.product button.button, body .woocommerce ul.products li.product .ywgc_enter_code p.form-row .page-template-page-noel button.button, .page-template-page-noel body .woocommerce .return-to-shop a.red, .page-template-page-noel body.single-product .woocommerce .return-to-shop .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop a.reset_variations, .page-template-page-noel body .woocommerce .return-to-shop a.add_to_cart_button, .page-template-page-noel body .woocommerce .return-to-shop ul.products li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop a.button, .page-template-page-noel body .woocommerce .return-to-shop form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .return-to-shop .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .return-to-shop a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .return-to-shop .cart-collaterals a.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .return-to-shop a.checkout-button, .page-template-page-noel body .woocommerce .return-to-shop ul.products li.product a.button, .page-template-page-noel body .woocommerce ul.products li.product .return-to-shop a.button, body .woocommerce .return-to-shop .page-template-page-noel a.red, body.single-product .woocommerce .return-to-shop .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop .page-template-page-noel a.reset_variations, body .woocommerce .return-to-shop .page-template-page-noel a.add_to_cart_button, body .woocommerce .return-to-shop .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop .page-template-page-noel a.button, body .woocommerce .return-to-shop .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .return-to-shop .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .return-to-shop .page-template-page-noel .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .return-to-shop .page-template-page-noel a.checkout-button, body .woocommerce .return-to-shop .page-template-page-noel ul.products li.product a.button, body .woocommerce ul.products li.product .return-to-shop .page-template-page-noel a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.red.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap ul.products li.product input.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel input.red.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel input.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.red.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap ul.products li.product input.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel input.red.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel input.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.red.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav ul.products li.product input.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel input.red.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel input.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel ul.products li.product input.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel input.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account button.red.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form.edit-account button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.red.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.btn#place_order, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .gift_card_template_button button#place_order.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.checkout-coupon button#place_order.button, .page-template-page-noel body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-form-coupon button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button#place_order.button, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-cart-form table.shop_table button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order ul.products li.product button#place_order.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-error a button#place_order.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .ywgc_enter_code p.form-row button#place_order.button, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.edit-account button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button.btn#place_order, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product form.gift-cards_form .gift-cards-list button#place_order, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel form.checkout-coupon button#place_order.button, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .woocommerce-form-coupon button#place_order.button, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .cart-collaterals form.woocommerce-shipping-calculator button#place_order.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .woocommerce-cart-form table.shop_table button#place_order.button, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel ul.products li.product button#place_order.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .woocommerce-error a button#place_order.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.wc-backward, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .ywgc_enter_code p.form-row button#place_order.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel form.edit-account button#place_order.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order .page-template-page-noel button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.red#place_order, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .gift_card_template_button button#place_order.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order ul.products li.product button#place_order.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button.red#place_order, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel ul.products li.product button#place_order.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.red.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.button.reset_variations, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.button.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.button.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.red.button, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.button.reset_variations, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .page-template-page-noel a.button.checkout-button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product a.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .page-template-page-noel a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.btn.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-forward, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-message a.delete.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-error a a.delete.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .return-to-shop a.delete, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.btn.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.delete.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value .page-template-page-noel a.delete.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-message a.delete.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.delete.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .cart-collaterals a.delete.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.checkout-button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product a.delete.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-error a a.delete.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.wc-backward, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .return-to-shop a.delete, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.red.delete, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.red.delete, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.delete.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value .page-template-page-noel a.delete.reset_variations, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.delete.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .cart-collaterals a.delete.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.checkout-button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product a.delete.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form button.red.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form button.button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content form button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.red.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart .page-template-page-noel button.button, body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button, body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form .page-template-page-noel button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form .page-template-page-noel button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.btn.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-forward, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-message a.edit.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-error a a.edit.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .return-to-shop a.edit, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.btn.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-message a.edit.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.edit.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals a.edit.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.checkout-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product a.edit.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-error a a.edit.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.wc-backward, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .return-to-shop a.edit, body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel table.woocommerce-MyAccount-paymentMethods td a.edit.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses .page-template-page-noel a.edit.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.red.edit, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.red.edit, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.reset_variations, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.edit.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals a.edit.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.checkout-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product a.edit.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel table.woocommerce-MyAccount-paymentMethods td a.edit.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses .page-template-page-noel a.edit.delete, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.red.woocommerce-button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.reset_variations, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.woocommerce-button.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.woocommerce-button.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.woocommerce-button.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.woocommerce-button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.woocommerce-button.edit, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.red.woocommerce-button, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.reset_variations, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals a.woocommerce-button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.checkout-button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product a.woocommerce-button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.woocommerce-button.delete, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .woocommerce-Addresses a.woocommerce-button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.woocommerce-button.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .red.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content table td button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form .woocommerce .woocommerce-MyAccount-content table.variations tr td.value a.button.reset_variations, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table td .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content table td button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content table td button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table td a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content table td button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content table td button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.shop_table td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals a.button.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table td a.button.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product .button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content table td .button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order table td button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-Addresses a.button.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td a.button.edit, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .red.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form .woocommerce .woocommerce-MyAccount-content table.variations tr td.value .page-template-page-noel a.button.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content table td .page-template-page-noel button.button#place_order, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.shop_table td .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table td .page-template-page-noel a.button.checkout-button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel ul.products li.product .button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table td .page-template-page-noel .button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order table td .page-template-page-noel button.button#place_order, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.button.delete, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .woocommerce-Addresses a.button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td .page-template-page-noel a.button.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content button.red, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content button.button, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content button.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content button.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.red, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content .page-template-page-noel button#place_order, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product button.button, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .page-template-page-noel button.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.btn, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-forward, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-message a.button, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-error a a.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-backward, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .return-to-shop a, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.woocommerce-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table td a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.btn, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.wc-forward, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.reset_variations, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product-block .product-meta .single-product-content a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.checkout-button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-error a a.wc-backward, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.wc-backward, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .return-to-shop a, body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.delete, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.edit, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content table td a.button, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.red, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.red, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.reset_variations, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.add_to_cart_button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product-block .product-meta .single-product-content a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.checkout-button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.delete, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.edit, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a, .page-template-page-noel body .woocommerce form.lost_reset_password button.red.button, .page-template-page-noel body.single-product .woocommerce form.lost_reset_password .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password button.button, .page-template-page-noel body.single-product .woocommerce form.lost_reset_password .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password button.button, .page-template-page-noel body.single-product .woocommerce form.lost_reset_password .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password button.button, .page-template-page-noel body .woocommerce form.lost_reset_password button.button.add_to_cart_button, .page-template-page-noel body .woocommerce form.lost_reset_password .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password button.button, .page-template-page-noel body .woocommerce form.lost_reset_password #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order form.lost_reset_password button.button#place_order, .page-template-page-noel body .woocommerce form.lost_reset_password ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product form.lost_reset_password button.button, .page-template-page-noel body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.lost_reset_password button.button#place_order, body .woocommerce form.lost_reset_password .page-template-page-noel button.red.button, body.single-product .woocommerce form.lost_reset_password .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password .page-template-page-noel button.button, body.single-product .woocommerce form.lost_reset_password .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password .page-template-page-noel button.button, body.single-product .woocommerce form.lost_reset_password .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password .page-template-page-noel button.button, body .woocommerce form.lost_reset_password .page-template-page-noel button.button.add_to_cart_button, body .woocommerce form.lost_reset_password .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password .page-template-page-noel button.button, body .woocommerce form.lost_reset_password .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.lost_reset_password .page-template-page-noel button.button#place_order, body .woocommerce form.lost_reset_password .page-template-page-noel ul.products li.product button.button, body .woocommerce ul.products li.product form.lost_reset_password .page-template-page-noel button.button, body .woocommerce form.lost_reset_password .page-template-page-noel .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.lost_reset_password .page-template-page-noel button.button#place_order, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row button.red.button, .page-template-page-noel body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row button.button, .page-template-page-noel body.single-product .woocommerce form.woocommerce-form-login p.form-row .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row button.button, .page-template-page-noel body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row button.button, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row button.button.add_to_cart_button, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row button.button, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row button.button, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.red.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button, body.single-product .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button.add_to_cart_button, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row .page-template-page-noel button.button#place_order, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel ul.products li.product button.button, body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row .page-template-page-noel button.button, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.woocommerce-form-login p.form-row .page-template-page-noel button.button#place_order, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.red.button, .page-template-page-noel body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .woocommerce-variation-add-to-cart button.button, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, .page-template-page-noel body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product #personnaliser-le-livre form.cart button.button, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, .page-template-page-noel body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .gift_card_template_button button.button, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button.add_to_cart_button, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row button.button#place_order, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row ul.products li.product button.button, .page-template-page-noel body .woocommerce ul.products li.product #customer_login form.woocommerce-form-register p.form-row button.button, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row button.button#place_order, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.red.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button.add_to_cart_button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel #payment .form-row.place-order button.button#place_order, body .woocommerce #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button#place_order, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel ul.products li.product button.button, body .woocommerce ul.products li.product #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button#place_order, .page-template-page-noel form#affwp-register-form fieldset p input.red.button, .page-template-page-noel form#affwp-register-form fieldset p body input.button.add_to_cart_button, body .page-template-page-noel form#affwp-register-form fieldset p input.button.add_to_cart_button, .page-template-page-noel form#affwp-register-form fieldset p body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product .page-template-page-noel form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p .page-template-page-noel input.red.button, form#affwp-register-form fieldset p .page-template-page-noel body input.button.add_to_cart_button, body form#affwp-register-form fieldset p .page-template-page-noel input.button.add_to_cart_button, form#affwp-register-form fieldset p .page-template-page-noel body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product form#affwp-register-form fieldset p .page-template-page-noel input.button, .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.red, .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer body input.add_to_cart_button, body .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.add_to_cart_button, .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel input.red, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel body input.add_to_cart_button, body .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel input.add_to_cart_button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel input.button, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.red, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.reset_variations, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body a.add_to_cart_button, body .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.add_to_cart_button, .page-template-page-noel #footer .footer-primary-nav body ul.products li.is-btn li.product-block .product-meta .single-product-content a.button, body .page-template-page-noel #footer .footer-primary-nav ul.products li.is-btn li.product-block .product-meta .single-product-content a.button, .page-template-page-noel #footer .footer-primary-nav body ul.products li.product-block .product-meta .single-product-content li.is-btn a.button, body .page-template-page-noel #footer .footer-primary-nav ul.products li.product-block .product-meta .single-product-content li.is-btn a.button, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.checkout-button, .page-template-page-noel #footer .footer-primary-nav body .woocommerce ul.products li.is-btn li.product a.button, body .woocommerce .page-template-page-noel #footer .footer-primary-nav ul.products li.is-btn li.product a.button, .page-template-page-noel #footer .footer-primary-nav body .woocommerce ul.products li.product li.is-btn a.button, body .woocommerce .page-template-page-noel #footer .footer-primary-nav ul.products li.product li.is-btn a.button, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.delete, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.edit, .page-template-page-noel #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation .page-template-page-noel #footer .footer-primary-nav ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a, .page-template-page-noel #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a, body .woocommerce .woocommerce-MyAccount-navigation .page-template-page-noel #footer .footer-primary-nav ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.red, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.reset_variations, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body a.add_to_cart_button, body #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.add_to_cart_button, #footer .footer-primary-nav body ul.products li.is-btn .page-template-page-noel li.product-block .product-meta .single-product-content a.button, body #footer .footer-primary-nav ul.products li.is-btn .page-template-page-noel li.product-block .product-meta .single-product-content a.button, #footer .footer-primary-nav body ul.products li.product-block .product-meta .single-product-content li.is-btn .page-template-page-noel a.button, body #footer .footer-primary-nav ul.products li.product-block .product-meta .single-product-content li.is-btn .page-template-page-noel a.button, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.woocommerce-remove-coupon, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.woocommerce-remove-coupon, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.woocommerce-remove-coupon, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.checkout-button, #footer .footer-primary-nav body .woocommerce ul.products li.is-btn .page-template-page-noel li.product a.button, body .woocommerce #footer .footer-primary-nav ul.products li.is-btn .page-template-page-noel li.product a.button, #footer .footer-primary-nav body .woocommerce ul.products li.product li.is-btn .page-template-page-noel a.button, body .woocommerce #footer .footer-primary-nav ul.products li.product li.is-btn .page-template-page-noel a.button, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.delete, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.edit, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.is-btn .page-template-page-noel li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.is-btn .page-template-page-noel li.woocommerce-MyAccount-navigation-link--0 a, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn .page-template-page-noel a, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn .page-template-page-noel a, .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer input.red, .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer body input.add_to_cart_button, body .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer input.add_to_cart_button, .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer input.button, #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input.red, #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel body input.add_to_cart_button, body #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input.add_to_cart_button, #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input.button, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content a.red.button, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content a.button.reset_variations, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content body a.button.add_to_cart_button, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content a.button.add_to_cart_button, .page-template-page-noel .woocommerce body ul.products li.product-block .product-meta .single-product-content a.button, body .page-template-page-noel .woocommerce ul.products li.product-block .product-meta .single-product-content a.button, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, body .page-template-page-noel .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, body .page-template-page-noel .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, body .page-template-page-noel .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals a.button.checkout-button, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals a.button.checkout-button, .page-template-page-noel body .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content a.button.checkout-button, body .page-template-page-noel .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content a.button.checkout-button, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content li.product a.button, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content li.product a.button, .page-template-page-noel body .woocommerce ul.products li.product .product-block .product-meta .single-product-content a.button, body .page-template-page-noel .woocommerce ul.products li.product .product-block .product-meta .single-product-content a.button, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content a.button.delete, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content a.button.delete, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content a.button.edit, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content a.button.edit, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content a.button, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content a.button, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.red.button, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.reset_variations, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel body a.button.add_to_cart_button, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.add_to_cart_button, .woocommerce body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button, body .woocommerce ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.woocommerce-remove-coupon, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .cart-collaterals a.button.checkout-button, body .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.checkout-button, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel li.product a.button, body .woocommerce ul.products li.product .product-block .product-meta .single-product-content .page-template-page-noel a.button, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.delete, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.edit, body .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content .page-template-page-noel li.woocommerce-MyAccount-navigation-link--0 a.button, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content .page-template-page-noel a.button, .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit], .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button, body .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button, .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input.red[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body input[type=submit].add_to_cart_button, body .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].add_to_cart_button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].button, .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit], .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button, body .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button, .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input.red[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body input[type=submit].add_to_cart_button, body .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].add_to_cart_button, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body .woocommerce ul.products li.product input[type=submit].button, body .woocommerce ul.products li.product .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].button, .page-template-page-noel #code-form .gform_wrapper .gform_footer input.red, .page-template-page-noel #code-form .gform_wrapper .gform_footer body input.add_to_cart_button, body .page-template-page-noel #code-form .gform_wrapper .gform_footer input.add_to_cart_button, .page-template-page-noel #code-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product .page-template-page-noel #code-form .gform_wrapper .gform_footer input.button, #code-form .gform_wrapper .gform_footer .page-template-page-noel input.red, #code-form .gform_wrapper .gform_footer .page-template-page-noel body input.add_to_cart_button, body #code-form .gform_wrapper .gform_footer .page-template-page-noel input.add_to_cart_button, #code-form .gform_wrapper .gform_footer .page-template-page-noel body .woocommerce ul.products li.product input.button, body .woocommerce ul.products li.product #code-form .gform_wrapper .gform_footer .page-template-page-noel input.button, .page-template-page-noel form#affwp-register-form fieldset p .form .gform_wrapper .gform_footer input.button[type=submit], form#affwp-register-form fieldset p .form .gform_wrapper .gform_footer .page-template-page-noel input.button[type=submit], .page-template-page-noel .form .gform_wrapper .gform_footer form#affwp-register-form fieldset p input.button[type=submit], .form .gform_wrapper .gform_footer form#affwp-register-form fieldset p .page-template-page-noel input.button[type=submit], .page-template-page-noel .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit], .page-template-page-noel #newsletter-form .form .gform_wrapper .gform_footer input[type=submit], #newsletter-form .form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit], .page-template-page-noel .form #newsletter-form .gform_wrapper .gform_footer input[type=submit], .form #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit], .page-template-page-noel #code-form .form .gform_wrapper .gform_footer input[type=submit], #code-form .form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit], .page-template-page-noel .form #code-form .gform_wrapper .gform_footer input[type=submit], .form #code-form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit], .page-template-page-noel #footer .footer-primary-nav ul li.is-btn .error404 .hero .the-content a.button, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .page-template-page-noel #footer .footer-primary-nav ul li.is-btn .error404 .hero .woocommerce-product-details__short-description a.button, #footer .footer-primary-nav ul li.is-btn .error404 .hero .the-content .page-template-page-noel a.button, #footer .footer-primary-nav ul li.is-btn .error404 .hero body.single-product .product .woocommerce-product-details__short-description .page-template-page-noel a.button, body.single-product .product #footer .footer-primary-nav ul li.is-btn .error404 .hero .woocommerce-product-details__short-description .page-template-page-noel a.button, .page-template-page-noel .error404 .hero .the-content #footer .footer-primary-nav ul li.is-btn a.button, .page-template-page-noel .error404 .hero body.single-product .product .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button, body.single-product .product .page-template-page-noel .error404 .hero .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button, .error404 .hero .the-content #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.button, .page-template-page-noel .error404 .hero .the-content a.button, .page-template-page-noel .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .page-template-page-noel .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content .page-template-page-noel a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .page-template-page-noel a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .page-template-page-noel a.button, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .the-content a.button, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .woocommerce-product-details__short-description a.button, .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .the-content .page-template-page-noel a.button, .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero body.single-product .product .woocommerce-product-details__short-description .page-template-page-noel a.button, body.single-product .product .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .woocommerce-product-details__short-description .page-template-page-noel a.button, .page-template-page-noel .error404 .hero .the-content .woocommerce ul.products .product-block .product-meta .single-product-content a.button, .page-template-page-noel .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content a.button, body.single-product .product .page-template-page-noel .error404 .hero .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content a.button, .error404 .hero .the-content .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button {
  background-color: #FA404D !important;
}
.page-template-page-noel .btn.red:hover, .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.red[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .page-template-page-noel input.red[type=button]:hover, .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.red[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .page-template-page-noel input.red[type=button]:hover, .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.red.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel a.red.wc-forward:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.btn.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.btn.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.red.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.red.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.btn.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations.wc-forward:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.btn.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.reset_variations.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.reset_variations.wc-forward:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.red.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.red.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.btn.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.btn.button:hover, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart .page-template-page-noel button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.red.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.red.button:hover, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart #personnaliser-le-livre form.cart .page-template-page-noel button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button button.btn.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel button.btn.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button .page-template-page-noel button.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button .page-template-page-noel button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button button.red.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel button.red.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .gift_card_template_button .page-template-page-noel button.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .gift_card_template_button .page-template-page-noel button.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel button.button:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list button.red:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list button.button:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list button.button:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel button.red:hover, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart form.gift-cards_form .gift-cards-list .page-template-page-noel button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart form.gift-cards_form .gift-cards-list .page-template-page-noel button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button form.gift-cards_form .gift-cards-list .page-template-page-noel button.button:hover, .page-template-page-noel body.single-product .woocommerce-message a.red.button:hover, .page-template-page-noel body.single-product .woocommerce-message .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message a.button.reset_variations:hover, body.single-product .woocommerce-message .page-template-page-noel a.red.button:hover, body.single-product .woocommerce-message .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce-message .page-template-page-noel a.button.reset_variations:hover, .page-template-page-noel body .btn.add_to_cart_button:hover, .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .page-template-page-noel body input.add_to_cart_button[type=button]:hover, .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .page-template-page-noel body input.add_to_cart_button[type=button]:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel body a.add_to_cart_button.wc-forward:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button button.add_to_cart_button.button:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list button.add_to_cart_button:hover, .page-template-page-noel body.single-product .woocommerce-message a.add_to_cart_button.button:hover, body .page-template-page-noel .btn.add_to_cart_button:hover, body .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td body .page-template-page-noel input.add_to_cart_button[type=button]:hover, body .page-template-page-noel .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.add_to_cart_button[type=button]:hover, .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class body .page-template-page-noel input.add_to_cart_button[type=button]:hover, body .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.add_to_cart_button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body .page-template-page-noel a.add_to_cart_button.wc-forward:hover, body.single-product .page-template-page-noel .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.add_to_cart_button.button:hover, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.add_to_cart_button.reset_variations:hover, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.cart button.add_to_cart_button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.add_to_cart_button.button:hover, body.single-product .page-template-page-noel .product .gift_card_template_button button.add_to_cart_button.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel button.add_to_cart_button.button:hover, body.single-product .page-template-page-noel .product form.gift-cards_form .gift-cards-list button.add_to_cart_button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel button.add_to_cart_button:hover, body.single-product .page-template-page-noel .woocommerce-message a.add_to_cart_button.button:hover, body.single-product .woocommerce-message .page-template-page-noel a.add_to_cart_button.button:hover, .page-template-page-noel body .red.add_to_cart_button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart button.add_to_cart_button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button button.add_to_cart_button.button:hover, .page-template-page-noel body .add_to_cart_button:hover, body .page-template-page-noel .red.add_to_cart_button:hover, body.single-product .page-template-page-noel .product .woocommerce-variation-add-to-cart button.add_to_cart_button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel button.add_to_cart_button.button:hover, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.add_to_cart_button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.add_to_cart_button.reset_variations:hover, body.single-product .page-template-page-noel .product #personnaliser-le-livre form.cart button.add_to_cart_button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel button.add_to_cart_button.button:hover, body.single-product .page-template-page-noel .product .gift_card_template_button button.add_to_cart_button.button:hover, body.single-product .product .gift_card_template_button .page-template-page-noel button.add_to_cart_button.button:hover, body .page-template-page-noel .add_to_cart_button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.btn.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button.wc-forward:hover, .page-template-page-noel body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations:hover, .page-template-page-noel body.single-product ul.products li.product-block .product-meta .single-product-content .woocommerce-message a.button:hover, .page-template-page-noel body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.btn.button:hover, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .woocommerce .woocommerce-notices-wrapper .woocommerce-message body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.wc-forward:hover, body.single-product ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.reset_variations:hover, body.single-product ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-message a.button:hover, body.single-product .woocommerce-message ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.add_to_cart_button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.red.button:hover, .page-template-page-noel body.single-product ul.products li.product-block .product-meta .single-product-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content a.button.reset_variations:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button.add_to_cart_button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.red.button:hover, body.single-product ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.reset_variations:hover, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button.add_to_cart_button:hover, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.btn.button:hover, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product form.gift-cards_form .gift-cards-list button.button:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.btn.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .product form.gift-cards_form .gift-cards-list .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button.add_to_cart_button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.red.button:hover, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button.add_to_cart_button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.red.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body.single-product .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button.add_to_cart_button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order button.btn#place_order:hover, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button:hover, body .woocommerce #payment .form-row.place-order .page-template-page-noel button.btn#place_order:hover, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button:hover, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product form.gift-cards_form .gift-cards-list button#place_order:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order:hover, body .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button:hover, body .woocommerce #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order button.red#place_order:hover, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce #payment .form-row.place-order .product .gift_card_template_button button#place_order.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order button#place_order.add_to_cart_button:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order button#place_order:hover, body .woocommerce #payment .form-row.place-order .page-template-page-noel button.red#place_order:hover, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button:hover, body.single-product .product .gift_card_template_button .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button:hover, body .woocommerce #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce #payment .form-row.place-order .page-template-page-noel button#place_order:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.btn.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.btn.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-message a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.btn.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon:hover, .page-template-page-noel body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.red.woocommerce-remove-coupon:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red.woocommerce-remove-coupon:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.red.woocommerce-remove-coupon:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel td.value a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon.button:hover, body .woocommerce .woocommerce-checkout form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout-coupon button.red.button:hover, .page-template-page-noel body.single-product .woocommerce form.checkout-coupon .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon button.button:hover, .page-template-page-noel body.single-product .woocommerce form.checkout-coupon .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon button.button:hover, .page-template-page-noel body.single-product .woocommerce form.checkout-coupon .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon button.button:hover, .page-template-page-noel body .woocommerce form.checkout-coupon button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce form.checkout-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon button.button:hover, .page-template-page-noel body .woocommerce form.checkout-coupon #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order form.checkout-coupon button.button#place_order:hover, body .woocommerce form.checkout-coupon .page-template-page-noel button.red.button:hover, body.single-product .woocommerce form.checkout-coupon .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.checkout-coupon .page-template-page-noel button.button:hover, body.single-product .woocommerce form.checkout-coupon .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.checkout-coupon .page-template-page-noel button.button:hover, body.single-product .woocommerce form.checkout-coupon .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.checkout-coupon .page-template-page-noel button.button:hover, body .woocommerce form.checkout-coupon .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce form.checkout-coupon .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.checkout-coupon .page-template-page-noel button.button:hover, body .woocommerce form.checkout-coupon .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.checkout-coupon .page-template-page-noel button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-form-coupon button.red.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-form-coupon .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-form-coupon .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-form-coupon .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-form-coupon button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-form-coupon .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-form-coupon #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon button.button#place_order:hover, body .woocommerce .woocommerce-form-coupon .page-template-page-noel button.red.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-form-coupon .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-form-coupon .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-form-coupon .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-form-coupon .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-form-coupon .page-template-page-noel button.button#place_order:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.red.button:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button.button#place_order:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.red.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button:hover, body.single-product .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel button.button#place_order:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.btn.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals table.shop_table td .woocommerce-message a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.btn.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.woocommerce-remove-coupon.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.wc-forward:hover, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel .woocommerce-message a.woocommerce-remove-coupon.button:hover, body.single-product .woocommerce-message .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.button:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.button:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.red.woocommerce-remove-coupon:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value a.woocommerce-remove-coupon.reset_variations:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.red.woocommerce-remove-coupon:hover, body.single-product .woocommerce .cart-collaterals table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .cart-collaterals table.shop_table td.value .page-template-page-noel a.woocommerce-remove-coupon.reset_variations:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.add_to_cart_button:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-remove-coupon.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon.button:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table td .page-template-page-noel tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .cart-collaterals table.shop_table tr.cart-discount td .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals a.btn.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals a.checkout-button.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals .woocommerce-message a.checkout-button.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .cart-collaterals a.checkout-button.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .page-template-page-noel a.btn.checkout-button:hover, body .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.checkout-button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .cart-collaterals .page-template-page-noel a.checkout-button.wc-forward:hover, body.single-product .woocommerce .cart-collaterals .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.reset_variations:hover, body.single-product .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-message a.checkout-button.button:hover, body.single-product .woocommerce-message .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.button:hover, body .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.add_to_cart_button:hover, body .woocommerce .cart-collaterals .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.checkout-button.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.button:hover, body .woocommerce .cart-collaterals .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .page-template-page-noel table.shop_table td a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals a.red.checkout-button:hover, .page-template-page-noel body.single-product .woocommerce .cart-collaterals .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals a.checkout-button.reset_variations:hover, .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product-block .product-meta .single-product-content a.checkout-button.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals a.checkout-button.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.checkout-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .page-template-page-noel a.red.checkout-button:hover, body.single-product .woocommerce .cart-collaterals .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.checkout-button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.reset_variations:hover, body .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.add_to_cart_button:hover, body .woocommerce .cart-collaterals .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.checkout-button.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button.button:hover, body .woocommerce .cart-collaterals .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .cart-collaterals .page-template-page-noel a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .page-template-page-noel table.shop_table td a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel a.checkout-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .page-template-page-noel a.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.red[type=button]:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button].add_to_cart_button:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .page-template-page-noel input.red[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .page-template-page-noel input[type=button].add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table button.red.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table button.button#place_order:hover, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.red.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table .page-template-page-noel button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.red[type=button]:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button].add_to_cart_button:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .page-template-page-noel input.red[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .page-template-page-noel input[type=button].add_to_cart_button:hover, .page-template-page-noel body .woocommerce ul.products li.product .btn.button:hover, .page-template-page-noel body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product input.button[type=button]:hover, .page-template-page-noel body .woocommerce ul.products li.product #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button]:hover, .page-template-page-noel body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product input.button[type=button]:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product a.button.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list button.button:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product .woocommerce-message a.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce ul.products li.product a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order:hover, .page-template-page-noel body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products li.product form.checkout-coupon button.button:hover, .page-template-page-noel body .woocommerce form.checkout-coupon ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-form-coupon button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-form-coupon ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button]:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td ul.products li.product input.button[type=button]:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button]:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper ul.products li.product input.button[type=button]:hover, body .woocommerce ul.products li.product .page-template-page-noel .btn.button:hover, body .woocommerce ul.products li.product .page-template-page-noel #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td ul.products li.product .page-template-page-noel input.button[type=button]:hover, body .woocommerce ul.products li.product .page-template-page-noel #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.button[type=button]:hover, body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class ul.products li.product .page-template-page-noel input.button[type=button]:hover, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.button.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message ul.products li.product .page-template-page-noel a.button.wc-forward:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel .woocommerce-variation-add-to-cart button.button:hover, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart .page-template-page-noel button.button:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.button.reset_variations:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.cart button.button:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart .page-template-page-noel button.button:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel .gift_card_template_button button.button:hover, body.single-product .woocommerce ul.products li.product .gift_card_template_button .page-template-page-noel button.button:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel form.gift-cards_form .gift-cards-list button.button:hover, body.single-product .woocommerce ul.products li.product form.gift-cards_form .gift-cards-list .page-template-page-noel button.button:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce ul.products li.product .page-template-page-noel a.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .button.add_to_cart_button:hover, body .woocommerce ul.products li.product .page-template-page-noel li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product .page-template-page-noel a.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product .page-template-page-noel button.button:hover, body .woocommerce ul.products li.product .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order ul.products li.product .page-template-page-noel button.button#place_order:hover, body .woocommerce ul.products li.product .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .page-template-page-noel form.checkout-coupon button.button:hover, body .woocommerce form.checkout-coupon ul.products li.product .page-template-page-noel button.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-form-coupon button.button:hover, body .woocommerce .woocommerce-form-coupon ul.products li.product .page-template-page-noel button.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals form.woocommerce-shipping-calculator button.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator ul.products li.product .page-template-page-noel button.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals ul.products li.product .page-template-page-noel a.button.checkout-button:hover, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.button[type=button]:hover, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td ul.products li.product .page-template-page-noel input.button[type=button]:hover, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-cart-form table.shop_table button.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table ul.products li.product .page-template-page-noel button.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.button[type=button]:hover, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper ul.products li.product .page-template-page-noel input.button[type=button]:hover, .page-template-page-noel body .woocommerce ul.products li.product .red.button:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .woocommerce ul.products li.product .gift_card_template_button button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce ul.products li.product li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order ul.products li.product button.button#place_order:hover, .page-template-page-noel body .woocommerce ul.products li.product form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products li.product a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products li.product .cart-collaterals a.button.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals ul.products li.product a.button.checkout-button:hover, .page-template-page-noel body .woocommerce ul.products li.product .button:hover, body .woocommerce ul.products li.product .page-template-page-noel .red.button:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel .woocommerce-variation-add-to-cart button.button:hover, body.single-product .woocommerce ul.products li.product .woocommerce-variation-add-to-cart .page-template-page-noel button.button:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.button.reset_variations:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel #personnaliser-le-livre form.cart button.button:hover, body.single-product .woocommerce ul.products li.product #personnaliser-le-livre form.cart .page-template-page-noel button.button:hover, body.single-product .woocommerce ul.products li.product .page-template-page-noel .gift_card_template_button button.button:hover, body.single-product .woocommerce ul.products li.product .gift_card_template_button .page-template-page-noel button.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .button.add_to_cart_button:hover, body .woocommerce ul.products li.product .page-template-page-noel li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce ul.products li.product-block .product-meta .single-product-content li.product .page-template-page-noel a.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce ul.products li.product .page-template-page-noel button.button:hover, body .woocommerce ul.products li.product .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order ul.products li.product .page-template-page-noel button.button#place_order:hover, body .woocommerce ul.products li.product .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products li.product .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products li.product .page-template-page-noel .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals ul.products li.product .page-template-page-noel a.button.checkout-button:hover, body .woocommerce ul.products li.product .page-template-page-noel .button:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .red.wc-backward:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product .woocommerce-variation-add-to-cart button.wc-backward.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a button.wc-backward.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a a.wc-backward.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product #personnaliser-le-livre form.cart button.wc-backward.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a button.wc-backward.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-error a .product .gift_card_template_button button.wc-backward.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a button.wc-backward.button:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .wc-backward.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-error a ul.products li.product-block .product-meta .single-product-content a.wc-backward.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a a.wc-backward.button:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a button.wc-backward.button:hover, .page-template-page-noel body .woocommerce .woocommerce-error a #payment .form-row.place-order button.wc-backward#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-error a button.wc-backward#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-error a form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a a.wc-backward.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .cart-collaterals a.wc-backward.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-error a a.wc-backward.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-error a ul.products li.product .wc-backward.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-error a .wc-backward.button:hover, body .woocommerce .woocommerce-error a .page-template-page-noel .red.wc-backward:hover, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product .woocommerce-variation-add-to-cart button.wc-backward.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button:hover, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.wc-backward.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-error a .page-template-page-noel a.wc-backward.reset_variations:hover, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product #personnaliser-le-livre form.cart button.wc-backward.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button:hover, body.single-product .woocommerce .woocommerce-error a .page-template-page-noel .product .gift_card_template_button button.wc-backward.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .page-template-page-noel .wc-backward.add_to_cart_button:hover, body .woocommerce .woocommerce-error a .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.wc-backward.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-error a .page-template-page-noel a.wc-backward.button:hover, body .woocommerce .woocommerce-error a .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.wc-backward.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-error a .page-template-page-noel button.wc-backward.button:hover, body .woocommerce .woocommerce-error a .page-template-page-noel #payment .form-row.place-order button.wc-backward#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-error a .page-template-page-noel button.wc-backward#place_order:hover, body .woocommerce .woocommerce-error a .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a .page-template-page-noel a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-error a .page-template-page-noel a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .page-template-page-noel .cart-collaterals table.shop_table td a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-error a .page-template-page-noel a.wc-backward.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-error a .page-template-page-noel .cart-collaterals a.wc-backward.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-error a .page-template-page-noel a.wc-backward.checkout-button:hover, body .woocommerce .woocommerce-error a .page-template-page-noel ul.products li.product .wc-backward.button:hover, body .woocommerce ul.products li.product .woocommerce-error a .page-template-page-noel .wc-backward.button:hover, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row button.red.button:hover, .page-template-page-noel body.single-product .woocommerce .ywgc_enter_code p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row button.button:hover, .page-template-page-noel body.single-product .woocommerce .ywgc_enter_code p.form-row .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row button.button:hover, .page-template-page-noel body.single-product .woocommerce .ywgc_enter_code p.form-row .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row button.button:hover, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row button.button:hover, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row button.button#place_order:hover, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .ywgc_enter_code p.form-row button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.red.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button:hover, body.single-product .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel button.button:hover, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .ywgc_enter_code p.form-row .page-template-page-noel button.button#place_order:hover, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel ul.products li.product button.button:hover, body .woocommerce ul.products li.product .ywgc_enter_code p.form-row .page-template-page-noel button.button:hover, .page-template-page-noel body .woocommerce .return-to-shop a.red:hover, .page-template-page-noel body.single-product .woocommerce .return-to-shop .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop a.reset_variations:hover, .page-template-page-noel body .woocommerce .return-to-shop a.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .return-to-shop ul.products li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop a.button:hover, .page-template-page-noel body .woocommerce .return-to-shop form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .return-to-shop .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .return-to-shop a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .return-to-shop .cart-collaterals a.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .return-to-shop a.checkout-button:hover, .page-template-page-noel body .woocommerce .return-to-shop ul.products li.product a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .return-to-shop a.button:hover, body .woocommerce .return-to-shop .page-template-page-noel a.red:hover, body.single-product .woocommerce .return-to-shop .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .return-to-shop .page-template-page-noel a.reset_variations:hover, body .woocommerce .return-to-shop .page-template-page-noel a.add_to_cart_button:hover, body .woocommerce .return-to-shop .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .return-to-shop .page-template-page-noel a.button:hover, body .woocommerce .return-to-shop .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .return-to-shop .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .return-to-shop .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .return-to-shop .page-template-page-noel .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .return-to-shop .page-template-page-noel a.checkout-button:hover, body .woocommerce .return-to-shop .page-template-page-noel ul.products li.product a.button:hover, body .woocommerce ul.products li.product .return-to-shop .page-template-page-noel a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.red.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap ul.products li.product input.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel input.red.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel input.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel ul.products li.product input.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel input.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.red.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap ul.products li.product input.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel input.red.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel input.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel ul.products li.product input.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel input.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.red.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav ul.products li.product input.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel input.red.button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel input.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel ul.products li.product input.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel input.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account button.red.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form.edit-account button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form.edit-account .page-template-page-noel button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.btn#place_order:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .gift_card_template_button button#place_order.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product form.gift-cards_form .gift-cards-list button#place_order:hover, .page-template-page-noel body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.checkout-coupon button#place_order.button:hover, .page-template-page-noel body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-form-coupon button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .cart-collaterals form.woocommerce-shipping-calculator button#place_order.button:hover, .page-template-page-noel body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-cart-form table.shop_table button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order ul.products li.product button#place_order.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-error a button#place_order.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .ywgc_enter_code p.form-row button#place_order.button:hover, .page-template-page-noel body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.edit-account button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button.btn#place_order:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product form.gift-cards_form .gift-cards-list button#place_order:hover, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel form.checkout-coupon button#place_order.button:hover, body .woocommerce form.checkout-coupon .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .woocommerce-form-coupon button#place_order.button:hover, body .woocommerce .woocommerce-form-coupon .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .cart-collaterals form.woocommerce-shipping-calculator button#place_order.button:hover, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .woocommerce-cart-form table.shop_table button#place_order.button:hover, body .woocommerce .woocommerce-cart-form table.shop_table .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel ul.products li.product button#place_order.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .woocommerce-error a button#place_order.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .ywgc_enter_code p.form-row button#place_order.button:hover, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel form.edit-account button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content form.edit-account #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button.red#place_order:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .woocommerce-variation-add-to-cart button#place_order.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product #personnaliser-le-livre form.cart button#place_order.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .product .gift_card_template_button button#place_order.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order ul.products li.product button#place_order.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button.red#place_order:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .woocommerce-variation-add-to-cart button#place_order.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product #personnaliser-le-livre form.cart button#place_order.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .product .gift_card_template_button button#place_order.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button#place_order.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel ul.products li.product button#place_order.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order.button:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.red.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.button.reset_variations:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.button.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.button.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.button.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .page-template-page-noel a.button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product a.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .page-template-page-noel a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.btn.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-message a.delete.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-error a a.delete.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .return-to-shop a.delete:hover, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.btn.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.delete.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.delete.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value .page-template-page-noel a.delete.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-message a.delete.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.delete.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .cart-collaterals a.delete.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product a.delete.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-error a a.delete.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .return-to-shop a.delete:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.red.delete:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.delete.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value a.delete.reset_variations:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product-block .product-meta .single-product-content a.delete.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .cart-collaterals a.delete.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products li.product a.delete.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.red.delete:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.delete.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.value .page-template-page-noel a.delete.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.delete.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .cart-collaterals table.shop_table td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .cart-collaterals a.delete.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel ul.products li.product a.delete.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete.button:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form button.red.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content form .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content form button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart .page-template-page-noel button.button:hover, body.single-product .product #personnaliser-le-livre .woocommerce .woocommerce-MyAccount-content form.cart .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body .widget .product-search-filter-reset .woocommerce .woocommerce-MyAccount-content form.product-search-filter-reset-form .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content form .page-template-page-noel button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content form .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form .page-template-page-noel button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.btn.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-message a.edit.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-error a a.edit.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .return-to-shop a.edit:hover, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.btn.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.edit.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-message a.edit.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.edit.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals a.edit.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product a.edit.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-error a a.edit.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .return-to-shop a.edit:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel table.woocommerce-MyAccount-paymentMethods td a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses .page-template-page-noel a.edit.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.red.edit:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.reset_variations:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product-block .product-meta .single-product-content a.edit.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .cart-collaterals a.edit.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products li.product a.edit.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses a.edit.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table.woocommerce-MyAccount-paymentMethods td a.edit.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses a.edit.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.red.edit:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.edit.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.edit.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals table.shop_table td a.edit.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .cart-collaterals a.edit.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel ul.products li.product a.edit.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel table.woocommerce-MyAccount-paymentMethods td a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-Addresses .page-template-page-noel a.edit.delete:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.red.woocommerce-button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.reset_variations:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content a.woocommerce-button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content a.woocommerce-button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals a.woocommerce-button.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content a.woocommerce-button.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product a.woocommerce-button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content a.woocommerce-button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.woocommerce-button.edit:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.red.woocommerce-button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.woocommerce-button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.woocommerce-button.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .cart-collaterals a.woocommerce-button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product a.woocommerce-button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .page-template-page-noel a.woocommerce-button.button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel table.woocommerce-MyAccount-paymentMethods td a.woocommerce-button.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.woocommerce-button.delete:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .woocommerce-Addresses a.woocommerce-button.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel a.woocommerce-button.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .red.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content table td button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form .woocommerce .woocommerce-MyAccount-content table.variations tr td.value a.button.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table td .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content table td button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content table td .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content table td button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table td a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content table td button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content table td button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.shop_table td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .cart-collaterals a.button.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table td a.button.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td ul.products li.product .button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content table td .button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order table td button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-Addresses a.button.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .red.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form .woocommerce .woocommerce-MyAccount-content table.variations tr td.value .page-template-page-noel a.button.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel ul.products li.product-block .product-meta .single-product-content a.button:hover, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content table td .page-template-page-noel button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table td .page-template-page-noel tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-MyAccount-content table.shop_table tr.cart-discount td .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content .cart-collaterals table.shop_table td .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table.shop_table td .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-content table td .page-template-page-noel a.button.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel ul.products li.product .button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content table td .page-template-page-noel .button:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order table td .page-template-page-noel button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel a.button.delete:hover, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .woocommerce-Addresses a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses table td .page-template-page-noel a.button.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content button.red:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content button.button:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-content .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .woocommerce-MyAccount-content button.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.red:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button:hover, body.single-product .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-MyAccount-content .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel #payment .form-row.place-order button#place_order:hover, body .woocommerce #payment .form-row.place-order .woocommerce-MyAccount-content .page-template-page-noel button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel ul.products li.product button.button:hover, body .woocommerce ul.products li.product .woocommerce-MyAccount-content .page-template-page-noel button.button:hover, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel #payment .form-row.place-order button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .page-template-page-noel button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.btn:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, .page-template-page-noel body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-forward:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-message a.button:hover, .page-template-page-noel body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-error a a.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wc-backward:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .return-to-shop a:hover, .page-template-page-noel body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content a.woocommerce-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table td a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.btn:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.wc-forward:hover, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.reset_variations:hover, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-message a.button:hover, body.single-product .woocommerce-message .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-error a a.wc-backward:hover, body .woocommerce .woocommerce-error a .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.wc-backward:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .return-to-shop a:hover, body .woocommerce .return-to-shop .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content a.button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.delete:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.edit:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content table td a.button:hover, body .woocommerce .woocommerce-MyAccount-content table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.red:hover, .page-template-page-noel body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.reset_variations:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.add_to_cart_button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .cart-collaterals a.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.checkout-button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 li.product a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.red:hover, body.single-product .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.reset_variations:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.add_to_cart_button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product-block .product-meta .single-product-content a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.checkout-button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel li.product a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.delete:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a.edit:hover, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel a:hover, .page-template-page-noel body .woocommerce form.lost_reset_password button.red.button:hover, .page-template-page-noel body.single-product .woocommerce form.lost_reset_password .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password button.button:hover, .page-template-page-noel body.single-product .woocommerce form.lost_reset_password .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password button.button:hover, .page-template-page-noel body.single-product .woocommerce form.lost_reset_password .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password button.button:hover, .page-template-page-noel body .woocommerce form.lost_reset_password button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce form.lost_reset_password .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password button.button:hover, .page-template-page-noel body .woocommerce form.lost_reset_password #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order form.lost_reset_password button.button#place_order:hover, .page-template-page-noel body .woocommerce form.lost_reset_password ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product form.lost_reset_password button.button:hover, .page-template-page-noel body .woocommerce form.lost_reset_password .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.lost_reset_password button.button#place_order:hover, body .woocommerce form.lost_reset_password .page-template-page-noel button.red.button:hover, body.single-product .woocommerce form.lost_reset_password .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.lost_reset_password .page-template-page-noel button.button:hover, body.single-product .woocommerce form.lost_reset_password .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.lost_reset_password .page-template-page-noel button.button:hover, body.single-product .woocommerce form.lost_reset_password .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.lost_reset_password .page-template-page-noel button.button:hover, body .woocommerce form.lost_reset_password .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce form.lost_reset_password .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.lost_reset_password .page-template-page-noel button.button:hover, body .woocommerce form.lost_reset_password .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.lost_reset_password .page-template-page-noel button.button#place_order:hover, body .woocommerce form.lost_reset_password .page-template-page-noel ul.products li.product button.button:hover, body .woocommerce ul.products li.product form.lost_reset_password .page-template-page-noel button.button:hover, body .woocommerce form.lost_reset_password .page-template-page-noel .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.lost_reset_password .page-template-page-noel button.button#place_order:hover, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row button.red.button:hover, .page-template-page-noel body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row button.button:hover, .page-template-page-noel body.single-product .woocommerce form.woocommerce-form-login p.form-row .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row button.button:hover, .page-template-page-noel body.single-product .woocommerce form.woocommerce-form-login p.form-row .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row button.button:hover, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row button.button:hover, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order:hover, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row button.button:hover, .page-template-page-noel body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.woocommerce-form-login p.form-row button.button#place_order:hover, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.red.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button:hover, body.single-product .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order form.woocommerce-form-login p.form-row .page-template-page-noel button.button#place_order:hover, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel ul.products li.product button.button:hover, body .woocommerce ul.products li.product form.woocommerce-form-login p.form-row .page-template-page-noel button.button:hover, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order form.woocommerce-form-login p.form-row .page-template-page-noel button.button#place_order:hover, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.red.button:hover, .page-template-page-noel body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .woocommerce-variation-add-to-cart button.button:hover, .page-template-page-noel body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, .page-template-page-noel body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product #personnaliser-le-livre form.cart button.button:hover, .page-template-page-noel body.single-product .product #personnaliser-le-livre form.cart .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, .page-template-page-noel body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .product .gift_card_template_button button.button:hover, .page-template-page-noel body.single-product .product .gift_card_template_button .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button.add_to_cart_button:hover, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, .page-template-page-noel body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button:hover, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row button.button#place_order:hover, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row ul.products li.product button.button:hover, .page-template-page-noel body .woocommerce ul.products li.product #customer_login form.woocommerce-form-register p.form-row button.button:hover, .page-template-page-noel body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row button.button#place_order:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.red.button:hover, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .product .woocommerce-variation-add-to-cart button.button:hover, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button:hover, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .product #personnaliser-le-livre form.cart button.button:hover, body.single-product .product #personnaliser-le-livre form.cart .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button:hover, body.single-product .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .product .gift_card_template_button button.button:hover, body.single-product .product .gift_card_template_button .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button.add_to_cart_button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .widget .product-search-filter-reset form.product-search-filter-reset-form button.button:hover, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel #payment .form-row.place-order button.button#place_order:hover, body .woocommerce #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button#place_order:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel ul.products li.product button.button:hover, body .woocommerce ul.products li.product #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button:hover, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .woocommerce-MyAccount-content #payment .form-row.place-order button.button#place_order:hover, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel button.button#place_order:hover, .page-template-page-noel form#affwp-register-form fieldset p input.red.button:hover, .page-template-page-noel form#affwp-register-form fieldset p body input.button.add_to_cart_button:hover, body .page-template-page-noel form#affwp-register-form fieldset p input.button.add_to_cart_button:hover, .page-template-page-noel form#affwp-register-form fieldset p body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product .page-template-page-noel form#affwp-register-form fieldset p input.button:hover, form#affwp-register-form fieldset p .page-template-page-noel input.red.button:hover, form#affwp-register-form fieldset p .page-template-page-noel body input.button.add_to_cart_button:hover, body form#affwp-register-form fieldset p .page-template-page-noel input.button.add_to_cart_button:hover, form#affwp-register-form fieldset p .page-template-page-noel body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product form#affwp-register-form fieldset p .page-template-page-noel input.button:hover, .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.red:hover, .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer body input.add_to_cart_button:hover, body .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.add_to_cart_button:hover, .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product .page-template-page-noel .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.button:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel input.red:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel body input.add_to_cart_button:hover, body .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel input.add_to_cart_button:hover, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel input.button:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.red:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.reset_variations:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body a.add_to_cart_button:hover, body .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.add_to_cart_button:hover, .page-template-page-noel #footer .footer-primary-nav body ul.products li.is-btn li.product-block .product-meta .single-product-content a.button:hover, body .page-template-page-noel #footer .footer-primary-nav ul.products li.is-btn li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel #footer .footer-primary-nav body ul.products li.product-block .product-meta .single-product-content li.is-btn a.button:hover, body .page-template-page-noel #footer .footer-primary-nav ul.products li.product-block .product-meta .single-product-content li.is-btn a.button:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.woocommerce-remove-coupon:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.checkout-button:hover, .page-template-page-noel #footer .footer-primary-nav body .woocommerce ul.products li.is-btn li.product a.button:hover, body .woocommerce .page-template-page-noel #footer .footer-primary-nav ul.products li.is-btn li.product a.button:hover, .page-template-page-noel #footer .footer-primary-nav body .woocommerce ul.products li.product li.is-btn a.button:hover, body .woocommerce .page-template-page-noel #footer .footer-primary-nav ul.products li.product li.is-btn a.button:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.delete:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel #footer .footer-primary-nav ul li.is-btn a.edit:hover, .page-template-page-noel #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce .woocommerce-MyAccount-navigation .page-template-page-noel #footer .footer-primary-nav ul li.is-btn li.woocommerce-MyAccount-navigation-link--0 a:hover, .page-template-page-noel #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a:hover, body .woocommerce .woocommerce-MyAccount-navigation .page-template-page-noel #footer .footer-primary-nav ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn a:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.red:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.reset_variations:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body a.add_to_cart_button:hover, body #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.add_to_cart_button:hover, #footer .footer-primary-nav body ul.products li.is-btn .page-template-page-noel li.product-block .product-meta .single-product-content a.button:hover, body #footer .footer-primary-nav ul.products li.is-btn .page-template-page-noel li.product-block .product-meta .single-product-content a.button:hover, #footer .footer-primary-nav body ul.products li.product-block .product-meta .single-product-content li.is-btn .page-template-page-noel a.button:hover, body #footer .footer-primary-nav ul.products li.product-block .product-meta .single-product-content li.is-btn .page-template-page-noel a.button:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.woocommerce-remove-coupon:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.woocommerce-remove-coupon:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.woocommerce-remove-coupon:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .cart-collaterals a.checkout-button:hover, body .woocommerce .cart-collaterals #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.checkout-button:hover, #footer .footer-primary-nav body .woocommerce ul.products li.is-btn .page-template-page-noel li.product a.button:hover, body .woocommerce #footer .footer-primary-nav ul.products li.is-btn .page-template-page-noel li.product a.button:hover, #footer .footer-primary-nav body .woocommerce ul.products li.product li.is-btn .page-template-page-noel a.button:hover, body .woocommerce #footer .footer-primary-nav ul.products li.product li.is-btn .page-template-page-noel a.button:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.delete:hover, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.edit:hover, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.is-btn .page-template-page-noel li.woocommerce-MyAccount-navigation-link--0 a:hover, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.is-btn .page-template-page-noel li.woocommerce-MyAccount-navigation-link--0 a:hover, #footer .footer-primary-nav body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn .page-template-page-noel a:hover, body .woocommerce .woocommerce-MyAccount-navigation #footer .footer-primary-nav ul li.woocommerce-MyAccount-navigation-link--0 li.is-btn .page-template-page-noel a:hover, .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer input.red:hover, .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer body input.add_to_cart_button:hover, body .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer input.add_to_cart_button:hover, .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product .page-template-page-noel #newsletter-form .gform_wrapper .gform_footer input.button:hover, #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input.red:hover, #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel body input.add_to_cart_button:hover, body #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input.add_to_cart_button:hover, #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input.button:hover, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content a.red.button:hover, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content a.button.reset_variations:hover, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content body a.button.add_to_cart_button:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content a.button.add_to_cart_button:hover, .page-template-page-noel .woocommerce body ul.products li.product-block .product-meta .single-product-content a.button:hover, body .page-template-page-noel .woocommerce ul.products li.product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, body .page-template-page-noel .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, body .page-template-page-noel .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, body .page-template-page-noel .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content a.button.woocommerce-remove-coupon:hover, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals a.button.checkout-button:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .cart-collaterals a.button.checkout-button:hover, .page-template-page-noel body .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content a.button.checkout-button:hover, body .page-template-page-noel .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content a.button.checkout-button:hover, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content li.product a.button:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content li.product a.button:hover, .page-template-page-noel body .woocommerce ul.products li.product .product-block .product-meta .single-product-content a.button:hover, body .page-template-page-noel .woocommerce ul.products li.product .product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content a.button.delete:hover, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content a.button.delete:hover, .page-template-page-noel body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit:hover, body .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content a.button.edit:hover, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content a.button.edit:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content li.woocommerce-MyAccount-navigation-link--0 a.button:hover, .page-template-page-noel body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content a.button:hover, body .page-template-page-noel .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content a.button:hover, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.red.button:hover, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.button.reset_variations:hover, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.reset_variations:hover, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel body a.button.add_to_cart_button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.add_to_cart_button:hover, .woocommerce body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, body .woocommerce ul.products li.product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.button.woocommerce-remove-coupon:hover, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .cart-collaterals table.shop_table td a.button.woocommerce-remove-coupon:hover, body .woocommerce .cart-collaterals table.shop_table td ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.woocommerce-remove-coupon:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .cart-collaterals a.button.checkout-button:hover, body .woocommerce .cart-collaterals ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.checkout-button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel li.product a.button:hover, body .woocommerce ul.products li.product .product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button.delete:hover, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.delete:hover, body .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .woocommerce-MyAccount-content .woocommerce-Addresses a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button.edit:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products .product-block .product-meta .single-product-content .page-template-page-noel li.woocommerce-MyAccount-navigation-link--0 a.button:hover, body .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--0 .product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit]:hover, .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button:hover, body .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button:hover, .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button:hover, body .woocommerce ul.products li.product .page-template-page-noel .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input.red[type=submit]:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body input[type=submit].add_to_cart_button:hover, body .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].add_to_cart_button:hover, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body .woocommerce ul.products li.product input[type=submit].button:hover, body .woocommerce ul.products li.product .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].button:hover, .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.red[type=submit]:hover, .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body input[type=submit].add_to_cart_button:hover, body .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].add_to_cart_button:hover, .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce ul.products li.product input[type=submit].button:hover, body .woocommerce ul.products li.product .page-template-page-noel .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit].button:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input.red[type=submit]:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body input[type=submit].add_to_cart_button:hover, body .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].add_to_cart_button:hover, .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel body .woocommerce ul.products li.product input[type=submit].button:hover, body .woocommerce ul.products li.product .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel input[type=submit].button:hover, .page-template-page-noel #code-form .gform_wrapper .gform_footer input.red:hover, .page-template-page-noel #code-form .gform_wrapper .gform_footer body input.add_to_cart_button:hover, body .page-template-page-noel #code-form .gform_wrapper .gform_footer input.add_to_cart_button:hover, .page-template-page-noel #code-form .gform_wrapper .gform_footer body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product .page-template-page-noel #code-form .gform_wrapper .gform_footer input.button:hover, #code-form .gform_wrapper .gform_footer .page-template-page-noel input.red:hover, #code-form .gform_wrapper .gform_footer .page-template-page-noel body input.add_to_cart_button:hover, body #code-form .gform_wrapper .gform_footer .page-template-page-noel input.add_to_cart_button:hover, #code-form .gform_wrapper .gform_footer .page-template-page-noel body .woocommerce ul.products li.product input.button:hover, body .woocommerce ul.products li.product #code-form .gform_wrapper .gform_footer .page-template-page-noel input.button:hover, .page-template-page-noel form#affwp-register-form fieldset p .form .gform_wrapper .gform_footer input.button[type=submit]:hover, form#affwp-register-form fieldset p .form .gform_wrapper .gform_footer .page-template-page-noel input.button[type=submit]:hover, .page-template-page-noel .form .gform_wrapper .gform_footer form#affwp-register-form fieldset p input.button[type=submit]:hover, .form .gform_wrapper .gform_footer form#affwp-register-form fieldset p .page-template-page-noel input.button[type=submit]:hover, .page-template-page-noel .form .gform_wrapper .gform_footer input[type=submit]:hover, .form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit]:hover, .page-template-page-noel #newsletter-form .form .gform_wrapper .gform_footer input[type=submit]:hover, #newsletter-form .form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit]:hover, .page-template-page-noel .form #newsletter-form .gform_wrapper .gform_footer input[type=submit]:hover, .form #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit]:hover, .page-template-page-noel #code-form .form .gform_wrapper .gform_footer input[type=submit]:hover, #code-form .form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit]:hover, .page-template-page-noel .form #code-form .gform_wrapper .gform_footer input[type=submit]:hover, .form #code-form .gform_wrapper .gform_footer .page-template-page-noel input[type=submit]:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn .error404 .hero .the-content a.button:hover, .page-template-page-noel #footer .footer-primary-nav ul li.is-btn .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .page-template-page-noel #footer .footer-primary-nav ul li.is-btn .error404 .hero .woocommerce-product-details__short-description a.button:hover, #footer .footer-primary-nav ul li.is-btn .error404 .hero .the-content .page-template-page-noel a.button:hover, #footer .footer-primary-nav ul li.is-btn .error404 .hero body.single-product .product .woocommerce-product-details__short-description .page-template-page-noel a.button:hover, body.single-product .product #footer .footer-primary-nav ul li.is-btn .error404 .hero .woocommerce-product-details__short-description .page-template-page-noel a.button:hover, .page-template-page-noel .error404 .hero .the-content #footer .footer-primary-nav ul li.is-btn a.button:hover, .page-template-page-noel .error404 .hero body.single-product .product .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button:hover, body.single-product .product .page-template-page-noel .error404 .hero .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn a.button:hover, .error404 .hero .the-content #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description #footer .footer-primary-nav ul li.is-btn .page-template-page-noel a.button:hover, .page-template-page-noel .error404 .hero .the-content a.button:hover, .page-template-page-noel .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .page-template-page-noel .error404 .hero .woocommerce-product-details__short-description a.button:hover, .error404 .hero .the-content .page-template-page-noel a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .page-template-page-noel a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .page-template-page-noel a.button:hover, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .the-content a.button:hover, .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button:hover, body.single-product .product .page-template-page-noel .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .woocommerce-product-details__short-description a.button:hover, .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .the-content .page-template-page-noel a.button:hover, .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero body.single-product .product .woocommerce-product-details__short-description .page-template-page-noel a.button:hover, body.single-product .product .woocommerce ul.products .product-block .product-meta .single-product-content .error404 .hero .woocommerce-product-details__short-description .page-template-page-noel a.button:hover, .page-template-page-noel .error404 .hero .the-content .woocommerce ul.products .product-block .product-meta .single-product-content a.button:hover, .page-template-page-noel .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content a.button:hover, body.single-product .product .page-template-page-noel .error404 .hero .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content a.button:hover, .error404 .hero .the-content .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button:hover, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel a.button:hover {
  background-color: #7940B1 !important;
}
.page-template-page-noel .notice-slider {
  height: 70px;
  overflow: hidden;
}
.page-template-page-noel .notice-slider .notice-boutique.slick-slide {
  background-color: #FA404D !important;
}
.page-template-page-noel .notice-slider .notice-boutique.slick-slide .the-content, .page-template-page-noel .notice-slider .notice-boutique.slick-slide body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .page-template-page-noel .notice-slider .notice-boutique.slick-slide .woocommerce-product-details__short-description {
  opacity: 0;
}
.page-template-page-noel .content-row .row.gutter-140, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-140.gform_fields, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-140.gform_fields,
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-140.gform_fields,
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields, .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-140, #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-140 {
  margin-left: -70px;
  margin-right: -70px;
}
.page-template-page-noel .content-row .row.gutter-140 > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-140.gform_fields > div[class*=col-], .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-140.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-140.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields > div[class*=col-], .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-140 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-140 > div[class*=col-] {
  padding-left: 70px;
  padding-right: 70px;
}
.page-template-page-noel .content-row .row.gutter-24, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-24.gform_fields, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-24.gform_fields,
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-24.gform_fields,
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields, .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-24, #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-24 {
  margin-left: -12px;
  margin-right: -12px;
}
.page-template-page-noel .content-row .row.gutter-24 > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-24.gform_fields > div[class*=col-], .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-24.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-24.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields > div[class*=col-], .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-24 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-24 > div[class*=col-] {
  padding-left: 12px;
  padding-right: 12px;
}
.page-template-page-noel .content-row.xmas-banner .hero-inner img {
  display: inline-block;
}
.page-template-page-noel .content-row.xmas-banner .hero-inner h4 {
  color: #00554A;
  text-transform: uppercase;
  font-size: 30px;
  margin: 10px 0 20px;
}
.page-template-page-noel .content-row.xmas-banner h1 {
  font-size: 50px;
  margin-bottom: 20px;
}
.page-template-page-noel .content-row.xmas-banner h2 {
  font-size: 30px;
}
.page-template-page-noel .content-row.xmas-content-blocks {
  padding-top: 80px;
}
.page-template-page-noel .content-row.xmas-content-blocks:before {
  content: "";
  width: 660px;
  height: 520px;
  background: url(../images/bg-flocon-1.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -400px;
  bottom: 150px;
}
.page-template-page-noel .content-row.xmas-content-blocks:after {
  content: "";
  width: 660px;
  height: 520px;
  background: url(../images/bg-flocon-2.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -400px;
  bottom: 100px;
}
.page-template-page-noel .content-row.xmas-content-blocks .slice-intro.padding-bottom {
  padding-bottom: 30px;
}
.page-template-page-noel .content-row.xmas-content-blocks .slice-intro h3 {
  color: #FA404D;
}
.page-template-page-noel .content-row.xmas-content-blocks .slice-intro h3.subtitle {
  color: #009A7E;
}
.page-template-page-noel .content-row.xmas-content-blocks .countdown-container {
  width: 90%;
  max-width: 360px;
  padding-bottom: 50px;
  position: relative;
  margin: 0 auto;
}
.page-template-page-noel .content-row.xmas-content-blocks .countdown-container:before {
  content: "";
  width: 100%;
  height: 15px;
  background: #DBE7F2;
  position: absolute;
  left: 0;
  top: 21%;
}
.page-template-page-noel .content-row.xmas-content-blocks .countdown-container > div {
  position: relative;
  z-index: 2;
  text-align: center;
  font: normal 20px/100% "rubrik-edge-new", sans-serif;
  padding: 0 25px;
}
.page-template-page-noel .content-row.xmas-content-blocks .countdown-container > div .number {
  background: #FFFFFF;
  font: bold 40px/100% "rubrik-edge-new", sans-serif;
  color: #FA404D;
  -webkit-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.16);
  padding: 20px;
  margin-bottom: 15px;
}
.page-template-page-noel .content-row.xmas-content-blocks .content-block {
  height: 100%;
  padding: 50px 60px;
  text-align: center;
  -webkit-box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
}
.page-template-page-noel .content-row.xmas-content-blocks .content-block .image {
  width: 80%;
  max-width: 190px;
  margin: 0 auto 60px;
  position: relative;
  position: relative;
}
.page-template-page-noel .content-row.xmas-content-blocks .content-block .image:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.page-template-page-noel .content-row.xmas-content-blocks .content-block .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.page-template-page-noel .content-row.xmas-content-blocks .content-block h3 {
  font-size: 30px;
  margin-bottom: 35px;
}
.page-template-page-noel .content-row.xmas-product-slider {
  min-height: calc(100vh - 120px);
  position: relative;
}
.page-template-page-noel .content-row.xmas-product-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - 120px);
  padding: 50px 0;
  align-items: center;
  display: flex;
}
.page-template-page-noel .content-row.xmas-product-slider .slide:not(:first-child) {
  transform: translateY(100%);
}
.page-template-page-noel .content-row.xmas-product-slider .slide .wrapper.big {
  height: auto;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-text h3 {
  font-size: 42px;
  margin-bottom: 40px;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-text .the-content, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .woocommerce-product-details__short-description {
  margin-bottom: 50px;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-text .the-content *, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .product .woocommerce-product-details__short-description *, body.single-product .product .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .woocommerce-product-details__short-description * {
  color: #FFFFFF;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-text .btn.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input.red-outline[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline[type=button], .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input.red-outline[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline[type=button], .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.red-outline.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.wc-forward, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .product .woocommerce-variation-add-to-cart button.red-outline.button, body.single-product .product .woocommerce-variation-add-to-cart .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.red-outline.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.reset_variations, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .product #personnaliser-le-livre form.cart button.red-outline.button, body.single-product .product #personnaliser-le-livre form.cart .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .product .gift_card_template_button button.red-outline.button, body.single-product .product .gift_card_template_button .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .product form.gift-cards_form .gift-cards-list button.red-outline, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body.single-product .woocommerce-message a.red-outline.button, body.single-product .woocommerce-message .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .red-outline.add_to_cart_button, body .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .red-outline.add_to_cart_button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body ul.products li.product-block .product-meta .single-product-content a.red-outline.button, body ul.products li.product-block .product-meta .single-product-content .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .widget .product-search-filter-reset form.product-search-filter-reset-form button.red-outline.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce #payment .form-row.place-order button.red-outline#place_order, body .woocommerce #payment .form-row.place-order .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline#place_order, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red-outline.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.woocommerce-remove-coupon, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.red-outline.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.woocommerce-remove-coupon, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce form.checkout-coupon button.red-outline.button, body .woocommerce form.checkout-coupon .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-form-coupon button.red-outline.button, body .woocommerce .woocommerce-form-coupon .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.red-outline.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .cart-collaterals table.shop_table td a.red-outline.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.woocommerce-remove-coupon, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .cart-collaterals a.red-outline.checkout-button, body .woocommerce .cart-collaterals .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.checkout-button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input.red-outline[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline[type=button], .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-cart-form table.shop_table button.red-outline.button, body .woocommerce .woocommerce-cart-form table.shop_table .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input.red-outline[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline[type=button], .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce ul.products li.product .red-outline.button, body .woocommerce ul.products li.product .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-error a .red-outline.wc-backward, body .woocommerce .woocommerce-error a .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .red-outline.wc-backward, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .ywgc_enter_code p.form-row button.red-outline.button, body .woocommerce .ywgc_enter_code p.form-row .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .return-to-shop a.red-outline, body .woocommerce .return-to-shop .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.red-outline.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.red-outline.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.red-outline.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content form.edit-account button.red-outline.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content a.red-outline.button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.red-outline.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.delete, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content form button.red-outline.button, body .woocommerce .woocommerce-MyAccount-content form .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.red-outline.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.edit, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content a.red-outline.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.woocommerce-button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content table td .red-outline.button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-content button.red-outline, body .woocommerce .woocommerce-MyAccount-content .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.red-outline, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce form.lost_reset_password button.red-outline.button, body .woocommerce form.lost_reset_password .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce form.woocommerce-form-login p.form-row button.red-outline.button, body .woocommerce form.woocommerce-form-login p.form-row .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.red-outline.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .page-template-page-noel .content-row.xmas-product-slider .slide .col-text button.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text form#affwp-register-form fieldset p input.red-outline.button, form#affwp-register-form fieldset p .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .form .gform_wrapper .newsletter-form .gform_body .gform_footer input.red-outline, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .form .gform_wrapper .gform_footer input.red-outline[type=submit], .form .gform_wrapper .gform_footer .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline[type=submit], .page-template-page-noel .content-row.xmas-product-slider .slide .col-text #footer .footer-primary-nav ul li.is-btn a.red-outline, #footer .footer-primary-nav ul li.is-btn .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .error404 .hero .the-content a.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.red-outline.button, body.single-product .product .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .error404 .hero .woocommerce-product-details__short-description a.red-outline.button, .error404 .hero .the-content .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text #newsletter-form .gform_wrapper .gform_footer input.red-outline, #newsletter-form .gform_wrapper .gform_footer .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .woocommerce ul.products .product-block .product-meta .single-product-content a.red-outline.button, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-page-noel .content-row.xmas-product-slider .slide .col-text a.red-outline.button, .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input.red-outline[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline[type=submit], .page-template-page-noel .content-row.xmas-product-slider .slide .col-text .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input.red-outline[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline[type=submit], .page-template-page-noel .content-row.xmas-product-slider .slide .col-text #code-form .gform_wrapper .gform_footer input.red-outline, #code-form .gform_wrapper .gform_footer .page-template-page-noel .content-row.xmas-product-slider .slide .col-text input.red-outline {
  margin-top: 20px;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-image .image {
  width: 100%;
  position: relative;
  position: relative;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-image .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.page-template-page-noel .content-row.xmas-product-slider .slide .col-image .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.page-template-page-noel .content-row.xmas-product-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0px;
  border: 0px;
  width: 14px;
  height: 30px;
  z-index: 5;
  cursor: pointer;
}
.page-template-page-noel .content-row.xmas-product-slider .slick-arrow.slick-prev {
  left: 60px;
  background: transparent url(../images/icon-arrow-prev.svg) no-repeat center center;
  background-size: contain;
}
.page-template-page-noel .content-row.xmas-product-slider .slick-arrow.slick-next {
  right: 60px;
  background: transparent url(../images/icon-arrow-next.svg) no-repeat center center;
  background-size: contain;
}
.page-template-page-noel .content-row.video-module {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  background: #fff;
  z-index: 5;
}
.page-template-page-noel .content-row.video-module:before {
  content: "";
  width: 660px;
  height: 520px;
  background: url(../images/bg-flocon-1.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: -400px;
  top: 175px;
}
.page-template-page-noel .content-row.video-module:after {
  content: "";
  width: 660px;
  height: 520px;
  background: url(../images/bg-flocon-2.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: -400px;
  bottom: 175px;
}
.page-template-page-noel #footer:before {
  background: url(../images/TLTH-Noel-Banniere-v2.jpg) no-repeat center center;
  background-size: cover;
}
.page-template-page-noel #footer > img {
  display: none;
}

.page-template-jeu-de-noel,
.page-template-form-prize,
.page-template-form-confirmation {
  color: white;
  /*
      * Select + Chosen (will apply to gravity forms dropdown automatically)
      */
}
.page-template-jeu-de-noel header,
.page-template-form-prize header,
.page-template-form-confirmation header {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  height: 100vh !important;
  width: 100vw !important;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  background: #FB414D !important;
  border-top: 50px solid #32A37C;
  display: flex;
  flex-direction: column;
  color: white !important;
  padding-top: 25px;
  overflow: hidden;
}
.page-template-jeu-de-noel header .logo-container .logo,
.page-template-form-prize header .logo-container .logo,
.page-template-form-confirmation header .logo-container .logo {
  width: 360px;
  max-width: 50%;
}
.page-template-jeu-de-noel header .logo-container .logo img,
.page-template-form-prize header .logo-container .logo img,
.page-template-form-confirmation header .logo-container .logo img {
  width: 100%;
}
.page-template-jeu-de-noel header .logo-container .language-switcher,
.page-template-form-prize header .logo-container .language-switcher,
.page-template-form-confirmation header .logo-container .language-switcher {
  text-align: right;
}
.page-template-jeu-de-noel header .logo-container .language-switcher li,
.page-template-form-prize header .logo-container .language-switcher li,
.page-template-form-confirmation header .logo-container .language-switcher li {
  list-style: none;
  text-align: right;
  margin-bottom: 20px;
}
.page-template-jeu-de-noel header .logo-container .language-switcher li a,
.page-template-form-prize header .logo-container .language-switcher li a,
.page-template-form-confirmation header .logo-container .language-switcher li a {
  font-size: 15px;
  margin-bottom: 50px;
  padding: 0 10px;
  transition: all 0.3s ease-in-out;
}
.page-template-jeu-de-noel header .logo-container .language-switcher li a:hover,
.page-template-form-prize header .logo-container .language-switcher li a:hover,
.page-template-form-confirmation header .logo-container .language-switcher li a:hover {
  border-color: white;
}
.page-template-jeu-de-noel header .logo-container .language-switcher .back-link,
.page-template-form-prize header .logo-container .language-switcher .back-link,
.page-template-form-confirmation header .logo-container .language-switcher .back-link {
  color: white;
  display: flex;
  gap: 15px;
  align-items: center;
  font: bold 20px "Rubik", sans-serif;
}
.page-template-jeu-de-noel header .header-content,
.page-template-form-prize header .header-content,
.page-template-form-confirmation header .header-content {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 130px;
  height: 100%;
}
.page-template-jeu-de-noel header .header-content .title,
.page-template-form-prize header .header-content .title,
.page-template-form-confirmation header .header-content .title {
  font: 900 30px/100% "fatfrank", sans-serif;
  text-align: center;
  margin-bottom: 30px;
}
.page-template-jeu-de-noel header .header-content .title span,
.page-template-form-prize header .header-content .title span,
.page-template-form-confirmation header .header-content .title span {
  font: 900 64px/100% "fatfrank", sans-serif;
}
.page-template-jeu-de-noel header .header-content p,
.page-template-form-prize header .header-content p,
.page-template-form-confirmation header .header-content p {
  font: normal 20px/140% "Rubik", sans-serif;
  text-align: center;
}
.page-template-jeu-de-noel header .header-content .btn-container,
.page-template-form-prize header .header-content .btn-container,
.page-template-form-confirmation header .header-content .btn-container {
  text-align: center;
}
.page-template-jeu-de-noel header .header-content .btn-container .button,
.page-template-form-prize header .header-content .btn-container .button,
.page-template-form-confirmation header .header-content .btn-container .button {
  margin-top: 50px;
}
.page-template-jeu-de-noel header .header-img,
.page-template-form-prize header .header-img,
.page-template-form-confirmation header .header-img {
  position: absolute;
  bottom: 0;
  max-width: 30%;
  height: auto;
  max-height: 90%;
}
.page-template-jeu-de-noel header .header-img img,
.page-template-form-prize header .header-img img,
.page-template-form-confirmation header .header-img img {
  display: block;
}
.page-template-jeu-de-noel header .header-img.left,
.page-template-form-prize header .header-img.left,
.page-template-form-confirmation header .header-img.left {
  left: 0;
}
.page-template-jeu-de-noel header .header-img.right,
.page-template-form-prize header .header-img.right,
.page-template-form-confirmation header .header-img.right {
  right: 0;
}
.page-template-jeu-de-noel .header-content.mobile,
.page-template-form-prize .header-content.mobile,
.page-template-form-confirmation .header-content.mobile {
  display: none;
}
.page-template-jeu-de-noel .the-content *:last-child, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description *:last-child, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description *:last-child,
.page-template-form-prize .the-content *:last-child,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description *:last-child,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description *:last-child,
.page-template-form-confirmation .the-content *:last-child,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description *:last-child,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description *:last-child {
  margin-bottom: 0;
}
.page-template-jeu-de-noel .the-content ul, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description ul, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description ul,
.page-template-form-prize .the-content ul,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description ul,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description ul,
.page-template-form-confirmation .the-content ul,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description ul,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 20px;
}
.page-template-jeu-de-noel .the-content ol, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description ol, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description ol,
.page-template-form-prize .the-content ol,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description ol,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description ol,
.page-template-form-confirmation .the-content ol,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description ol,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.page-template-jeu-de-noel .the-content ul ul, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description ul ul, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description ul ul, .page-template-jeu-de-noel .the-content ol ul, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description ol ul, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description ol ul,
.page-template-form-prize .the-content ul ul,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description ul ul,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description ul ul,
.page-template-form-prize .the-content ol ul,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description ol ul,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description ol ul,
.page-template-form-confirmation .the-content ul ul,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description ul ul,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description ul ul,
.page-template-form-confirmation .the-content ol ul,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description ol ul,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.page-template-jeu-de-noel .the-content ol ol, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description ol ol, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description ol ol, .page-template-jeu-de-noel .the-content ul ol, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description ul ol, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description ul ol,
.page-template-form-prize .the-content ol ol,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description ol ol,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description ol ol,
.page-template-form-prize .the-content ul ol,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description ul ol,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description ul ol,
.page-template-form-confirmation .the-content ol ol,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description ol ol,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description ol ol,
.page-template-form-confirmation .the-content ul ol,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description ul ol,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.page-template-jeu-de-noel .the-content li, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description li, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description li,
.page-template-form-prize .the-content li,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description li,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description li,
.page-template-form-confirmation .the-content li,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description li,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description li {
  position: relative;
  padding-left: 30px;
  font: normal 18px/120% "Mont", sans-serif;
  list-style: none;
  margin-bottom: 15px;
}
.page-template-jeu-de-noel .the-content li:before, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description li:before, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description li:before,
.page-template-form-prize .the-content li:before,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description li:before,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description li:before,
.page-template-form-confirmation .the-content li:before,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description li:before,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description li:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 6px;
  background-color: #AA1A47;
}
.page-template-jeu-de-noel .the-content h3, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description h3, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description h3,
.page-template-form-prize .the-content h3,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description h3,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description h3,
.page-template-form-confirmation .the-content h3,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description h3,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description h3 {
  font: bold 30px/120% "Mont", sans-serif;
}
.page-template-jeu-de-noel .the-content h4, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description h4, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description h4,
.page-template-form-prize .the-content h4,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description h4,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description h4,
.page-template-form-confirmation .the-content h4,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description h4,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description h4 {
  font: bold 22px/120% "Mont", sans-serif;
  margin-bottom: 40px;
}
.page-template-jeu-de-noel .the-content p, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description p, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description p,
.page-template-form-prize .the-content p,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description p,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description p,
.page-template-form-confirmation .the-content p,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description p,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description p {
  font: normal 18px/160% "Rubik", sans-serif;
  margin-bottom: 1em;
}
.page-template-jeu-de-noel .the-content p sup, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description p sup, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description p sup,
.page-template-form-prize .the-content p sup,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description p sup,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description p sup,
.page-template-form-confirmation .the-content p sup,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description p sup,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description p sup {
  font-size: 0.5em;
}
.page-template-jeu-de-noel .the-content p a, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description p a, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description p a,
.page-template-form-prize .the-content p a,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description p a,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description p a,
.page-template-form-confirmation .the-content p a,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description p a,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description p a {
  font-weight: bold;
  color: #AA1A47;
  transition: all 0.3s ease-in-out;
}
.page-template-jeu-de-noel .the-content p a:hover, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description p a:hover, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description p a:hover,
.page-template-form-prize .the-content p a:hover,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description p a:hover,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description p a:hover,
.page-template-form-confirmation .the-content p a:hover,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description p a:hover,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description p a:hover {
  color: #32A37C;
}
.page-template-jeu-de-noel .the-content p a.button, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description p a.button, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description p a.button,
.page-template-form-prize .the-content p a.button,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description p a.button,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description p a.button,
.page-template-form-confirmation .the-content p a.button,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description p a.button,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description p a.button {
  color: white;
}
.page-template-jeu-de-noel .the-content sup, .page-template-jeu-de-noel body.single-product .product .woocommerce-product-details__short-description sup, body.single-product .product .page-template-jeu-de-noel .woocommerce-product-details__short-description sup,
.page-template-form-prize .the-content sup,
.page-template-form-prize body.single-product .product .woocommerce-product-details__short-description sup,
body.single-product .product .page-template-form-prize .woocommerce-product-details__short-description sup,
.page-template-form-confirmation .the-content sup,
.page-template-form-confirmation body.single-product .product .woocommerce-product-details__short-description sup,
body.single-product .product .page-template-form-confirmation .woocommerce-product-details__short-description sup {
  font-size: 0.5em;
}
.page-template-jeu-de-noel h2,
.page-template-form-prize h2,
.page-template-form-confirmation h2 {
  font-size: 40px;
  line-height: 110%;
  font-family: "Mont", sans-serif;
  margin-bottom: 40px;
}
.page-template-jeu-de-noel .button,
.page-template-form-prize .button,
.page-template-form-confirmation .button {
  font: bold 20px/100% "Rubik", sans-serif !important;
  color: white;
  text-align: center;
  padding: 15px 45px;
  background: #32A37C;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 0px;
  border-radius: 50px;
  -webkit-box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
}
.page-template-jeu-de-noel .button span,
.page-template-form-prize .button span,
.page-template-form-confirmation .button span {
  color: white;
  transition: all 0.3s ease-in-out;
}
.page-template-jeu-de-noel .button:hover,
.page-template-form-prize .button:hover,
.page-template-form-confirmation .button:hover {
  background: #09956F;
  color: white;
}
.page-template-jeu-de-noel .button:hover span,
.page-template-form-prize .button:hover span,
.page-template-form-confirmation .button:hover span {
  color: white;
}
.page-template-jeu-de-noel .button.reverse, .page-template-jeu-de-noel #footer .footer-primary-nav ul li.is-btn a.button, #footer .footer-primary-nav ul li.is-btn .page-template-jeu-de-noel a.button,
.page-template-form-prize .button.reverse,
.page-template-form-prize #footer .footer-primary-nav ul li.is-btn a.button,
#footer .footer-primary-nav ul li.is-btn .page-template-form-prize a.button,
.page-template-form-confirmation .button.reverse,
.page-template-form-confirmation #footer .footer-primary-nav ul li.is-btn a.button,
#footer .footer-primary-nav ul li.is-btn .page-template-form-confirmation a.button {
  background: #FB414D;
}
.page-template-jeu-de-noel .button.reverse:hover, .page-template-jeu-de-noel #footer .footer-primary-nav ul li.is-btn a.button:hover, #footer .footer-primary-nav ul li.is-btn .page-template-jeu-de-noel a.button:hover,
.page-template-form-prize .button.reverse:hover,
.page-template-form-prize #footer .footer-primary-nav ul li.is-btn a.button:hover,
#footer .footer-primary-nav ul li.is-btn .page-template-form-prize a.button:hover,
.page-template-form-confirmation .button.reverse:hover,
.page-template-form-confirmation #footer .footer-primary-nav ul li.is-btn a.button:hover,
#footer .footer-primary-nav ul li.is-btn .page-template-form-confirmation a.button:hover {
  background: #32A37C;
}
.page-template-jeu-de-noel .button.reverse:hover span, .page-template-jeu-de-noel #footer .footer-primary-nav ul li.is-btn a.button:hover span, #footer .footer-primary-nav ul li.is-btn .page-template-jeu-de-noel a.button:hover span,
.page-template-form-prize .button.reverse:hover span,
.page-template-form-prize #footer .footer-primary-nav ul li.is-btn a.button:hover span,
#footer .footer-primary-nav ul li.is-btn .page-template-form-prize a.button:hover span,
.page-template-form-confirmation .button.reverse:hover span,
.page-template-form-confirmation #footer .footer-primary-nav ul li.is-btn a.button:hover span,
#footer .footer-primary-nav ul li.is-btn .page-template-form-confirmation a.button:hover span {
  color: white;
}
.page-template-jeu-de-noel .wrapper,
.page-template-form-prize .wrapper,
.page-template-form-confirmation .wrapper {
  position: relative;
  width: calc(100% - 60px);
  max-width: 1450px;
  margin: 0 auto;
  height: auto;
}
.page-template-jeu-de-noel .wrapper.small, .page-template-jeu-de-noel body.single-product .product form.gift-cards_form .gift-cards-list button.wrapper, body.single-product .product form.gift-cards_form .gift-cards-list .page-template-jeu-de-noel button.wrapper, .page-template-jeu-de-noel body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.wrapper.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-jeu-de-noel a.wrapper.delete, .page-template-jeu-de-noel body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.wrapper.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-jeu-de-noel a.wrapper.edit, .page-template-jeu-de-noel body .woocommerce .woocommerce-MyAccount-content table td .wrapper.button, body .woocommerce .woocommerce-MyAccount-content table td .page-template-jeu-de-noel .wrapper.button, .page-template-jeu-de-noel body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wrapper, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-jeu-de-noel a.wrapper, .page-template-jeu-de-noel .img-icon-split .icon-block .wrapper.the-content, .page-template-jeu-de-noel .img-icon-split .icon-block body.single-product .product .wrapper.woocommerce-product-details__short-description, body.single-product .product .page-template-jeu-de-noel .img-icon-split .icon-block .wrapper.woocommerce-product-details__short-description, .img-icon-split .icon-block .page-template-jeu-de-noel .wrapper.the-content, .img-icon-split .icon-block .page-template-jeu-de-noel body.single-product .product .wrapper.woocommerce-product-details__short-description, body.single-product .product .img-icon-split .icon-block .page-template-jeu-de-noel .wrapper.woocommerce-product-details__short-description, .page-template-jeu-de-noel #footer .footer-primary-nav ul li.is-btn a.wrapper, #footer .footer-primary-nav ul li.is-btn .page-template-jeu-de-noel a.wrapper, .page-template-jeu-de-noel .woocommerce ul.products .product-block .product-meta .single-product-content a.wrapper.button, .woocommerce ul.products .product-block .product-meta .single-product-content .page-template-jeu-de-noel a.wrapper.button,
.page-template-form-prize .wrapper.small,
.page-template-form-prize body.single-product .product form.gift-cards_form .gift-cards-list button.wrapper,
body.single-product .product form.gift-cards_form .gift-cards-list .page-template-form-prize button.wrapper,
.page-template-form-prize body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.wrapper.delete,
body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-form-prize a.wrapper.delete,
.page-template-form-prize body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.wrapper.edit,
body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-form-prize a.wrapper.edit,
.page-template-form-prize body .woocommerce .woocommerce-MyAccount-content table td .wrapper.button,
body .woocommerce .woocommerce-MyAccount-content table td .page-template-form-prize .wrapper.button,
.page-template-form-prize body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wrapper,
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-form-prize a.wrapper,
.page-template-form-prize .img-icon-split .icon-block .wrapper.the-content,
.page-template-form-prize .img-icon-split .icon-block body.single-product .product .wrapper.woocommerce-product-details__short-description,
body.single-product .product .page-template-form-prize .img-icon-split .icon-block .wrapper.woocommerce-product-details__short-description,
.img-icon-split .icon-block .page-template-form-prize .wrapper.the-content,
.img-icon-split .icon-block .page-template-form-prize body.single-product .product .wrapper.woocommerce-product-details__short-description,
body.single-product .product .img-icon-split .icon-block .page-template-form-prize .wrapper.woocommerce-product-details__short-description,
.page-template-form-prize #footer .footer-primary-nav ul li.is-btn a.wrapper,
#footer .footer-primary-nav ul li.is-btn .page-template-form-prize a.wrapper,
.page-template-form-prize .woocommerce ul.products .product-block .product-meta .single-product-content a.wrapper.button,
.woocommerce ul.products .product-block .product-meta .single-product-content .page-template-form-prize a.wrapper.button,
.page-template-form-confirmation .wrapper.small,
.page-template-form-confirmation body.single-product .product form.gift-cards_form .gift-cards-list button.wrapper,
body.single-product .product form.gift-cards_form .gift-cards-list .page-template-form-confirmation button.wrapper,
.page-template-form-confirmation body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.wrapper.delete,
body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .page-template-form-confirmation a.wrapper.delete,
.page-template-form-confirmation body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.wrapper.edit,
body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .page-template-form-confirmation a.wrapper.edit,
.page-template-form-confirmation body .woocommerce .woocommerce-MyAccount-content table td .wrapper.button,
body .woocommerce .woocommerce-MyAccount-content table td .page-template-form-confirmation .wrapper.button,
.page-template-form-confirmation body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a.wrapper,
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .page-template-form-confirmation a.wrapper,
.page-template-form-confirmation .img-icon-split .icon-block .wrapper.the-content,
.page-template-form-confirmation .img-icon-split .icon-block body.single-product .product .wrapper.woocommerce-product-details__short-description,
body.single-product .product .page-template-form-confirmation .img-icon-split .icon-block .wrapper.woocommerce-product-details__short-description,
.img-icon-split .icon-block .page-template-form-confirmation .wrapper.the-content,
.img-icon-split .icon-block .page-template-form-confirmation body.single-product .product .wrapper.woocommerce-product-details__short-description,
body.single-product .product .img-icon-split .icon-block .page-template-form-confirmation .wrapper.woocommerce-product-details__short-description,
.page-template-form-confirmation #footer .footer-primary-nav ul li.is-btn a.wrapper,
#footer .footer-primary-nav ul li.is-btn .page-template-form-confirmation a.wrapper,
.page-template-form-confirmation .woocommerce ul.products .product-block .product-meta .single-product-content a.wrapper.button,
.woocommerce ul.products .product-block .product-meta .single-product-content .page-template-form-confirmation a.wrapper.button {
  max-width: 750px;
}
.page-template-jeu-de-noel .wrapper.medium,
.page-template-form-prize .wrapper.medium,
.page-template-form-confirmation .wrapper.medium {
  max-width: 1060px;
}
.page-template-jeu-de-noel .wrapper.large,
.page-template-form-prize .wrapper.large,
.page-template-form-confirmation .wrapper.large {
  max-width: 1760px;
}
.page-template-jeu-de-noel .wrapper.full,
.page-template-form-prize .wrapper.full,
.page-template-form-confirmation .wrapper.full {
  width: 100%;
  max-width: 100%;
}
.page-template-jeu-de-noel .wrapper .the-content, .page-template-jeu-de-noel .wrapper body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .page-template-jeu-de-noel .wrapper .woocommerce-product-details__short-description,
.page-template-form-prize .wrapper .the-content,
.page-template-form-prize .wrapper body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-prize .wrapper .woocommerce-product-details__short-description,
.page-template-form-confirmation .wrapper .the-content,
.page-template-form-confirmation .wrapper body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-confirmation .wrapper .woocommerce-product-details__short-description {
  max-width: 1080px;
}
.page-template-jeu-de-noel .row.gutter-80, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gutter-80.gform_fields, .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-80, #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-80,
.page-template-form-prize .row.gutter-80,
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gutter-80.gform_fields,
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-80,
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-80,
.page-template-form-confirmation .row.gutter-80,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gutter-80.gform_fields,
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-80,
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-80 {
  margin-left: -40px;
  margin-right: -40px;
}
.page-template-jeu-de-noel .row.gutter-80 > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-80.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gutter-80.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-jeu-de-noel .gutter-80.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-jeu-de-noel .gutter-80.gform_fields > div[class*=col-], .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-80 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-80 > div[class*=col-],
.page-template-form-prize .row.gutter-80 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-prize .gutter-80.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .gutter-80.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-form-prize .gutter-80.gform_fields > div[class*=col-],
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-80 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-80 > div[class*=col-],
.page-template-form-confirmation .row.gutter-80 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-confirmation .gutter-80.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-form-confirmation .gutter-80.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .gutter-80.gform_fields > div[class*=col-],
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-80 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-80 > div[class*=col-] {
  padding-left: 40px;
  padding-right: 40px;
}
.page-template-jeu-de-noel .row.gutter-100, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gutter-100.gform_fields, .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-100, #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-100,
.page-template-form-prize .row.gutter-100,
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gutter-100.gform_fields,
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-100,
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-100,
.page-template-form-confirmation .row.gutter-100,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gutter-100.gform_fields,
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-100,
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-100 {
  margin-left: -50px;
  margin-right: -50px;
}
.page-template-jeu-de-noel .row.gutter-100 > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-100.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gutter-100.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-jeu-de-noel .gutter-100.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-jeu-de-noel .gutter-100.gform_fields > div[class*=col-], .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-100 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-100 > div[class*=col-],
.page-template-form-prize .row.gutter-100 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-prize .gutter-100.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .gutter-100.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-form-prize .gutter-100.gform_fields > div[class*=col-],
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-100 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-100 > div[class*=col-],
.page-template-form-confirmation .row.gutter-100 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-confirmation .gutter-100.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-form-confirmation .gutter-100.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .gutter-100.gform_fields > div[class*=col-],
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-100 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-100 > div[class*=col-] {
  padding-left: 50px;
  padding-right: 50px;
}
.page-template-jeu-de-noel .row.gutter-120, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gutter-120.gform_fields, .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-120, #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-120,
.page-template-form-prize .row.gutter-120,
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gutter-120.gform_fields,
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-120,
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-120,
.page-template-form-confirmation .row.gutter-120,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gutter-120.gform_fields,
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-120,
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-120 {
  margin-left: -60px;
  margin-right: -60px;
}
.page-template-jeu-de-noel .row.gutter-120 > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-120.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gutter-120.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-jeu-de-noel .gutter-120.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-jeu-de-noel .gutter-120.gform_fields > div[class*=col-], .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-120 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-120 > div[class*=col-],
.page-template-form-prize .row.gutter-120 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-prize .gutter-120.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .gutter-120.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-form-prize .gutter-120.gform_fields > div[class*=col-],
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-120 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-120 > div[class*=col-],
.page-template-form-confirmation .row.gutter-120 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-confirmation .gutter-120.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-form-confirmation .gutter-120.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .gutter-120.gform_fields > div[class*=col-],
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-120 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-120 > div[class*=col-] {
  padding-left: 60px;
  padding-right: 60px;
}
.page-template-jeu-de-noel #main,
.page-template-form-prize #main,
.page-template-form-confirmation #main {
  margin-bottom: 0px !important;
  padding-top: 100px !important;
  background-color: #32A37C;
}
.page-template-jeu-de-noel .slice .slice-intro,
.page-template-form-prize .slice .slice-intro,
.page-template-form-confirmation .slice .slice-intro {
  padding-top: 90px;
  margin-bottom: 90px;
}
.page-template-jeu-de-noel .slice .slice-intro .icon,
.page-template-form-prize .slice .slice-intro .icon,
.page-template-form-confirmation .slice .slice-intro .icon {
  margin-bottom: 20px;
}
.page-template-jeu-de-noel .slice .title,
.page-template-form-prize .slice .title,
.page-template-form-confirmation .slice .title {
  font: 40px/120% "Mont Bold", sans-serif;
  line-height: 55px;
  color: white;
}
.page-template-jeu-de-noel .slice .title p,
.page-template-form-prize .slice .title p,
.page-template-form-confirmation .slice .title p {
  font: 40px/120% "Mont Bold", sans-serif;
  line-height: 55px;
  max-width: 100%;
}
.page-template-jeu-de-noel .slice .title .bigText,
.page-template-form-prize .slice .title .bigText,
.page-template-form-confirmation .slice .title .bigText {
  font: 70px/100% "Mont Bold", sans-serif;
}
.page-template-jeu-de-noel .slice.grey-bg,
.page-template-form-prize .slice.grey-bg,
.page-template-form-confirmation .slice.grey-bg {
  background: #EFF2F5;
}
.page-template-jeu-de-noel .slice .the-content, .page-template-jeu-de-noel .slice body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .page-template-jeu-de-noel .slice .woocommerce-product-details__short-description,
.page-template-form-prize .slice .the-content,
.page-template-form-prize .slice body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-prize .slice .woocommerce-product-details__short-description,
.page-template-form-confirmation .slice .the-content,
.page-template-form-confirmation .slice body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-confirmation .slice .woocommerce-product-details__short-description {
  margin-bottom: 40px;
}
.page-template-jeu-de-noel .slice .button-container,
.page-template-form-prize .slice .button-container,
.page-template-form-confirmation .slice .button-container {
  padding-top: 20px;
}
.page-template-jeu-de-noel .page-transition,
.page-template-form-prize .page-transition,
.page-template-form-confirmation .page-transition {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 130%;
  width: 130%;
  z-index: 999;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease-in-out 0.5s;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 0;
}
.page-template-jeu-de-noel .page-transition .transition-square,
.page-template-form-prize .page-transition .transition-square,
.page-template-form-confirmation .page-transition .transition-square {
  width: calc(100% / 10);
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  background-color: #AA1A47;
}
.page-template-jeu-de-noel .page-transition .transition-square:after,
.page-template-form-prize .page-transition .transition-square:after,
.page-template-form-confirmation .page-transition .transition-square:after {
  content: "";
  padding-top: 100%;
  width: 100%;
  display: block;
}
.page-template-jeu-de-noel .page-transition .transition-logo,
.page-template-form-prize .page-transition .transition-logo,
.page-template-form-confirmation .page-transition .transition-logo {
  background: url(https://infosignmedia.agencerubik.dev/wp-content/uploads/2022/05/infosignmedia-logo.svg) no-repeat center center;
  background-size: 70% auto;
  position: fixed;
  width: 550px;
  height: 550px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0.8s;
  z-index: 999999;
}
.page-template-jeu-de-noel .page-transition.out,
.page-template-form-prize .page-transition.out,
.page-template-form-confirmation .page-transition.out {
  pointer-events: none;
}
.page-template-jeu-de-noel .page-transition.out .transition-logo,
.page-template-form-prize .page-transition.out .transition-logo,
.page-template-form-confirmation .page-transition.out .transition-logo {
  opacity: 0;
  transition: all 0.3s ease-in-out 0.2s;
}
.page-template-jeu-de-noel .centered-text .the-content, .page-template-jeu-de-noel .centered-text body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .page-template-jeu-de-noel .centered-text .woocommerce-product-details__short-description,
.page-template-form-prize .centered-text .the-content,
.page-template-form-prize .centered-text body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-prize .centered-text .woocommerce-product-details__short-description,
.page-template-form-confirmation .centered-text .the-content,
.page-template-form-confirmation .centered-text body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-confirmation .centered-text .woocommerce-product-details__short-description {
  margin: auto;
}
.page-template-jeu-de-noel .game-infos,
.page-template-form-prize .game-infos,
.page-template-form-confirmation .game-infos {
  padding-bottom: 100px;
}
.page-template-jeu-de-noel .game-notice .big-title p,
.page-template-form-prize .game-notice .big-title p,
.page-template-form-confirmation .game-notice .big-title p {
  font: 900 50px/100% "fatfrank", sans-serif !important;
}
.page-template-jeu-de-noel .game-infos .big-title p, .page-template-jeu-de-noel .game-notice .big-title p,
.page-template-form-prize .game-infos .big-title p,
.page-template-form-prize .game-notice .big-title p,
.page-template-form-confirmation .game-infos .big-title p,
.page-template-form-confirmation .game-notice .big-title p {
  font: 50px/100% "Mont", sans-serif;
}
.page-template-jeu-de-noel .game-infos p, .page-template-jeu-de-noel .game-notice p,
.page-template-form-prize .game-infos p,
.page-template-form-prize .game-notice p,
.page-template-form-confirmation .game-infos p,
.page-template-form-confirmation .game-notice p {
  max-width: 873px;
  font-size: 18px;
  margin: 0 auto;
  text-align: center;
}
.page-template-jeu-de-noel .game-infos p strong, .page-template-jeu-de-noel .game-notice p strong,
.page-template-form-prize .game-infos p strong,
.page-template-form-prize .game-notice p strong,
.page-template-form-confirmation .game-infos p strong,
.page-template-form-confirmation .game-notice p strong {
  font: 18px/100% "Mont Bold", sans-serif !important;
}
.page-template-jeu-de-noel .game-infos p.disclaimer, .page-template-jeu-de-noel .game-notice p.disclaimer,
.page-template-form-prize .game-infos p.disclaimer,
.page-template-form-prize .game-notice p.disclaimer,
.page-template-form-confirmation .game-infos p.disclaimer,
.page-template-form-confirmation .game-notice p.disclaimer {
  margin-top: 30px;
  font-size: 14px;
}
.page-template-jeu-de-noel .game-infos table, .page-template-jeu-de-noel .game-infos th, .page-template-jeu-de-noel .game-infos td, .page-template-jeu-de-noel .game-notice table, .page-template-jeu-de-noel .game-notice th, .page-template-jeu-de-noel .game-notice td,
.page-template-form-prize .game-infos table,
.page-template-form-prize .game-infos th,
.page-template-form-prize .game-infos td,
.page-template-form-prize .game-notice table,
.page-template-form-prize .game-notice th,
.page-template-form-prize .game-notice td,
.page-template-form-confirmation .game-infos table,
.page-template-form-confirmation .game-infos th,
.page-template-form-confirmation .game-infos td,
.page-template-form-confirmation .game-notice table,
.page-template-form-confirmation .game-notice th,
.page-template-form-confirmation .game-notice td {
  border: 2px solid white;
  border-collapse: collapse;
  padding: 20px;
}
.page-template-jeu-de-noel .col-game .title,
.page-template-form-prize .col-game .title,
.page-template-form-confirmation .col-game .title {
  font: 900 30px/160% "fatfrank", sans-serif;
}
.page-template-jeu-de-noel .col-game .title span,
.page-template-form-prize .col-game .title span,
.page-template-form-confirmation .col-game .title span {
  font-size: 64px;
}
.page-template-jeu-de-noel .prize-container,
.page-template-form-prize .prize-container,
.page-template-form-confirmation .prize-container {
  border: 2px solid white;
  border-radius: 25px;
  padding: 55px 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
  height: 100%;
}
.page-template-jeu-de-noel .prize-container .prizes-title,
.page-template-form-prize .prize-container .prizes-title,
.page-template-form-confirmation .prize-container .prizes-title {
  width: 100%;
  font: 900 40px/100% "fatfrank", sans-serif;
}
.page-template-jeu-de-noel .prize-container .prize-block,
.page-template-form-prize .prize-container .prize-block,
.page-template-form-confirmation .prize-container .prize-block {
  text-align: center;
  width: calc(50% - 7.5px);
}
.page-template-jeu-de-noel .prize-container .prize-block h3,
.page-template-form-prize .prize-container .prize-block h3,
.page-template-form-confirmation .prize-container .prize-block h3 {
  font: 500 20px/120% "Rubik", sans-serif;
}
.page-template-jeu-de-noel .prize-container .prize-block p,
.page-template-form-prize .prize-container .prize-block p,
.page-template-form-confirmation .prize-container .prize-block p {
  font: 400 14px/120% "Rubik", sans-serif;
}
.page-template-jeu-de-noel .game .game-content,
.page-template-form-prize .game .game-content,
.page-template-form-confirmation .game .game-content {
  gap: 20px;
}
.page-template-jeu-de-noel .game .card-holder,
.page-template-form-prize .game .card-holder,
.page-template-form-confirmation .game .card-holder {
  width: calc(25% - 15px);
}
.page-template-jeu-de-noel .game .card-holder img,
.page-template-form-prize .game .card-holder img,
.page-template-form-confirmation .game .card-holder img {
  display: block;
}
.page-template-jeu-de-noel .winner, .page-template-jeu-de-noel .loser,
.page-template-form-prize .winner,
.page-template-form-prize .loser,
.page-template-form-confirmation .winner,
.page-template-form-confirmation .loser {
  text-align: center;
}
.page-template-jeu-de-noel .winner .big-title, .page-template-jeu-de-noel .loser .big-title,
.page-template-form-prize .winner .big-title,
.page-template-form-prize .loser .big-title,
.page-template-form-confirmation .winner .big-title,
.page-template-form-confirmation .loser .big-title {
  font: 50px/100% "fatfrank", sans-serif;
}
.page-template-jeu-de-noel .winner > p:last-of-type, .page-template-jeu-de-noel .loser > p:last-of-type,
.page-template-form-prize .winner > p:last-of-type,
.page-template-form-prize .loser > p:last-of-type,
.page-template-form-confirmation .winner > p:last-of-type,
.page-template-form-confirmation .loser > p:last-of-type {
  margin-bottom: 50px;
  font: 14px/100% "Mont", sans-serif;
}
.page-template-jeu-de-noel .winner .prize-container, .page-template-jeu-de-noel .loser .prize-container,
.page-template-form-prize .winner .prize-container,
.page-template-form-prize .loser .prize-container,
.page-template-form-confirmation .winner .prize-container,
.page-template-form-confirmation .loser .prize-container {
  border: 0px;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
}
.page-template-jeu-de-noel .winner .prize-container p, .page-template-jeu-de-noel .loser .prize-container p,
.page-template-form-prize .winner .prize-container p,
.page-template-form-prize .loser .prize-container p,
.page-template-form-confirmation .winner .prize-container p,
.page-template-form-confirmation .loser .prize-container p {
  margin-top: 15px;
  display: inline-block;
}
.page-template-jeu-de-noel .winner .prize-container p strong, .page-template-jeu-de-noel .loser .prize-container p strong,
.page-template-form-prize .winner .prize-container p strong,
.page-template-form-prize .loser .prize-container p strong,
.page-template-form-confirmation .winner .prize-container p strong,
.page-template-form-confirmation .loser .prize-container p strong {
  font-family: "Mont Bold", sans-serif;
}
.page-template-jeu-de-noel .winner .prize-container .winner-text-container h2, .page-template-jeu-de-noel .winner .prize-container .winner-text-container h3, .page-template-jeu-de-noel .winner .prize-container .winner-text-container h4, .page-template-jeu-de-noel .loser .prize-container .winner-text-container h2, .page-template-jeu-de-noel .loser .prize-container .winner-text-container h3, .page-template-jeu-de-noel .loser .prize-container .winner-text-container h4,
.page-template-form-prize .winner .prize-container .winner-text-container h2,
.page-template-form-prize .winner .prize-container .winner-text-container h3,
.page-template-form-prize .winner .prize-container .winner-text-container h4,
.page-template-form-prize .loser .prize-container .winner-text-container h2,
.page-template-form-prize .loser .prize-container .winner-text-container h3,
.page-template-form-prize .loser .prize-container .winner-text-container h4,
.page-template-form-confirmation .winner .prize-container .winner-text-container h2,
.page-template-form-confirmation .winner .prize-container .winner-text-container h3,
.page-template-form-confirmation .winner .prize-container .winner-text-container h4,
.page-template-form-confirmation .loser .prize-container .winner-text-container h2,
.page-template-form-confirmation .loser .prize-container .winner-text-container h3,
.page-template-form-confirmation .loser .prize-container .winner-text-container h4 {
  font: 900 30px/100% "fatfrank", sans-serif;
}
.page-template-jeu-de-noel .winner .prize-container .winner-text-container p, .page-template-jeu-de-noel .loser .prize-container .winner-text-container p,
.page-template-form-prize .winner .prize-container .winner-text-container p,
.page-template-form-prize .loser .prize-container .winner-text-container p,
.page-template-form-confirmation .winner .prize-container .winner-text-container p,
.page-template-form-confirmation .loser .prize-container .winner-text-container p {
  font: normal 14px/120% "Mont", sans-serif;
}
.page-template-jeu-de-noel #prize,
.page-template-form-prize #prize,
.page-template-form-confirmation #prize {
  padding-bottom: 100px;
}
.page-template-jeu-de-noel .confirmation,
.page-template-form-prize .confirmation,
.page-template-form-confirmation .confirmation {
  padding: 100px 0 175px;
  margin: 0 auto;
}
.page-template-jeu-de-noel .confirmation .big-title,
.page-template-form-prize .confirmation .big-title,
.page-template-form-confirmation .confirmation .big-title {
  font: 900 64px/100% "fatfrank", sans-serif;
  margin-bottom: 25px;
}
.page-template-jeu-de-noel .confirmation p,
.page-template-form-prize .confirmation p,
.page-template-form-confirmation .confirmation p {
  font-size: 18px;
}
.page-template-jeu-de-noel .wrapper.mobile, .page-template-jeu-de-noel .game-notice,
.page-template-form-prize .wrapper.mobile,
.page-template-form-prize .game-notice,
.page-template-form-confirmation .wrapper.mobile,
.page-template-form-confirmation .game-notice {
  display: none;
}
.page-template-jeu-de-noel .gform_wrapper.gravity-theme .gform_fields,
.page-template-form-prize .gform_wrapper.gravity-theme .gform_fields,
.page-template-form-confirmation .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 0% !important;
}
.page-template-jeu-de-noel form .gform_body .gform_fields,
.page-template-form-prize form .gform_body .gform_fields,
.page-template-form-confirmation form .gform_body .gform_fields {
  margin: 0 !important;
  grid-row-gap: 25px !important;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield_visibility_hidden,
.page-template-form-prize form .gform_body .gform_fields .gfield_visibility_hidden,
.page-template-form-confirmation form .gform_body .gform_fields .gfield_visibility_hidden {
  display: none;
}
.page-template-jeu-de-noel form .gform_body .gform_fields fieldset,
.page-template-form-prize form .gform_body .gform_fields fieldset,
.page-template-form-confirmation form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield,
.page-template-form-prize form .gform_body .gform_fields .gfield,
.page-template-form-confirmation form .gform_body .gform_fields .gfield {
  position: relative;
  margin-bottom: 0px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield:last-child,
.page-template-form-prize form .gform_body .gform_fields .gfield:last-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield:last-child {
  margin-bottom: 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield:last-child .ginput_container,
.page-template-form-prize form .gform_body .gform_fields .gfield:last-child .ginput_container,
.page-template-form-confirmation form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield:last-child .ginput_container input, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield:last-child .ginput_container textarea,
.page-template-form-prize form .gform_body .gform_fields .gfield:last-child .ginput_container input,
.page-template-form-prize form .gform_body .gform_fields .gfield:last-child .ginput_container textarea,
.page-template-form-confirmation form .gform_body .gform_fields .gfield:last-child .ginput_container input,
.page-template-form-confirmation form .gform_body .gform_fields .gfield:last-child .ginput_container textarea {
  margin-bottom: 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gfield_label,
.page-template-form-prize form .gform_body .gform_fields .gfield .gfield_label,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: normal 18px/20px sans-serif;
  margin-bottom: 10px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex,
.page-template-form-prize form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 20px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gfield_label .gfield_required,
.page-template-form-prize form .gform_body .gform_fields .gfield .gfield_label .gfield_required,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield.hidden_label label, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.hidden_label .gfield_label,
.page-template-form-prize form .gform_body .gform_fields .gfield.hidden_label label,
.page-template-form-prize form .gform_body .gform_fields .gfield.hidden_label .gfield_label,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.hidden_label label,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gfield_description,
.page-template-form-prize form .gform_body .gform_fields .gfield .gfield_description,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gfield_description {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gform_validation_container,
.page-template-form-prize form .gform_body .gform_fields .gfield.gform_validation_container,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield_error .gfield_description,
.page-template-form-prize form .gform_body .gform_fields .gfield.gfield_error .gfield_description,
.page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: red;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=text], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=email], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=tel], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=number],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=text],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=email],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=tel],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=number],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=text],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=email],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=tel],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 30px;
  border: none;
  box-shadow: none;
  background: white;
  color: black;
  font: 18px "Mont", sans-serif;
  border-radius: 50px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder {
  color: black !important;
  opacity: 1 !important;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container textarea,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container textarea,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 150px;
  padding: 15px;
  border: 1px solid #404A56;
  border-radius: 0;
  box-shadow: none;
  background: white;
  color: black;
  font: 400 16px/18px sans-serif;
  resize: none;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state {
  position: relative;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state .chosen-container-single,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state .chosen-container-single,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state .chosen-container-single {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span {
  margin-bottom: 15px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child {
  margin-bottom: 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span label,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span label,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span label {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select {
  /*
                        * To add "custom" arrow to HTML select in gForm - comment out if Chosen or enhanced UI active - can comment back in mobile since chosen does not work
                        */
  /*
                       &:after{
                           content: '';
                           display: block;
                           position: absolute;
                           @include v-align(absolute);
                           right: 15px;
                           height: 25px;
                           width: 25px;
                           background: {
                               image: url('../images/forms/angle-down.svg');
                               size: contain;
                               position: center;
                               repeat: no-repeat;
                           }
                       }
                        */
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single {
  width: 100% !important;
  max-width: 100% !important;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid black;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child {
  margin-bottom: 0;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
  border-radius: 50%;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/times.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file],
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions {
  display: block;
  text-align: left;
  font: 400 14px/14px sans-serif;
  margin-right: 10px;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_preview,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_preview,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_preview {
  display: flex;
  align-items: center;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_preview button,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_preview button,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_preview button {
  outline: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before {
  content: "";
}
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_preview strong,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_preview strong,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_preview strong {
  display: block;
  text-align: left;
  font: 400 12px/12px sans-serif;
  margin-right: 10px;
}
.page-template-jeu-de-noel form .gform_footer,
.page-template-form-prize form .gform_footer,
.page-template-form-confirmation form .gform_footer {
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 35px !important;
  padding-top: 0 !important;
  /*
            * Edit the stroke-line cap, and stroke color directly in /images/loader.svg
            */
}
.page-template-jeu-de-noel form .gform_footer .gform_button,
.page-template-form-prize form .gform_footer .gform_button,
.page-template-form-confirmation form .gform_footer .gform_button {
  background: #FB414D;
  font: 25px/100% "Mont Bold", sans-serif !important;
  text-transform: none;
  border-radius: 34px;
  padding: 20px 45px 18px;
  margin: 0 auto;
  display: block;
}
.page-template-jeu-de-noel form .gform_footer .gform_button:hover,
.page-template-form-prize form .gform_footer .gform_button:hover,
.page-template-form-confirmation form .gform_footer .gform_button:hover {
  background: #09956F;
}
.page-template-jeu-de-noel form .gform_footer .gform_ajax_spinner,
.page-template-form-prize form .gform_footer .gform_ajax_spinner,
.page-template-form-confirmation form .gform_footer .gform_ajax_spinner {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 30px;
}
.page-template-jeu-de-noel .gform_wrapper .gform_validation_errors,
.page-template-form-prize .gform_wrapper .gform_validation_errors,
.page-template-form-confirmation .gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.page-template-jeu-de-noel .gform_wrapper .gform_validation_errors h2, .page-template-jeu-de-noel .gform_wrapper .gform_validation_errors .gform_submission_error,
.page-template-form-prize .gform_wrapper .gform_validation_errors h2,
.page-template-form-prize .gform_wrapper .gform_validation_errors .gform_submission_error,
.page-template-form-confirmation .gform_wrapper .gform_validation_errors h2,
.page-template-form-confirmation .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: normal 18px/20px sans-serif;
}
.page-template-jeu-de-noel .gform_confirmation_wrapper,
.page-template-form-prize .gform_confirmation_wrapper,
.page-template-form-confirmation .gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.page-template-jeu-de-noel .gform_confirmation_wrapper .gform_confirmation_message,
.page-template-form-prize .gform_confirmation_wrapper .gform_confirmation_message,
.page-template-form-confirmation .gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: bold 18px/32px sans-serif;
}
.page-template-jeu-de-noel select,
.page-template-form-prize select,
.page-template-form-confirmation select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 55px;
  border: 1px solid #404A56;
  border-radius: 0;
  padding: 15px !important;
  font: 400 18px/20px sans-serif !important;
  color: black;
  background: white url(../image/arrow-dropdown.svg) no-repeat 98% center;
  cursor: pointer;
}
.page-template-jeu-de-noel select::placeholder,
.page-template-form-prize select::placeholder,
.page-template-form-confirmation select::placeholder {
  color: grey !important;
  opacity: 1 !important;
}
.page-template-jeu-de-noel .chosen-container-single,
.page-template-form-prize .chosen-container-single,
.page-template-form-confirmation .chosen-container-single {
  width: 100% !important;
}
.page-template-jeu-de-noel .chosen-container-single.chosen-with-drop .chosen-single div,
.page-template-form-prize .chosen-container-single.chosen-with-drop .chosen-single div,
.page-template-form-confirmation .chosen-container-single.chosen-with-drop .chosen-single div {
  transform: rotate(180deg);
}
.page-template-jeu-de-noel .chosen-container-single.chosen-with-drop .chosen-drop,
.page-template-form-prize .chosen-container-single.chosen-with-drop .chosen-drop,
.page-template-form-confirmation .chosen-container-single.chosen-with-drop .chosen-drop {
  display: block;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-single,
.page-template-form-prize .chosen-container-single .chosen-single,
.page-template-form-confirmation .chosen-container-single .chosen-single {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 50px;
  max-height: 100%;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  background: transparent;
  cursor: pointer;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-single span,
.page-template-form-prize .chosen-container-single .chosen-single span,
.page-template-form-confirmation .chosen-container-single .chosen-single span {
  font: 400 16px/18px sans-serif;
  color: black;
  margin: 0 0 !important;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-single div,
.page-template-form-prize .chosen-container-single .chosen-single div,
.page-template-form-confirmation .chosen-container-single .chosen-single div {
  position: absolute;
  bottom: inherit;
  top: inherit;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: black transparent transparent transparent;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-single div b,
.page-template-form-prize .chosen-container-single .chosen-single div b,
.page-template-form-confirmation .chosen-container-single .chosen-single div b {
  display: none !important;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-drop,
.page-template-form-prize .chosen-container-single .chosen-drop,
.page-template-form-confirmation .chosen-container-single .chosen-drop {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0 0;
  box-shadow: none;
  z-index: 1;
  top: calc(100% - 2px);
  border-radius: 0 0;
  border: 2px solid black;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-drop .chosen-search,
.page-template-form-prize .chosen-container-single .chosen-drop .chosen-search,
.page-template-form-confirmation .chosen-container-single .chosen-drop .chosen-search {
  margin: 0 0 !important;
  padding: 0 0 !important;
  display: none !important;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-drop .chosen-results,
.page-template-form-prize .chosen-container-single .chosen-drop .chosen-results,
.page-template-form-confirmation .chosen-container-single .chosen-drop .chosen-results {
  border: 0;
  background: white;
  border-radius: 0;
  max-height: 150px;
  overflow-y: scroll;
  height: auto;
  padding: 0 0;
  margin: 0 0;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-drop .chosen-results li,
.page-template-form-prize .chosen-container-single .chosen-drop .chosen-results li,
.page-template-form-confirmation .chosen-container-single .chosen-drop .chosen-results li {
  position: relative;
  display: block;
  padding: 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  cursor: pointer;
  text-align: left;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-drop .chosen-results li.disabled-result, .page-template-jeu-de-noel .chosen-container-single .chosen-drop .chosen-results li.gf_placeholder,
.page-template-form-prize .chosen-container-single .chosen-drop .chosen-results li.disabled-result,
.page-template-form-prize .chosen-container-single .chosen-drop .chosen-results li.gf_placeholder,
.page-template-form-confirmation .chosen-container-single .chosen-drop .chosen-results li.disabled-result,
.page-template-form-confirmation .chosen-container-single .chosen-drop .chosen-results li.gf_placeholder {
  display: none !important;
}
.page-template-jeu-de-noel .chosen-container-single .chosen-drop .chosen-results li.highlighted,
.page-template-form-prize .chosen-container-single .chosen-drop .chosen-results li.highlighted,
.page-template-form-confirmation .chosen-container-single .chosen-drop .chosen-results li.highlighted {
  background: grey;
  background-color: grey;
  color: white;
}
.page-template-jeu-de-noel footer#footer,
.page-template-form-prize footer#footer,
.page-template-form-confirmation footer#footer {
  position: relative;
  padding: 30px 0;
  background: #09956F;
  color: white;
}
.page-template-jeu-de-noel footer#footer:before, .page-template-jeu-de-noel footer#footer:after,
.page-template-form-prize footer#footer:before,
.page-template-form-prize footer#footer:after,
.page-template-form-confirmation footer#footer:before,
.page-template-form-confirmation footer#footer:after {
  display: none;
}
.page-template-jeu-de-noel footer#footer #copyrights,
.page-template-form-prize footer#footer #copyrights,
.page-template-form-confirmation footer#footer #copyrights {
  margin: 0 30px;
  text-align: center;
}
.page-template-jeu-de-noel footer#footer #copyrights p:first-child,
.page-template-form-prize footer#footer #copyrights p:first-child,
.page-template-form-confirmation footer#footer #copyrights p:first-child {
  text-align: left;
  width: 850px;
  max-width: 55%;
  font: normal 14px/120% "Mont", sans-serif;
}
.page-template-jeu-de-noel footer#footer #copyrights #rubik-api-copyright a,
.page-template-form-prize footer#footer #copyrights #rubik-api-copyright a,
.page-template-form-confirmation footer#footer #copyrights #rubik-api-copyright a {
  line-height: 33px;
}

@media (max-width: 1440px) {
  .video-slice .image .video-icon svg {
    height: 75px;
    width: 75px;
  }
  .video-slice .image .video-icon span {
    font-size: 28px;
  }

  .main-nav {
    width: 700px;
  }
  .main-nav .inner-nav-top {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .main-nav .inner-cart {
    position: relative;
    right: 0;
    left: 0;
    top: 0;
  }
  .main-nav .inner-cart .cart {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 48px;
    line-height: 1.2em;
  }

  h2 {
    font-size: 34px;
    line-height: 1.2em;
  }

  .info-block .info-block-inner {
    padding: 60px 0;
  }
  .info-block h2 {
    font-size: 34px;
  }

  .page-top .top-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 1365px) {
  .page-template-page-noel .content-row.xmas-banner .hero-inner h1 {
    font-size: 40px;
  }
  .page-template-page-noel .content-row.xmas-banner .hero-inner h2 {
    font-size: 25px;
  }
  .page-template-page-noel .content-row.xmas-banner .hero-inner h4 {
    font-size: 20px;
  }

  .video-slice .image .video-icon {
    bottom: 30px;
    right: 30px;
  }
  .video-slice .image .video-icon span {
    font-size: 26px;
    margin-right: 18px;
  }

  .hero-slider {
    height: 700px;
  }

  #header .logged-in {
    margin-right: 120px;
  }
  #header #site-logo {
    width: 285px;
  }
  #header #site-logo svg {
    width: 100%;
  }
  #header #site-burger {
    margin-left: 14px;
  }
  #header #site-nav .lang {
    margin: 0 20px 0 15px;
  }
  #header #site-nav .lang ul {
    padding: 2px 4px;
  }
  #header #site-nav .lang ul:hover .switch {
    left: 52px;
  }
  #header #site-nav .lang ul .switch {
    left: 6px;
  }
  #header #site-nav .lang ul .switch svg {
    height: 34px;
    width: 34px;
  }
  #header #site-nav .cart {
    margin: 0 35px 0 0px;
  }
  #header #site-nav .cart .total {
    font-size: 18px;
    margin-right: 14px;
  }
  #header #site-nav .user-name {
    font-size: 18px;
    margin-right: 14px;
  }
  #header #site-nav .sub-menu li a {
    font-size: 16px;
    margin-right: 0;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 30px;
  }

  .steps .step-block h5 {
    font-size: 20px;
  }

  .info-block h2 {
    font-size: 30px;
  }

  .slice-intro.padding-both {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .slice-intro.padding-top {
    padding-top: 60px;
  }
  .slice-intro.padding-bottom {
    padding-bottom: 60px;
  }
  .slice-intro.padding-none {
    padding: 0;
  }

  .slice-outro.padding-both {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .slice-outro.padding-top {
    padding-top: 60px;
  }
  .slice-outro.padding-bottom {
    padding-bottom: 60px;
  }
  .slice-outro.padding-none {
    padding: 0;
  }

  .c2a-section {
    padding: 80px 0;
  }

  .page-top .top-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 1199px) {
  .page-template-page-noel .hero-slider .slick-list .slick-track .hero {
    padding-top: 100px;
  }
  .page-template-page-noel .content-row.xmas-banner .hero-inner h1 {
    font-size: 38px;
  }
  .page-template-page-noel .content-row.xmas-product-slider .slide .col-text h3 {
    font-size: 38px;
    margin-bottom: 35px;
  }

  .page-template-promo-code .promo-code-block {
    padding: 30px;
    width: 90%;
  }
  .page-template-promo-code .promo-code-block .percent {
    font-size: 60px;
  }
  .page-template-promo-code .promo-code-block .text-container {
    padding: 0 0 0 20px;
  }
  .page-template-promo-code .promo-code-block .text-container h3 {
    font-size: 24px;
  }
  .page-template-promo-code .promo-code-block .promo-button:hover {
    padding-right: 95px;
  }

  .video-slice .image .video-icon {
    bottom: 24px;
    right: 24px;
  }
  .video-slice .image .video-icon span {
    font-size: 24px;
    margin-right: 14px;
  }
  .video-slice .image .video-icon svg {
    height: 50px;
    width: 50px;
  }

  #newsletter-form .news-img img,
#newsletter-form .news-img svg {
    width: 180px;
  }

  .the-content, body.single-product .product .woocommerce-product-details__short-description {
    font-size: 16px;
  }

  body:not(.home):not(.page-template-page-noel) #main {
    padding: 200px 0 60px 0;
  }
  body:not(.home):not(.page-template-page-noel).shop-notice-enabled #header {
    top: 65px;
  }
  body:not(.home):not(.page-template-page-noel) .half-banner {
    margin-top: -40px;
  }

  body.shop-notice-enabled #main {
    margin-top: 65px;
  }

  .single-post .blog-article {
    padding-right: 0px;
  }

  .wrapper.very-big {
    padding: 0 20px;
    margin: 0 auto;
  }

  .error404 .hero .the-content img, .error404 .hero body.single-product .product .woocommerce-product-details__short-description img, body.single-product .product .error404 .hero .woocommerce-product-details__short-description img {
    max-width: 50%;
    padding-left: 20px;
  }

  .single-product .single-product-content .product-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
  .single-product .single-product-content .product-current-price {
    font-size: 20px;
    margin-bottom: 18px;
  }
  .single-product .single-product-content .product-prev-price {
    font-size: 20px;
    margin: 0 0 18px 12px;
  }

  #header.shrink #site-logo svg {
    width: 220px;
  }
  #header #site-logo svg {
    width: 220px;
  }
  #header .logged-in {
    width: auto;
    max-width: none;
    margin-right: 40px;
  }
  #header .logged-in .username {
    margin-right: 40px;
  }
  #header .logged-in .username .the-content, #header .logged-in .username body.single-product .product .woocommerce-product-details__short-description, body.single-product .product #header .logged-in .username .woocommerce-product-details__short-description {
    font-size: 18px;
  }
  #header .logged-in .cart .the-content, #header .logged-in .cart body.single-product .product .woocommerce-product-details__short-description, body.single-product .product #header .logged-in .cart .woocommerce-product-details__short-description {
    font-size: 18px;
  }

  .notice-boutique {
    padding: 8px;
  }
  .notice-boutique .notice-content {
    flex-direction: column;
    font-size: 18px;
  }
  .notice-boutique .notice-content .the-content, .notice-boutique .notice-content body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .notice-boutique .notice-content .woocommerce-product-details__short-description {
    font-size: 18px;
  }

  h1 {
    font-size: 44px;
    line-height: 1.2em;
  }

  h2 {
    font-size: 30px;
    line-height: 1.2em;
  }

  .btn, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product .gift_card_template_button button.button, body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .woocommerce-message a.button, body .add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.button, body .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce ul.products li.product .button, body .woocommerce .woocommerce-error a .wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .return-to-shop a, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce form.lost_reset_password button.button, body .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, form#affwp-register-form fieldset p input.button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input, .form .gform_wrapper .gform_footer input[type=submit], #footer .footer-primary-nav ul li.is-btn a, .error404 .hero .the-content a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button, #newsletter-form .gform_wrapper .gform_footer input, .woocommerce ul.products .product-block .product-meta .single-product-content a.button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], #code-form .gform_wrapper .gform_footer input {
    padding: 10px 22px;
    font-size: 20px;
  }

  .c2a-content-img {
    max-width: 200px;
  }

  .promo-block .promo-block-content .promo-inner > img {
    max-width: 200px;
  }

  .slice-intro h5 {
    padding: 0 100px;
    font-size: 22px;
  }
  .slice-intro.padding-both {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .slice-intro.padding-top {
    padding-top: 40px;
  }
  .slice-intro.padding-bottom {
    padding-bottom: 40px;
  }
  .slice-intro.padding-none {
    padding: 0;
  }

  .slice-outro h5 {
    padding: 0 100px;
    font-size: 22px;
  }
  .slice-outro.padding-both {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .slice-outro.padding-top {
    padding-top: 30px;
  }
  .slice-outro.padding-bottom {
    padding-bottom: 30px;
  }
  .slice-outro.padding-none {
    padding: 0;
  }

  .product-grid {
    padding: 0;
  }

  .testimonials .testimonial-block {
    height: 500px;
    padding: 30px;
    margin-bottom: 20px;
  }
  .testimonials .testimonial-block .the-content, .testimonials .testimonial-block body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .testimonials .testimonial-block .woocommerce-product-details__short-description {
    font-size: 16px;
  }
  .testimonials .testimonial-block .the-content p, .testimonials .testimonial-block body.single-product .product .woocommerce-product-details__short-description p, body.single-product .product .testimonials .testimonial-block .woocommerce-product-details__short-description p {
    line-height: 1.125em;
  }
  .testimonials .testimonial-block h5 {
    font-size: 18px;
  }
  .testimonials .testimonial-block .stars .star {
    height: 40px;
    width: 40px;
    padding: 0 5px;
    margin: 0 5px;
  }

  .page-top .top-content {
    max-width: none;
  }
  .page-top .top-content h2 {
    margin-bottom: 20px;
  }

  .team h2 {
    font-size: 28px;
  }
  .team h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .team .team-member {
    padding: 0 20px;
  }
  .team .team-member > .top > .img {
    height: 50%;
    width: 50%;
  }
  .team .team-member > .top > .bg-blob {
    height: 80%;
    width: 80%;
  }

  .info-block .info-col {
    padding: 0px 20px;
  }
  .info-block .the-content, .info-block body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .info-block .woocommerce-product-details__short-description {
    margin: 18px 0;
  }

  .contact-block .contact-content .inner-contact h3 {
    font-size: 28px;
  }
  .contact-block .contact-content .inner-contact .the-content, .contact-block .contact-content .inner-contact body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .contact-block .contact-content .inner-contact .woocommerce-product-details__short-description {
    font-size: 18px;
    margin: 20px 0;
  }
  .contact-block .contact-content .inner-contact .tel {
    font-size: 24px;
  }

  .affiliate .affiliate-content h2 {
    font-size: 30px;
  }
  .affiliate .affiliate-content h3 {
    font-size: 26px;
  }
  .affiliate .promo-block .promo-block-content h2 {
    font-size: 28px;
  }
  .affiliate .promo-block .promo-block-content h3 {
    font-size: 24px;
  }

  .c2a-section-block {
    padding: 60px 0;
  }

  .sidebar-left h2, .sidebar-right h2 {
    font-size: 30px;
  }

  .blog-directory .blog-articles .featured-block .featured-block-preview h3 a.mobile {
    display: block;
    margin-bottom: 40px;
  }
  .blog-directory .blog-articles .featured-block .featured-block-preview .featured-block-content h3 a.desktop {
    display: none;
  }
  .blog-directory .blog-articles .featured-block .featured-block-preview .featured-block-content .blog-date {
    margin: 18px 0;
  }
  .blog-directory .recents ul li {
    margin-bottom: 18px;
  }
  .blog-directory .recents ul li .recents-block-img {
    margin-bottom: 8px;
  }
  .blog-directory .recents ul li a {
    font-size: 14px;
  }
  .blog-directory .recents ul li .blog-date {
    margin-top: 8px;
    font-size: 14px;
  }
  .blog-directory .categories ul li a {
    font-size: 18px;
  }
  .blog-directory .categories ul li a .label {
    padding-left: 40px;
  }
  .blog-directory .categories ul li a .label:before {
    height: 24px;
    width: 24px;
  }

  .hero-slider {
    height: 660px;
  }
  .hero-slider .slick-list .slick-track .hero .row .hero-inner, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-inner, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-inner, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-inner, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-inner,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-inner,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner {
    padding: 0;
  }
  .hero-slider .slick-list .slick-track .hero .row .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-featured-img > img, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img {
    bottom: 0;
  }

  .page-template-jeu-de-noel .row.gutter-100, .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-100, #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-100, .page-template-jeu-de-noel form .gform_body .gutter-100.gform_fields, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address, .page-template-jeu-de-noel .row.gutter-120, .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-120, #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-120, .page-template-jeu-de-noel form .gform_body .gutter-120.gform_fields, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address,
.page-template-form-prize .row.gutter-100,
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-100,
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-100,
.page-template-form-prize form .gform_body .gutter-100.gform_fields,
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address,
.page-template-form-prize .row.gutter-120,
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-120,
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-120,
.page-template-form-prize form .gform_body .gutter-120.gform_fields,
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address,
.page-template-form-confirmation .row.gutter-100,
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-100,
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-100,
.page-template-form-confirmation form .gform_body .gutter-100.gform_fields,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address,
.page-template-form-confirmation .row.gutter-120,
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-120,
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-120,
.page-template-form-confirmation form .gform_body .gutter-120.gform_fields,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address {
    margin-left: -30px;
    margin-right: -30px;
  }
  .page-template-jeu-de-noel .row.gutter-100 > div[class*=col-], .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-100 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-100 > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gutter-100.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-jeu-de-noel .gutter-100.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-jeu-de-noel .gutter-100.gform_fields > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-100.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel .row.gutter-120 > div[class*=col-], .page-template-jeu-de-noel #code-form .gform_wrapper .gform_body ul.gutter-120 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-jeu-de-noel ul.gutter-120 > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gutter-120.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-jeu-de-noel .gutter-120.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-jeu-de-noel .gutter-120.gform_fields > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-jeu-de-noel .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize .row.gutter-100 > div[class*=col-],
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-100 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-100 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-prize .gutter-100.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .gutter-100.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-form-prize .gutter-100.gform_fields > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize .row.gutter-120 > div[class*=col-],
.page-template-form-prize #code-form .gform_wrapper .gform_body ul.gutter-120 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-prize ul.gutter-120 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-prize .gutter-120.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .gutter-120.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-form-prize .gutter-120.gform_fields > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-form-prize .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation .row.gutter-100 > div[class*=col-],
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-100 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-100 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-confirmation .gutter-100.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-form-confirmation .gutter-100.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .gutter-100.gform_fields > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation .row.gutter-120 > div[class*=col-],
.page-template-form-confirmation #code-form .gform_wrapper .gform_body ul.gutter-120 > div[class*=col-],
#code-form .gform_wrapper .gform_body .page-template-form-confirmation ul.gutter-120 > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .page-template-form-confirmation .gutter-120.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-form-confirmation .gutter-120.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .gutter-120.gform_fields > div[class*=col-],
.page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-form-confirmation .gutter-120.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-120.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1024px) {
  .lang .current-lang {
    display: none;
  }
  .lang ul .switch {
    display: none;
  }

  .half-banner {
    height: 340px;
  }
  .half-banner .half-hero .half-featured-img > img {
    max-width: 480px;
  }

  #header #site-nav .lang {
    display: none;
  }

  .hero-slider .slick-list .slick-track .hero .row .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-featured-img > img, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img {
    object-position: center center;
  }

  body:not(.home):not(.page-template-page-noel) #main {
    padding: 180px 0 60px 0;
  }

  body:not(.home):not(.page-template-page-noel) #main {
    padding: 200px 0 60px 0;
  }
  body:not(.home):not(.page-template-page-noel).shop-notice-enabled #header {
    top: 60px;
  }

  body.shop-notice-enabled #main {
    margin-top: 60px;
  }

  .sidebar-left,
.sidebar-right {
    margin: 60px 0 40px 0;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 26px;
  }

  h4 {
    font-size: 20px;
  }

  .the-content, body.single-product .product .woocommerce-product-details__short-description {
    font-size: 18px;
  }

  .c2a-sidebar {
    margin-bottom: 40px;
  }

  .team h2 {
    font-size: 26px;
  }
  .team h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .info-block h2 {
    font-size: 26px;
  }

  .affiliate .affiliate-content {
    max-width: 100%;
  }

  .page-top .top-content h2 {
    font-size: 26px;
  }

  .blog-directory .recents ul li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
  }

  .confirmation-holder .spread .pages .book-page.content .page-content, .confirmation-holder .spread .pages .book-page.message .page-content,
.workshop-book-holder .spread .pages .book-page.content .page-content,
.workshop-book-holder .spread .pages .book-page.message .page-content {
    font-size: 10px;
  }

  .page-template-page-noel .hero::before {
    bottom: -85px;
  }
}
@media (max-width: 991px) {
  #header .partner-logo {
    display: none;
  }

  #code-form .inner h3 {
    font-size: 24px;
  }
  #code-form .inner .the-content, #code-form .inner body.single-product .product .woocommerce-product-details__short-description, body.single-product .product #code-form .inner .woocommerce-product-details__short-description {
    font-size: 16px;
    margin: 20px 0;
  }
  #code-form .inner .text-container span {
    font-size: 18px;
  }
  #code-form .gform_wrapper .gform_body ul li {
    padding: 0 0 !important;
  }

  .page-template-promo-code .promo-code-block .row div[class*=col-], .page-template-promo-code .promo-code-block #code-form .gform_wrapper .gform_body ul div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-promo-code .promo-code-block ul div[class*=col-], .page-template-promo-code .promo-code-block .page-template-jeu-de-noel form .gform_body .gform_fields div[class*=col-], .page-template-jeu-de-noel form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-],
.page-template-promo-code .promo-code-block .page-template-form-prize form .gform_body .gform_fields div[class*=col-],
.page-template-form-prize form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-],
.page-template-promo-code .promo-code-block .page-template-form-confirmation form .gform_body .gform_fields div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-] {
    margin-bottom: 40px;
  }
  .page-template-promo-code .promo-code-block .row div[class*=col-]:last-child, .page-template-promo-code .promo-code-block #code-form .gform_wrapper .gform_body ul div[class*=col-]:last-child, #code-form .gform_wrapper .gform_body .page-template-promo-code .promo-code-block ul div[class*=col-]:last-child, .page-template-promo-code .promo-code-block .page-template-jeu-de-noel form .gform_body .gform_fields div[class*=col-]:last-child, .page-template-jeu-de-noel form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:last-child,
.page-template-promo-code .promo-code-block .page-template-form-prize form .gform_body .gform_fields div[class*=col-]:last-child,
.page-template-form-prize form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:last-child,
.page-template-promo-code .promo-code-block .page-template-form-confirmation form .gform_body .gform_fields div[class*=col-]:last-child,
.page-template-form-confirmation form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:last-child, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:last-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:last-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:last-child {
    margin-bottom: 0;
  }
  .page-template-promo-code .promo-code-block .percent {
    width: auto;
  }
  .page-template-promo-code .promo-code-block .text-container {
    width: 50%;
  }
  .page-template-promo-code .promo-code-block .buttons {
    width: auto;
    margin: 0 auto;
  }

  .video-slice .image .video-icon {
    bottom: 18px;
    right: 18px;
  }
  .video-slice .image .video-icon span {
    font-size: 18px;
    margin-right: 10px;
  }
  .video-slice .image .video-icon svg {
    height: 35px;
    width: 35px;
  }

  body.shop-notice-enabled .half-banner {
    margin-top: -80px;
  }

  .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul {
    display: block;
  }
  .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_checkbox ul li {
    display: block;
    margin: 12px 0;
  }

  .error404 .hero {
    padding: 20px 0;
  }
  .error404 .hero .the-content, .error404 .hero body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .error404 .hero .woocommerce-product-details__short-description {
    width: 100%;
    display: block;
  }
  .error404 .hero .the-content a, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a {
    margin: 30px 0;
  }
  .error404 .hero .the-content img, .error404 .hero body.single-product .product .woocommerce-product-details__short-description img, body.single-product .product .error404 .hero .woocommerce-product-details__short-description img {
    position: relative;
    max-width: 50%;
    padding-left: 0px;
    top: 0;
    right: 0;
    transform: translate(0%, 0%);
  }

  #header {
    height: 120px;
    display: flex;
    flex-direction: column;
  }
  #header .logged-in {
    right: 40px;
  }
  #header .logged-in .cart .the-content, #header .logged-in .cart body.single-product .product .woocommerce-product-details__short-description, body.single-product .product #header .logged-in .cart .woocommerce-product-details__short-description {
    display: none;
  }
  #header #site-logo svg {
    width: 250px;
  }
  #header #site-burger svg {
    height: 40px;
    width: 40px;
  }
  #header #site-nav .user {
    display: none;
  }

  .main-nav {
    width: 90%;
  }

  .the-content, body.single-product .product .woocommerce-product-details__short-description {
    font-size: 16px;
  }

  .btn, .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product .gift_card_template_button button.button, body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .woocommerce-message a.button, body .add_to_cart_button, body ul.products li.product-block .product-meta .single-product-content a.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout-coupon button.button, body .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce ul.products li.product .button, body .woocommerce .woocommerce-error a .wc-backward, body .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .return-to-shop a, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce form.lost_reset_password button.button, body .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, form#affwp-register-form fieldset p input.button, .form .gform_wrapper .newsletter-form .gform_body .gform_footer input, .form .gform_wrapper .gform_footer input[type=submit], #footer .footer-primary-nav ul li.is-btn a, .error404 .hero .the-content a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a.button, #newsletter-form .gform_wrapper .gform_footer input, .woocommerce ul.products .product-block .product-meta .single-product-content a.button, .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], #code-form .gform_wrapper .gform_footer input {
    font-size: 16px;
  }

  .btn-spacing {
    margin: 20px 0;
  }

  .notice-boutique .notice-content {
    font-size: 16px;
  }
  .notice-boutique .notice-content .the-content, .notice-boutique .notice-content body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .notice-boutique .notice-content .woocommerce-product-details__short-description {
    font-size: 16px;
  }

  .single-product .single-product-content {
    text-align: center;
  }

  .product-grid .product-block h2 {
    font-size: 22px;
  }
  .product-grid .product-block h4 {
    font-size: 18px;
  }

  .dropdown h5 {
    font-size: 18px;
  }
  .dropdown .the-content, .dropdown body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .dropdown .woocommerce-product-details__short-description {
    font-size: 16px;
  }

  .team .team-member {
    padding: 0px;
  }

  #subfooter {
    text-align: center;
    padding-bottom: 0;
  }
  #subfooter .subtitle {
    margin-bottom: 30px;
  }

  .partner-block {
    margin-bottom: 30px;
  }

  .page-template-page-noel .content-row .row.gutter-140, .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-140, #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-140, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-140.gform_fields, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-140.gform_fields,
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-140.gform_fields,
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address {
    margin-left: -15px;
    margin-right: -15px;
  }
  .page-template-page-noel .content-row .row.gutter-140 > div[class*=col-], .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-140 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-140 > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-140.gform_fields > div[class*=col-], .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-140.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-140.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-140.gform_fields > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-140.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-template-page-noel .content-row .row.gutter-24, .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-24, #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-24, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-24.gform_fields, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-24.gform_fields,
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-24.gform_fields,
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address {
    margin-left: -12px;
    margin-right: -12px;
  }
  .page-template-page-noel .content-row .row.gutter-24 > div[class*=col-], .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul.gutter-24 > div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul.gutter-24 > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gutter-24.gform_fields > div[class*=col-], .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gutter-24.gform_fields > div[class*=col-],
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gutter-24.gform_fields > div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gutter-24.gform_fields > div[class*=col-], .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address > div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .gutter-24.ginput_container.ginput_container_address > div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .gutter-24.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 12px;
    padding-right: 12px;
  }
  .page-template-page-noel .content-row.xmas-banner .hero-inner h1 {
    font-size: 35px;
  }
  .page-template-page-noel .content-row.xmas-product-slider .slide {
    height: calc(100vh - 100px);
    padding: 0;
  }
  .page-template-page-noel .content-row.xmas-product-slider .slide .col-image {
    order: 1;
  }
  .page-template-page-noel .content-row.xmas-product-slider .slide .col-image .image {
    margin: 0 auto 40px;
    width: 80%;
    max-width: 400px;
  }
  .page-template-page-noel .content-row.xmas-product-slider .slide .col-text {
    order: 2;
  }

  .page-template-jeu-de-noel header .logo-container,
.page-template-form-prize header .logo-container,
.page-template-form-confirmation header .logo-container {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .page-template-page-noel .content-row.xmas-product-slider .slide {
    position: relative;
    transform: translateY(0);
    height: auto;
    padding: 60px 0;
  }
  .page-template-page-noel .content-row.xmas-product-slider .slide:not(:first-child) {
    transform: translateY(0);
  }
  .page-template-page-noel .content-row.video-module {
    padding: 60px 0;
  }

  .video-slice {
    padding: 18px 0;
    width: 90%;
  }
  .video-slice .image > img {
    border-radius: 24px;
  }

  body.shop-notice-enabled .half-banner {
    margin-top: -40px;
  }

  .product-grid .product-block.static {
    margin: 0 0;
  }

  #header {
    height: 100px;
  }
  #header.shrink {
    height: 100px;
  }

  .workshop-slice {
    min-height: calc(100vh - 100px);
  }

  .notice-slider .notice-boutique .notice-content .the-content, .notice-slider .notice-boutique .notice-content body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .notice-slider .notice-boutique .notice-content .woocommerce-product-details__short-description {
    font-size: 14px;
  }

  .woocommerce ul.products .product-block {
    position: relative;
  }
  .woocommerce ul.products .product-block .product-themes ul li a {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
  }

  body:not(.home):not(.page-template-page-noel) #main {
    padding: 140px 0 40px 0;
  }
  body:not(.home):not(.page-template-page-noel):not(.shop-notice-enabled) #main {
    padding-top: 100px !important;
  }

  .hero:after {
    height: 100px;
  }

  #header.shrink #site-logo svg {
    width: 180px;
  }
  #header #site-logo svg {
    width: 180px;
  }
  #header #site-nav .cart {
    margin: 0 30px;
  }
  #header #site-nav .cart .total {
    display: none;
  }

  #footer:after {
    height: 100px;
  }

  .main-nav {
    padding: 50px;
  }
  .main-nav .inner-primary-menu ul li a {
    font-size: 28px;
  }
  .main-nav .inner-primary-menu:after {
    margin: 20px 0;
  }
  .main-nav .inner-secondary-menu ul li a {
    font-size: 22px;
  }

  .slice-intro h2 {
    font-size: 26px;
  }
  .slice-intro h5 {
    padding: 0 0px;
    font-size: 18px;
  }

  .slice-outro h5 {
    padding: 0 0px;
    font-size: 18px;
  }

  .steps .step-block h5 {
    font-size: 20px;
  }

  .product-grid {
    padding: 0;
  }
  .product-grid .product-block h2 {
    margin: 12px 0;
  }
  .product-grid .product-block h4 {
    font-size: 12px;
  }
  .product-grid .product-block .product-btn {
    opacity: 1;
    transform: none;
    margin: 5px 0;
  }
  .product-grid .product-block .product-btn .btn, .product-grid .product-block .product-btn .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td .product-grid .product-block .product-btn input[type=button], .product-grid .product-block .product-btn .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .product-grid .product-block .product-btn input[type=button], .product-grid .product-block .product-btn .woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, .woocommerce .woocommerce-notices-wrapper .woocommerce-message .product-grid .product-block .product-btn a.wc-forward, .product-grid .product-block .product-btn body.single-product .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value .product-grid .product-block .product-btn a.reset_variations, .product-grid .product-block .product-btn body.single-product .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body.single-product .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body.single-product .product form.gift-cards_form .gift-cards-list button, body.single-product .product form.gift-cards_form .gift-cards-list .product-grid .product-block .product-btn button, .product-grid .product-block .product-btn body.single-product .woocommerce-message a.button, body.single-product .woocommerce-message .product-grid .product-block .product-btn a.button, .product-grid .product-block .product-btn body .add_to_cart_button, body .product-grid .product-block .product-btn .add_to_cart_button, .product-grid body ul.products li.product-block .product-btn .product-meta .single-product-content a.button, body ul.products .product-grid li.product-block .product-btn .product-meta .single-product-content a.button, .product-grid body ul.products li.product-block .product-meta .single-product-content .product-btn a.button, body ul.products .product-grid li.product-block .product-meta .single-product-content .product-btn a.button, .product-grid .product-block .product-btn body .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order .product-grid .product-block .product-btn button#place_order, .product-grid .product-block .product-btn body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .product-grid .product-block .product-btn a.woocommerce-remove-coupon, .product-grid .product-block .product-btn body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount .product-grid .product-block .product-btn a.woocommerce-remove-coupon, .product-grid .product-block .product-btn body .woocommerce form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals table.shop_table td .product-grid .product-block .product-btn a.woocommerce-remove-coupon, .product-grid .product-block .product-btn body .woocommerce .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .product-grid .product-block .product-btn a.checkout-button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td .product-grid .product-block .product-btn input[type=button], .product-grid .product-block .product-btn body .woocommerce .woocommerce-cart-form table.shop_table button.button, body .woocommerce .woocommerce-cart-form table.shop_table .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper .product-grid .product-block .product-btn input[type=button], .product-grid .product-block .product-btn body .woocommerce ul.products li.product .button, body .woocommerce ul.products li.product .product-grid .product-block .product-btn .button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-error a .wc-backward, body .woocommerce .woocommerce-error a .product-grid .product-block .product-btn .wc-backward, .product-grid .product-block .product-btn body .woocommerce .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce .return-to-shop a, body .woocommerce .return-to-shop .product-grid .product-block .product-btn a, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .product-grid .product-block .product-btn input.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .product-grid .product-block .product-btn input.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .product-grid .product-block .product-btn input.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .product-grid .product-block .product-btn a.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .product-grid .product-block .product-btn a.delete, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .product-grid .product-block .product-btn a.edit, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .product-grid .product-block .product-btn a.woocommerce-button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content table td .button, body .woocommerce .woocommerce-MyAccount-content table td .product-grid .product-block .product-btn .button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-content .product-grid .product-block .product-btn button, .product-grid .product-block .product-btn body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .product-grid .product-block .product-btn a, .product-grid .product-block .product-btn body .woocommerce form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn body .woocommerce #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .product-grid .product-block .product-btn button.button, .product-grid .product-block .product-btn form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p .product-grid .product-block .product-btn input.button, .product-grid .product-block .product-btn .form .gform_wrapper .newsletter-form .gform_body .gform_footer input, .form .gform_wrapper .newsletter-form .gform_body .gform_footer .product-grid .product-block .product-btn input, .product-grid .product-block .product-btn .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer .product-grid .product-block .product-btn input[type=submit], .product-grid .product-block .product-btn #footer .footer-primary-nav ul li.is-btn a, #footer .footer-primary-nav ul li.is-btn .product-grid .product-block .product-btn a, .product-grid .product-block .product-btn .error404 .hero .the-content a.button, .product-grid .product-block .product-btn .error404 .hero body.single-product .product .woocommerce-product-details__short-description a.button, body.single-product .product .product-grid .product-block .product-btn .error404 .hero .woocommerce-product-details__short-description a.button, .error404 .hero .the-content .product-grid .product-block .product-btn a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .product-grid .product-block .product-btn a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .product-grid .product-block .product-btn a.button, .product-grid .product-block .product-btn #newsletter-form .gform_wrapper .gform_footer input, #newsletter-form .gform_wrapper .gform_footer .product-grid .product-block .product-btn input, .product-grid .woocommerce ul.products .product-block .product-btn .product-meta .single-product-content a.button, .woocommerce ul.products .product-grid .product-block .product-btn .product-meta .single-product-content a.button, .product-grid .woocommerce ul.products .product-block .product-meta .single-product-content .product-btn a.button, .woocommerce ul.products .product-grid .product-block .product-meta .single-product-content .product-btn a.button, .product-grid .product-block .product-btn .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph .product-grid .product-block .product-btn input[type=submit], .product-grid .product-block .product-btn .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph .product-grid .product-block .product-btn input[type=submit], .product-grid .product-block .product-btn #code-form .gform_wrapper .gform_footer input, #code-form .gform_wrapper .gform_footer .product-grid .product-block .product-btn input {
    font-size: 10px;
    padding: 6px 12px;
  }

  .img-icon-split .icon-block h4 {
    margin-bottom: 12px;
  }

  .featured-block .featured-block-preview .featured-block-content {
    padding: 0px;
  }
  .featured-block .featured-block-preview .featured-block-content h3 {
    font-size: 26px;
  }

  .info-block {
    margin: 60px 0;
  }
  .info-block:after {
    height: 60px;
  }
  .info-block:before {
    height: 60px;
  }

  .dropdown .open-drop svg {
    height: 16px;
    width: 16px;
  }

  .featured-article-section {
    margin: 120px 0 0 0;
  }
  .featured-article-section h2 {
    font: 38px/1.18em "fatfrank", sans-serif;
    color: #00ABC0;
    margin-bottom: 60px;
  }
  .featured-article-section .featured-articles {
    margin: 20px 0;
  }
  .featured-article-section .featured-articles .featured-block-preview .featured-block-img img {
    min-width: 100%;
    height: auto;
  }

  .c2a-section:before {
    height: 60px;
  }
  .c2a-section:after {
    height: 60px;
  }

  #code-form,
#newsletter-form {
    padding: 60px 30px;
  }
  #code-form .news-img,
#newsletter-form .news-img {
    display: none;
  }
  #code-form .gfield_checkbox,
#newsletter-form .gfield_checkbox {
    display: block !important;
    text-align: left !important;
  }
  #code-form .gform_wrapper .gform_heading .gform_description,
#newsletter-form .gform_wrapper .gform_heading .gform_description {
    font: 400 18px/1.3em "rubrik-edge-new", sans-serif !important;
    margin: 24px 0;
  }

  .inner-page-content h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .dropdown .open-drop {
    margin-left: 18px;
  }
}
@media (max-width: 767px) {
  .page-template-promo-code .page-top .content-block {
    margin-bottom: 35px;
  }
  .page-template-promo-code .promo-code-block .row div[class*=col-], .page-template-promo-code .promo-code-block #code-form .gform_wrapper .gform_body ul div[class*=col-], #code-form .gform_wrapper .gform_body .page-template-promo-code .promo-code-block ul div[class*=col-], .page-template-promo-code .promo-code-block .page-template-jeu-de-noel form .gform_body .gform_fields div[class*=col-], .page-template-jeu-de-noel form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-],
.page-template-promo-code .promo-code-block .page-template-form-prize form .gform_body .gform_fields div[class*=col-],
.page-template-form-prize form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-],
.page-template-promo-code .promo-code-block .page-template-form-confirmation form .gform_body .gform_fields div[class*=col-],
.page-template-form-confirmation form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-] {
    padding: 0 0;
    margin-bottom: 25px;
  }
  .page-template-promo-code .promo-code-block .row div[class*=col-]:first-child, .page-template-promo-code .promo-code-block #code-form .gform_wrapper .gform_body ul div[class*=col-]:first-child, #code-form .gform_wrapper .gform_body .page-template-promo-code .promo-code-block ul div[class*=col-]:first-child, .page-template-promo-code .promo-code-block .page-template-jeu-de-noel form .gform_body .gform_fields div[class*=col-]:first-child, .page-template-jeu-de-noel form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:first-child,
.page-template-promo-code .promo-code-block .page-template-form-prize form .gform_body .gform_fields div[class*=col-]:first-child,
.page-template-form-prize form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:first-child,
.page-template-promo-code .promo-code-block .page-template-form-confirmation form .gform_body .gform_fields div[class*=col-]:first-child,
.page-template-form-confirmation form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:first-child, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:first-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:first-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:first-child {
    flex-direction: column;
  }
  .page-template-promo-code .promo-code-block .row div[class*=col-]:last-child, .page-template-promo-code .promo-code-block #code-form .gform_wrapper .gform_body ul div[class*=col-]:last-child, #code-form .gform_wrapper .gform_body .page-template-promo-code .promo-code-block ul div[class*=col-]:last-child, .page-template-promo-code .promo-code-block .page-template-jeu-de-noel form .gform_body .gform_fields div[class*=col-]:last-child, .page-template-jeu-de-noel form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:last-child,
.page-template-promo-code .promo-code-block .page-template-form-prize form .gform_body .gform_fields div[class*=col-]:last-child,
.page-template-form-prize form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:last-child,
.page-template-promo-code .promo-code-block .page-template-form-confirmation form .gform_body .gform_fields div[class*=col-]:last-child,
.page-template-form-confirmation form .gform_body .page-template-promo-code .promo-code-block .gform_fields div[class*=col-]:last-child, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:last-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:last-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-promo-code .promo-code-block .ginput_container.ginput_container_address div[class*=col-]:last-child {
    margin-bottom: 0;
  }
  .page-template-promo-code .promo-code-block .percent {
    width: auto;
  }
  .page-template-promo-code .promo-code-block .text-container {
    width: 100%;
    text-align: center;
    padding: 0 0;
  }
  .page-template-promo-code .promo-code-block .promo-button {
    font-size: 20px;
  }
  .page-template-promo-code .promo-code-block .promo-button:hover {
    padding-right: 110px;
  }
  .page-template-promo-code .promo-code-block .promo-button span {
    left: 20px;
  }
  .page-template-promo-code .promo-code-block .promo-button svg {
    right: 0px;
    height: 48px;
    width: 48px;
  }
  .page-template-promo-code .promo-code-block .buttons .dummy-button {
    font-size: 20px;
    left: -8px;
    padding: 20px 65px 20px 65px;
  }
  .page-template-promo-code .promo-code-block .buttons .dummy-button span {
    right: 0px;
  }
  .page-template-promo-code .button-container {
    margin: 35px 0;
  }

  .video-slice .image .video-icon {
    bottom: 14px;
    right: 14px;
  }
  .video-slice .image .video-icon span {
    display: none;
  }

  .half-banner {
    height: 240px;
  }
  .half-banner .half-hero:before {
    height: 100px;
  }
  .half-banner .half-hero .half-featured-img > img {
    max-width: 340px;
  }

  .flipbook {
    padding: 40px 20px;
  }
  .flipbook .flipbook-inner {
    width: 310px !important;
    height: 185px !important;
  }
  .form h2 {
    font-size: 26px;
  }
  .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent {
    display: flex;
    align-items: flex-end;
  }
  .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label {
    font-size: 16px;
    line-height: 1.25em;
    padding-left: 32px;
  }
  .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label:before {
    height: 24px;
    width: 24px;
  }
  .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label:after {
    left: 6px;
    height: 12px;
    width: 12px;
  }
  .form .gform_wrapper .gform_body .gform_fields .gfield .ginput_container_consent label a {
    display: block;
    font-size: 16px;
  }

  .c2a-section-block {
    margin: 40px 0;
  }

  .hero-slider .slick-prev {
    left: 20px;
    bottom: 100px;
  }
  .hero-slider .slick-next {
    right: 20px;
    bottom: 100px;
  }

  .c2a-sidebar h4 {
    font-size: 24px;
  }

  .social-icons ul {
    margin: 20px 0;
  }

  .inner-socials {
    padding: 12px 0;
  }

  .footer-buttons ul {
    display: block;
  }
  .footer-buttons ul li {
    margin: 20px 0;
  }

  .c2a-section-block {
    padding: 100px 0;
  }
  .c2a-section-block > img {
    object-position: right;
  }

  .shop-page {
    display: none;
  }

  .footer-bottom {
    display: block;
  }

  .inner-socials {
    justify-content: flex-start;
  }
  .inner-socials .social-icons ul li a svg {
    height: 24px;
    width: 24px;
  }

  .lang ul {
    padding: 6px 9px;
  }
  .lang ul:hover .switch {
    left: 56px;
  }
  .lang ul:hover .switch:lang(en) {
    left: 4px;
  }
  .lang ul .switch {
    height: 40px;
    width: 40px;
    left: 4px;
  }
  .lang ul .switch:lang(en) {
    height: 40px;
    width: 40px;
    left: 56px;
  }
  .lang ul li a {
    font-size: 20px;
  }

  .hero-slider .slick-list .slick-track .hero {
    position: relative;
    height: 100%;
  }
  .hero-slider .slick-list .slick-track .hero > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-slider .slick-list .slick-track .hero .row, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address {
    height: 100%;
  }
  .hero-slider .slick-list .slick-track .hero .row div[class*=col-], .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul div[class*=col-], #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul div[class*=col-], .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields div[class*=col-], .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields div[class*=col-],
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields div[class*=col-],
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields div[class*=col-],
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields div[class*=col-],
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields div[class*=col-], .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address div[class*=col-],
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address div[class*=col-] {
    height: auto;
  }
  .hero-slider .slick-list .slick-track .hero .row .hero-inner, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-inner, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-inner, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-inner, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-inner,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-inner,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner {
    padding-top: 140px;
  }
  .hero-slider .slick-list .slick-track .hero .row .hero-featured-img, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-featured-img, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-featured-img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-featured-img, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-featured-img,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-featured-img,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img {
    height: 100%;
  }
  .hero-slider .slick-list .slick-track .hero .row .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-featured-img > img, #code-form .gform_wrapper .gform_body .hero-slider .slick-list .slick-track .hero ul .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-prize form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .hero-slider .slick-list .slick-track .hero .gform_fields .hero-featured-img > img, .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-prize form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img,
.hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .hero-featured-img > img,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-featured-img > img {
    position: relative;
    bottom: 0px;
  }

  #header {
    padding: 0;
  }
  #header #site-burger {
    margin-left: 0px;
  }
  #header #site-burger .bar-1 {
    width: 40px;
  }
  #header #site-burger .bar-2 {
    width: 50px;
  }
  #header #site-burger .bar-3 {
    width: 30px;
  }
  #header #site-nav .cart svg {
    height: 26px;
    width: 26px;
  }

  .error404 .hero .the-content a, .error404 .hero body.single-product .product .woocommerce-product-details__short-description a, body.single-product .product .error404 .hero .woocommerce-product-details__short-description a {
    margin: 18px 0;
  }
  .error404 .hero .the-content img, .error404 .hero body.single-product .product .woocommerce-product-details__short-description img, body.single-product .product .error404 .hero .woocommerce-product-details__short-description img {
    max-width: 100%;
  }

  .inner-nav-top {
    margin-bottom: 0px;
  }

  .user-sign-in {
    font-size: 20px;
    margin-bottom: 40px;
    order: 1;
  }

  .main-nav .inner-cart .total {
    font-size: 18px;
  }
  .main-nav .inner-cart .cart {
    margin-bottom: 20px;
  }
  .main-nav .inner-cart .cart svg {
    height: 26px;
    width: 26px;
  }
  .main-nav .inner-socials {
    margin-right: 0px;
  }
  .main-nav .mobile-nav-trigger {
    right: 20px;
  }
  .main-nav .mobile-nav-trigger #close-nav {
    height: 40px;
    width: 40px;
    border: 4px solid #FB414D;
  }
  .main-nav .mobile-nav-trigger #close-nav .x-bars .bar-1, .main-nav .mobile-nav-trigger #close-nav .x-bars .bar-2 {
    width: 4px;
    height: 18px;
  }
  .main-nav .inner-user {
    margin-bottom: 40px;
  }
  .main-nav .inner-user .user a .user-name {
    font-size: 14px;
    margin-right: 16px;
  }
  .main-nav .inner-primary-menu ul li {
    margin-bottom: 20px;
  }
  .main-nav .inner-primary-menu ul li.highlight-link:after {
    margin: 20px 0;
  }
  .main-nav .inner-primary-menu ul li.highlight-link a {
    font-size: 18px;
  }
  .main-nav .inner-primary-menu ul li a {
    font-size: 16px;
  }

  .contact-block .contact-content .contact-img > img {
    max-width: 50%;
  }

  .testimonials .testimonial-block {
    max-height: 400px;
    padding: 20px;
  }
  .testimonials .testimonial-block .stars .star {
    height: 28px;
    width: 28px;
    margin: 0 2px;
  }
  .testimonials .testimonial-block .the-content, .testimonials .testimonial-block body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .testimonials .testimonial-block .woocommerce-product-details__short-description {
    font-size: 11px;
  }

  .affiliate .affiliate-content h2 {
    font-size: 24px;
  }
  .affiliate .affiliate-content h3 {
    font-size: 20px;
  }

  .promo-block .promo-block-content .promo-inner {
    padding: 0px;
  }
  .promo-block .promo-block-content .promo-inner h2 {
    font-size: 24px;
  }
  .promo-block .promo-block-content .promo-inner h3 {
    font-size: 20px;
  }

  .team .team-member {
    margin: 20px 0;
  }

  .info-block .info-col {
    margin: 20px 0;
    padding: 0px;
  }

  #footer .footer-primary-nav ul {
    display: inline-block;
  }
  #footer .footer-primary-nav ul li {
    position: relative;
    display: block;
    margin: 20px 0;
  }
  #footer .footer-primary-nav ul li.is-btn {
    position: relative;
    display: block;
    padding: 20px 0;
  }

  .single-product .product-theme {
    position: relative;
  }
  .single-product .product-theme ul {
    display: flex;
    justify-content: center;
  }
  .single-product .product-theme ul li {
    margin: 0 12px 40px 12px;
  }

  .product-grid {
    padding: 0;
  }
  .product-grid .product-block {
    padding: 12px;
  }
  .product-grid .product-block h2 {
    font-size: 14px;
  }
  .product-grid .product-block .product-themes ul li a.product-theme-icon span.label {
    font-size: 12px;
  }

  .workshop-slice .ws-intro .character-1 {
    flex-direction: column;
  }
  .workshop-slice .ws-intro .character-1 .img {
    text-align: center;
    margin-bottom: 40px;
  }
  .workshop-slice .ws-intro .character-1 .dialog {
    margin-left: 0;
  }
  .workshop-slice .ws-intro .character-1 .dialog:before {
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -12.5px;
    border-width: 0 15px 25px 15px;
    border-color: transparent transparent #C3CCD3 transparent;
  }
  .workshop-slice .ws-intro .character-1 .dialog:after {
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: absolute;
    top: -19px;
    left: 50%;
    margin-left: -12.5px;
    border-width: 0 15px 25px 15px;
    border-color: transparent transparent #FFFFFF transparent;
  }
  .workshop-slice .form-steps .step .character {
    flex-direction: column;
  }
  .workshop-slice .form-steps .step .character .img {
    text-align: center;
    margin-bottom: 40px;
  }
  .workshop-slice .form-steps .step .dialog {
    margin: 30px 0 0 0;
  }
  .workshop-slice .form-steps .step .dialog:before {
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: absolute;
    top: -25px;
    left: 50%;
    margin-left: -12.5px;
    border-width: 0 15px 25px 15px;
    border-color: transparent transparent #C3CCD3 transparent;
  }
  .workshop-slice .form-steps .step .dialog:after {
    position: relative;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: absolute;
    top: -19px;
    left: 50%;
    margin-left: -12.5px;
    border-width: 0 15px 25px 15px;
    border-color: transparent transparent #FFFFFF transparent;
  }
  .workshop-slice .form-steps .step .buttons {
    padding-right: 0;
  }

  .confirmation-holder .spread .pages .workshop-book-nav,
.workshop-book-holder .spread .pages .workshop-book-nav {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
  .confirmation-holder .spread .pages .workshop-book-nav.prev,
.workshop-book-holder .spread .pages .workshop-book-nav.prev {
    left: -15px;
  }
  .confirmation-holder .spread .pages .workshop-book-nav.next,
.workshop-book-holder .spread .pages .workshop-book-nav.next {
    right: -15px;
  }
  .confirmation-holder .spread .pages .book-page.content .page-content, .confirmation-holder .spread .pages .book-page.message .page-content,
.workshop-book-holder .spread .pages .book-page.content .page-content,
.workshop-book-holder .spread .pages .book-page.message .page-content {
    font-size: 9px;
  }

  #subfooter .subtitle {
    font-size: 20px;
  }

  .page-template-page-noel .notice-slider {
    height: 60px !important;
  }
  .page-template-page-noel .hero-slider {
    height: auto;
  }
  .page-template-page-noel .hero-slider .slick-list .slick-track .hero:before {
    bottom: -65px;
  }
  .page-template-page-noel .hero-slider .slick-list .slick-track .hero .row .hero-inner, .page-template-page-noel .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-inner, #code-form .gform_wrapper .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero ul .hero-inner, .page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-inner, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-inner,
.page-template-form-prize form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner,
.page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-inner,
.page-template-form-confirmation form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner {
    padding-top: 0;
  }
  .page-template-page-noel .hero-slider .slick-list .slick-track .hero .row .hero-inner img, .page-template-page-noel .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-inner img, #code-form .gform_wrapper .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero ul .hero-inner img, .page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-inner img, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner img,
.page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-inner img,
.page-template-form-prize form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner img,
.page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-inner img,
.page-template-form-confirmation form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner img, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner img,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner img,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner img {
    width: 50px;
  }
  .page-template-page-noel .hero-slider .slick-list .slick-track .hero .row .hero-inner h4, .page-template-page-noel .hero-slider .slick-list .slick-track .hero #code-form .gform_wrapper .gform_body ul .hero-inner h4, #code-form .gform_wrapper .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero ul .hero-inner h4, .page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-jeu-de-noel form .gform_body .gform_fields .hero-inner h4, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner h4,
.page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-form-prize form .gform_body .gform_fields .hero-inner h4,
.page-template-form-prize form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner h4,
.page-template-page-noel .hero-slider .slick-list .slick-track .hero .page-template-form-confirmation form .gform_body .gform_fields .hero-inner h4,
.page-template-form-confirmation form .gform_body .page-template-page-noel .hero-slider .slick-list .slick-track .hero .gform_fields .hero-inner h4, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner h4,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner h4,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .hero-slider .slick-list .slick-track .hero .ginput_container.ginput_container_address .hero-inner h4 {
    margin: 0;
  }
  .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .col-12:first-child, .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-third:first-child, .page-template-jeu-de-noel form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-third:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-third:first-child,
.page-template-form-prize form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-third:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-third:first-child,
.page-template-form-confirmation form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-third:first-child, .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-half:first-child, .page-template-jeu-de-noel form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-half:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-half:first-child,
.page-template-form-prize form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-half:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-half:first-child,
.page-template-form-confirmation form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-half:first-child, .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield.gfield--width-full:first-child, .page-template-jeu-de-noel form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-full:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-prize form .gform_body .gform_fields .gfield.gfield--width-full:first-child,
.page-template-form-prize form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-full:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-confirmation form .gform_body .gform_fields .gfield.gfield--width-full:first-child,
.page-template-form-confirmation form .gform_body .gform_fields .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .gfield.gfield--width-full:first-child, .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_full:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_full:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_full:first-child, .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_left:first-child, .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_right:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_left:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child,
.page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_right:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_left:first-child,
.page-template-page-noel .content-row.xmas-content-blocks .content-block-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .page-template-page-noel .content-row.xmas-content-blocks .content-block-row .ginput_right:first-child {
    margin-bottom: 40px;
  }

  .page-template-jeu-de-noel .language-switcher .back-link,
.page-template-form-prize .language-switcher .back-link,
.page-template-form-confirmation .language-switcher .back-link {
    display: none !important;
  }
  .page-template-jeu-de-noel .col-game .title,
.page-template-form-prize .col-game .title,
.page-template-form-confirmation .col-game .title {
    font-size: 24px;
  }
  .page-template-jeu-de-noel .col-game .title span,
.page-template-form-prize .col-game .title span,
.page-template-form-confirmation .col-game .title span {
    font-size: 42px;
  }
  .page-template-jeu-de-noel .col-game .wrapper,
.page-template-form-prize .col-game .wrapper,
.page-template-form-confirmation .col-game .wrapper {
    width: 100%;
  }
  .page-template-jeu-de-noel .col-game .game,
.page-template-form-prize .col-game .game,
.page-template-form-confirmation .col-game .game {
    margin-bottom: 35px;
  }
  .page-template-jeu-de-noel .col-game .game .game-content,
.page-template-form-prize .col-game .game .game-content,
.page-template-form-confirmation .col-game .game .game-content {
    gap: 10px;
  }
  .page-template-jeu-de-noel .col-game .game .game-content .card-holder,
.page-template-form-prize .col-game .game .game-content .card-holder,
.page-template-form-confirmation .col-game .game .game-content .card-holder {
    width: calc(25% - 8px);
  }
  .page-template-jeu-de-noel .game-infos,
.page-template-form-prize .game-infos,
.page-template-form-confirmation .game-infos {
    padding-bottom: 35px;
  }
  .page-template-jeu-de-noel .game-notice .big-title p,
.page-template-form-prize .game-notice .big-title p,
.page-template-form-confirmation .game-notice .big-title p {
    font: 900 36px/100% "fatfrank", sans-serif !important;
  }
  .page-template-jeu-de-noel .logo-container,
.page-template-form-prize .logo-container,
.page-template-form-confirmation .logo-container {
    padding-top: 40px;
  }
  .page-template-jeu-de-noel .prize-container,
.page-template-form-prize .prize-container,
.page-template-form-confirmation .prize-container {
    padding: 35px 20px;
  }
  .page-template-jeu-de-noel header .header-content,
.page-template-form-prize header .header-content,
.page-template-form-confirmation header .header-content {
    padding: 0;
    height: 100%;
  }
  .page-template-jeu-de-noel header .header-content .title,
.page-template-form-prize header .header-content .title,
.page-template-form-confirmation header .header-content .title {
    font-size: 24px;
  }
  .page-template-jeu-de-noel header .header-content .title span,
.page-template-form-prize header .header-content .title span,
.page-template-form-confirmation header .header-content .title span {
    font-size: 42px;
  }
  .page-template-jeu-de-noel #main,
.page-template-form-prize #main,
.page-template-form-confirmation #main {
    padding-top: 0px !important;
  }
  .page-template-jeu-de-noel .confirmation,
.page-template-form-prize .confirmation,
.page-template-form-confirmation .confirmation {
    padding-bottom: 0px;
  }
  .page-template-jeu-de-noel .confirmation .big-title,
.page-template-form-prize .confirmation .big-title,
.page-template-form-confirmation .confirmation .big-title {
    font-size: 42px;
    text-align: center;
    margin-top: 35px;
  }
  .page-template-jeu-de-noel .confirmation .the-content, .page-template-jeu-de-noel .confirmation body.single-product .product .woocommerce-product-details__short-description, body.single-product .product .page-template-jeu-de-noel .confirmation .woocommerce-product-details__short-description,
.page-template-form-prize .confirmation .the-content,
.page-template-form-prize .confirmation body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-prize .confirmation .woocommerce-product-details__short-description,
.page-template-form-confirmation .confirmation .the-content,
.page-template-form-confirmation .confirmation body.single-product .product .woocommerce-product-details__short-description,
body.single-product .product .page-template-form-confirmation .confirmation .woocommerce-product-details__short-description {
    text-align: center;
  }
  .page-template-jeu-de-noel .loser .big-title,
.page-template-form-prize .loser .big-title,
.page-template-form-confirmation .loser .big-title {
    font-size: 42px;
  }
  .page-template-jeu-de-noel .loser .big-title p,
.page-template-form-prize .loser .big-title p,
.page-template-form-confirmation .loser .big-title p {
    font-size: 42px;
  }
  .page-template-jeu-de-noel #footer #copyrights > div,
.page-template-form-prize #footer #copyrights > div,
.page-template-form-confirmation #footer #copyrights > div {
    flex-direction: column;
    align-items: center;
  }
  .page-template-jeu-de-noel #footer #copyrights > div p,
.page-template-form-prize #footer #copyrights > div p,
.page-template-form-confirmation #footer #copyrights > div p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-template-form-prize form .gform_footer .gform_button {
    font-size: 18px !important;
    width: calc(100% - 30px);
  }
}
@media (max-width: 375px) {
  #header.shrink #site-logo svg {
    width: 180px;
  }
  #header #site-logo svg {
    width: 180px;
  }
  #header #site-burger {
    width: 40px;
  }

  h1 {
    font-size: 34px;
  }

  #code-form .gform_wrapper .gform_body .gform_heading .gform_description,
#newsletter-form .gform_wrapper .gform_body .gform_heading .gform_description {
    font: 400 18px/1.2em "rubrik-edge-new", sans-serif;
    margin-bottom: 30px;
  }
  #code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li,
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li {
    font-size: 16px;
  }
  #code-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label,
#newsletter-form .gform_wrapper .gform_body ul li .ginput_container_checkbox ul li label {
    font-size: 16px;
    width: 100% !important;
  }

  .page-template-page-noel .content-row .row, .page-template-page-noel .content-row #code-form .gform_wrapper .gform_body ul, #code-form .gform_wrapper .gform_body .page-template-page-noel .content-row ul, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields, .page-template-jeu-de-noel form .gform_body .page-template-page-noel .content-row .gform_fields,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields,
.page-template-form-prize form .gform_body .page-template-page-noel .content-row .gform_fields,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields,
.page-template-form-confirmation form .gform_body .page-template-page-noel .content-row .gform_fields, .page-template-page-noel .content-row .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, .page-template-jeu-de-noel form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-prize form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-prize form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .ginput_container.ginput_container_address,
.page-template-page-noel .content-row .page-template-form-confirmation form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address,
.page-template-form-confirmation form .gform_body .gform_fields .gfield .page-template-page-noel .content-row .ginput_container.ginput_container_address {
    /*&.gutter-24{
    	margin-left: -5px;
    	margin-right: -5px;

    	> div[class*="col-"] {
    		padding-left: 5px;
    		padding-right: 5px;
    	}
    }*/
  }
  .page-template-page-noel .content-row.xmas-content-blocks .content-block {
    padding: 40px 30px;
  }
  .page-template-page-noel .content-row.xmas-content-blocks .countdown-container > div .number {
    font: bold 30px/100% "rubrik-edge-new", sans-serif;
  }
  .page-template-page-noel .content-row.xmas-content-blocks .countdown-container > div .number {
    padding: 20px 10px;
  }

  .page-template-jeu-de-noel .winner .big-title,
.page-template-form-prize .winner .big-title,
.page-template-form-confirmation .winner .big-title {
    font-size: 36px;
  }
  .page-template-jeu-de-noel header .logo-container .logo,
.page-template-form-prize header .logo-container .logo,
.page-template-form-confirmation header .logo-container .logo {
    max-width: 90%;
  }
  .page-template-jeu-de-noel .prize-container .prizes-title,
.page-template-form-prize .prize-container .prizes-title,
.page-template-form-confirmation .prize-container .prizes-title {
    font-size: 36px;
  }
  .page-template-jeu-de-noel .col-game .game .game-content .card-holder,
.page-template-form-prize .col-game .game .game-content .card-holder,
.page-template-form-confirmation .col-game .game .game-content .card-holder {
    width: calc(50% - 5px) !important;
  }
  .page-template-jeu-de-noel .col-game .title,
.page-template-form-prize .col-game .title,
.page-template-form-confirmation .col-game .title {
    font-size: 22px;
  }
  .page-template-jeu-de-noel .col-game .title span,
.page-template-form-prize .col-game .title span,
.page-template-form-confirmation .col-game .title span {
    font-size: 38px;
    line-height: 110%;
  }
  .page-template-jeu-de-noel #prize,
.page-template-form-prize #prize,
.page-template-form-confirmation #prize {
    padding-bottom: 35px;
  }
}
body .cart-collaterals .woocommerce-info.meter {
  display: none;
}
body .cart-collaterals .woocommerce-message {
  overflow: hidden;
}
body .cart-collaterals .woocommerce-message + .woocommerce-message {
  display: none;
}
body .woocommerce meter {
  display: block;
  position: relative;
  width: 100%;
  height: 25px;
  background: transparent;
  background-color: transparent;
  border: 2px solid #7940B1;
  border-radius: 33px;
  overflow: hidden;
  margin: 15px 0 5px !important;
}
body .woocommerce meter::-webkit-meter-bar {
  background: none;
  /* Required to get rid of the default background property */
  background-color: white;
  box-shadow: none;
}
body .woocommerce meter::-webkit-meter-optimum-value {
  background: #7940B1 !important;
  background-color: #7940B1 !important;
  border: 0px !important;
  background-size: 100% 100%;
  border-radius: 33px;
}
body .woocommerce meter::-moz-meter-bar {
  /* Firefox Pseudo Class */
  background: #7940B1 !important;
  background-color: #7940B1 !important;
  border: 0px !important;
}
body .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  position: relative;
  display: flex;
  align-items: center;
  margin: 6px 0 20px 0 !important;
}
body .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme button.woocommerce-button {
  padding: 20px 0;
}
body .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input[type=checkbox] {
  display: none;
}
body .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input[type=checkbox]:checked + span:after {
  opacity: 1;
}
body .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {
  display: block;
  position: relative;
  padding-left: 40px;
}
body .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: -3px;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body .woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .checkbox {
  display: block;
  position: relative;
}
body .woocommerce .checkbox input[type=checkbox] {
  display: none;
}
body .woocommerce .checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
body .woocommerce .checkbox span {
  display: block;
  position: relative;
  padding-left: 40px;
}
body .woocommerce .checkbox span:before {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body .woocommerce .checkbox span:after {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .checkbox span.required {
  padding-left: 0px;
}
body .woocommerce .checkbox span.required:before {
  display: none;
}
body .woocommerce .checkbox span.required:after {
  display: none;
}
body .woocommerce ul.woocommerce-SavedPaymentMethods li input[type=radio], body .woocommerce ul#shipping_method li input[type=radio] {
  display: none;
}
body .woocommerce ul.woocommerce-SavedPaymentMethods li input[type=radio]:checked + label:after, body .woocommerce ul#shipping_method li input[type=radio]:checked + label:after {
  opacity: 1;
}
body .woocommerce ul.woocommerce-SavedPaymentMethods li label, body .woocommerce ul#shipping_method li label {
  position: relative;
  display: block;
  padding-left: 40px;
}
body .woocommerce ul.woocommerce-SavedPaymentMethods li label:before, body .woocommerce ul#shipping_method li label:before {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body .woocommerce ul.woocommerce-SavedPaymentMethods li label:after, body .woocommerce ul#shipping_method li label:after {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 5px;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce #customer_login h2 {
  font: 28px/1.18em "fatfrank", sans-serif;
  color: #032D40;
  margin-bottom: 20px;
}
body .woocommerce #customer_login form.woocommerce-form-register {
  border: 2px solid #7940B1;
  background: rgba(232, 238, 255, 0.4);
  border-radius: 30px;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row {
  margin-bottom: 12px;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row input {
  position: relative;
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  height: 50px;
  border-color: rgba(121, 64, 177, 0.5);
  background: rgba(232, 238, 255, 0.8);
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row input:focus, body .woocommerce #customer_login form.woocommerce-form-register p.form-row input:active {
  outline: 0;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row input#rememberme {
  width: auto;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .show-password-input {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-password-strength {
  margin: 12px 0;
  border-radius: 30px;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-password-strength.bad {
  background: #FB414D;
  border-color: #FB414D;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-password-strength.good {
  background: #FFC048;
  border-color: #FFC048;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-password-strength.strong {
  background: #5ece7c;
  border-color: #5ece7c;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative !important;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border-width: 2px;
  border-color: rgba(121, 64, 177, 0.5);
  background: rgba(232, 238, 255, 0.8);
  border-radius: 30px !important;
  padding: 12px 24px !important;
  width: 100% !important;
  margin: 0 0 !important;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40 !important;
  clip: none;
  height: 100% !important;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container {
  width: 100% !important;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border-width: 2px;
  border-color: rgba(121, 64, 177, 0.5);
  background: rgba(232, 238, 255, 0.8);
  border-radius: 30px;
  padding: 23px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #E8EEFF;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: rgba(121, 64, 177, 0.5) transparent transparent transparent;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-results {
  position: relative;
  top: -16px;
  background: #FFFFFF;
  border: 2px solid #E8EEFF;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 18px/1em "rubrik-edge-new", sans-serif;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
}
body .woocommerce #customer_login form.woocommerce-form-register p.form-row .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body .woocommerce .woocommerce-privacy-policy-text {
  float: none;
  font-style: italic;
  display: block;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.25em;
}
body .woocommerce form.woocommerce-form-login {
  border: 0px;
  padding: 0px;
}
body .woocommerce form.woocommerce-form-login p.form-row {
  margin-bottom: 12px;
}
body .woocommerce form.woocommerce-form-login p.form-row label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce form.woocommerce-form-login p.form-row input {
  position: relative;
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  height: 50px;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce form.woocommerce-form-login p.form-row input#rememberme {
  width: auto;
}
body .woocommerce form.woocommerce-form-login p.form-row .show-password-input {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
}
body .woocommerce form.woocommerce-form-login .lost_password a {
  color: #768791;
}
body .woocommerce form.lost_reset_password p {
  font: 700 24px/1.18em "rubrik-edge-new", sans-serif;
  color: #00ABC0;
  margin-bottom: 20px;
}
body .woocommerce form.lost_reset_password p.form-row {
  margin-bottom: 12px;
}
body .woocommerce form.lost_reset_password p.form-row > label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
  color: #032D40;
}
body .woocommerce form.lost_reset_password p.form-row input {
  width: 100%;
  padding: 6px 12px;
  border: 2px solid #BAECF2;
  border-radius: 30px;
  background: rgba(186, 236, 242, 0.4);
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .blockUI.blockOverlay {
  z-index: 50 !important;
}
body .woocommerce .woocommerce-MyAccount-navigation ul {
  background: rgba(186, 236, 242, 0.25);
  border-radius: 30px;
}
body .woocommerce .woocommerce-MyAccount-navigation ul li {
  position: relative;
  padding: 20px 20px 20px 70px;
  display: block;
  border-top: 1px solid #BAECF2;
}
body .woocommerce .woocommerce-MyAccount-navigation ul li:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  left: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
body .woocommerce .woocommerce-MyAccount-navigation ul li:first-child {
  border-top: 0px;
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #7940B1;
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 {
  padding: 20px;
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard:after {
  background-image: url("../images/account/dashboard.svg");
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders:after {
  background-image: url("../images/account/shopping-cart.svg");
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--gift-cards:after {
  background-image: url("../images/account/gift-card.svg");
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address:after {
  background-image: url("../images/account/home.svg");
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods:after {
  background-image: url("../images/account/credit-card-payment.svg");
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account:after {
  background-image: url("../images/account/settings.svg");
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--aff:after {
  background-image: url("../images/account/megaphone.svg");
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a {
  padding-right: 40px;
}
body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  right: 10px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/account/logout.svg");
}
body .woocommerce .woocommerce-MyAccount-content h1,
body .woocommerce .woocommerce-MyAccount-content h2,
body .woocommerce .woocommerce-MyAccount-content h3,
body .woocommerce .woocommerce-MyAccount-content h4,
body .woocommerce .woocommerce-MyAccount-content h5,
body .woocommerce .woocommerce-MyAccount-content h6 {
  font: 28px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 20px;
}
body .woocommerce .woocommerce-MyAccount-content p {
  margin-bottom: 1.15em;
}
body .woocommerce .woocommerce-MyAccount-content button {
  background: #7940B1;
  color: #FFFFFF;
  cursor: pointer;
  border: 0px;
}
body .woocommerce .woocommerce-MyAccount-content button:hover {
  background: #FFC048;
}
body .woocommerce .woocommerce-MyAccount-content fieldset {
  display: flex;
  align-items: center;
  border: 2px solid #7940B1;
  background: rgba(232, 238, 255, 0.5);
  border-radius: 15px;
  margin-bottom: 20px;
  padding: 20px;
}
body .woocommerce .woocommerce-MyAccount-content fieldset input {
  margin: 0 18px;
  float: initial;
  padding: 6px 10px;
  border: 2px solid #FFC048;
  border-radius: 30px;
  background: rgba(255, 192, 72, 0.15);
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  width: 300px;
}
body .woocommerce .woocommerce-MyAccount-content fieldset input:focus, body .woocommerce .woocommerce-MyAccount-content fieldset input:active {
  outline: 0px;
}
body .woocommerce .woocommerce-MyAccount-content fieldset button {
  margin: 0px !important;
}
body .woocommerce .woocommerce-MyAccount-content .yith-add-new-gc-my-account-notice-message {
  padding: 20px;
  border: 2px solid #FB414D;
  margin-bottom: 30px;
  border-radius: 30px;
  color: #FB414D;
  background: rgba(251, 65, 77, 0.1);
}
body .woocommerce .woocommerce-MyAccount-content table {
  border: 2px solid #BAECF2;
  border-collapse: collapse;
}
body .woocommerce .woocommerce-MyAccount-content table th {
  background: #BAECF2;
  color: #032D40;
  padding: 9px 12px;
  font-size: 20px;
  line-height: 1.5em;
  border-collapse: collapse;
}
body .woocommerce .woocommerce-MyAccount-content table td {
  padding: 9px 12px;
  font-size: 20px;
  line-height: 1em;
}
body .woocommerce .woocommerce-MyAccount-content a.woocommerce-button:hover {
  background: #7940B1;
  color: #FFFFFF;
}
body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses h3 {
  font: 30px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  float: none;
  margin-bottom: 8px;
}
body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses a.edit {
  float: none;
  display: inline-block;
  margin-bottom: 12px;
}
body .woocommerce .woocommerce-MyAccount-content form h3 {
  font: 30px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  float: none;
  margin-bottom: 18px;
}
body .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields p.form-row {
  margin-bottom: 12px;
}
body .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields p.form-row label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce .woocommerce-MyAccount-content form .woocommerce-address-fields p.form-row input {
  padding: 6px 12px;
  border: 2px solid #BAECF2;
  border-radius: 30px;
  background: rgba(186, 236, 242, 0.4);
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .woocommerce-MyAccount-content form button.button {
  margin-top: 20px;
}
body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete {
  background: #FB414D !important;
}
body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.delete:hover {
  background: #7940B1;
}
body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart #payment, body .woocommerce .woocommerce-MyAccount-content .woocommerce-checkout #payment, body .woocommerce .woocommerce-MyAccount-content #add_payment_method #payment {
  background: none;
  border-radius: 0px;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul {
  background: rgba(186, 236, 242, 0.5);
  border-radius: 15px;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul label {
  display: flex;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox {
  border-radius: 15px;
  background: #baecf2 !important;
  color: #032D40 !important;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox:before {
  border-bottom-color: #baecf2 !important;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox fieldset {
  display: block;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox .form-row {
  padding: 0px;
  margin: 0 0 20px 0;
  width: 100%;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox .form-row label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox .stripe-source-errors ul.woocommerce-error {
  border: 2px solid #FB414D;
  border-radius: 30px;
  margin: 12px 0;
  color: #FB414D;
  background: rgba(251, 65, 77, 0.15);
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox .stripe-source-errors ul.woocommerce-error:before {
  color: #FB414D;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox fieldset.wc-payment-form .wc-stripe-elements-field {
  padding: 6px 12px;
  border: 2px solid #BAECF2;
  border-radius: 30px;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox fieldset.wc-payment-form .wc-stripe-elements-field.invalid {
  color: #FB414D;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul .woocommerce-PaymentBox fieldset.wc-payment-form .wc-stripe-elements-field input {
  font: 18px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
}
body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order {
  display: block;
  width: auto;
  margin-top: 20px;
}
body .woocommerce .woocommerce-MyAccount-content #payment ul.wc_payment_methods {
  border-bottom: 2px solid #00ABC0;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row {
  margin-bottom: 12px;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row input {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row input:focus, body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row input:active {
  outline: 0;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.password-input input, body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.show-password-input input {
  position: relative;
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  height: 50px;
  border-color: rgba(121, 64, 177, 0.5);
  background: rgba(232, 238, 255, 0.8);
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.password-input input:focus, body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.password-input input:active, body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.show-password-input input:focus, body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.show-password-input input:active {
  outline: 0;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.password-input .show-password-input, body .woocommerce .woocommerce-MyAccount-content form.edit-account p.form-row span.show-password-input .show-password-input {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account button.button {
  margin-top: 20px;
}
body .woocommerce .woocommerce-MyAccount-content form.edit-account fieldset {
  display: block;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav {
  height: 100px;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button {
  margin: 0 18px;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container {
  width: calc(50% - 200px) !important;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 23px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #BAECF2;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #00ABC0 transparent transparent transparent;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-results {
  position: relative;
  top: -8px;
  background: #FFFFFF;
  border: 2px solid #BAECF2;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 18px/1em "rubrik-edge-new", sans-serif;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav select.affwp-graphs-date-options {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border: 2px solid #BAECF2;
  background-color: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard ul li {
  margin: 0 auto;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard ul li.active a {
  color: #032D40;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard ul li.active a:hover {
  color: #768791;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard ul li a {
  color: #768791;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard ul li a:hover {
  color: #032D40;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap input {
  position: relative;
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  height: 50px;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap input:focus, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap input:active {
  outline: none;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap.affwp-send-notifications-wrap input[type=checkbox] {
  display: none;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap.affwp-send-notifications-wrap input[type=checkbox]:checked + label:after {
  opacity: 1;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap.affwp-send-notifications-wrap label {
  position: relative;
  padding-left: 40px;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap.affwp-send-notifications-wrap label:before {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-wrap.affwp-send-notifications-wrap label:after {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap {
  display: inline-block;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard table.affwp-table td,
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard table.affwp-table th {
  border: 2px solid #BAECF2;
  font: 18px/1em "rubrik-edge-new", sans-serif;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard table.affwp-table {
  border: 2px solid #BAECF2;
  border-radius: 30px;
  border-collapse: collapse;
}
body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard table.affwp-table th {
  font-size: 20px;
  font-weight: 700;
}
body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset {
  display: block;
}
body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset legend {
  text-align: left !important;
  color: #032D40 !important;
  width: auto !important;
  margin: 0 4px !important;
}
body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset p {
  margin-bottom: 12px;
}
body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset p label {
  font: 20px/1em "rubrik-edge-new", sans-serif !important;
  color: #032D40 !important;
  margin-bottom: 6px;
}
body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset p input {
  position: relative;
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  height: 50px;
  border-color: rgba(121, 64, 177, 0.5) !important;
  background: rgba(232, 238, 255, 0.8) !important;
  font: 18px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset p input:focus, body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset p input:active {
  outline: 0;
}
body .woocommerce .woocommerce-MyAccount-content form.affwp-form fieldset p textarea {
  border-color: rgba(121, 64, 177, 0.5) !important;
  background: rgba(232, 238, 255, 0.8) !important;
}
body .woocommerce .return-to-shop a {
  margin: 30px 0;
}
body .woocommerce .return-to-shop a:hover {
  background: #7940B1;
  color: #FFFFFF;
}
body .woocommerce .woocommerce-notices-wrapper {
  margin: 15px 0;
}
body .woocommerce .woocommerce-notices-wrapper div, body .woocommerce .woocommerce-notices-wrapper ul {
  margin: 15px 0;
  border-radius: 15px;
  border: 2px solid;
}
body .woocommerce .woocommerce-message {
  color: #5ece7c;
  background: rgba(186, 238, 206, 0.75);
  border-color: #5ece7c;
  border: 2px solid;
  border-radius: 15px;
}
body .woocommerce .woocommerce-message:before {
  color: #5ece7c;
}
body .woocommerce .woocommerce-info {
  color: #7940B1;
  background: rgba(232, 238, 255, 0.75);
  border-color: #7940B1;
  border: 2px solid;
  border-radius: 15px;
}
body .woocommerce .woocommerce-info:before {
  color: #7940B1;
}
body .woocommerce .woocommerce-info.meter {
  margin-bottom: 50px !important;
}
body .woocommerce .ywgc_enter_code {
  border-radius: 15px;
  border: 2px solid #00ABC0;
  color: #032D40;
}
body .woocommerce .ywgc_enter_code p.form-row {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 15px 0;
}
body .woocommerce .ywgc_enter_code p.form-row input#giftcard_code {
  float: initial;
  padding: 12px 24px;
  border: 2px solid #FFC048;
  border-radius: 30px;
  background: rgba(255, 192, 72, 0.15);
  font: 400 20px/1em "rubrik-edge-new", sans-serif;
  font-style: normal;
  font-style: italic;
  color: #032D40;
}
body .woocommerce .ywgc_enter_code p.form-row input#giftcard_code:focus, body .woocommerce .ywgc_enter_code p.form-row input#giftcard_code:active {
  outline: none;
}
body .woocommerce .ywgc_enter_code p.form-row button.button {
  background: #7940B1 !important;
  color: #FFFFFF;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce .ywgc_enter_code p.form-row button.button:hover {
  background: #00ABC0 !important;
}
body .woocommerce .woocommerce-error {
  color: #FB414D;
  background: rgba(251, 65, 77, 0.15);
  border-color: #FB414D;
  border: 2px solid;
  border-radius: 15px;
}
body .woocommerce .woocommerce-error a {
  color: #032D40;
}
body .woocommerce .woocommerce-error a:hover {
  color: #FFFFFF;
}
body .woocommerce .woocommerce-error:before {
  color: #FB414D;
}
body .woocommerce a.remove {
  color: #FB414D !important;
  background: #FFFFFF;
}
body .woocommerce a.remove:hover {
  background: #FB414D;
}
body .woocommerce ul.products {
  margin: 0;
}
body .woocommerce ul.products li.product {
  margin-bottom: 60px;
}
body .woocommerce ul.products li.product .price {
  font: 25px/1.2em "rubrik-edge-new", sans-serif;
  color: #FB414D;
}
body .woocommerce .woocommerce-cart-form table.shop_table {
  border: 2px solid #BAECF2;
  border-radius: 8px;
  margin: 0 0;
  margin-bottom: 30px;
}
body .woocommerce .woocommerce-cart-form table.shop_table th {
  background: #BAECF2;
  font: 700 18px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  padding: 8px;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-thumbnail img {
  width: 300px;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-thumbnail:before {
  display: none;
}
body .woocommerce .woocommerce-cart-form table.shop_table td {
  padding: 10px;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper {
  display: flex;
  align-items: center;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button] {
  font-size: 14px;
  background: #5ece7c !important;
  background-color: #5ece7c !important;
  padding: 12px 15px;
  margin-left: 4px;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper input[type=button]:hover {
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-name a {
  position: relative;
  display: block;
  width: calc(100% - 20px);
  color: #7940B1;
  padding-right: 18px;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-name a:hover {
  color: #00ABC0;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-name a:hover:after {
  background-image: url("../images/icon-pencil-alt.svg");
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-name a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -4px;
  height: 20px;
  width: 20px;
  transition: all all 0.3s ease-in-out;
  background-image: url("../images/icon-pencil.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-name dl.variation {
  font: 14px/1.5em "rubrik-edge-new", sans-serif;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-name dl.variation dt {
  font-weight: bold;
  display: block;
  float: none;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-name dl.variation dl {
  display: block;
  margin-bottom: 12px;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-price {
  color: #00ABC0;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-quantity input {
  font: 16px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  border: 2px solid #BAECF2;
  border-radius: 15px;
  padding: 6px 10px;
  text-align: left;
  width: 50px;
}
body .woocommerce .woocommerce-cart-form table.shop_table td.product-subtotal {
  color: #00ABC0;
}
body .woocommerce .woocommerce-cart-form table.shop_table .add-extra-product {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
body .woocommerce .woocommerce-cart-form table.shop_table .add-extra-product a {
  margin-right: 8px;
}
body .woocommerce .woocommerce-cart-form table.shop_table input#coupon_code {
  float: initial;
  padding: 6px 10px;
  border: 2px solid #FFC048;
  border-radius: 30px;
  background: rgba(255, 192, 72, 0.15);
  font: 20px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  width: 200px;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data {
  width: 50%;
  float: left;
  margin-bottom: 40px;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data h3 {
  color: #00ABC0;
  margin-bottom: 12px;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table {
  border: 2px solid #BAECF2;
  border-radius: 8px;
  width: 100%;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table thead tr th {
  background: #BAECF2;
  padding: 8px;
  font-size: 16px;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td {
  font: 400 14px/1em "rubrik-edge-new", sans-serif;
  padding: 8px;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td a {
  color: #7940B1;
  text-align: left;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td a.remove {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  font-size: 12px;
  line-height: 1em;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button] {
  font-size: 12px;
  background: #5ece7c !important;
  background-color: #5ece7c !important;
  padding: 12px;
}
body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td input[type=button]:hover {
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body .woocommerce .cart-collaterals div.wc-proceed-to-checkout {
  text-align: center;
}
body .woocommerce .cart-collaterals a.checkout-button {
  display: inline-block;
}
body .woocommerce .cart-collaterals h2 {
  font: 38px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 12px;
}
body .woocommerce .cart-collaterals table.shop_table {
  border: 2px solid #BAECF2;
  border-radius: 8px;
}
body .woocommerce .cart-collaterals table.shop_table td {
  font-weight: 700;
  padding: 10px;
  border-color: #BAECF2;
}
body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon {
  padding: 6px 10px;
  font-size: 18px;
}
body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon[data-coupon=livre-gratuit], body .woocommerce .cart-collaterals table.shop_table td a.woocommerce-remove-coupon[data-coupon=free-book] {
  display: none !important;
}
body .woocommerce .cart-collaterals table.shop_table th {
  background: #BAECF2;
  color: #032D40;
  border-top-color: #FFFFFF;
}
body .woocommerce .cart-collaterals table.shop_table th small {
  font: 400 15px/1em "rubrik-edge-new", sans-serif;
  display: block;
  color: #768791;
}
body .woocommerce .cart-collaterals ul.woocommerce-shipping-methods {
  font: 18px/1.18em "rubrik-edge-new", sans-serif;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container {
  width: 100% !important;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 23px 18px;
  width: 100%;
  margin: 0 0;
  font: 400 18px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #BAECF2;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #00ABC0 transparent transparent transparent;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-results {
  position: relative;
  top: -8px;
  background: #FFFFFF;
  border: 2px solid #BAECF2;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 18px/1em "rubrik-edge-new", sans-serif;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-results li {
  display: block;
  padding: 9px 18px;
  line-height: 1em;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row input {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 9px 18px !important;
  width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 18px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row input:focus, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator p.form-row input:active {
  outline: 0;
}
body .woocommerce .cross-sells {
  width: 51% !important;
}
body .woocommerce .cross-sells ul {
  display: block;
}
body .woocommerce .cross-sells ul li {
  width: 100% !important;
  display: block;
  margin: 0 0 20px 0;
}
body .woocommerce .cross-sells ul li .product-meta h2.woocommerce-loop-product__title {
  font: 24px/1.125em "fatfrank", sans-serif;
  padding: 0px 0px;
}
body .woocommerce .cross-sells ul li .product-meta .single-product-img > img {
  padding: 0px 0px !important;
}
body .woocommerce .cross-sells ul li .product-meta .product-title {
  margin-bottom: 18px !important;
}
body .woocommerce .cross-sells ul li .product-meta .the-content, body.single-product .woocommerce .cross-sells ul li .product-meta .product .woocommerce-product-details__short-description, body.single-product .product .woocommerce .cross-sells ul li .product-meta .woocommerce-product-details__short-description {
  font: 400 16px/1.25em "rubrik-edge-new", sans-serif !important;
}
body .woocommerce .cross-sells ul li .product-meta .the-content > p, body.single-product .woocommerce .cross-sells ul li .product-meta .product .woocommerce-product-details__short-description > p, body.single-product .product .woocommerce .cross-sells ul li .product-meta .woocommerce-product-details__short-description > p {
  margin-bottom: 0px;
}
body .woocommerce .cross-sells ul li .product-meta .the-content.product-desc, body.single-product .woocommerce .cross-sells ul li .product-meta .product .product-desc.woocommerce-product-details__short-description, body.single-product .product .woocommerce .cross-sells ul li .product-meta .product-desc.woocommerce-product-details__short-description {
  margin-bottom: 0px !important;
}
body .woocommerce .woocommerce-form-coupon-toggle {
  margin: 15px 0;
}
body .woocommerce .woocommerce-form-coupon-toggle div, body .woocommerce .woocommerce-form-coupon-toggle ul {
  margin: 15px 0;
  border-radius: 15px;
  border: 2px solid;
}
body .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
  color: #032D40;
  background: rgba(255, 192, 72, 0.15);
  border-color: #FFC048;
}
body .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info:before {
  color: #FFC048;
}
body .woocommerce form.checkout-coupon, body .woocommerce .woocommerce-form-coupon {
  margin: 0px;
  border-radius: 15px;
  border: 2px solid #00ABC0;
}
body .woocommerce form.checkout-coupon p, body .woocommerce .woocommerce-form-coupon p {
  margin-bottom: 12px;
}
body .woocommerce form.checkout-coupon p.form-row, body .woocommerce .woocommerce-form-coupon p.form-row {
  display: inline-block;
  float: none;
  width: auto;
  padding: 0px;
  margin: 0px;
}
body .woocommerce form.checkout-coupon p.form-row.form-row-first, body .woocommerce .woocommerce-form-coupon p.form-row.form-row-first {
  float: none;
}
body .woocommerce form.checkout-coupon p.form-row.form-row-last, body .woocommerce .woocommerce-form-coupon p.form-row.form-row-last {
  float: none;
}
body .woocommerce form.checkout-coupon input#coupon_code, body .woocommerce .woocommerce-form-coupon input#coupon_code {
  float: initial;
  padding: 12px 24px;
  border: 2px solid #FFC048;
  border-radius: 30px;
  background: rgba(255, 192, 72, 0.15);
  font: 400 20px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
  width: 200px;
}
body .woocommerce form.checkout, body .woocommerce .woocommerce-checkout {
  margin: 30px 0;
}
body .woocommerce form.checkout h3, body .woocommerce .woocommerce-checkout h3 {
  font: 30px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 18px;
}
body .woocommerce form.checkout p.form-row, body .woocommerce .woocommerce-checkout p.form-row {
  margin-bottom: 12px;
}
body .woocommerce form.checkout p.form-row label, body .woocommerce .woocommerce-checkout p.form-row label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce form.checkout p.form-row span.select2, body .woocommerce .woocommerce-checkout p.form-row span.select2 {
  display: none;
}
body .woocommerce form.checkout p.form-row select, body .woocommerce .woocommerce-checkout p.form-row select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative !important;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border: 2px solid #BAECF2 !important;
  background-color: rgba(186, 236, 242, 0.4) !important;
  border-radius: 30px !important;
  padding: 12px 24px !important;
  width: 100% !important;
  margin: 0 0 !important;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40 !important;
  clip: none;
  height: 100% !important;
}
body .woocommerce form.checkout p.form-row select .select2-hidden-accessible, body .woocommerce .woocommerce-checkout p.form-row select .select2-hidden-accessible {
  position: relative !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border: 2px solid #BAECF2 !important;
  background-color: rgba(186, 236, 242, 0.4) !important;
  border-radius: 30px !important;
  padding: 12px 24px !important;
  width: 100% !important;
  margin: 0 0 !important;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40 !important;
  clip: none;
  height: 100% !important;
}
body .woocommerce form.checkout p.form-row .chosen-container, body .woocommerce .woocommerce-checkout p.form-row .chosen-container {
  width: 100% !important;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-single, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 23px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-single span, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #BAECF2;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-single div, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-single div b, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #00ABC0 transparent transparent transparent;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-drop, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-drop .chosen-search, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-drop .chosen-search input[type=text], body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-results, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-results {
  position: relative;
  top: -8px;
  background: #FFFFFF;
  border: 2px solid #BAECF2;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 20px/1em "rubrik-edge-new", sans-serif;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-results li, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
}
body .woocommerce form.checkout p.form-row .chosen-container .chosen-results li.active-result.hightlighted, body .woocommerce .woocommerce-checkout p.form-row .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body .woocommerce form.checkout span.woocommerce-input-wrapper input, body .woocommerce .woocommerce-checkout span.woocommerce-input-wrapper input {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body .woocommerce form.checkout span.woocommerce-input-wrapper input:focus, body .woocommerce form.checkout span.woocommerce-input-wrapper input:active, body .woocommerce .woocommerce-checkout span.woocommerce-input-wrapper input:focus, body .woocommerce .woocommerce-checkout span.woocommerce-input-wrapper input:active {
  outline: 0;
}
body .woocommerce form.checkout .woocommerce-additional-fields textarea, body .woocommerce .woocommerce-checkout .woocommerce-additional-fields textarea {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 16px;
  padding: 12px 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1.25em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
  resize: vertical;
}
body .woocommerce form.checkout .woocommerce-additional-fields textarea:focus, body .woocommerce form.checkout .woocommerce-additional-fields textarea:active, body .woocommerce .woocommerce-checkout .woocommerce-additional-fields textarea:focus, body .woocommerce .woocommerce-checkout .woocommerce-additional-fields textarea:active {
  outline: 0;
}
body .woocommerce form.checkout h3#order_review_heading, body .woocommerce .woocommerce-checkout h3#order_review_heading {
  margin-top: 60px;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table {
  border: 2px solid #BAECF2;
  border-collapse: collapse;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table th, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table th {
  background: #BAECF2;
  color: #032D40;
  border-color: #FFFFFF;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table td, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table td {
  border-color: #BAECF2;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  color: #7940B1;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name dl.variation, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name dl.variation {
  margin: 12px 0;
  color: #032D40;
  font: 14px/1.5em "rubrik-edge-new", sans-serif;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name dl.variation dt, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name dl.variation dt {
  font-weight: bold;
  display: block;
  float: none;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name dl.variation dl, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart_item td.product-name dl.variation dl {
  display: block;
  margin-bottom: 12px;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon {
  padding: 6px 10px;
  font-size: 18px;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon[data-coupon=livre-gratuit], body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon[data-coupon=free-book], body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon[data-coupon=livre-gratuit], body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount a.woocommerce-remove-coupon[data-coupon=free-book] {
  display: none !important;
}
body .woocommerce form.checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.woocommerce-shipping-totals ul label, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tfoot tr.woocommerce-shipping-totals ul label {
  font-weight: 400;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row {
  position: relative;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row input, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row input {
  position: relative;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row span.show-password-input, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row span.show-password-input {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 24px;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row input#account_password, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row input#account_password {
  border-color: #FB414D;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength {
  margin: 12px 0;
  border-radius: 30px;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength.bad, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength.bad {
  background: #FB414D;
  border-color: #FB414D;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength.good, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength.good {
  background: #FFC048;
  border-color: #FFC048;
}
body .woocommerce form.checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength.strong, body .woocommerce .woocommerce-checkout .woocommerce-account-fields p.form-row .woocommerce-password-strength.strong {
  background: #5ece7c;
  border-color: #5ece7c;
}
body .woocommerce #payment {
  background: rgba(186, 236, 242, 0.5);
  border-radius: 15px;
}
body .woocommerce #payment label {
  display: flex;
}
body .woocommerce #payment .payment_box {
  border-radius: 15px;
  background: #baecf2;
  color: #032D40;
}
body .woocommerce #payment .payment_box:before {
  border-bottom-color: #baecf2;
}
body .woocommerce #payment .payment_box .form-row {
  padding: 0px;
  margin: 0 0 20px 0;
}
body .woocommerce #payment .payment_box .form-row label {
  font: 20px/1em "rubrik-edge-new", sans-serif;
  margin-bottom: 6px;
}
body .woocommerce #payment .payment_box .stripe-source-errors ul.woocommerce-error {
  border: 2px solid #FB414D;
  border-radius: 30px;
  margin: 12px 0;
  color: #FB414D;
  background: rgba(251, 65, 77, 0.15);
}
body .woocommerce #payment .payment_box .stripe-source-errors ul.woocommerce-error:before {
  color: #FB414D;
}
body .woocommerce #payment .payment_box fieldset.wc-payment-form .wc-stripe-elements-field {
  position: relative;
  border-radius: 30px;
  padding: 15px 24px;
  width: 100%;
  height: 50px;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
  font: 18px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce #payment .payment_box fieldset.wc-payment-form .wc-stripe-elements-field.invalid {
  color: #FB414D;
}
body .woocommerce #payment .payment_box fieldset.wc-payment-form .wc-stripe-elements-field input {
  font: 18px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
}
body .woocommerce #payment .payment_box #stripe-payment-data .form-row.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox] {
  display: none;
}
body .woocommerce #payment .payment_box #stripe-payment-data .form-row.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox]:checked + label:after {
  opacity: 1;
}
body .woocommerce #payment .payment_box #stripe-payment-data .form-row.woocommerce-SavedPaymentMethods-saveNew label {
  position: relative;
  padding-left: 40px;
}
body .woocommerce #payment .payment_box #stripe-payment-data .form-row.woocommerce-SavedPaymentMethods-saveNew label:before {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body .woocommerce #payment .payment_box #stripe-payment-data .form-row.woocommerce-SavedPaymentMethods-saveNew label:after {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
body .woocommerce #payment .form-row.place-order button#place_order {
  display: block;
  width: auto;
  margin-top: 20px;
}
body .woocommerce #payment ul.wc_payment_methods {
  border-bottom: 2px solid #00ABC0;
}
body .woocommerce .woocommerce-order h2 {
  font: 28px/1em "fatfrank", sans-serif;
  margin-bottom: 20px;
}
body .woocommerce .woocommerce-order .woocommerce-notice {
  font: 34px/1em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 30px;
}
body .woocommerce .woocommerce-order ul.woocommerce-order-overview li {
  color: #768791;
}
body .woocommerce .woocommerce-order ul.woocommerce-order-overview li strong {
  color: #032D40;
}
body .woocommerce .woocommerce-order section.woocommerce-order-details table {
  border: 2px solid #BAECF2;
  border-collapse: collapse;
  border-radius: 30px;
}
body .woocommerce .woocommerce-order section.woocommerce-order-details table th {
  background: #BAECF2;
  color: #032D40;
}
body .woocommerce .woocommerce-order section.woocommerce-order-details table td a {
  color: #7940B1;
}
body .woocommerce .woocommerce-order section.woocommerce-order-details table td .woocommerce-Price-amount {
  color: #00ABC0;
}
body .woocommerce .woocommerce-order section.woocommerce-order-details table td ul li .wc-item-meta-label {
  display: block;
  float: none;
}
body .woocommerce .woocommerce-order section.woocommerce-order-details table td ul li p {
  display: block;
  float: none;
}
body .woocommerce .woocommerce-order section.woocommerce-order-details table tfoot td .woocommerce-Price-amount {
  color: #032D40;
}
body .woocommerce .woocommerce-order section.woocommerce-customer-details address {
  border: 2px solid #BAECF2;
  border-radius: 15px;
}
body .woocommerce .woocommerce-order section.woocommerce-customer-details address br {
  display: block !important;
}
body nav.woocommerce-breadcrumb {
  text-align: center;
}
body nav.woocommerce-breadcrumb a {
  color: #FB414D;
  transition: all all 0.3s ease-in-out;
}
body nav.woocommerce-breadcrumb a:hover {
  color: #7940B1;
}
body header.woocommerce-products-header h1 {
  text-align: center;
  color: #00ABC0;
  margin-bottom: 80px;
}
body form.woocommerce-ordering {
  position: relative;
  display: block;
  width: 50%;
}
body form.woocommerce-ordering select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border: 2px solid #BAECF2;
  background-color: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body form.woocommerce-ordering .chosen-container {
  width: 100% !important;
}
body form.woocommerce-ordering .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 23px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body form.woocommerce-ordering .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #BAECF2;
}
body form.woocommerce-ordering .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
body form.woocommerce-ordering .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #00ABC0 transparent transparent transparent;
}
body form.woocommerce-ordering .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
body form.woocommerce-ordering .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
body form.woocommerce-ordering .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
body form.woocommerce-ordering .chosen-container .chosen-results {
  position: relative;
  top: -8px;
  background: #FFFFFF;
  border: 2px solid #BAECF2;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 18px/1em "rubrik-edge-new", sans-serif;
}
body form.woocommerce-ordering .chosen-container .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
}
body form.woocommerce-ordering .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body .woocommerce-result-count {
  display: block;
  font: 24px/1em "fatfrank", sans-serif;
  color: #032D40;
  margin-bottom: 12px;
}
body a.widget-filter {
  display: none;
  font: 24px/1em "fatfrank", sans-serif;
  text-decoration: none;
  color: #00ABC0;
  margin: 20px 0;
  transition: all all 0.3s ease-in-out;
}
body a.widget-filter:hover {
  color: #032D40;
}
body a.widget-filter:focus, body a.widget-filter:active {
  outline: none;
}
body .widget {
  position: relative;
  margin: 0 0 40px 0;
}
body .widget .product-search-filter-reset {
  display: block;
  font: 24px/1em "fatfrank", sans-serif;
  color: #032D40;
  margin-bottom: 12px;
}
body .widget .product-search-filter-reset .product-search-filter-reset-heading {
  display: none;
}
body .widget .product-search-filter-reset form.product-search-filter-reset-form {
  margin-top: 30px;
}
body .widget .product-search-filter-terms .product-search-filter-terms-heading,
body .widget .product-search-filter-terms .product-search-filter-category-heading {
  display: block;
  font: 24px/1em "fatfrank", sans-serif;
  color: #032D40;
  margin-bottom: 12px;
}
body .widget .product-search-filter-terms ul.product-categories {
  margin-bottom: 30px;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item-all.nav-back a {
  display: none;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item-all.nav-back:before {
  display: none;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item-all.nav-back a {
  color: #FB414D;
  transition: all all 0.3s ease-in-out;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item-all.nav-back a:hover {
  color: #032D40;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item {
  display: block;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item.current-cat a {
  color: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item.current-cat a:hover {
  color: #7940B1;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item.current-cat a:after {
  opacity: 1;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item span.count {
  display: none;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item a {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font: 24px/1.2em "rubrik-edge-new", sans-serif;
  color: #032D40;
  padding-left: 40px;
  transition: all all 0.3s ease-in-out;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item a:hover {
  color: #00ABC0;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item a:hover:after {
  opacity: 1;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item a img {
  border: 0px;
  border-radius: 0px;
  box-shadow: none;
  margin: 0 8px 0 0;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item a:before {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  left: 0;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body .widget .product-search-filter-terms ul.product-categories li.cat-item a:after {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 5px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
body .widget .product-search-filter-terms .product-tags a {
  display: flex;
  border: 0px;
  border-radius: 0px;
  padding: 0px;
}
body .widget .product-search-filter-terms .product-tags a.nav-back {
  display: none;
}
body .widget .product-search-filter-terms .product-tags a.nav-back a {
  display: none;
}
body .widget .product-search-filter-terms .product-tags a.nav-back:before {
  display: none;
}
body .widget .product-search-filter-terms .product-tags a.current-tag span.term-name {
  color: #00ABC0;
}
body .widget .product-search-filter-terms .product-tags a.current-tag span.term-name:after {
  opacity: 1;
}
body .widget .product-search-filter-terms .product-tags a img.term-thumbnail {
  position: absolute;
  left: 40px;
  display: block;
  width: 30px !important;
  height: 30px;
  margin: 0 20px;
  padding: 0 0;
  vertical-align: none;
  box-shadow: none;
  border-radius: 0px;
}
body .widget .product-search-filter-terms .product-tags a span.term-name {
  position: relative;
  vertical-align: baseline;
  padding: 0px;
  padding-left: 40px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font: 24px/1.2em "rubrik-edge-new", sans-serif;
  color: #032D40;
  transition: all all 0.3s ease-in-out;
}
body .widget .product-search-filter-terms .product-tags a span.term-name:hover {
  color: #00ABC0;
}
body .widget .product-search-filter-terms .product-tags a span.term-name:hover:after {
  opacity: 1;
}
body .widget .product-search-filter-terms .product-tags a span.term-name:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  z-index: 1;
  left: 0;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body .widget .product-search-filter-terms .product-tags a span.term-name:after {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 5px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
body ul.products li.product-block .product-themes ul li a.product-theme-icon span.label {
  display: none;
  line-height: 1em;
}
body ul.products li.product-block .product-themes ul li a.product-theme-icon svg {
  height: 30px;
  width: 30px;
}
body ul.products li.product-block .product-meta .single-product-img span.onsale {
  background: #5ece7c;
  padding: 10px;
}
body ul.products li.product-block .product-meta .single-product-content a.product-title {
  margin-bottom: 20px;
}
body ul.products li.product-block .product-meta .single-product-content span.price {
  font: 700 24px/1.3em "rubrik-edge-new", sans-serif;
  color: #FB414D;
}
body ul.products li.product-block .product-meta .single-product-content span.price del {
  color: #666A72;
}
body.single-product .woocommerce-notices-wrapper {
  margin: 15px 0;
}
body.single-product .woocommerce-notices-wrapper div, body.single-product .woocommerce-notices-wrapper ul {
  margin: 15px 0;
  border-radius: 15px;
  border: 2px solid;
}
body.single-product .woocommerce-notices-wrapper div li a, body.single-product .woocommerce-notices-wrapper ul li a {
  text-decoration: none;
}
body.single-product .woocommerce-notices-wrapper .woocommerce-error {
  border: 2px solid #FB414D;
  border-radius: 30px;
  margin: 12px 0;
  color: #FB414D;
  background: rgba(251, 65, 77, 0.15);
}
body.single-product .woocommerce-notices-wrapper .woocommerce-error:before {
  color: #FB414D;
}
body.single-product .woocommerce-notices-wrapper .woocommerce-error li a {
  color: #032D40;
  font-weight: bold;
}
body.single-product .woocommerce-message {
  color: #5ece7c;
  background: rgba(186, 238, 206, 0.75);
  border-color: #5ece7c;
  border: 2px solid;
  border-radius: 15px;
}
body.single-product .woocommerce-message:before {
  color: #5ece7c;
}
body.single-product .woocommerce-breadcrumb {
  margin: 0px 0 60px 0;
  color: #7940B1;
  font-size: 16px;
}
body.single-product .woocommerce-breadcrumb a {
  font-size: 16px;
  text-decoration: none;
  color: #768791;
}
body.single-product .back-to-shop {
  text-align: center;
}
body.single-product .back-to-shop a {
  text-decoration: none;
  color: #FB414D;
  font: 18px/1em "rubrik-edge-new", sans-serif;
  transition: all all 0.3s ease-in-out;
}
body.single-product .back-to-shop a:hover {
  color: #7940B1;
}
body.single-product #product-pane {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 20px 0;
  background: #BAECF2;
  text-align: center;
  z-index: 10;
}
body.single-product #product-pane a {
  position: relative;
}
body.single-product h1.product_title {
  text-align: center;
  color: #00ABC0;
}
body.single-product .product .gform_wrapper .gfield_total {
  display: none;
}
body.single-product .product .product-top .woocommerce-product-gallery {
  position: relative;
  width: 100%;
}
body.single-product .product .product-top .woocommerce-product-gallery ol li {
  position: relative;
  position: relative;
  display: block;
  height: 85px;
  width: 85px;
}
body.single-product .product .product-top .woocommerce-product-gallery ol li > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
body.single-product .product .product-top .woocommerce-product-gallery ol li > img {
  position: relative;
  object-position: center;
  border-radius: 50%;
}
body.single-product .product .product-top .woocommerce-product-gallery ol li > img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
body.single-product .product p.price {
  position: relative;
  font: 700 37px/1.3em "rubrik-edge-new", sans-serif;
  color: #FB414D;
  margin: 12px 0 60px;
}
body.single-product .product p.price:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 0;
  display: block;
  height: 2px;
  width: 100%;
  background: #C3CCD3;
}
body.single-product .product p.price del {
  text-decoration: line-through;
  color: #666A72;
}
body.single-product .product .woocommerce-product-details__short-description {
  margin: 30px 0;
}
body.single-product .product .product-themes {
  margin-bottom: 30px;
}
body.single-product .product .product-themes ul li a.product-theme-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  color: #032D40;
}
body.single-product .product .product-themes ul li a.product-theme-icon span.img {
  padding: 0 18px 0 10px;
}
body.single-product .product .product-themes ul li a.product-theme-icon svg {
  display: block;
  height: 30px;
  width: 30px;
}
body.single-product .product .product-themes ul li a.product-theme-icon svg path {
  fill: #FFFFFF;
}
body.single-product .product .product-themes ul li a.product-theme-icon span.label {
  display: block;
  color: #032D40;
  line-height: 1em;
}
body.single-product .product form.gift-cards_form .gift-cards-list {
  margin-bottom: 40px;
}
body.single-product .product form.gift-cards_form .gift-cards-list h3 {
  font: 38px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
  margin-bottom: 12px;
}
body.single-product .product form.gift-cards_form .gift-cards-list button {
  border: 0px;
  cursor: pointer;
  margin-right: 8px;
}
body.single-product .product form.gift-cards_form .gift-cards-list button.selected_button {
  background: #FB414D;
}
body.single-product .product .gift-card-content-editor h5 {
  margin: 0px 0px;
}
body.single-product .product .gift-card-content-editor label {
  line-height: 1em;
}
body.single-product .product .gift-card-content-editor input {
  display: block;
  float: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.25);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 100%;
  font: 400 16px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #032D40;
}
body.single-product .product .gift-card-content-editor input:focus, body.single-product .product .gift-card-content-editor input:active {
  outline: 0;
}
body.single-product .product .gift_card_template_button button.button {
  margin-left: 12px;
}
body.single-product .product .gift_card_template_button .quantity input {
  font: 16px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  border: 2px solid #BAECF2;
  border-radius: 15px;
  padding: 6px 10px;
  text-align: left;
  width: 50px;
}
body.single-product .product .product-meta {
  margin: 100px 0 40px 0;
}
body.single-product .product .product-meta h2 {
  font: 38px/1.18em "fatfrank", sans-serif;
  color: #00ABC0;
}
body.single-product .product .product-meta .product-inclusions {
  padding: 30px 60px;
  margin: -20px 0;
  background: rgba(232, 238, 255, 0.4);
  border-radius: 30px;
}
body.single-product .product .product-meta .product-inclusions h2 {
  margin-bottom: 18px;
}
body.single-product .product .product-meta .product-inclusions ul li {
  position: relative;
  margin-left: 20px;
  margin-bottom: 18px;
}
body.single-product .product .product-meta .product-inclusions ul li:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  content: "";
  display: block;
  left: -20px;
  width: 8px;
  height: 8px;
  background-image: url("../images/tlth-blog-list-item.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
body.single-product .product #personnaliser-le-livre form.cart .quantity input {
  font: 16px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  border: 2px solid #BAECF2;
  border-radius: 15px;
  padding: 6px 10px;
  text-align: left;
  width: 50px;
}
body.single-product .product #personnaliser-le-livre form.variations_form {
  position: relative;
  margin-top: 180px;
}
body.single-product .product #personnaliser-le-livre form.variations_form:before {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  content: "";
  width: calc(100% + 1380px);
  height: 80px;
  position: absolute;
  top: -90px;
  left: -50%;
  opacity: 0.2;
  z-index: -1;
  background: #020024;
  background: -moz-linear-gradient(180deg, rgba(2, 0, 36, 0.4) 0%, white 100%);
  background: -webkit-linear-gradient(180deg, rgba(2, 0, 36, 0.4) 0%, white 100%);
  background: linear-gradient(180deg, rgba(2, 0, 36, 0.4) 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02002440",endColorstr="#ffffff",GradientType=1);
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations {
  margin-bottom: 0 0 !important;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations ul li input[type=radio] {
  display: none;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations ul li input[type=radio]:checked + label:after {
  opacity: 1;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations ul li label {
  position: relative;
  font: 28px/1em "fatfrank", sans-serif;
  padding-left: 40px;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations ul li label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations ul li label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 5px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #00ABC0;
  transition: all all 0.3s ease-in-out;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations td {
  display: block;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value label {
  font: 18px/1em "rubrik-edge-new", sans-serif;
}
body.single-product .product #personnaliser-le-livre form.variations_form table.variations tr td.value a.reset_variations {
  display: inline-block;
  padding: 6px 12px;
  font-size: 16px;
  margin-top: 18px;
}
body.single-product .product #personnaliser-le-livre form.variations_form span.price {
  font: 700 25px/1.2em "rubrik-edge-new", sans-serif;
  color: #FB414D;
}
body.single-product .product .gform_wrapper .instruction {
  font: 400 15px/1em "rubrik-edge-new", sans-serif;
  font-style: italic;
  color: #00ABC0;
  padding-left: 24px;
  margin-top: 4px;
}
body.single-product .product .gform_wrapper .validation_error {
  border: 2px solid #FB414D;
  background: rgba(251, 65, 77, 0.15);
  border-radius: 30px;
  color: #FB414D;
}
body.single-product .product .gform_wrapper ul.gfield_checkbox {
  display: block;
  position: relative;
}
body.single-product .product .gform_wrapper ul.gfield_checkbox li input[type=checkbox] {
  display: none;
}
body.single-product .product .gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
body.single-product .product .gform_wrapper ul.gfield_checkbox li label {
  position: relative;
  padding: 1px 0px 12px 40px;
}
body.single-product .product .gform_wrapper ul.gfield_checkbox li label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #00ABC0;
  background: #FFFFFF;
}
body.single-product .product .gform_wrapper ul.gfield_checkbox li label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all all 0.3s ease-in-out;
}
body.single-product .product .gform_wrapper ul.gform_fields .gfield_error {
  border: 2px solid #FB414D;
  background: rgba(251, 65, 77, 0.15);
  border-radius: 30px;
  color: #FB414D;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield label.gfield_label {
  display: none;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#00ABC0'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  background-repeat: no-repeat;
  border: 2px solid #BAECF2;
  background-color: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield.has-description .gfield_description {
  display: block;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .gfield_description {
  display: none !important;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield input {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 12px 24px !important;
  width: 100%;
  height: 50px;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield input:focus, body.single-product .product .gform_wrapper ul.gform_fields li.gfield input:active {
  outline: 0;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield textarea {
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 24px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1.25em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
  resize: vertical;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield textarea:focus, body.single-product .product .gform_wrapper ul.gform_fields li.gfield textarea:active {
  outline: 0;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container {
  width: 100% !important;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  border: 2px solid #BAECF2;
  background: rgba(186, 236, 242, 0.4);
  border-radius: 30px;
  padding: 23px;
  width: 100%;
  margin: 0 0;
  font: 400 20px/1em "rubrik-edge-new", sans-serif !important;
  font-style: italic !important;
  color: #032D40;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin-right: 12px;
  border-right: 2px solid #BAECF2;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-single div {
  position: absolute;
  display: block;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 18px;
  height: 6px;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #00ABC0 transparent transparent transparent;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-drop .chosen-search {
  height: 100%;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-results {
  position: relative;
  top: -8px;
  background: #FFFFFF;
  border: 2px solid #BAECF2;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #032D40;
  font: 400 18px/1em "rubrik-edge-new", sans-serif;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
}
body.single-product .product .gform_wrapper ul.gform_fields li.gfield .chosen-container .chosen-results li.active-result.hightlighted {
  color: #FFFFFF;
  background: #00ABC0 !important;
  background-color: #00ABC0 !important;
}
body.single-product .product .woocommerce-variation-add-to-cart {
  display: flex;
  justify-content: center;
}
body.single-product .product .woocommerce-variation-add-to-cart .quantity input {
  font: 16px/1em "rubrik-edge-new", sans-serif;
  color: #032D40;
  border: 2px solid #BAECF2;
  border-radius: 15px;
  padding: 6px 12px 6px 0px;
  text-align: right;
  width: 70px;
}

.woocommerce #mwb_woo_smc_recover_user_cart_data {
  position: relative;
  margin: 40px 0;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data h3 {
  font-size: 28px;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class {
  margin-bottom: 20px;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button] {
  font-size: 18px;
  cursor: pointer;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table {
  border: 2px solid #BAECF2;
  border-collapse: collapse;
  width: 100%;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table thead tr th {
  text-align: left;
  padding: 8px;
  font-size: 18px;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table th {
  background: #BAECF2;
  color: #032D40;
  border-color: #FFFFFF;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table td {
  border-color: #BAECF2;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td:before {
  content: none !important;
  display: none !important;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td {
  text-align: left;
  padding: 8px;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td:before {
  content: none !important;
  display: none !important;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td a {
  font-size: 18px;
  color: #7940B1;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td a:hover {
  color: #00ABC0;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td input[type=button] {
  font-size: 16px;
  cursor: pointer;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td dl.variation {
  font: 14px/1.5em "rubrik-edge-new", sans-serif;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td dl.variation dt {
  font-weight: bold;
  display: block;
  float: none;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td dl.variation dl {
  display: block;
  margin-bottom: 12px;
}
.woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td span.woocommerce-Price-amount {
  font-weight: 400;
  color: #00ABC0;
}

.woocommerce table.shop_table_responsive tr td::before, .woocommerce-page table.shop_table_responsive tr td::before {
  content: none !important;
  display: none !important;
}

@media (max-width: 1440px) {
  .body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard #affwp-affiliate-dashboard .tablenav .chosen-container {
    width: 75% !important;
  }
}
@media (max-width: 1365px) {
  .body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard #affwp-affiliate-dashboard .tablenav .chosen-container {
    width: 50% !important;
  }
}
@media (max-width: 1199px) {
  body.single-product .product p.price {
    font: 700 28px/1em "rubrik-edge-new", sans-serif;
  }
  body.single-product .product .woocommerce-product-details__short-description {
    font-size: 18px;
  }
  body .woocommerce form.checkout h3 {
    font-size: 24px;
  }
  body .widget .product-search-filter-reset {
    font-size: 20px;
  }
  body .widget .product-search-filter-terms .product-search-filter-terms-heading,
body .widget .product-search-filter-terms .product-search-filter-category-heading {
    font-size: 20px;
  }
  body .widget .product-search-filter-terms ul.product-categories {
    margin-bottom: 20px;
  }
  body .widget .product-search-filter-terms ul.product-categories li.cat-item a {
    font-size: 18px;
    line-height: 1em;
    padding-left: 30px;
  }
  body .widget .product-search-filter-terms ul.product-categories li.cat-item a img {
    margin: 0 6px 0 0;
  }
  body .widget .product-search-filter-terms ul.product-categories li.cat-item a:before {
    width: 20px;
    height: 20px;
  }
  body .widget .product-search-filter-terms ul.product-categories li.cat-item a:after {
    width: 10px;
    height: 10px;
  }
  body .widget .product-search-filter-terms .product-tags a img.term-thumbnail {
    left: 30px;
  }
  body .widget .product-search-filter-terms .product-tags a span.term-name {
    font-size: 18px;
    padding-left: 30px;
  }
  body .widget .product-search-filter-terms .product-tags a span.term-name:hover {
    color: #00ABC0;
  }
  body .widget .product-search-filter-terms .product-tags a span.term-name:hover:after {
    opacity: 1;
  }
  body .widget .product-search-filter-terms .product-tags a span.term-name:before {
    width: 20px;
    height: 20px;
  }
  body .widget .product-search-filter-terms .product-tags a span.term-name:after {
    width: 10px;
    height: 10px;
  }

  .woocommerce ul.products li.product-block .product-meta .single-product-content .product-desc {
    margin-bottom: 20px;
    font-size: 16px;
  }
  .woocommerce ul.products li.product-block .product-meta .single-product-img > img {
    padding: 0px;
  }
}
@media (max-width: 1024px) {
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .btn, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions form#affwp-register-form fieldset p input.button, form#affwp-register-form fieldset p body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions input.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .form .gform_wrapper .newsletter-form .gform_body .gform_footer input, .form .gform_wrapper .newsletter-form .gform_body .gform_footer body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions input, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .form .gform_wrapper .gform_footer input[type=submit], .form .gform_wrapper .gform_footer body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions input[type=submit], body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions #footer .footer-primary-nav ul li.is-btn a, #footer .footer-primary-nav ul li.is-btn body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions a, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .error404 .hero .the-content a.button, .error404 .hero .the-content body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions a.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions #newsletter-form .gform_wrapper .gform_footer input, #newsletter-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions input, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions ul.products .product-block .product-meta .single-product-content a.button, body .woocommerce ul.products .product-block .product-meta .single-product-content .woocommerce-cart-form table.shop_table tr td.actions a.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .page-template-page-mailpoet .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions input[type=submit], body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph input[type=submit], .single-mailpoet_page .mailpoet-manage-subscription .mailpoet_paragraph body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions input[type=submit], body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions #code-form .gform_wrapper .gform_footer input, #code-form .gform_wrapper .gform_footer body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions input, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions #customer_login form.woocommerce-form-register p.form-row button.button, body .woocommerce #customer_login form.woocommerce-form-register p.form-row .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions form.woocommerce-form-login p.form-row button.button, body .woocommerce form.woocommerce-form-login p.form-row .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions form.lost_reset_password button.button, body .woocommerce form.lost_reset_password .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 a, body .woocommerce .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--0 .woocommerce-cart-form table.shop_table tr td.actions a, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table tr td.actions button, body .woocommerce .woocommerce-cart-form .woocommerce-MyAccount-content table.shop_table tr td.actions .button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table tr td.actions .button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content a.woocommerce-button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table tr td.actions a.woocommerce-button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content .woocommerce-Addresses a.edit, body .woocommerce .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-cart-form table.shop_table tr td.actions a.edit, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content form button.button, body .woocommerce .woocommerce-MyAccount-content form .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td.actions a.delete, body .woocommerce .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods .woocommerce-cart-form table.shop_table tr td.actions a.delete, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content a.button, body .woocommerce .woocommerce-MyAccount-content .woocommerce-cart-form table.shop_table tr td.actions a.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content #payment .form-row.place-order button#place_order, body .woocommerce .woocommerce-MyAccount-content #payment .form-row.place-order .woocommerce-cart-form table.shop_table tr td.actions button#place_order, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content form.edit-account button.button, body .woocommerce .woocommerce-MyAccount-content form.edit-account .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .tablenav .woocommerce-cart-form table.shop_table tr td.actions input.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-referral-url-submit-wrap .woocommerce-cart-form table.shop_table tr td.actions input.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap input.button, body .woocommerce .woocommerce-MyAccount-content #affwp-affiliate-dashboard .affwp-save-profile-wrap .woocommerce-cart-form table.shop_table tr td.actions input.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .return-to-shop a, body .woocommerce .return-to-shop .woocommerce-cart-form table.shop_table tr td.actions a, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .ywgc_enter_code p.form-row button.button, body .woocommerce .ywgc_enter_code p.form-row .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-error a .wc-backward, body .woocommerce .woocommerce-error a .woocommerce-cart-form table.shop_table tr td.actions .wc-backward, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions ul.products li.product .button, body .woocommerce ul.products li.product .woocommerce-cart-form table.shop_table tr td.actions .button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions td.product-remove .mwb_woo_smc_cart_wrapper input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table td.product-remove .mwb_woo_smc_cart_wrapper tr td.actions input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td.actions input[type=button], body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody table.shop_table tr td.actions input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .cart-collaterals a.checkout-button, body .woocommerce .cart-collaterals .woocommerce-cart-form table.shop_table tr td.actions a.checkout-button, body .woocommerce .woocommerce-cart-form .cart-collaterals table.shop_table tr td.actions a.woocommerce-remove-coupon, body .woocommerce .cart-collaterals .woocommerce-cart-form table.shop_table tr td.actions a.woocommerce-remove-coupon, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .cart-collaterals form.woocommerce-shipping-calculator button.button, body .woocommerce .cart-collaterals form.woocommerce-shipping-calculator .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions form.checkout-coupon button.button, body .woocommerce form.checkout-coupon .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-form-coupon button.button, body .woocommerce .woocommerce-form-coupon .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form form.checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.actions a.woocommerce-remove-coupon, body .woocommerce form.checkout .woocommerce-checkout-review-order .woocommerce-cart-form table.shop_table tr.cart-discount td.actions a.woocommerce-remove-coupon, body .woocommerce .woocommerce-cart-form .woocommerce-checkout .woocommerce-checkout-review-order table.shop_table tr.cart-discount td.actions a.woocommerce-remove-coupon, body .woocommerce .woocommerce-checkout .woocommerce-checkout-review-order .woocommerce-cart-form table.shop_table tr.cart-discount td.actions a.woocommerce-remove-coupon, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions #payment .form-row.place-order button#place_order, body .woocommerce #payment .form-row.place-order .woocommerce-cart-form table.shop_table tr td.actions button#place_order, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .widget .product-search-filter-reset form.product-search-filter-reset-form button.button, body .widget .product-search-filter-reset form.product-search-filter-reset-form .woocommerce .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions ul.products li.product-block .product-meta .single-product-content a.button, body ul.products li.product-block .product-meta .single-product-content .woocommerce .woocommerce-cart-form table.shop_table tr td.actions a.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .add_to_cart_button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-message a.button, body.single-product .woocommerce-message .woocommerce .woocommerce-cart-form table.shop_table tr td.actions a.button, .error404 .hero body.single-product .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .product .woocommerce-product-details__short-description a.button, .error404 .hero body.single-product .product .woocommerce-product-details__short-description .woocommerce .woocommerce-cart-form table.shop_table tr td.actions a.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .product .error404 .hero .woocommerce-product-details__short-description a.button, body.single-product .product .error404 .hero .woocommerce-product-details__short-description .woocommerce .woocommerce-cart-form table.shop_table tr td.actions a.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .product form.gift-cards_form .gift-cards-list button, body.single-product .product form.gift-cards_form .gift-cards-list .woocommerce .woocommerce-cart-form table.shop_table tr td.actions button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .product .gift_card_template_button button.button, body.single-product .product .gift_card_template_button .woocommerce .woocommerce-cart-form table.shop_table tr td.actions button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .product #personnaliser-le-livre form.cart button.button, body.single-product .product #personnaliser-le-livre form.cart .woocommerce .woocommerce-cart-form table.shop_table tr td.actions button.button, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.actions td.value a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-cart-form table.shop_table tr td.actions td.value a.reset_variations, body.single-product .woocommerce .woocommerce-cart-form table.shop_table .product #personnaliser-le-livre form.variations_form table.variations tr td.value td.actions a.reset_variations, body.single-product .product #personnaliser-le-livre form.variations_form table.variations .woocommerce .woocommerce-cart-form table.shop_table tr td.value td.actions a.reset_variations, body.single-product .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .product .woocommerce-variation-add-to-cart button.button, body.single-product .product .woocommerce-variation-add-to-cart .woocommerce .woocommerce-cart-form table.shop_table tr td.actions button.button, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .woocommerce-notices-wrapper .woocommerce-message a.wc-forward, body .woocommerce .woocommerce-notices-wrapper .woocommerce-message .woocommerce-cart-form table.shop_table tr td.actions a.wc-forward, body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class input[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data .mwb_mwc_class .woocommerce-cart-form table.shop_table tr td.actions input[type=button], body .woocommerce .woocommerce-cart-form table.shop_table #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tr td.actions input[type=button], body .woocommerce #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table .woocommerce-cart-form table.shop_table tr td.actions input[type=button] {
    font-size: 16px;
    padding: 12px;
  }
}
@media (max-width: 991px) {
  body a.widget-filter {
    display: block;
  }
  body .widget {
    display: none !important;
  }
  body .widget.active {
    display: block !important;
  }
  body .woocommerce-result-count {
    margin: 40px 0 20px 0 !important;
  }
  body form.woocommerce-ordering .chosen-container .chosen-single {
    margin: 40px 0 20px 0;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .add-extra-product {
    justify-content: flex-start;
    margin: 8px 0;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .add-extra-product a {
    margin-right: 8px;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .coupon {
    display: block;
    float: none;
    text-align: left;
  }
  body .woocommerce form.checkout h3 {
    font-size: 20px;
  }
  body .woocommerce form.checkout p.form-row {
    margin-bottom: 10px;
  }
  body .woocommerce form.checkout p.form-row label {
    font-size: 14px;
    margin-bottom: 6px;
  }
  body .woocommerce #payment .payment_box .form-row label {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  body.single-product .woocommerce-breadcrumb {
    margin: 0 0 60px 0;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.actions .add-extra-product {
    display: block;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.product-thumbnail {
    display: block;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.product-thumbnail img {
    width: 200px;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.product-thumbnail:before {
    display: none;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td {
    text-align: left !important;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td:before {
    content: attr(data-title) "";
    display: block;
    float: none;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table tr td.product-name a {
    display: inline-block;
    margin-bottom: 12px;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table button.button {
    width: 100% !important;
    margin: 18px 0;
    float: none;
  }
  body .woocommerce .woocommerce-cart-form table.shop_table input#coupon_code {
    width: 100%;
  }
  body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data {
    width: 100%;
  }
  body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data h3 {
    font-size: 24px;
  }
  body .woocommerce .woocommerce-cart-form #mwb_woo_smc_recover_user_cart_data table.mwb-woo-smc-shop_table tbody tr td:before {
    content: none;
  }
  body .woocommerce .cart-collaterals h2 {
    font-size: 24px;
  }
  body .woocommerce .cross-sells {
    width: 100% !important;
  }
  body .product .woocommerce-product-details__short-description p {
    font-size: 18px;
    line-height: 1.5em;
  }
}
@media (max-width: 767px) {
  body header.woocommerce-products-header h1 {
    margin-bottom: 40px;
  }
  body.single-product .product .product-meta {
    margin: 40px 0;
  }
  body.single-product .product .product-meta .product-inclusions {
    padding: 20px;
  }
  body.single-product .product .product-meta .product-inclusions ul li {
    font-size: 14px;
    margin-left: 18px;
    margin-bottom: 14px;
    line-height: 1em;
  }
  body.single-product .product #personnaliser-le-livre form.variations_form {
    margin-top: 40px;
  }
  body.single-product .product #personnaliser-le-livre form.variations_form:before {
    height: 140px;
    top: -30px;
    opacity: 0.2;
    background: #020024;
    background: -moz-linear-gradient(180deg, rgba(2, 0, 36, 0.1) 0%, white 100%);
    background: -webkit-linear-gradient(180deg, rgba(2, 0, 36, 0.1) 0%, white 100%);
    background: linear-gradient(180deg, rgba(2, 0, 36, 0.1) 0%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#02002410", endColorstr="#ffffff", GradientType=1);
  }
  body form.woocommerce-ordering {
    width: 100% !important;
  }
  body form.woocommerce-ordering .chosen-container .chosen-single {
    margin: 20px 0;
  }
  body .woocommerce #payment .payment_box .form-row {
    width: 100%;
  }
  body ul.products li.product-block {
    padding: 16px !important;
    width: 100% !important;
    margin: 0px !important;
    float: none !important;
  }
  body.single-product .product .gallery {
    margin-bottom: 30px;
  }
  body.single-product .product p {
    font-size: 16px;
    line-height: 1.5em;
  }
  body.single-product .product .product-meta .product-inclusions {
    margin: 20px 0px;
  }
}

/*# sourceMappingURL=main.css.map */
