@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: 2;
  animation-iteration-count: 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: 3;
  animation-iteration-count: 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: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

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

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

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

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

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

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

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -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: 1.3s;
  animation-duration: 1.3s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 2s;
  animation-duration: 2s;
  -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;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:active {
  outline: none;
}

input:focus, input:active, fieldset:focus, fieldset:active, textarea:focus, textarea:active, button:focus, button:active {
  outline: none;
}

.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, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields {
  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, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, 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, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, 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, 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, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, 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
 */
/*
 * Remove mobile/iOS default buttons
 */
@font-face {
  font-family: Jakarta;
  src: url("../fonts/PlusJakartaSans-Regular.woff");
}
@font-face {
  font-family: Jakarta;
  font-style: italic;
  src: url("../fonts/PlusJakartaSans-Italic.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 300;
  src: url("../fonts/PlusJakartaSans-Light.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 300;
  font-style: italic;
  src: url("../fonts/PlusJakartaSans-LightItalic.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 500;
  src: url("../fonts/PlusJakartaSans-Medium.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 500;
  font-style: italic;
  src: url("../fonts/PlusJakartaSans-MediumItalic.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 700;
  src: url("../fonts/PlusJakartaSans-Bold.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 700;
  font-style: italic;
  src: url("../fonts/PlusJakartaSans-BoldItalic.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 900;
  src: url("../fonts/PlusJakartaSans-ExtraBold.woff");
}
@font-face {
  font-family: Jakarta;
  font-weight: 900;
  font-style: italic;
  src: url("../fonts/PlusJakartaSans-ExtraBoldItalic.woff");
}
::-moz-selection {
  color: white;
  background: black;
}

::selection {
  color: white;
  background: black;
}

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

.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: none;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul li {
  font: normal 16px/24px Jakarta, sans-serif;
  margin-bottom: 7px;
  display: flex;
}
.the-content ul li::before {
  content: "•";
  color: #EB5B4D;
  font-weight: bold;
  font-size: 14px;
  display: block;
  width: 1.5em;
  min-width: 1.5em;
  position: relative;
  top: -2px;
}
.the-content ol {
  list-style-type: none;
  list-style-position: outside;
  margin-bottom: 1em;
}
.the-content ol li {
  display: flex;
  font: normal 16px/24px Jakarta, sans-serif;
  margin-bottom: 15px;
  counter-increment: custom;
}
.the-content ol li:first-child {
  counter-reset: custom;
}
.the-content ol li:before {
  display: block;
  content: "0" counter(custom) " ";
  color: #EB5B4D;
  font-weight: bold;
  margin-right: 15px;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: outside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: outside;
  margin-left: 15px;
}
.the-content p {
  margin-bottom: 1em;
  font: normal 16px/24px Jakarta, sans-serif;
  letter-spacing: 0.05em;
}
.the-content hr {
  border-color: #F7B8A1;
  border-style: solid;
  border-width: 1px 0 0 0;
  margin: 35px 0;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
}

#main {
  margin-top: 100px;
}

html,
body {
  box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  overflow-x: hidden;
  font: normal 18px/1.65em Jakarta, sans-serif;
  color: #000000;
  background-color: #f8f3ed;
}

body {
  padding-top: 125px;
  overflow: hidden;
}

.page-transition {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 300vh;
  width: 300vh;
  border-radius: 100%;
  z-index: 9999;
  background: #F7BDA5;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.page-transition .transition-logo {
  background: url(../images/loadingCavs.gif) no-repeat center center;
  background-size: contain;
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 347483647;
}
.page-transition:after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  height: 300vh;
  width: 300vh;
  border-radius: 100%;
  z-index: 999;
  background: #F7BDA5;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease-in-out 0.03s;
}
.page-transition.out {
  width: 0;
  height: 0;
}
.page-transition.out:before, .page-transition.out:after {
  width: 0;
  height: 0;
}
.page-transition.out .transition-logo {
  opacity: 0;
}
.page-transition.in {
  width: 300vh;
  height: 300vh;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
}
.page-transition.in:before {
  width: 300vh;
  height: 300vh;
}
.page-transition.in:after {
  transition: width 0.3s ease-in-out 0.08s, height 0.3s ease-in-out;
  width: 300vh;
  height: 300vh;
}
.page-transition.in .transition-logo {
  opacity: 1;
}

a.btn, button.btn, .btn, .gform_footer input[type=submit], form input[type=submit] {
  font: 500 16px/24px Jakarta, sans-serif;
  color: #000000;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid #EB5B4D;
  padding: 9px 25px;
  margin: 10px 0;
  min-width: 215px;
  background-color: transparent;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
a.btn.orange, button.btn.orange, .btn.orange, .gform_footer input.orange[type=submit], form input.orange[type=submit] {
  background-color: #EB5B4D;
  color: #FDFAF7;
}
a.btn.orange:hover, button.btn.orange:hover, .btn.orange:hover, .gform_footer input.orange[type=submit]:hover, form input.orange[type=submit]:hover {
  background-color: rgba(235, 91, 77, 0.8);
}
a.btn.salad, a.btn.green, button.btn.salad, button.btn.green, .btn.salad, .gform_footer input.salad[type=submit], form input.salad[type=submit], .btn.green, .gform_footer input.green[type=submit], form input.green[type=submit] {
  border-color: #7BC4A0;
}
a.btn.salad:hover, a.btn.green:hover, button.btn.salad:hover, button.btn.green:hover, .btn.salad:hover, .gform_footer input.salad[type=submit]:hover, form input.salad[type=submit]:hover, .btn.green:hover, .gform_footer input.green[type=submit]:hover, form input.green[type=submit]:hover {
  background-color: #7BC4A0;
  color: #FDFAF7;
}
a.btn.salad-full, a.btn.green-full, button.btn.salad-full, button.btn.green-full, .btn.salad-full, .gform_footer input.salad-full[type=submit], form input.salad-full[type=submit], .btn.green-full, .gform_footer input.green-full[type=submit], form input.green-full[type=submit] {
  color: white;
  border-color: #7BC4A0;
  background-color: #7BC4A0;
}
a.btn.salad-full:hover, a.btn.green-full:hover, button.btn.salad-full:hover, button.btn.green-full:hover, .btn.salad-full:hover, .gform_footer input.salad-full[type=submit]:hover, form input.salad-full[type=submit]:hover, .btn.green-full:hover, .gform_footer input.green-full[type=submit]:hover, form input.green-full[type=submit]:hover {
  opacity: 0.8;
  background-color: #7BC4A0;
}
a.btn.hover-orange:hover, button.btn.hover-orange:hover, .btn.hover-orange:hover, .gform_footer input.hover-orange[type=submit]:hover, form input.hover-orange[type=submit]:hover {
  background-color: #EB5B4D;
  color: #FDFAF7;
}
a.btn.md-top, button.btn.md-top, .btn.md-top, .gform_footer input.md-top[type=submit], form input.md-top[type=submit] {
  margin-top: 25px;
}
a.btn.lg-top, button.btn.lg-top, .btn.lg-top, .gform_footer input.lg-top[type=submit], form input.lg-top[type=submit] {
  margin-top: 40px;
}
a.btn.btn-get-itinerary, button.btn.btn-get-itinerary, .btn.btn-get-itinerary, .gform_footer input.btn-get-itinerary[type=submit], form input.btn-get-itinerary[type=submit] {
  gap: 8px;
}
a.btn.btn-print, button.btn.btn-print, .btn.btn-print, .gform_footer input.btn-print[type=submit], form input.btn-print[type=submit] {
  margin-top: -5px;
}
a.btn.btn-print svg, button.btn.btn-print svg, .btn.btn-print svg, .gform_footer input.btn-print[type=submit] svg, form input.btn-print[type=submit] svg {
  margin-right: 10px;
  margin-top: 4px;
}

.the-content a.btn, .the-content button.btn {
  margin: 50px 0 10px;
}

.can-load {
  position: relative;
  overflow: hidden;
}
.can-load:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #EB5B4D;
  border-radius: 0;
  opacity: 0;
  transition: all 250ms ease-in-out;
  pointer-events: none;
}
.can-load:after {
  content: "";
  position: absolute;
  z-index: 3;
  top: calc(50% - 13px);
  left: calc(50% - 13px);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #FDFAF7 94%, rgba(0, 0, 0, 0)) top/7px 7px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #FDFAF7);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 7px), #000 0);
  animation: spinner-c7wet2 1s infinite linear;
  opacity: 0;
  transition: all 250ms ease-in-out;
  pointer-events: none;
}
.can-load.loading {
  pointer-events: none;
}
.can-load.loading:before, .can-load.loading:after {
  pointer-events: none;
  opacity: 1;
  transition: 0s;
}

@keyframes spinner-c7wet2 {
  100% {
    transform: rotate(1turn);
  }
}
.btn-simple span {
  position: relative;
  line-height: 1.2rem;
}
.btn-simple span:after {
  content: "";
  height: 1px;
  width: 0;
  display: block;
  background-color: #EB5B4D;
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: all 250ms ease-in-out;
}
.btn-simple:hover span:after {
  width: 100%;
}

.slice {
  position: relative;
  margin: 175px auto;
}
.slice.white-slice {
  background-color: #FDFAF7;
  padding: 175px 0;
  margin: 0 auto;
}

h1 {
  font: normal 50px/56px quiche-sans, sans-serif;
  margin-top: 10px;
}

h2 {
  font: normal 35px/48px Jakarta, sans-serif;
  margin-bottom: 30px;
}

h3 {
  font: 500 25px/32px Jakarta, sans-serif;
  letter-spacing: 0.06rem;
}

.txt-orange, .text-orange {
  color: #EB5B4D;
}

.wc-alert-bar {
  position: fixed;
  z-index: 99;
  bottom: -50vh;
  width: 100%;
  background-color: #7BC4A0;
  padding: 10px 5% 11px;
  color: #FDFAF7;
  text-align: center;
  font-weight: bold;
  transition: all 250ms ease-in-out;
}
.wc-alert-bar.active {
  bottom: -1px;
}
.wc-alert-bar.error {
  background-color: #EB5B4D;
}

.id-hook {
  position: absolute;
  top: -110px;
  opacity: 0;
  pointer-events: none;
}

.btn-share {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  width: 270px;
  height: 49px;
  background-color: #F9CAB9;
  border-radius: 10px;
  padding: 0 18px;
  will-change: transform;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 50px;
  border: 1px solid #EB5B4D;
}
.btn-share a {
  height: 28px;
  width: 28px;
  margin: 0 10px;
}
.btn-share a svg path {
  fill: #EB5B4D;
}
.btn-share:hover {
  /* transition-delay: .4s; */
}
.btn-share span {
  position: absolute;
  z-index: 99;
  width: 270px;
  height: 49px;
  border: none;
  border-radius: 10px;
  font: 500 16px/24px Jakarta, sans-serif;
  font-weight: 500;
  text-align: center;
  color: #000000;
  background-color: #F7B8A1;
  padding: 13px 25px 16px;
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.btn-share .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 270px;
  height: 49px;
  border-radius: 10px;
}
.btn-share:hover span {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transform: translateX(-300px);
  transform: translateX(-300px);
}

.hero-home {
  position: relative;
  width: 130%;
  left: -15%;
  transition: all 250ms ease-in-out;
}
.hero-home.active-left {
  left: -5%;
}
.hero-home.active-right {
  left: -25%;
}
.hero-home .hero-center {
  width: 50%;
  padding: 0 2%;
  text-align: center;
}
.hero-home .hero-center h3 {
  color: #EB5B4D;
}
.hero-home .hero-center h1 {
  margin-bottom: 25px;
}
.hero-home .btn, .hero-home .gform_footer input[type=submit], .gform_footer .hero-home input[type=submit], .hero-home form input[type=submit], form .hero-home input[type=submit] {
  margin: 5px 8px;
}
.hero-home .hero-img {
  height: 630px;
  width: 40%;
  top: 0;
  border-radius: 0 315px 315px 0;
}
.hero-home .hero-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 315px 315px 0;
}
.hero-home .hero-img.hero-img-2 {
  left: auto;
  border-radius: 315px 0 0 315px;
}
.hero-home .hero-img.hero-img-2 img {
  border-radius: 315px 0 0 315px;
}

.scroll-wrap {
  margin: 0 auto -15px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 55px;
}
.scroll-wrap a {
  text-align: center;
  color: #863B1F;
  text-decoration: underline;
  text-decoration-color: #DA6454;
  text-underline-offset: 6px;
}
.scroll-wrap svg {
  position: absolute;
  top: 44px;
  height: 55px;
  animation: arrowBounce 1.5s infinite ease-in-out;
}

@keyframes arrowBounce {
  0% {
    top: 44px;
  }
  50% {
    top: 56px;
  }
  100% {
    top: 44px;
  }
}
.texture-flowers svg {
  position: relative;
  left: -150px;
  height: 230px;
}

.about-wrap .top-side {
  margin-bottom: 50px;
}
.about-wrap .top-side .left-side {
  max-width: 460px;
}
.about-wrap .top-side .right-side svg {
  height: 290px;
  width: 290px;
}
.about-wrap .top-side .right-side svg #circle-rotate {
  transform: rotate(0deg);
  transform-origin: 50%;
}

.third-btns {
  display: flex;
  gap: 35px;
  justify-content: space-between;
  align-items: center;
}
.third-btns .single-third {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 725px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: 50% center;
  transition: all 250ms ease-in-out;
}
.third-btns .single-third .bottom-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 125px;
  background-color: rgba(123, 196, 160, 0.85);
}
.third-btns .single-third .bottom-text.salmon {
  background-color: rgba(247, 184, 161, 0.85);
}
.third-btns .single-third .bottom-text.orange {
  background-color: rgba(235, 91, 77, 0.85);
}
.third-btns .single-third .bottom-text p {
  font: 500 25px/32px Jakarta, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
.third-btns .single-third .bottom-text p:after {
  content: "";
  display: inline-block;
  margin-top: 8px;
  width: 0;
  height: 10px;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  background-image: url("../images/icon-arrow.svg");
  margin-left: 0;
  transition: all 250ms ease-in-out;
}
.third-btns .single-third:hover {
  background-position: calc(50% - 50px) center;
}
.third-btns .single-third:hover .bottom-text p:after {
  width: 50px;
  margin-left: 8px;
}

.single-who {
  text-align: center;
  margin-bottom: 130px;
}
.single-who svg {
  margin: 0 auto 30px;
  height: 90%;
  width: 90%;
  max-height: 160px;
  max-width: 180px;
  min-width: 150px;
}

.to-who h2 {
  font: normal 50px/56px quiche-sans, sans-serif;
}
.to-who .left-side {
  max-width: 550px;
  margin: 0 2% 50px 0;
}
.to-who .right-side {
  margin-top: 240px;
}

.texture-flower {
  position: absolute;
  left: -100px;
  bottom: -600px;
}

.section-content-img {
  z-index: 2;
  margin: 0;
}
.section-content-img h2 {
  font: normal 50px/56px quiche-sans, sans-serif;
}
.section-content-img .btn, .section-content-img .gform_footer input[type=submit], .gform_footer .section-content-img input[type=submit], .section-content-img form input[type=submit], form .section-content-img input[type=submit] {
  margin-top: 45px;
}
.section-content-img .left-side {
  background-color: #F7B8A1;
  padding: 0;
}
.section-content-img .left-side .wrapper {
  margin: auto 5% auto auto;
  max-width: 680px;
  padding: 110px 15% 110px 0;
}
.section-content-img .right-side {
  padding: 0;
  position: relative;
}
.section-content-img .right-side img {
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
  min-height: 655px;
  height: 100%;
  width: 100%;
}

.hero-page {
  padding: 75px 0;
}
.hero-page h1 {
  max-width: 800px;
}
.hero-page .left-side {
  width: 48%;
  max-width: 600px;
  position: relative;
  z-index: 5;
}
.hero-page .left-side .btn.md-top + .btn.md-top, .hero-page .left-side .gform_footer input.md-top[type=submit] + .btn.md-top, .gform_footer .hero-page .left-side input.md-top[type=submit] + .btn.md-top, .hero-page .left-side .gform_footer .btn.md-top + input.md-top[type=submit], .gform_footer .hero-page .left-side .btn.md-top + input.md-top[type=submit], .hero-page .left-side .gform_footer input.md-top[type=submit] + input.md-top[type=submit], .gform_footer .hero-page .left-side input.md-top[type=submit] + input.md-top[type=submit], .hero-page .left-side form input.md-top[type=submit] + .btn.md-top, form .hero-page .left-side input.md-top[type=submit] + .btn.md-top, .hero-page .left-side form .btn.md-top + input.md-top[type=submit], form .hero-page .left-side .btn.md-top + input.md-top[type=submit], .hero-page .left-side form input.md-top[type=submit] + input.md-top[type=submit], form .hero-page .left-side input.md-top[type=submit] + input.md-top[type=submit] {
  margin-top: 15px;
}
.hero-page .right-side {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-page .right-side .img-hero-wrap {
  position: relative;
  z-index: 2;
}
.hero-page .right-side .img-hero {
  max-height: 520px;
  object-fit: contain;
}
.hero-page .right-side .band-wrap {
  position: absolute;
  z-index: 1;
  bottom: 17%;
  left: 0;
}
.hero-page .right-side .icon-wrap {
  position: absolute;
  z-index: 0;
  right: -50px;
  top: 0;
}
.hero-page.hero-option-right .right-side .icon-wrap {
  right: auto;
  left: -50px;
}
.hero-page.hero-option-right .right-side .band-wrap {
  left: auto;
  right: 0;
}

.page-template-cuisson .hero-page.hero-option-right .right-side .icon-wrap {
  left: -120px;
  top: -60px;
}

.bloc-title-wrap {
  max-width: 1040px;
}
.bloc-title-wrap.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#shipping .single-card {
  background-color: #F7B8A1;
  border-radius: 20px;
  padding: 45px;
  margin-bottom: 20px;
}
#shipping .single-card:last-child {
  background-color: #FDE1D6;
}
#shipping .single-card svg {
  width: 30%;
  height: 120px;
  margin: auto 0;
}
#shipping .single-card .content {
  width: 60%;
  margin-left: auto;
}
#shipping .single-card .btn, #shipping .single-card .gform_footer input[type=submit], .gform_footer #shipping .single-card input[type=submit], #shipping .single-card form input[type=submit], form #shipping .single-card input[type=submit] {
  margin: 25px 0 0;
}
#shipping .single-card .btn:hover, #shipping .single-card .gform_footer input[type=submit]:hover, .gform_footer #shipping .single-card input[type=submit]:hover, #shipping .single-card form input[type=submit]:hover, form #shipping .single-card input[type=submit]:hover {
  background-color: rgba(253, 250, 247, 0.25);
}

#the-menu {
  padding: 175px 0 100px;
}
#the-menu .title-wrap h2 {
  font: normal 50px/56px quiche-sans, sans-serif;
}

.title-wrap {
  margin-bottom: 75px;
}

.search-wrap {
  position: relative;
  max-width: 100%;
  margin-bottom: 5px;
}
.search-wrap input {
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  color: #000000;
  background-color: #FEFCFB;
  padding: 12px 25px 12px 46px;
  width: 450px;
  max-width: 100%;
  font: 500 16px/24px Jakarta, sans-serif;
}
.search-wrap svg {
  position: absolute;
  pointer-events: none;
  left: 15px;
  top: 16px;
}

ul.products {
  margin: 75px auto 100px;
}
ul.products .single-product-row {
  position: relative;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid #EB5B4D;
}
ul.products .single-product-row > svg {
  width: 90px;
  height: 90px;
}
ul.products .single-product-row .stock-qty {
  font-size: 16px;
  line-height: 1.1em;
  color: #EB5B4D;
}
ul.products .single-product-row .product-title {
  position: relative;
  width: 52%;
  margin-right: 4%;
  margin-left: 2%;
}
ul.products .single-product-row .product-title .ingredients {
  margin-top: 10px;
  cursor: default;
  padding-bottom: 10px;
  width: fit-content;
}
ul.products .single-product-row .product-title .ingredients svg {
  margin-top: 2px;
}
ul.products .single-product-row .product-title .ingredients > p {
  margin-left: 8px;
}
ul.products .single-product-row .product-title .ingredients .ing-list {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 18px 22px;
  background-color: #FEFCFB;
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  opacity: 0;
  pointer-events: none;
}
ul.products .single-product-row .product-title .ingredients .ing-list p {
  cursor: text;
}
ul.products .single-product-row .product-title .ingredients .ing-list .product-desc + .ing-title {
  margin-top: 7px;
}
ul.products .single-product-row .product-title .ingredients .ing-list .ing-title {
  font-weight: bold;
}
ul.products .single-product-row .product-title .ingredients:hover > p {
  text-decoration: underline;
}
ul.products .single-product-row .product-title .ingredients:hover .ing-list {
  opacity: 1;
  pointer-events: auto;
}
ul.products .single-product-row .price-wrap .price {
  font: 500 25px/32px Jakarta, sans-serif;
  font-weight: bold;
}
ul.products .single-product-row .price-wrap.disabled .number-wrap, ul.products .single-product-row .price-wrap.disabled .btn-add-to-cart {
  pointer-events: none;
  opacity: 0.3;
}

.number-wrap {
  position: relative;
  margin: 0 50px;
  border-radius: 10px;
  border: 1px solid #EB5B4D;
  overflow: hidden;
}
.number-wrap input {
  height: 50px;
  width: 70px;
  padding: 0 33px 0 10px;
  text-align: center;
  background-color: #FEFCFB;
  font: 500 16px/24px Jakarta, sans-serif;
  border: none;
  -moz-appearance: textfield;
  appearance: textfield;
  margin: 0;
}
.number-wrap input::-webkit-outer-spin-button, .number-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.number-wrap .spinner-button {
  position: absolute;
  right: 0;
  top: 0;
  width: 23px;
  height: 50%;
  background-color: #FDEDE7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #EB5B4D;
  border-style: solid;
  border-width: 0 0 1px 1px;
  cursor: pointer;
}
.number-wrap .spinner-button.dec-button {
  top: auto;
  bottom: 0;
  border-width: 0 0 0 1px;
}
.number-wrap .spinner-button.dec-button svg {
  transform: rotate(180deg);
}
.number-wrap .spinner-button.disabled {
  background-color: #FDE1D6;
}
.number-wrap .spinner-button.disabled svg {
  opacity: 0.3;
}

.single-icon-row {
  align-items: center;
  justify-content: space-between;
  padding: 50px 30px 50px 20px;
  margin-left: 20px;
  border-bottom: 1px solid #F7B8A1;
}
.single-icon-row svg {
  display: block;
  width: 114px;
  margin-right: 15px;
}
.single-icon-row .content {
  width: 70%;
}
.single-icon-row .content h3 {
  margin-bottom: 12px;
}
.single-icon-row:nth-child(1) {
  padding-top: 15px;
}
.single-icon-row:last-child {
  border-bottom: none;
}

.swiper-controls {
  display: flex;
  margin: 50px 0 20px;
  gap: 10px;
}
.swiper-controls span {
  cursor: pointer;
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  width: 47px;
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-controls span.btn-prev {
  transform: rotate(90deg);
}
.swiper-controls span.btn-next {
  transform: rotate(-90deg);
}
.swiper-controls span svg {
  height: 9px;
  width: 20px;
}
.swiper-controls span.disabled:hover {
  background-color: transparent;
}
.swiper-controls span.disabled svg {
  opacity: 0.2;
}

.reason-wrap {
  margin: auto;
}
.reason-wrap .single-icon-row .content {
  width: 82%;
}

.cta-section {
  background-color: #F7B8A1;
  position: relative;
  overflow: hidden;
  padding: 95px 0;
}
.cta-section svg {
  position: absolute;
  left: 4%;
  top: 40%;
  height: 70%;
  opacity: 0.8;
  filter: brightness(100);
}
.cta-section h2 {
  font: normal 50px/56px quiche-sans, sans-serif;
  margin-bottom: 10px;
}
.cta-section .btn, .cta-section .gform_footer input[type=submit], .gform_footer .cta-section input[type=submit], .cta-section form input[type=submit], form .cta-section input[type=submit] {
  margin: 10px auto 0;
}

#portions .right-side {
  margin-top: 50px;
}
#portions .single-icon-row {
  width: 100%;
  padding: 20px 30px 22px 50px;
}
#portions .single-icon-row .category {
  font-weight: bold;
}
#portions .single-icon-row .quantity {
  text-align: right;
}

#reutilisables .left-side {
  position: relative;
}
#reutilisables .left-side img {
  border-radius: 10px;
}
#reutilisables .left-side svg {
  position: absolute;
  bottom: -50px;
  right: -37%;
  opacity: 0.6;
}

#contenants .left-side {
  padding-right: 5%;
}
#contenants .containers-wrap {
  margin-top: 25px;
}
#contenants .containers-wrap .single-container {
  margin-bottom: 150px;
}
#contenants .containers-wrap .single-container .container-name {
  margin-bottom: 8px;
}
#contenants .containers-wrap .single-container svg {
  margin-bottom: 55px;
  height: 175px;
  max-width: 225px;
}
#contenants .containers-wrap .single-container:nth-last-child(1), #contenants .containers-wrap .single-container:nth-last-child(2) {
  margin-bottom: 50px;
}

#proto .right-side {
  margin-top: 20%;
}
#proto .single-icon-row {
  width: 100%;
  padding: 20px 30px 22px 50px;
  justify-content: flex-start;
}
#proto .single-icon-row h3 {
  color: #EB5B4D;
  font-weight: bold;
  margin-right: 30px;
}
#proto .single-icon-row p {
  text-align: left;
}

.card-wrap {
  gap: 50px 2%;
  align-content: stretch;
  justify-content: center;
  margin: 75px auto 115px;
  width: 100%;
}
.card-wrap .single-card {
  width: 32%;
  min-height: 725px;
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  align-items: flex-end;
}
.card-wrap .single-card .card-content {
  height: 125px;
  width: 100%;
  background-color: rgba(247, 184, 161, 0.95);
  transition: all 250ms ease-in-out;
}
.card-wrap .single-card .card-content.card-green {
  background-color: rgba(123, 196, 160, 0.85);
}
.card-wrap .single-card .card-content.card-red {
  background-color: rgba(235, 91, 77, 0.85);
}
.card-wrap .single-card .card-content.card-blue {
  background-color: rgba(153, 214, 234, 0.85);
}
.card-wrap .single-card .card-content.card-teal {
  background-color: rgba(0, 171, 142, 0.85);
}
.card-wrap .single-card .card-content.card-lightSalmon {
  background-color: rgba(247, 184, 161, 0.85);
}
.card-wrap .single-card .card-content.card-darkTeal {
  background-color: rgba(0, 171, 142, 0.95);
}
.card-wrap .single-card .card-content.card-darkRed {
  background-color: rgba(235, 91, 77, 0.95);
}
.card-wrap .single-card .card-content svg {
  display: block;
  height: 0;
  margin-bottom: 30px;
  opacity: 0;
  position: relative;
  top: 50px;
}
.card-wrap .single-card .card-content .the-content {
  display: block;
  height: 0;
  opacity: 0;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
  top: 50px;
}
.card-wrap .single-card .card-content .the-content, .card-wrap .single-card .card-content svg {
  transition: all 350ms;
}
.card-wrap .single-card:hover .card-content, .card-wrap .single-card.open .card-content {
  height: 100%;
}
.card-wrap .single-card:hover .card-content svg, .card-wrap .single-card.open .card-content svg {
  height: 100px;
  opacity: 1;
  top: 0;
  transition-delay: 150ms;
}
.card-wrap .single-card:hover .card-content .the-content, .card-wrap .single-card.open .card-content .the-content {
  opacity: 1;
  top: 0;
  transition-delay: 150ms;
}
.card-wrap .single-card.open .card-content .the-content {
  height: fit-content;
}

.single-paragraph {
  max-width: 1040px;
}

#durables .left-side {
  padding-right: 8%;
}
#durables .right-side {
  margin-top: 20%;
}

#mission .pastille-mid {
  position: absolute;
  top: -111px;
  left: calc(50% - 111px);
}
#mission .pastille-mid svg {
  height: 222px;
  width: 222px;
}
#mission .pastille-mid svg circle {
  fill: #FDFAF7;
  opacity: 1;
}
#mission .pastille-mid svg #circle-rotate {
  transform: rotate(0deg);
  transform-origin: 50%;
}
#mission .bloc-title-wrap h2 {
  font: normal 50px/56px quiche-sans, sans-serif;
  color: #000000;
}

.swiper {
  width: 70%;
  height: 715px;
  max-height: 80vh;
}

.swiper-slide {
  border-radius: 20px;
  background-size: cover;
}

.single-faq {
  border-radius: 10px;
  border: 1px solid #EB5B4D;
  width: 100%;
  margin-bottom: 20px;
  padding: 12px 20px 15px;
  cursor: pointer;
}
.single-faq h3 {
  position: relative;
  padding-right: 70px;
  font-size: 20px;
  line-height: 1.2em;
}
.single-faq h3:after {
  content: "";
  position: absolute;
  pointer-events: none;
  margin-right: 10px;
  right: 0;
  top: calc(50% - 4px);
  height: 15px;
  width: 15px;
  background-image: url("../images/icon-chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: all 0.5s;
}
.single-faq .the-content {
  display: none;
  margin: 20px 0;
}
.single-faq .the-content .btn, .single-faq .the-content .gform_footer input[type=submit], .gform_footer .single-faq .the-content input[type=submit], .single-faq .the-content form input[type=submit], form .single-faq .the-content input[type=submit] {
  margin: 30px 0 10px;
}
.single-faq.open h3:after {
  transform: rotate(0);
}

.error-wrapper {
  position: relative;
  padding: 10vh 0;
}
.error-wrapper:before, .error-wrapper:after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -18vw;
  background-image: url("../images/texture-404.svg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.1;
  width: 600px;
  height: 100%;
  display: block;
}
.error-wrapper:after {
  left: auto;
  right: -18vw;
  transform: scaleX(-1);
}
.error-wrapper .the-content {
  text-align: center;
}
.error-wrapper .the-content h1 {
  font-size: 250px;
  line-height: 250px;
}
.error-wrapper .the-content h3 {
  color: #EB5B4D;
  margin-bottom: 10px;
}
.error-wrapper .the-content .btn, .error-wrapper .the-content .gform_footer input[type=submit], .gform_footer .error-wrapper .the-content input[type=submit], .error-wrapper .the-content form input[type=submit], form .error-wrapper .the-content input[type=submit] {
  margin: 35px auto 0;
}

.login-wrap {
  margin: 150px auto 50px;
}
.login-wrap .wrapper {
  max-width: 775px;
}

#login-bloc .wrapper {
  padding: 50px 85px;
  background-color: #FDE1D6;
  border-radius: 20px;
  overflow: hidden;
}
#login-bloc .wrapper:before, #login-bloc .wrapper:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  background-image: url("../images/texture-login.svg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 130px;
  height: 130px;
  display: block;
}
#login-bloc .wrapper:after {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}
#login-bloc .wrapper h1 {
  position: relative;
  z-index: 2;
}
#login-bloc .wrapper form {
  margin-top: 45px;
  position: relative;
  z-index: 2;
}
#login-bloc .wrapper form .btn, #login-bloc .wrapper form input[type=submit] {
  margin: 25px auto 10px;
  background-color: #EB5B4D;
  color: white;
  cursor: pointer;
}
#login-bloc .wrapper form .btn:hover, #login-bloc .wrapper form input[type=submit]:hover {
  background-color: rgba(235, 91, 77, 0.8);
}
#login-bloc .wrapper form .row-forgot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#login-bloc .wrapper input {
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 12px 25px 12px 25px;
  margin: 0 0 15px;
  width: 100%;
  font: 500 16px/24px Jakarta, sans-serif;
}

.password-wrap {
  position: relative;
}
.password-wrap .see-password {
  position: absolute;
  top: calc(50% - 14px);
  right: 25px;
  cursor: pointer;
}
.password-wrap .see-password svg path {
  fill: gray;
}
.password-wrap .see-password.open svg path {
  fill: #EB5B4D;
}

#inscription-footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 85px;
  margin: 25px auto;
  border-radius: 20px;
  background-color: #F7B8A1;
}
#inscription-footer .wrapper .btn, #inscription-footer .wrapper .gform_footer input[type=submit], .gform_footer #inscription-footer .wrapper input[type=submit], #inscription-footer .wrapper form input[type=submit], form #inscription-footer .wrapper input[type=submit] {
  margin: 0;
  min-width: 185px;
}

.login-guest a {
  font: 500 16px/24px Jakarta, sans-serif;
}
.login-guest a svg {
  margin-left: 20px;
  position: relative;
  left: 0;
  transition: all 250ms ease-in-out;
}
.login-guest a span {
  position: relative;
}
.login-guest a span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background-color: #000000;
  transition: all 250ms ease-in-out;
}
.login-guest a:hover svg {
  left: 8px;
}
.login-guest a:hover span:before {
  width: 100%;
}

#dashboard {
  margin-bottom: 80px;
}

.page-template-dashboard #main .wrapper {
  max-width: 1650px;
}
.page-template-dashboard #main .dashboard-block-alert {
  margin: -20px 0 20px;
  padding: 10px 20px;
  border-radius: 10px;
  border: 1px solid #7BC4A0;
  color: #7BC4A0;
  font-weight: bold;
}

.dashboard-titles .logout-wrap {
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top: -50px;
}
.dashboard-titles .logout-wrap .logout-link {
  display: flex;
  align-items: center;
}
.dashboard-titles .logout-wrap .logout-link svg {
  margin-right: 8px;
  margin-top: 3px;
  overflow: visible;
}
.dashboard-titles .logout-wrap .logout-link svg #Tracé_224 {
  transform: translateX(0);
  transition: all 250ms ease-in-out;
}
.dashboard-titles .logout-wrap .logout-link:hover svg #Tracé_224 {
  transform: translateX(4px);
}

.dashboard-menu li {
  margin-bottom: 45px;
}
.dashboard-menu li a {
  display: flex;
  align-items: center;
}
.dashboard-menu li a:hover span:after {
  width: 45px;
}
.dashboard-menu li.active a span:after {
  width: 45px;
}
.dashboard-menu li svg {
  margin-right: 12px;
  height: 26px;
  width: 26px;
}

.dashboard-block {
  margin-bottom: 100px;
}
.dashboard-block .wrapper {
  background-color: white;
  border-radius: 20px;
  display: flex;
}
.dashboard-block .wrapper .nav-wrap {
  width: 25%;
  height: 100%;
  padding: 60px 55px;
}
.dashboard-block .wrapper .content-wrap {
  min-height: 900px;
  border-left: 1px solid #EB5B4D;
  height: 100%;
  width: 75%;
  padding: 60px 80px;
}
.dashboard-block .wrapper .content-wrap .wrapper {
  width: 100%;
}

.dashboard-content-block {
  display: none;
}
.dashboard-content-block.active {
  display: flex;
}
.dashboard-content-block.can-load.loading {
  opacity: 0.5;
}
.dashboard-content-block.can-load.loading:before {
  opacity: 0.4;
}
.dashboard-content-block .btn, .dashboard-content-block .gform_footer input[type=submit], .gform_footer .dashboard-content-block input[type=submit], .dashboard-content-block form input[type=submit], form .dashboard-content-block input[type=submit] {
  width: fit-content;
  min-width: unset;
  max-width: 100%;
}
.dashboard-content-block h4 {
  margin-bottom: 40px;
}
.dashboard-content-block#containers .containers-list {
  margin-top: 40px;
}
.dashboard-content-block#containers .containers-list li {
  padding-left: 0;
  width: 100%;
  border-width: 0 0 1px 0;
  border-bottom: 1px solid #EB5B4D;
}

.orders-wrap .single-order {
  border: 1px solid #EB5B4D;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: hidden;
}
.orders-wrap .single-order.open svg {
  transform: rotate(180deg);
}
.orders-wrap .single-order:nth-child(2n) .order-title {
  background-color: white;
}
.orders-wrap .single-order .order-title {
  background-color: rgba(253, 225, 214, 0.3);
  width: 100%;
  padding: 20px 35px;
  cursor: pointer;
}
.orders-wrap .single-order .order-title p.order-date {
  width: 40%;
  margin-right: 20px;
  font-weight: 500;
}
.orders-wrap .single-order .order-title p.order-total {
  margin-left: auto;
}
.orders-wrap .single-order .order-title svg {
  height: 9px;
  width: 20px;
  margin-left: 70px;
  transition: all 250ms ease-in-out;
}
.orders-wrap .single-order .summary {
  display: none;
}
.orders-wrap .single-order .summary .summary-titles {
  background-color: #FDE1D6;
}
.orders-wrap .single-order .summary li {
  border-top: 1px solid #EB5B4D;
  padding: 12px 125px 12px 35px;
}
.orders-wrap .single-order .summary .right-side {
  display: flex;
  justify-content: space-between;
  width: 60%;
}
.orders-wrap .single-order .summary .name {
  width: 55%;
}
.orders-wrap .single-order .summary .mobile-qty {
  display: none;
  font-weight: bold;
  font-size: 14px;
  margin-right: 4px;
}
.orders-wrap .single-order .summary .price, .orders-wrap .single-order .summary .qty, .orders-wrap .single-order .summary .total {
  width: 30%;
  text-align: right;
  margin: 0 1%;
}
.orders-wrap .single-order .summary .total {
  margin-right: 0;
}
.orders-wrap .single-order .summary .summary-item {
  display: flex;
  padding: 0 125px 0 0;
}
.orders-wrap .single-order .summary .summary-item .summary-label {
  font-weight: 500;
  width: 86%;
  background-color: #FDE1D6;
  padding: 12px 35px;
}
.orders-wrap .single-order .summary .summary-item .summary-total {
  background-color: #F7B8A1;
}
.orders-wrap .single-order .summary .summary-item .summary-amount {
  padding: 12px 0;
  margin-left: auto;
}

#gift .gift-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3vw 3.5%;
}
#gift .single-gift-card {
  width: 31%;
  padding: 25px;
  border: 1px solid #EB5B4D;
  border-radius: 10px;
}
#gift .single-gift-card h4 {
  margin: 40px 0 0;
}
#gift .single-gift-card h4:first-child {
  margin-top: 0;
}

.gift-card-section .gform-body input, .gift-card-section .gform-body select, .gift-card-section .gform-body textarea, #contact .gform-body input, #contact .gform-body select, #contact .gform-body textarea {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.gift-card-section .gform_footer input[type=submit], #contact .gform_footer input[type=submit] {
  margin: 0 !important;
}
.gift-card-section .gform_footer input[type=submit]:hover, #contact .gform_footer input[type=submit]:hover {
  background-color: rgba(235, 91, 77, 0.8);
}

.gift-card-section ol {
  list-style-type: decimal-leading-zero;
}

.dashboard-block #infos form {
  margin-top: 0;
}
.dashboard-block #infos form .gform_fields .gsection:first-child {
  margin-top: 0;
}
.dashboard-block #infos form .ginput_container_password .ginput_left input {
  margin-top: 15px;
}
.dashboard-block #infos form .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 0;
}

#signup-bloc {
  margin: 150px auto 50px;
}
#signup-bloc .wrapper {
  max-width: 1250px;
  padding: 50px 85px;
  background-color: #FDE1D6;
  border-radius: 20px;
  overflow: hidden;
}
#signup-bloc .gform_submission_error {
  margin-top: 40px;
  color: #EB5B4D;
}

#infos form, #signup-bloc form, .form-password form {
  margin-top: 45px;
  position: relative;
  z-index: 2;
}
#infos form .btn, #infos form input[type=submit], #signup-bloc form .btn, #signup-bloc form input[type=submit], .form-password form .btn, .form-password form input[type=submit] {
  margin: 25px auto 10px;
  background-color: #EB5B4D;
  color: white;
  cursor: pointer;
}
#infos form .btn:hover, #infos form input[type=submit]:hover, #signup-bloc form .btn:hover, #signup-bloc form input[type=submit]:hover, .form-password form .btn:hover, .form-password form input[type=submit]:hover {
  background-color: rgba(235, 91, 77, 0.8);
}
#infos form .row-forgot, #signup-bloc form .row-forgot, .form-password form .row-forgot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#infos .gsection, #signup-bloc .gsection, .form-password .gsection {
  width: 100%;
  margin: 40px 0 15px;
  padding: 0 15px;
}
#infos .gsection .gsection_title, #signup-bloc .gsection .gsection_title, .form-password .gsection .gsection_title {
  font: 500 16px/24px Jakarta, sans-serif;
}
#infos .gform_footer, #signup-bloc .gform_footer, .form-password .gform_footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

form input[readonly=readonly] {
  background-color: #FDE1D6 !important;
  cursor: auto;
}
form input {
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 12px 25px 14px 25px;
  margin: 0 0 10px;
  width: 100%;
  font: 500 16px/24px Jakarta, sans-serif;
  letter-spacing: 0.06rem;
}
form input[type=submit] {
  width: fit-content;
  margin: 10px auto;
}
form input[type=password] {
  margin-bottom: 20px;
}
form .birth-date-selector .gfield_label {
  display: flex;
  align-items: center;
}
form .birth-date-selector .gfield_label .birth-info {
  font: 700 16px/22px Jakarta, sans-serif;
  border: 1px solid #EB5B4D;
  border-radius: 100%;
  width: 26px;
  height: 26px;
  margin-left: 10px;
  display: inline-block;
  text-align: center;
  position: relative;
  cursor: default;
}
form .birth-date-selector .gfield_label .birth-info .birth-text {
  position: absolute;
  z-index: 75;
  top: calc(100% + 7px);
  left: 0;
  background-color: #FDFAF7;
  border: 1px solid #000000;
  border-radius: 10px;
  font: normal 12px/16px Jakarta, sans-serif;
  text-align: left;
  width: 250px;
  padding: 9px 12px;
  display: none;
}
form .birth-date-selector .gfield_label .birth-info:hover .birth-text {
  display: block;
}
form .birth-date-selector .ginput_complex {
  display: flex;
  gap: 20px;
}
form .birth-date-selector .ginput_complex .ginput_container_date {
  width: 33%;
}

.map-wrap {
  position: relative;
}
.map-wrap .google-map {
  height: 800px;
}
.map-wrap .coords-bloc {
  background-color: #FDFAF7;
  border-radius: 10px;
  position: absolute;
  z-index: 2;
  width: 550px;
  top: 100px;
  left: 250px;
  height: calc(100% - 200px);
  padding: 60px 65px;
  -webkit-box-shadow: 3px 3px 7px 0 #E8DCCD;
  box-shadow: 3px 3px 7px 0 #E8DCCD;
}
.map-wrap .coords-bloc.no-text h2 {
  margin-bottom: 50px;
}
.map-wrap .coords-bloc.no-text {
  top: 150px;
  height: calc(100% - 340px);
}
.map-wrap .coords-bloc .the-content {
  margin-bottom: 45px;
}
.map-wrap .coords-bloc .single-coord {
  display: flex;
  margin-top: 30px;
}
.map-wrap .coords-bloc .single-coord svg {
  margin-right: 20px;
  margin-top: 3px;
  width: 25px;
  height: 25px;
}
.map-wrap .coords-bloc .single-coord p {
  font: 500 20px/28px Jakarta, sans-serif;
}

.contact-wrap .left-side {
  margin-bottom: 60px;
}

.gfield .validation_message {
  font: normal 16px/24px Jakarta, sans-serif;
  margin-top: 3px;
}

.gform_footer input[type=submit] {
  cursor: pointer;
  background-color: #EB5B4D;
  color: white;
}
.gform_footer input[type=submit]:hover {
  background-color: rgba(235, 91, 77, 0.8);
}

#map .gmnoprint, .google-map .gmnoprint {
  display: none;
}

.zones-wrap {
  margin: 40px auto;
  position: relative;
}
.zones-wrap .google-map {
  height: 1000px;
}
.zones-wrap .zones-bloc {
  background-color: #FDFAF7;
  border-radius: 10px;
  position: absolute;
  width: 420px;
  top: 100px;
  left: 100px;
  padding: 60px 50px 40px;
  -webkit-box-shadow: 3px 3px 7px 0 #E8DCCD;
  box-shadow: 3px 3px 7px 0 #E8DCCD;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.zones-wrap .zones-bloc h2 {
  font: 500 25px/32px Jakarta, sans-serif;
}
.zones-wrap .zones-bloc .zones-btns {
  margin: 0 0 15px;
}
.zones-wrap .zones-bloc .zones-btns .btn, .zones-wrap .zones-bloc .zones-btns form input[type=submit], form .zones-wrap .zones-bloc .zones-btns input[type=submit], .zones-wrap .zones-bloc .zones-btns .gform_footer input[type=submit], .gform_footer .zones-wrap .zones-bloc .zones-btns input[type=submit] {
  width: 100%;
  margin-bottom: 15px;
  border-color: var(--btn-color);
  position: relative;
  overflow: hidden;
}
.zones-wrap .zones-bloc .zones-btns .btn span, .zones-wrap .zones-bloc .zones-btns form input[type=submit] span, form .zones-wrap .zones-bloc .zones-btns input[type=submit] span, .zones-wrap .zones-bloc .zones-btns .gform_footer input[type=submit] span, .gform_footer .zones-wrap .zones-bloc .zones-btns input[type=submit] span {
  position: relative;
  z-index: 2;
}
.zones-wrap .zones-bloc .zones-btns .btn:after, .zones-wrap .zones-bloc .zones-btns form input[type=submit]:after, form .zones-wrap .zones-bloc .zones-btns input[type=submit]:after, .zones-wrap .zones-bloc .zones-btns .gform_footer input[type=submit]:after, .gform_footer .zones-wrap .zones-bloc .zones-btns input[type=submit]:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--btn-color);
  opacity: 0;
  transition: all 250ms ease-in-out;
}
.zones-wrap .zones-bloc .zones-btns .btn:hover, .zones-wrap .zones-bloc .zones-btns form input[type=submit]:hover, form .zones-wrap .zones-bloc .zones-btns input[type=submit]:hover, .zones-wrap .zones-bloc .zones-btns .gform_footer input[type=submit]:hover, .gform_footer .zones-wrap .zones-bloc .zones-btns input[type=submit]:hover, .zones-wrap .zones-bloc .zones-btns .btn.active, .zones-wrap .zones-bloc .zones-btns form input.active[type=submit], form .zones-wrap .zones-bloc .zones-btns input.active[type=submit], .zones-wrap .zones-bloc .zones-btns .gform_footer input.active[type=submit], .gform_footer .zones-wrap .zones-bloc .zones-btns input.active[type=submit] {
  background-color: transparent;
}
.zones-wrap .zones-bloc .zones-btns .btn:hover:after, .zones-wrap .zones-bloc .zones-btns form input[type=submit]:hover:after, form .zones-wrap .zones-bloc .zones-btns input[type=submit]:hover:after, .zones-wrap .zones-bloc .zones-btns .gform_footer input[type=submit]:hover:after, .gform_footer .zones-wrap .zones-bloc .zones-btns input[type=submit]:hover:after, .zones-wrap .zones-bloc .zones-btns .btn.active:after, .zones-wrap .zones-bloc .zones-btns form input.active[type=submit]:after, form .zones-wrap .zones-bloc .zones-btns input.active[type=submit]:after, .zones-wrap .zones-bloc .zones-btns .gform_footer input.active[type=submit]:after, .gform_footer .zones-wrap .zones-bloc .zones-btns input.active[type=submit]:after {
  opacity: 0.25;
}
.zones-wrap .zones-bloc .delivery-out {
  position: relative;
  z-index: 3;
  padding-bottom: 20px;
  width: 100%;
  cursor: default;
}
.zones-wrap .zones-bloc .delivery-out > p {
  text-decoration: underline;
  font: 500 16px/22px Jakarta, sans-serif;
}
.zones-wrap .zones-bloc .delivery-out:hover .bloc-out {
  display: flex;
}
.zones-wrap .zones-bloc .delivery-out .bloc-out {
  display: none;
  position: absolute;
  top: 100%;
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  background-color: #FDFAF7;
  width: 150%;
  left: -25%;
  padding: 14px 30px;
  font: normal 14px/22px Jakarta, sans-serif;
}
.zones-wrap .zones-bloc .delivery-out .bloc-out a {
  cursor: pointer;
  font-weight: 500;
  text-decoration: underline;
}
.zones-wrap .zones-bloc .zone-result {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  width: 100%;
}
.zones-wrap .zones-bloc .zone-result .single-result {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 15px;
  background-color: white;
  border: 2px solid var(--result-color);
  padding: 20px 10px;
}
.zones-wrap .zones-bloc .zone-result .single-result.bad-result {
  border: 2px solid #EB5B4D;
}
.zones-wrap .zones-bloc .zone-result .single-result p {
  font-size: 16px;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.zones-wrap .zones-bloc .zone-result .single-result p.result-name {
  margin-bottom: 0;
  font-weight: bold;
}
.zones-wrap .zones-bloc .zone-result .single-result.active {
  display: flex;
}
.zones-wrap .zone-search {
  position: absolute;
  right: 10%;
  top: 10%;
}
.zones-wrap .zone-search input {
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  color: #000000;
  background-color: #FDFAF7;
  padding: 12px 25px 14px 25px;
  margin: 0 0 10px;
  width: 275px;
  font: 500 16px/24px Jakarta, sans-serif;
  letter-spacing: 0.06rem;
}

.mobile-zone-text {
  margin-bottom: 15px;
}

.reset-pass-page {
  padding: 70px 0 100px;
}

#reset-password-step-1, #reset-password-step-2 {
  margin: 30px auto 40px;
}
#reset-password-step-1 .form-row, #reset-password-step-2 .form-row {
  margin-bottom: 15px;
}

.form.form-password .error {
  color: red;
}
.form.form-password .success {
  color: #00AB8E;
}
.form.form-password .password-wrap {
  height: 50px;
  display: block;
  margin-bottom: 20px;
}
.form.form-password .error, .form.form-password .success {
  display: none;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 700;
}
.form.form-password[data-message=reset-password-invalid-email] .reset-password-invalid-email {
  display: block;
}
.form.form-password[data-message=error-field-required] .error-field-required {
  display: block;
}
.form.form-password[data-message=success-reset-password-email-sent] .success-reset-password-email-sent {
  display: block;
}
.form.form-password[data-message=error-passwords-dont-match] .error-passwords-dont-match {
  display: block;
}
.form.form-password[data-message=success-password-reset] .success-password-reset {
  display: block;
}
.form.form-password[data-message=error-passwords-weak] .error-passwords-weak {
  display: block;
}

.curseur {
  display: none;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  position: fixed;
  z-index: 5;
  pointer-events: none;
  animation: spinner-c7wet2 3s infinite linear;
}
.curseur svg {
  height: 70px;
  width: 70px;
}

.has-cursor {
  cursor: none !important;
}
.has-cursor:hover .curseur {
  display: block;
}

.week-orders-wrap .title {
  font-weight: bold;
  background-color: rgba(253, 225, 214, 0.3);
  flex-wrap: wrap;
}
.week-orders-wrap > li {
  display: flex;
  flex-direction: column;
}
.week-orders-wrap > li.single-week-meal, .week-orders-wrap > li.title, .week-orders-wrap > li.total {
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #EB5B4D;
}
.week-orders-wrap > li.single-week-meal.title, .week-orders-wrap > li.title.title, .week-orders-wrap > li.total.title {
  border-bottom: none;
}
.week-orders-wrap > li.single-week-meal p, .week-orders-wrap > li.title p, .week-orders-wrap > li.total p {
  padding: 14px 35px;
}
.week-orders-wrap > li.title .btn, .week-orders-wrap > li.title form input[type=submit], form .week-orders-wrap > li.title input[type=submit], .week-orders-wrap > li.title .gform_footer input[type=submit], .gform_footer .week-orders-wrap > li.title input[type=submit] {
  margin-right: 35px;
}
.week-orders-wrap > li.single-week-delivery .delivery-content {
  flex-wrap: wrap;
}
.week-orders-wrap > li.single-week-delivery .delivery-content .left-side, .week-orders-wrap > li.single-week-delivery .delivery-content .right-side {
  padding: 20px 35px;
}
.week-orders-wrap > li.single-week-delivery .delivery-content .left-side {
  width: 35%;
}
.week-orders-wrap > li.single-week-delivery .delivery-content .right-side {
  width: 65%;
}
.week-orders-wrap > li .meal-list .meal-name {
  display: flex;
  gap: 6px;
}
.week-orders-wrap > li .meal-list .meal-name .meal-count {
  width: 38px;
}
.week-orders-wrap > li .meal-list .meal-name p {
  max-width: calc(100% - 44px);
}
.week-orders-wrap > li .pickup-content {
  display: flex;
  flex-direction: column;
  padding: 20px 35px;
}
.week-orders-wrap > li .order-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 35px;
}
.week-orders-wrap > li .order-title svg {
  height: 9px;
  width: 20px;
}
.week-orders-wrap > li.order-block-collapse {
  border-bottom: 1px solid #EB5B4D;
}
.week-orders-wrap > li.order-block-collapse .order-title {
  cursor: pointer;
}
.week-orders-wrap > li.order-block-collapse .order-title svg {
  transition: all 250ms ease-in-out;
}
.week-orders-wrap > li.order-block-collapse.open .order-title svg {
  transform: rotate(180deg);
}
.week-orders-wrap > li .collapse-content {
  display: none;
  background-color: rgba(253, 225, 214, 0.3);
}
.week-orders-wrap > li .collapse-content .btn, .week-orders-wrap > li .collapse-content form input[type=submit], form .week-orders-wrap > li .collapse-content input[type=submit], .week-orders-wrap > li .collapse-content .gform_footer input[type=submit], .gform_footer .week-orders-wrap > li .collapse-content input[type=submit] {
  margin-top: 30px;
}
.week-orders-wrap > li .small-title {
  font-weight: bold;
}
.week-orders-wrap > li .inventory-content {
  flex-direction: column;
}
.week-orders-wrap > li .inventory-content .small-title {
  padding: 20px 30px;
}
.week-orders-wrap > li .inventory-content .small-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 30px;
}
.week-orders-wrap > li .inventory-content .small-title-wrap .small-title {
  padding: 0;
}
.week-orders-wrap > li .inventory-content .small-title-wrap .btn, .week-orders-wrap > li .inventory-content .small-title-wrap form input[type=submit], form .week-orders-wrap > li .inventory-content .small-title-wrap input[type=submit], .week-orders-wrap > li .inventory-content .small-title-wrap .gform_footer input[type=submit], .gform_footer .week-orders-wrap > li .inventory-content .small-title-wrap input[type=submit] {
  margin: 0;
}

.containers-list {
  display: flex;
  flex-wrap: wrap;
}
.containers-list li {
  width: 50%;
  border-top: 1px solid #EB5B4D;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.containers-list li:nth-child(odd) {
  border-right: 1px solid #EB5B4D;
}
.containers-list li svg {
  height: 22px;
  width: 22px;
  margin-right: 10px;
}
.containers-list li p {
  display: flex;
  align-items: center;
}
.containers-list li .count {
  font-weight: bold;
}

#week-delivery .week-orders-wrap:not(:last-child) {
  margin-bottom: 100px;
}
#week-delivery .week-orders-wrap .delivery-content .left-side {
  border-right: 1px solid #EB5B4D;
}

#week-orders .week-orders-wrap > li.single-week-meal p:first-child, #week-orders .week-orders-wrap > li.title p:first-child, #week-orders .week-orders-wrap > li.total p:first-child {
  width: calc(100% - 200px);
  border-right: 1px solid #EB5B4D;
}
#week-orders .week-orders-wrap > li.single-week-meal p:last-child, #week-orders .week-orders-wrap > li.title p:last-child, #week-orders .week-orders-wrap > li.total p:last-child {
  text-align: center;
  width: 200px;
}

.orders-by-customer {
  display: none;
}
.orders-by-customer .single-customer-order {
  border-bottom: 1px solid #EB5B4D;
  padding: 15px 0;
}
.orders-by-customer .single-customer-order .order-infos {
  font-size: 14px;
  line-height: 1.3em;
}
.orders-by-customer .single-customer-order .order-infos br:first-child {
  display: none;
}
.orders-by-customer .single-customer-order .customer-name, .orders-by-customer .single-customer-order .order-delivery-type {
  font-weight: bold;
  font-size: 15px;
  line-height: 1.3em;
}
.orders-by-customer .single-customer-order .order-delivery-type {
  font-size: 13px;
}
.orders-by-customer .single-customer-order .order-item-wrap {
  margin-top: 10px;
}
.orders-by-customer .single-customer-order .order-item-wrap p {
  display: flex;
  font-size: 14px;
  line-height: 1.3em;
}
.orders-by-customer .single-customer-order .order-item-wrap .count {
  font-weight: bold;
  display: block;
  margin-right: 5px;
}

.week-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #EB5B4D;
  border-radius: 6px;
  padding: 0 12px;
  width: 380px;
  max-width: 100%;
  margin-bottom: 35px;
}
.week-search-wrap input {
  border: none;
  height: 40px;
  width: 100%;
}

.dashboard-block .block-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
}
.dashboard-block .block-title h4 {
  margin-bottom: 0;
}
.dashboard-block .block-title .btn-simple {
  display: flex;
  align-items: center;
  color: #EB5B4D;
  font-weight: bold;
  font-size: 16px;
}
.dashboard-block .block-title .btn-simple svg {
  margin-right: 10px;
}
.dashboard-block .block-title .btn-simple span:after {
  bottom: -4px;
}

.popup-fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000;
  background-color: rgba(246, 184, 160, 0.9);
  display: none;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.popup-fullscreen.active {
  display: flex;
  pointer-events: auto;
}
.popup-fullscreen#containers-return {
  background-color: rgba(123, 196, 160, 0.9);
}
.popup-fullscreen#containers-return .single-container {
  border-bottom: 1px solid #7BC4A0;
}
.popup-fullscreen#containers-return .single-container .number-wrap {
  border-color: #7BC4A0;
}
.popup-fullscreen#containers-return .single-container .number-wrap .spinner-button {
  color: #7BC4A0;
  border-color: #7BC4A0;
  background-color: rgba(123, 196, 160, 0.2);
}
.popup-fullscreen .container {
  position: relative;
  padding: 40px 15px 60px;
  background-color: #FDFAF7;
  border-radius: 20px;
  overflow-y: auto;
  max-height: 90dvh;
  width: 95%;
  max-width: 775px;
  /* width */
}
.popup-fullscreen .container::-webkit-scrollbar {
  width: 0;
}
.popup-fullscreen .container > .the-content {
  margin-top: 20px;
}
.popup-fullscreen .container.can-load.loading {
  position: unset;
}
.popup-fullscreen .container.can-load.loading:before {
  opacity: 0.8;
}
.popup-fullscreen .container .x-close {
  position: absolute;
  right: 25px;
  top: 25px;
  font-weight: bold;
  cursor: pointer;
  color: black;
  transition: all 250ms ease-in-out;
}
.popup-fullscreen .container .x-close:hover {
  color: #EB5B4D;
}
.popup-fullscreen .return-containers-list, .popup-fullscreen .add-containers-list {
  max-width: 600px;
  margin: 40px auto 30px;
}
.popup-fullscreen .single-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid #EB5B4D;
}
.popup-fullscreen .single-container:last-child {
  border-bottom: none;
}
.popup-fullscreen .single-container .container-name {
  display: flex;
  align-items: center;
}
.popup-fullscreen .single-container .container-name svg {
  width: 25px;
  height: 25px;
  margin-right: 14px;
}
.popup-fullscreen .single-container .number-wrap {
  height: fit-content;
  margin: 0;
}
.popup-fullscreen .single-container .number-wrap input {
  height: 40px;
  width: 127px;
  padding: 0 40px;
}
.popup-fullscreen .single-container .number-wrap .spinner-button {
  color: #EB5B4D;
  height: 100%;
  width: 35px;
}
.popup-fullscreen .single-container .number-wrap .spinner-button.dec-button {
  left: 0;
  right: auto;
  border-width: 0 1px 0 0;
}
.popup-fullscreen .single-container .number-wrap .spinner-button.inc-button {
  border-width: 0 0 0 1px;
}
.popup-fullscreen .name, .popup-fullscreen .container-count {
  font-weight: bold;
}
.popup-fullscreen .btns-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 0 16px;
  margin-top: 25px;
}
.popup-fullscreen .btns-wrap .btn-print {
  margin-top: 10px;
}
.popup-fullscreen .notification-selector {
  width: fit-content;
  margin: 30px auto;
  text-align: left;
}
.popup-fullscreen#order-print .btns-wrap {
  flex-direction: column;
}
.popup-fullscreen#order-print .btns-wrap .btn svg, .popup-fullscreen#order-print .btns-wrap form input[type=submit] svg, form .popup-fullscreen#order-print .btns-wrap input[type=submit] svg, .popup-fullscreen#order-print .btns-wrap .gform_footer input[type=submit] svg, .gform_footer .popup-fullscreen#order-print .btns-wrap input[type=submit] svg {
  margin-right: 16px;
}
.popup-fullscreen#order-print .btns-wrap .btn svg path, .popup-fullscreen#order-print .btns-wrap form input[type=submit] svg path, form .popup-fullscreen#order-print .btns-wrap input[type=submit] svg path, .popup-fullscreen#order-print .btns-wrap .gform_footer input[type=submit] svg path, .gform_footer .popup-fullscreen#order-print .btns-wrap input[type=submit] svg path {
  transition: all 250ms ease-in-out;
}
.popup-fullscreen#order-print .btns-wrap .btn.salad svg path, .popup-fullscreen#order-print .btns-wrap form input.salad[type=submit] svg path, form .popup-fullscreen#order-print .btns-wrap input.salad[type=submit] svg path, .popup-fullscreen#order-print .btns-wrap .gform_footer input.salad[type=submit] svg path, .gform_footer .popup-fullscreen#order-print .btns-wrap input.salad[type=submit] svg path {
  fill: #7BC4A0;
}
.popup-fullscreen#order-print .btns-wrap .btn:hover svg path, .popup-fullscreen#order-print .btns-wrap form input[type=submit]:hover svg path, form .popup-fullscreen#order-print .btns-wrap input[type=submit]:hover svg path, .popup-fullscreen#order-print .btns-wrap .gform_footer input[type=submit]:hover svg path, .gform_footer .popup-fullscreen#order-print .btns-wrap input[type=submit]:hover svg path {
  fill: #FDFAF7;
}
.popup-fullscreen .delivery-name {
  margin-left: 10px;
}

.radio-wrap {
  margin-bottom: 15px;
}
.radio-wrap input {
  display: none;
}
.radio-wrap input:checked + label:after {
  opacity: 1;
}
.radio-wrap label {
  display: flex;
  position: relative;
  cursor: pointer;
}
.radio-wrap label:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 14px;
  border: 1px solid #EB5B4D;
  border-radius: 4px;
  position: relative;
  top: 5px;
}
.radio-wrap label:after {
  content: "";
  display: block;
  position: absolute;
  left: 3px;
  top: 8px;
  height: 14px;
  width: 14px;
  background-color: #EB5B4D;
  border-radius: 4px;
  opacity: 0;
}
.radio-wrap .zone-name {
  margin-left: 3px;
  text-transform: uppercase;
}

.page-template-menu-noel .hero-page .right-side .icon-wrap {
  right: -140px;
  top: -60px;
  height: 80%;
}

#cavs-interac-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: block;
}

#cavs-interac-panel {
  background: #fff;
  max-width: 760px;
  margin: 5vh auto;
  padding: 24px 28px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
#cavs-interac-panel h2 {
  margin: 0 0 12px 0;
  font-size: 24px;
}
#cavs-interac-panel p {
  margin: 0 0 16px 0;
}

.cavs-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0;
}
.cavs-row .cavs-label {
  min-width: 160px;
  font-weight: 600;
}
.cavs-row .cavs-value {
  font-family: monospace;
  font-size: 16px;
}

.cavs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cavs-btn {
  appearance: none;
  border: 0;
  border-radius: 10px;
  background: #EB5B4D;
  color: #fff;
  padding: 9px 25px;
  cursor: pointer;
  font-size: 18px;
  font-family: PlusJakartaSans, "Plus Jakarta Sans", Arial, sans-serif;
}
.cavs-btn.secondary {
  background: #666;
}

.cavs-copy {
  margin-left: 8px;
  font-size: 12px;
  background: #eee;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 8px;
  cursor: pointer;
}

@media (max-width: 600px) {
  .cavs-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .cavs-row .cavs-label {
    min-width: 0;
  }
}
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
}
header .wrapper {
  max-width: 1625px;
}
header ul {
  list-style-type: none;
  margin: 0;
}
header .primary-menu {
  display: flex;
}
header .top-header {
  position: relative;
  z-index: 2;
  background-color: #F7B8A1;
}
header .top-header ul {
  margin: 10px 0;
}
header .top-header ul li {
  color: #863B1F;
  padding-left: 17px;
  display: flex;
  align-items: center;
}
header .top-header ul li:after {
  content: "";
  height: 15px;
  width: 2px;
  background-color: #863B1F;
  display: inline-block;
  margin-left: 17px;
  margin-top: 4px;
}
header .top-header ul li:nth-last-child(1):after {
  display: none !important;
}
header .top-header ul li a {
  display: flex;
  align-items: center;
}
header .top-header ul li a svg {
  margin-right: 10px;
  margin-top: 3px;
  position: relative;
  top: 0;
  transition: all 250ms ease-in-out;
}
header .top-header ul li a:hover svg {
  top: -4px;
}
header .main-header {
  padding: 40px 0;
  background-color: #f8f3ed;
  transition: all 250ms ease-in-out;
}
header .main-header #site-logo img {
  height: 87px;
  width: fit-content;
  transition: all 250ms ease-in-out;
}
header .main-header ul {
  color: #000000;
}
header .main-header ul li {
  margin: 5px 10px;
  position: relative;
}
header .main-header ul li a {
  padding: 10px 15px;
  display: block;
}
header .main-header ul li:nth-last-child(1) {
  margin-right: 0;
}
header .main-header ul li:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  max-width: calc(100% - 30px);
  bottom: 10px;
  left: 15px;
  background-color: #EB5B4D;
  transition: all 250ms ease-in-out;
}
header .main-header ul li:hover:before {
  width: 40px;
}
header .main-header ul li.is-btn {
  background-color: #EB5B4D;
  color: #FDFAF7;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
header .main-header ul li.is-btn a {
  padding: 9px 50px;
  display: flex;
}
header .main-header ul li.is-btn:before {
  display: none;
}
header .main-header ul li.is-btn:hover {
  background-color: rgba(235, 91, 77, 0.75);
}
header .main-header ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  pointer-events: auto;
}
header .main-header .sub-menu {
  display: flex;
  flex-direction: column;
  background-color: #FDFAF7;
  -webkit-box-shadow: 3px 3px 7px 0 #E8DCCD;
  box-shadow: 3px 3px 7px 0 #E8DCCD;
  position: absolute;
  left: -25%;
  width: 150%;
  opacity: 0;
  transition: all 250ms ease-in-out;
  pointer-events: none;
  padding: 15px 0;
}
header .main-header .sub-menu li {
  text-align: center;
}
header .main-header .sub-menu li a {
  line-height: 1.2em;
  font-size: 16px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
header .main-header .sub-menu li a:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  bottom: 0;
  left: 50%;
  background-color: #EB5B4D;
  transition: all 250ms ease-in-out;
}
header .main-header .sub-menu li a:hover:before {
  width: calc(100% - 30px);
  left: 15px;
}
header .main-header .sub-menu li:nth-last-child(1) {
  margin-right: 10px;
}
header .main-header .sub-menu li:before {
  display: none !important;
}
header.shrink .main-header {
  -webkit-box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.2);
  padding: 15px 0;
}
header.shrink .main-header #site-logo img {
  height: 50px;
}

.is-cart .cart-icon {
  position: relative;
  top: 2px;
  transition: all 250ms ease-in-out;
}
.is-cart .cart-count {
  position: absolute;
  top: -3px;
  right: 0;
  padding: 2px 6px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDFAF7;
  border-radius: 19px;
  color: #EB5B4D;
  font: bold 12px/1em Jakarta, sans-serif;
}
.is-cart a:hover .cart-icon {
  top: -2px;
}
.is-cart a:hover svg {
  top: 0;
}
.is-cart.mobile-cart svg {
  margin-right: 10px;
  margin-top: 3px;
  position: relative;
  top: 0;
  transition: all 250ms ease-in-out;
}

.menu-btn-guest {
  display: flex !important;
}

.menu-btn-connected {
  display: none !important;
}

.logged-in .menu-btn-guest {
  display: none !important;
}
.logged-in .menu-btn-connected {
  display: flex !important;
}

.main-header .right-side {
  display: none;
  align-items: center;
}

.mobile-nav-trigger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  height: 50px;
  padding: 10px;
  margin-left: 20px;
}
.mobile-nav-trigger span {
  width: 40px;
  height: 3px;
  background-color: #EB5B4D;
}

#mobile-nav {
  display: none;
  flex-direction: column;
  overflow-y: hidden;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  right: -110vw;
  width: 100vw;
  max-width: 540px;
  height: 110dvh;
  padding-bottom: 10dvh;
  z-index: 1000;
  background-color: #f8f3ed;
  -webkit-box-shadow: 2px 0 25px 0 #e8dccd;
  box-shadow: 2px 0 25px 0 #e8dccd;
  transition: all 250ms ease-in-out;
}
#mobile-nav .texture-flower {
  position: absolute;
  right: -50px;
  bottom: 0;
  left: auto;
}
#mobile-nav .texture-flower svg {
  height: 380px;
  width: 330px;
}
#mobile-nav .mobile-menu-header {
  padding: 40px 50px;
  align-items: center;
}
#mobile-nav .mobile-menu-header .user-icon {
  margin-bottom: 2px;
}
#mobile-nav .mobile-menu-header .user-icon svg {
  margin-right: 8px;
}
#mobile-nav .mobile-menu-header .user-icon span {
  font-weight: 600;
  color: #863B1F;
}
#mobile-nav .mobile-menu-header .is-cart {
  margin-left: auto;
  margin-right: 10px;
}
#mobile-nav .mobile-menu-header .is-cart svg {
  margin-right: 10px;
  margin-top: 3px;
}
#mobile-nav .mobile-menu-header .mobile-nav-close {
  height: 30px;
}
#mobile-nav .mobile-menu-header .mobile-nav-close svg {
  height: 30px;
  width: 30px;
}
#mobile-nav .menu-item-has-children > a:after {
  content: "";
  background-image: url("../images/icon-chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  display: inline-block;
  width: 14px;
  height: 7px;
  margin-left: 15px;
  margin-bottom: 2px;
}
#mobile-nav .top-menu {
  position: relative;
  padding: 10px 50px 30px;
}
#mobile-nav .top-menu .sub-menu {
  display: none;
  margin: 20px 0 40px 20px;
}
#mobile-nav .top-menu .sub-menu li {
  margin-bottom: 20px;
}
#mobile-nav .top-menu li {
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}
#mobile-nav .top-menu li.is-btn {
  margin-top: 20px;
  background-color: #EB5B4D;
  color: #FDFAF7;
  border-radius: 10px;
  width: fit-content;
  transition: all 250ms ease-in-out;
}
#mobile-nav .top-menu li.is-btn a {
  padding: 9px 50px;
  display: flex;
}
#mobile-nav .top-menu li.is-btn:hover {
  background-color: rgba(235, 91, 77, 0.75);
}
#mobile-nav .bottom-menu {
  padding: 40px 50px;
}
#mobile-nav .bottom-menu li {
  margin-bottom: 25px;
}
#mobile-nav .bottom-menu li a {
  display: flex;
  align-items: center;
  color: #863B1F;
}
#mobile-nav .bottom-menu li a svg {
  margin-right: 15px;
  width: 25px;
}
#mobile-nav .bottom-menu li.is-cart .cart-icon {
  position: relative;
  top: 5px;
  transition: all 250ms ease-in-out;
}
#mobile-nav .bottom-menu li.is-cart .cart-count {
  position: absolute;
  top: -6px;
  right: 5px;
  padding: 2px 6px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDFAF7;
  border-radius: 19px;
  color: #EB5B4D;
  font: bold 12px/1em Jakarta, sans-serif;
}
#mobile-nav.active {
  right: 0;
  overflow-y: scroll;
}

footer {
  position: relative;
  padding: 50px 0 25px;
  background-color: #f8f3ed;
  z-index: 2;
}
footer .wrapper {
  max-width: initial;
  width: 94%;
}
footer .top-side {
  justify-content: space-between;
}
footer ul li {
  margin-bottom: 15px;
  font: 500 16px/24px Jakarta, sans-serif;
}
footer ul li.no-link > a {
  pointer-events: none;
}
footer ul .sub-menu {
  margin-top: 15px;
}
footer ul .sub-menu li {
  font-weight: normal;
}
footer .newsletter {
  max-width: 28%;
}
footer .newsletter h2 {
  color: #EB5B4D;
}
footer .infos .infos-addr {
  margin-top: 40px;
}
footer .infos .infos-tel {
  font: 500 25px/32px Jakarta, sans-serif;
}
footer .infos .infos-hours, footer .infos .infos-tel {
  margin-top: 20px;
  display: block;
}
footer .infos .infos-hours {
  font-weight: 500;
}
footer .socials-wrap {
  margin-top: 40px;
}
footer .socials-wrap a {
  height: 30px;
  width: 30px;
  margin-right: 8px;
}
footer .socials-wrap a path {
  transition: all 250ms ease-in-out;
}
footer .socials-wrap a.social-fb path {
  fill: #7BC4A0;
}
footer .socials-wrap a.social-fb:hover path {
  fill: #5DB489;
}
footer .socials-wrap a.social-linkedin path {
  fill: #00AB8E;
}
footer .socials-wrap a.social-linkedin:hover path {
  fill: #00957C;
}
footer .socials-wrap a.social-insta path {
  fill: #EB5B4D;
}
footer .socials-wrap a.social-insta:hover path {
  fill: #D94739;
}
footer .socials-wrap a.social-twitter path {
  fill: #F7B8A1;
}
footer .socials-wrap a.social-twitter:hover path {
  fill: #E8997B;
}
footer #copyrights {
  text-align: center;
  border-top: 1px solid #F7B8A1;
  margin-top: 80px;
  padding-top: 25px;
  font: normal 16px/24px Jakarta, sans-serif;
}
footer #copyrights .copyrights-txt {
  margin-right: 5px;
}
footer #copyrights #rubik-api-copyright span {
  font: normal 16px/24px Jakarta, sans-serif;
}
footer #copyrights #rubik-api-copyright a {
  line-height: 33px;
  display: flex;
  align-items: center;
  width: 65px;
}
footer #copyrights #rubik-api-copyright a svg {
  position: relative;
  top: 1px;
}
footer .newsletter #mailpoet_form_1 input {
  font: normal 16px/24px Jakarta, sans-serif !important;
  padding: 10px 20px !important;
}
footer .newsletter #mailpoet_form_1 input::placeholder {
  color: grey !important;
  opacity: 1 !important;
}
footer .newsletter #mailpoet_form_1 .btn-signup-newsletter {
  margin-top: 20px;
}
footer .newsletter #mailpoet_form_1 .btn-signup-newsletter input {
  font: 500 16px/24px Jakarta, sans-serif !important;
}
footer .newsletter #mailpoet_form_1 .mailpoet_paragraph {
  margin-bottom: 10px;
}
footer .newsletter #mailpoet_form_1 .mailpoet_paragraph.last {
  margin-bottom: 0;
}
footer .newsletter #mailpoet_form_1 .mailpoet_message {
  padding: 10px 0;
}

footer.with-border .wrapper, .woocommerce-page footer .wrapper {
  border-top: 1px solid #F7B8A1;
  padding-top: 80px;
}

.error404 footer {
  padding: 0 0 25px;
  margin-top: 50px;
}

/*
 * Modify gravity form, chosen and mailpoet styles here
 *
 * Change and modify according to designs
 */
form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
}
form .gform_body .gform_fields .gfield {
  position: relative;
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield.gfield_visibility_hidden {
  display: none;
}
form .gform_body .gform_fields .gfield:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container input, form .gform_body .gform_fields .gfield:last-child .ginput_container textarea {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: 500 16px/24px Jakarta, sans-serif;
  margin-bottom: 6px;
}
form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 20px;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
form .gform_body .gform_fields .gfield.hidden_label label, form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
form .gform_body .gform_fields .gfield .gfield_description {
  display: block;
  text-align: left;
  font: 400 14px/18px Jakarta, sans-serif;
  margin: 5px 0;
}
form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: red;
}
form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text], form .gform_body .gform_fields .gfield .ginput_container input[type=email], form .gform_body .gform_fields .gfield .ginput_container input[type=tel], 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;
  border: 1px solid #EB5B4D;
  box-shadow: none;
  border-radius: 10px;
  color: #000000;
  background-color: #FEFCFB;
  padding: 12px 25px 12px 25px;
  margin: 0;
  max-width: 100%;
  font: 500 16px/24px Jakarta, sans-serif;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder {
  color: grey !important;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container .ginput_left .password_input_container input {
  margin-bottom: 15px;
}
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: 12px 25px 12px 25px;
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  box-shadow: none;
  background: white;
  color: black;
  font: 500 16px/24px Jakarta, sans-serif;
  resize: vertical;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state {
  position: relative;
}
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;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span {
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child {
  margin-bottom: 0;
}
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;
}
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;
  	}
  }
   */
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single {
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
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;
}
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;
}
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;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
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;
}
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%;
}
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;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
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;
}
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;
}
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;
}
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;
}
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;
}
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;
}
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;
}
form .gform_body .gform_fields .gfield .ginput_preview {
  display: flex;
  align-items: center;
}
form .gform_body .gform_fields .gfield .ginput_preview button {
  outline: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before {
  content: "\f335";
}
form .gform_body .gform_fields .gfield .ginput_preview strong {
  display: block;
  text-align: left;
  font: 400 12px/12px sans-serif;
  margin-right: 10px;
}
form .gform_footer {
  position: relative;
  margin-top: 30px;
  /*
   * Edit the stroke-line cap, and stroke color directly in /images/loader.svg
   */
}
form .gform_footer .gform_ajax_spinner {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 30px;
}

.gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: normal 18px/20px sans-serif;
}

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: bold 18px/32px sans-serif;
}

/*
 * Select + Chosen (will apply to gravity forms dropdown automatically)
 */
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 #EB5B4D;
  border-radius: 10px;
  padding: 12px 25px 14px 25px !important;
  margin: 0;
  font: 500 16px/24px Jakarta, sans-serif;
  letter-spacing: 0.06rem;
  color: #000000;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}
select::placeholder {
  color: grey !important;
  opacity: 1 !important;
}
select option[selected=selected] {
  color: grey;
}

.ginput_container_select:after {
  content: "";
  position: absolute;
  right: 18px;
  top: calc(50% - 5px);
  height: 14px;
  width: 17px;
  background-image: url("../images/icon-chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(180deg);
  transition: all 250ms ease-in-out;
}

.chosen-container-single {
  width: 100% !important;
}
.chosen-container-single.chosen-with-drop .chosen-single div {
  transform: rotate(180deg);
}
.chosen-container-single.chosen-with-drop .chosen-drop {
  display: block;
}
.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;
}
.chosen-container-single .chosen-single span {
  font: 400 16px/18px sans-serif;
  color: black;
  margin: 0 0 !important;
}
.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;
}
.chosen-container-single .chosen-single div b {
  display: none !important;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.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;
}
.chosen-container-single .chosen-drop .chosen-search {
  margin: 0 0 !important;
  padding: 0 0 !important;
  display: none !important;
}
.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;
}
.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;
}
.chosen-container-single .chosen-drop .chosen-results li.disabled-result, .chosen-container-single .chosen-drop .chosen-results li.gf_placeholder {
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results li.highlighted {
  background: grey;
  background-color: grey;
  color: white;
}

.woocommerce-page .the-content ul li:before {
  display: none;
}

#main .woocommerce {
  position: relative;
  width: 90%;
  max-width: 1450px;
  margin: 0 auto;
}

.banner-woo {
  margin: 130px auto 50px;
}

.woocommerce a.button.alt {
  width: fit-content;
  background-color: #EB5B4D;
  color: #FDFAF7;
  font: 700 18px/22px Jakarta, sans-serif;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
.woocommerce a.button.alt.disabled {
  background-color: #EB5B4D;
  pointer-events: none !important;
}
.woocommerce a.button.alt.disabled:hover {
  background-color: #EB5B4D;
}
.woocommerce a.button.alt:hover {
  color: #FDFAF7;
  background-color: rgba(235, 91, 77, 0.8);
}

.woocommerce a.remove {
  color: #EB5B4D !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce a.remove svg {
  height: 15px;
  width: 15px;
}
.woocommerce a.remove:hover {
  background-color: #EB5B4D !important;
}
.woocommerce a.remove:hover svg path {
  fill: #FDFAF7;
}

.woocommerce .woocommerce-cart-form button.button {
  background-color: #EB5B4D;
  color: #FDFAF7;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
.woocommerce .woocommerce-cart-form button.button:hover {
  background-color: rgba(235, 91, 77, 0.5);
  color: #FDFAF7;
}
.woocommerce .woocommerce-cart-form button.button:disabled {
  color: #FDFAF7;
}
.woocommerce .woocommerce-cart-form button.button:disabled:hover {
  background-color: #EB5B4D;
  color: #FDFAF7;
}

#shipping_method li {
  display: flex;
  align-items: center;
}

.coupon input {
  height: 40px;
  width: 180px !important;
  background-color: transparent;
  border: 1px solid #F7B8A1 !important;
  border-radius: 10px;
  padding: 6px 14px 5px !important;
  font-weight: 700;
}

.product-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.product-thumbnail svg {
  width: 35px;
  height: 35px;
}

.woocommerce table.shop_table td {
  padding: 14px 12px;
}
.woocommerce table.shop_table td.product-name {
  max-width: 650px;
  padding-right: 70px;
}
.woocommerce table.shop_table td .coupon label {
  display: none;
}

.woocommerce .quantity {
  position: relative;
}
.woocommerce .quantity .qty {
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  height: 50px;
  width: 4.5em;
  padding: 10px 20px 10px 0;
}
.woocommerce .quantity .qty::-webkit-inner-spin-button, .woocommerce .quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.woocommerce .quantity .qty[type=number] {
  -moz-appearance: textfield;
}
.woocommerce .quantity .quantity-nav {
  position: absolute;
  left: 2.8em;
  display: flex;
  flex-direction: column;
  top: 0;
}
.woocommerce .quantity .quantity-nav .quantity-button {
  height: 25px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FDEDE7;
  border-radius: 5px;
  border: 1px solid #EB5B4D;
  cursor: pointer;
  transition: 0.1s;
}
.woocommerce .quantity .quantity-nav .quantity-button.quantity-up {
  border-radius: 0 10px 0 0;
  border-bottom-width: 0;
}
.woocommerce .quantity .quantity-nav .quantity-button.quantity-down {
  border-radius: 0 0 10px 0;
}
.woocommerce .quantity .quantity-nav .quantity-button.quantity-down svg {
  transform: rotate(180deg);
}
.woocommerce .quantity .quantity-nav .quantity-button.disabled {
  background-color: #FDE1D6;
}
.woocommerce .quantity .quantity-nav .quantity-button.disabled svg {
  opacity: 0.3;
}

#pwgc-redeem-gift-card-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.8em !important;
}
#pwgc-redeem-gift-card-container label, #pwgc-redeem-gift-card-container #pwgc-redeem-error {
  width: 100%;
}
#pwgc-redeem-gift-card-container #pwgc-redeem-gift-card-number {
  width: 49%;
  margin-bottom: 0;
}
#pwgc-redeem-gift-card-container #pwgc-redeem-gift-card-number {
  margin-right: 15px;
  height: 45px;
}
#pwgc-redeem-gift-card-container #pwgc-redeem-button {
  height: 45px;
  margin: 0 !important;
  min-width: 30%;
  width: fit-content;
  background-color: #EB5B4D;
  color: #FDFAF7;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
#pwgc-redeem-gift-card-container #pwgc-redeem-button:hover {
  background-color: rgba(235, 91, 77, 0.8);
  color: #FDFAF7;
}

.woocommerce-info.cart-empty {
  padding: 1em 1.5em;
}
.woocommerce-info.cart-empty:before {
  display: none !important;
}

.return-to-shop a.button, .checkout_coupon button.button, .woocommerce button.button.alt {
  width: fit-content;
  background-color: #EB5B4D;
  color: #FDFAF7;
  font: 500 16px/24px Jakarta, sans-serif;
  padding: 12px 25px;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
.return-to-shop a.button:hover, .checkout_coupon button.button:hover, .woocommerce button.button.alt:hover {
  color: #FDFAF7;
  background-color: rgba(235, 91, 77, 0.8);
}

.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

.woocommerce .woocommerce-error {
  color: #000000;
  border-top-color: #EB5B4D;
  background-color: rgba(235, 91, 77, 0.05);
}
.woocommerce .woocommerce-error:before {
  color: #EB5B4D;
}
.woocommerce .woocommerce-error li {
  align-items: center;
}
.woocommerce .woocommerce-error li a {
  margin-right: 10px;
  background-color: #EB5B4D;
  color: white;
  transition: all 250ms ease-in-out;
}
.woocommerce .woocommerce-error li a:hover {
  background-color: rgba(235, 91, 77, 0.8);
}
.woocommerce .woocommerce-error li strong {
  margin: 0 5px;
}
.woocommerce .woocommerce-error li[data-class=minimum-amount] {
  align-items: start;
  justify-content: space-between;
}
.woocommerce .woocommerce-error li[data-class=minimum-amount] .btn, .woocommerce .woocommerce-error li[data-class=minimum-amount] form input[type=submit], form .woocommerce .woocommerce-error li[data-class=minimum-amount] input[type=submit], .woocommerce .woocommerce-error li[data-class=minimum-amount] .gform_footer input[type=submit], .gform_footer .woocommerce .woocommerce-error li[data-class=minimum-amount] input[type=submit] {
  margin: 0 0 0 20px;
}

.woocommerce-info {
  color: #000000;
  border-top-color: #7BC4A0;
  background-color: rgba(123, 196, 160, 0.1);
  padding: 1em 2em;
}
.woocommerce-info:before {
  display: none !important;
}
.woocommerce-info .showcoupon, .woocommerce-info .showlogin {
  font-weight: 500;
  position: relative;
}
.woocommerce-info .showcoupon:before, .woocommerce-info .showlogin:before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 250ms ease-in-out;
}
.woocommerce-info .showcoupon:hover:before, .woocommerce-info .showlogin:hover:before {
  width: 100%;
}

.page-template-checkout .woocommerce form.checkout_coupon {
  margin-top: -5px;
}
.page-template-checkout .woocommerce form.login {
  margin-top: 20px;
}

.woocommerce-message {
  color: #000000;
  border-top-color: #00AB8E;
  background-color: rgba(0, 171, 142, 0.1);
}
.woocommerce-message:before {
  color: #00AB8E;
}
.woocommerce-message .button.wp-element-button {
  background-color: #00AB8E;
  color: #FDFAF7;
  transition: all 250ms ease-in-out;
}
.woocommerce-message .button.wp-element-button:hover {
  color: #FDFAF7;
  background-color: rgba(0, 171, 142, 0.8);
}

.woocommerce-form-coupon-toggle {
  margin-bottom: 25px;
}

.woocommerce_error {
  margin-bottom: 20px;
}

.woocommerce form h3 {
  margin: 40px 0 15px;
}
.woocommerce form .woocommerce-billing-fields > h3 {
  margin-top: 15px;
}
.woocommerce form .form-row-first {
  width: 49%;
}
.woocommerce form label {
  margin-bottom: 5px;
}
.woocommerce form label .required {
  color: #000000;
}
.woocommerce form input, .woocommerce form textarea {
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  color: #000000;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 8px 14px 10px;
  margin: 0 0 10px;
  width: 100%;
  font: 500 16px/24px Jakarta, sans-serif;
  letter-spacing: 0.06rem;
}
.woocommerce form textarea {
  padding: 10px 20px;
  min-height: 100px;
  max-height: 400px;
  resize: vertical;
}
.woocommerce .woocommerce-shipping-methods input[type=radio] {
  display: none;
}
.woocommerce .woocommerce-shipping-methods input[type=radio]:checked + label:after {
  opacity: 1;
}
.woocommerce .woocommerce-shipping-methods input[type=radio]:hover + label:after {
  opacity: 0.2;
}
.woocommerce .woocommerce-shipping-methods li:first-child:last-child label:after {
  opacity: 1;
}
.woocommerce .woocommerce-shipping-methods label {
  position: relative;
  display: block;
  font: 500 16px/24px Jakarta, sans-serif;
  padding-left: 40px;
  margin: 10px 0;
  cursor: pointer;
}
.woocommerce .woocommerce-shipping-methods 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: 1px solid #000000;
  border-radius: 50%;
}
.woocommerce .woocommerce-shipping-methods label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 13px;
  width: 13px;
  background-color: #EB5B4D;
  border-radius: 100%;
  transition: all 250ms ease-in-out;
}

.woocommerce-checkout #payment {
  background-color: transparent;
  border: 1px solid #EB5B4D;
  margin-bottom: 50px;
}
.woocommerce-checkout #payment .payment_methods li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce-checkout #payment .payment_methods li input {
  width: 20px;
  height: 15px;
  margin-right: 0.5em !important;
}
.woocommerce-checkout #payment .payment_methods li:before {
  display: none !important;
}
.woocommerce-checkout #payment .payment_methods .payment_box {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce-checkout #payment .payment_methods .payment_box:before {
  display: none !important;
}

.payment_box .wc-stripe-elements-field, .payment_box .wc-stripe-iban-element-field {
  border-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.woocommerce-checkout #payment div.payment_box .wc-credit-card-form .form-row-wide {
  margin-bottom: -1.7em;
}

#mailpoet_woocommerce_checkout_optin_field .woocommerce-form__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#mailpoet_woocommerce_checkout_optin_field .woocommerce-form__label input {
  width: 15px;
}

.woocommerce .blockUI.blockOverlay {
  z-index: 900 !important;
}

.page-template-checkout .woocommerce ul.order_details {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.page-template-checkout .woocommerce ul.order_details li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.page-template-checkout .woocommerce ul.order_details li strong {
  margin-left: 5px;
  margin-bottom: 2px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  margin: 5px 0 15px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme input {
  height: 15px;
  width: 15px;
  margin: 0 10px 0 0;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  font: 500 16px/24px Jakarta, sans-serif;
  color: #000000;
  text-align: center;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid #EB5B4D;
  padding: 9px 25px;
  min-width: 215px;
  background-color: transparent;
  transition: all 250ms ease-in-out;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
  background-color: rgba(247, 184, 161, 0.25);
}

.woocommerce form .form-row.create-account label {
  display: flex;
  align-items: center;
}
.woocommerce form .form-row.create-account label input {
  height: 15px;
  width: 15px;
}

.page-template-checkout .woocommerce form .form-row .woocommerce-input-wrapper .select2 .select2-selection {
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 55px;
  border: 1px solid #EB5B4D;
  border-radius: 10px;
  padding: 12px 25px 14px 5px !important;
  margin: 0;
  font: 500 16px/24px Jakarta, sans-serif;
  letter-spacing: 0.06rem;
  color: #000000;
  background: rgba(253, 250, 247, 0.5);
  cursor: pointer;
}
.page-template-checkout .woocommerce form .form-row .woocommerce-input-wrapper .select2 .select2-selection:after {
  content: "";
  display: block;
  background-image: url("../images/icon-chevron.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 25px;
  top: 20px;
  width: 14px;
  height: 13px;
  transform: rotate(180deg);
  transition: all 250ms ease-in-out;
}
.page-template-checkout .woocommerce form .form-row .woocommerce-input-wrapper .select2 .select2-selection .select2-selection__arrow {
  display: none;
}
.page-template-checkout .woocommerce form .form-row .woocommerce-input-wrapper .select2.select2-container--open .select2-selection:after {
  transform: rotate(360deg);
}

.woocommerce form.checkout_coupon .form-row-first {
  margin-right: 20px;
}
.woocommerce form.checkout_coupon .form-row-last {
  float: none;
  display: inline-block;
}

.woocommerce form .place-order .input-checkbox {
  width: fit-content;
}

.woocommerce td.product-name dl.variation dd.variation-Pour {
  padding-top: 2px;
}
.woocommerce td.product-name dl.variation dd.variation-De, .woocommerce td.product-name dl.variation dd.variation-Message {
  padding-top: 3px;
}

.woocommerce-error .woocommerce-Price-amount {
  margin-left: 5px;
  font-weight: bold;
}

@media screen and (min-width: 991px) {
  a.btn:hover, button.btn:hover, .btn:hover, form input[type=submit]:hover, .gform_footer input[type=submit]:hover, .slider-controls .btn-next:hover, .slider-controls .btn-prev:hover {
    background-color: rgba(247, 184, 161, 0.25);
  }
  a.btn.btn-red:hover, button.btn.btn-red:hover, .btn.btn-red:hover, form input.btn-red[type=submit]:hover, .gform_footer input.btn-red[type=submit]:hover, .slider-controls .btn-next.btn-red:hover, .slider-controls .btn-prev.btn-red:hover {
    background-color: rgba(235, 91, 77, 0.25);
  }
  .section-content-img a.btn:hover, .section-content-img button.btn:hover, .section-content-img .btn:hover, .section-content-img form input[type=submit]:hover, form .section-content-img input[type=submit]:hover, .section-content-img .gform_footer input[type=submit]:hover, .gform_footer .section-content-img input[type=submit]:hover, .cta-section a.btn:hover, .cta-section button.btn:hover, .cta-section .btn:hover, .cta-section form input[type=submit]:hover, form .cta-section input[type=submit]:hover, .cta-section .gform_footer input[type=submit]:hover, .gform_footer .cta-section input[type=submit]:hover {
    background-color: #FFC8B6;
  }
  footer .menu-left li a, footer .menu-right li a {
    position: relative;
  }
  footer .menu-left li a:after, footer .menu-right li a:after {
    content: "";
    height: 1px;
    width: 0;
    display: block;
    background-color: #EB5B4D;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: all 250ms ease-in-out;
  }
  footer .menu-left li a:hover:after, footer .menu-right li a:hover:after {
    width: 100%;
  }
}
@media screen and (max-width: 1550px) {
  header .main-header ul li a {
    padding: 10px 8px;
  }
  header .main-header ul li.is-btn a {
    padding: 9px 30px;
  }
  header .main-header ul.sub-menu li a:hover:before {
    width: calc(100% - 16px);
    left: 8px;
  }
}
@media screen and (max-width: 1500px) {
  .orders-wrap .single-order .summary .name {
    width: 40%;
  }
  .orders-wrap .single-order .summary .qty {
    width: 20%;
  }
  .orders-wrap .single-order .summary .total {
    width: 25%;
  }
  .orders-wrap .single-order .summary .summary-item .summary-label {
    width: 78%;
  }
  .map-wrap .coords-bloc {
    left: 100px;
  }
}
@media screen and (max-width: 1400px) {
  .dashboard-block .wrapper .nav-wrap {
    padding: 60px 35px;
  }
  header .main-header #site-logo img {
    height: 70px;
  }
  .page-template-cuisson .hero-page.hero-option-right .right-side .band-wrap {
    top: 10%;
  }
}
@media screen and (max-width: 1350px) {
  .dashboard-block .wrapper .nav-wrap {
    padding: 60px 35px;
  }
  header .wrapper {
    width: 95%;
  }
}
@media screen and (max-width: 1280px) {
  #mobile-nav {
    display: flex;
  }
  .main-header .right-side {
    display: flex;
  }
  .mobile-nav-trigger {
    display: flex;
  }
  header .top-header, header .primary-menu {
    display: none;
  }
  #main {
    margin-top: 60px;
  }
  header .main-header #site-logo img {
    height: 70px;
  }
  .hero-page {
    padding: 5px 0 75px;
  }
  #footer .top-side {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #footer .top-side > div {
    width: 50%;
    max-width: 50%;
    margin-bottom: 50px;
  }
  #footer .top-side .infos {
    order: 1;
  }
  #footer .top-side .newsletter {
    order: 2;
  }
  #footer .top-side .menu-left {
    order: 3;
  }
  #footer .top-side .menu-right {
    order: 4;
  }
  #footer #copyrights {
    margin-top: 10px;
  }
  .third-btns .single-third {
    height: 500px;
  }
  #shipping .single-card svg {
    width: 20%;
  }
  #shipping .single-card .content {
    width: 70%;
  }
  #the-menu .single-product-row h3 {
    font-size: 20px;
    line-height: 30px;
  }
  #dashboard {
    margin-bottom: 40px;
    margin-top: 50px;
  }
  .dashboard-titles .logout-wrap {
    margin-top: 30px;
  }
  .dashboard-block .wrapper .content-wrap {
    padding: 60px 50px;
  }
  .orders-wrap .single-order .summary li {
    padding: 12px 35px;
  }
  .orders-wrap .single-order .summary .summary-item {
    padding: 0 35px 0 0;
  }
  #gift .single-gift-card {
    width: 48%;
  }
  .single-icon-row svg {
    width: 95px;
    height: 95px;
  }
  .single-icon-row .content {
    width: 75%;
  }
  .zones-wrap .zones-bloc {
    top: 30px;
    left: 30px;
  }
  .card-wrap .single-card {
    width: 40%;
  }
  .map-wrap .coords-bloc {
    left: 50px;
  }
  .map-wrap .coords-bloc .single-coord svg {
    margin-top: 3px;
  }
  .banner-woo {
    margin: 50px auto;
  }
  .login-wrap {
    margin: 70px auto 50px;
  }
}
@media screen and (max-width: 1199px) {
  .single-who {
    margin-bottom: 100px;
  }
  .single-who svg {
    margin: 0 auto 30px;
    max-height: 150px;
    width: 150px;
    min-width: 150px;
  }
  .to-who .right-side {
    margin-top: 100px;
  }
  #durables .right-side {
    margin-top: 50px;
  }
  #durables .right-side .single-icon-row {
    margin-left: 0;
  }
  .swiper-section .right-side {
    margin-top: 75px;
  }
  .swiper {
    height: 600px;
  }
  .single-faq h3 {
    font-size: 20px;
    line-height: 1.3em;
  }
  .map-wrap .google-map {
    height: 700px;
  }
  .map-wrap .coords-bloc {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    border-radius: 0;
    padding: 40px 5% 50px;
  }
  .map-wrap .coords-bloc h2 {
    margin-bottom: 20px;
  }
  .map-wrap .coords-bloc .the-content {
    margin-bottom: 25px;
  }
  #portions .single-icon-row, #proto .single-icon-row {
    padding: 20px 30px 22px;
  }
  #contenants .containers-wrap {
    margin-top: 75px;
  }
  #contenants .containers-wrap .single-container {
    min-width: 220px;
  }
  #contenants .containers-wrap .single-container svg {
    height: 135px;
    max-width: 150px;
    margin-bottom: 40px;
  }
  #contenants .containers-wrap .single-container h3 {
    font-size: 22px;
    line-height: 27px;
  }
  #proto {
    margin-bottom: 100px;
  }
  #proto .right-side {
    margin-top: 40px;
  }
  #proto .single-icon-row {
    margin-left: 0;
  }
}
@media screen and (max-width: 1080px) {
  header .main-header #site-logo img {
    height: 60px;
  }
  header .main-header ul li a {
    padding: 10px 5px;
  }
  .third-btns .single-third {
    height: 400px;
  }
  .third-btns .single-third .bottom-text p {
    font-size: 21px;
    line-height: 25px;
  }
  .section-content-img .left-side .wrapper {
    padding: 75px 30px;
    margin: auto;
  }
  .section-content-img .left-side h2 {
    font-size: 50px;
    line-height: 55px;
  }
  .section-content-img .right-side img {
    min-height: 400px;
  }
  #shipping .single-card svg {
    width: 17%;
  }
  #shipping .single-card .content {
    width: 73%;
  }
  #shipping .single-card .content h3 {
    font-size: 22px;
    line-height: 27px;
  }
  .dashboard-block .wrapper {
    flex-direction: column;
  }
  .dashboard-block .wrapper .nav-wrap {
    width: 100%;
    padding: 45px 50px 5px;
  }
  .dashboard-block .wrapper .content-wrap {
    width: 100%;
    padding: 45px 50px 60px;
    border-left: none;
    border-top: 1px solid #EB5B4D;
  }
  .dashboard-content-block h4 {
    margin-bottom: 25px;
  }
  #infos .gsection, #signup-bloc .gsection {
    margin: 10px 0 15px;
  }
  .dashboard-block .wrapper .content-wrap {
    min-height: unset;
  }
}
@media screen and (max-width: 991px) {
  .texture-flowers svg {
    height: 175px;
  }
  .slice {
    margin: 125px auto;
  }
  .slice.section-content-img {
    margin: 0 auto;
  }
  .main-header #site-logo {
    margin-left: 8px;
  }
  .section-content-img .right-side img {
    position: relative;
    max-height: 500px;
  }
  #shipping .right-side {
    margin-top: 40px;
  }
  #shipping .single-card {
    width: 100%;
    margin-bottom: 30px;
  }
  .hero-home {
    width: 100%;
    flex-wrap: wrap;
    left: 0;
  }
  .hero-home .hero-center {
    width: 90%;
    margin: 0 auto 50px;
    order: -1;
  }
  .hero-home .hero-img {
    width: 47%;
    height: 500px;
    border-radius: 0 250px 250px 0;
  }
  .hero-home .hero-img.hero-img-2 {
    border-radius: 250px 0 0 250px;
  }
  .about-wrap .top-side .left-side {
    max-width: 100%;
    text-align: center;
  }
  .about-wrap .top-side .right-side {
    margin: 0 auto 20px;
  }
  .about-wrap .top-side .right-side svg {
    height: 240px;
    width: 240px;
  }
  .to-who .right-side {
    margin-top: 30px;
  }
  .hero-page .wrapper {
    flex-wrap: wrap;
  }
  .hero-page .left-side {
    width: 100%;
    max-width: 100%;
  }
  .hero-page .left-side h3 {
    margin-bottom: 13px;
  }
  .hero-page .right-side {
    width: 100%;
    margin-top: -50px;
  }
  .hero-page .right-side .img-hero {
    left: 30vw;
  }
  .hero-page .right-side .band-wrap {
    left: auto;
  }
  .hero-page.hero-option-right .right-side .icon-wrap {
    left: auto;
    right: -110px;
  }
  #fonctionnement .right-side {
    margin-top: 50px;
  }
  .single-icon-row {
    margin-left: 0;
  }
  .zones-wrap {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
  }
  .zones-wrap .zones-bloc {
    position: relative;
    order: -1;
    top: 0;
    left: 0;
    border-radius: 0;
    width: 100%;
    padding: 30px 25px 20px;
  }
  .zones-wrap .zones-bloc .delivery-out .bloc-out {
    width: 90%;
    left: 5%;
  }
  .zones-wrap .zones-bloc .zones-btns .btn, .zones-wrap .zones-bloc .zones-btns form input[type=submit], form .zones-wrap .zones-bloc .zones-btns input[type=submit], .zones-wrap .zones-bloc .zones-btns .gform_footer input[type=submit], .gform_footer .zones-wrap .zones-bloc .zones-btns input[type=submit] {
    width: 400px;
    max-width: 100%;
    margin: 10px auto 15px;
  }
  .zones-wrap .zones-bloc .zone-result {
    position: unset;
  }
  .zones-wrap .google-map {
    height: 700px;
  }
  .zones-wrap .zone-search {
    top: auto;
    right: auto;
    left: 1%;
    bottom: 625px;
  }
  .card-wrap .single-card {
    width: 100%;
    min-height: 525px;
  }
  #mission {
    margin-top: 150px;
    padding-top: 170px;
  }
  #reutilisables .left-side {
    margin-bottom: 40px;
  }
  #reutilisables .left-side img {
    max-height: 400px;
    width: 100%;
    object-fit: cover;
  }
  #reutilisables .left-side svg {
    bottom: -20px;
    right: -160px;
    height: 140px;
  }
  #contenants .containers-wrap .single-container {
    margin-bottom: 75px;
  }
  #confiance.section-content-img {
    flex-direction: column-reverse !important;
  }
  #confiance.section-content-img .left-side {
    margin-top: -10px;
  }
  ul.products .single-product-row {
    flex-wrap: wrap;
  }
  ul.products .single-product-row .product-title {
    width: calc(91% - 90px);
    margin-left: 0;
    margin-right: 4%;
  }
  ul.products .single-product-row .price-wrap {
    width: 100%;
  }
  .gift-card-section {
    margin-bottom: 75px;
  }
  .gift-card-section .right-side {
    margin-top: 75px;
  }
  .woocommerce .woocommerce-error li[data-class=minimum-amount] {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .woocommerce .woocommerce-error li[data-class=minimum-amount] .btn, .woocommerce .woocommerce-error li[data-class=minimum-amount] form input[type=submit], form .woocommerce .woocommerce-error li[data-class=minimum-amount] input[type=submit], .woocommerce .woocommerce-error li[data-class=minimum-amount] .gform_footer input[type=submit], .gform_footer .woocommerce .woocommerce-error li[data-class=minimum-amount] input[type=submit] {
    margin: 15px 0 0 0;
  }
  .week-orders-wrap > li.single-week-delivery .delivery-content .left-side, .week-orders-wrap > li.single-week-delivery .delivery-content .right-side {
    width: 100%;
  }
  .week-orders-wrap > li.single-week-delivery .delivery-content .left-side {
    border-right: none !important;
    border-bottom: 1px solid rgba(235, 91, 77, 0.2);
  }
}
@media screen and (max-width: 850px) {
  .third-btns {
    flex-direction: column;
  }
  .woocommerce table.shop_table td.product-name {
    max-width: unset;
    padding-right: 12px;
  }
}
@media screen and (max-width: 767px) {
  header .main-header #site-logo img {
    height: 60px;
  }
  #footer .top-side > div {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
    padding: 50px 0;
    border-bottom: 1px solid #F7B8A1;
  }
  #footer .top-side > div.menu-right {
    border-bottom: none;
  }
  footer.with-border .wrapper, .woocommerce-page footer .wrapper {
    padding-top: 10px;
  }
  .woocommerce-page footer {
    margin-top: 40px;
  }
  footer:not(.with-border) {
    padding-top: 10px;
  }
  .orders-wrap .single-order .order-title p.order-date {
    width: 30%;
  }
  .orders-wrap .single-order .order-title {
    padding: 12px 15px;
  }
  .orders-wrap .single-order .summary {
    border-bottom: 1px solid #EB5B4D;
  }
  .orders-wrap .single-order .summary .summary-titles .qty, .orders-wrap .single-order .summary .summary-titles .total {
    display: none;
  }
  .orders-wrap .single-order .summary .name {
    width: 60%;
  }
  .orders-wrap .single-order .summary .right-side {
    width: 38%;
    flex-direction: column;
    justify-content: start;
  }
  .orders-wrap .single-order .summary .right-side > p {
    width: 100%;
  }
  .orders-wrap .single-order .summary .mobile-qty {
    display: inline-block;
  }
  .orders-wrap .single-order .summary li {
    padding: 12px 15px;
  }
  .orders-wrap .single-order .summary .summary-item {
    flex-direction: column;
    padding: 0;
  }
  .orders-wrap .single-order .summary .summary-item .summary-label {
    width: 100%;
    padding: 12px 15px;
  }
  .orders-wrap .single-order .summary .summary-item .summary-amount {
    padding: 12px 15px;
  }
  .dashboard-block {
    margin-bottom: 40px;
  }
  .woocommerce .cart-item .quantity {
    width: 72px;
    margin-left: auto;
  }
  .woocommerce .quantity .quantity-nav {
    left: auto;
    right: 0;
  }
  .woocommerce .cart-collaterals ul#shipping_method {
    margin: 40px 0 20px;
  }
  .woocommerce .cart-collaterals ul#shipping_method li label {
    text-align: left;
  }
  .woocommerce td.product-name dl.variation dd.variation-Pour {
    padding-top: 2px;
  }
  .woocommerce td.product-name dl.variation dd.variation-De, .woocommerce td.product-name dl.variation dd.variation-Message {
    padding-top: 3px;
  }
  #inscription-footer .wrapper {
    flex-direction: column;
    padding: 35px 25px;
  }
  #inscription-footer .wrapper h3 {
    margin-bottom: 25px;
    text-align: center;
  }
  #login-bloc .wrapper {
    padding: 50px 25px;
  }
  #login-bloc .wrapper:before, #login-bloc .wrapper:after {
    width: 20%;
    height: 100px;
    background-position: left top;
  }
  #mission .card-wrap .single-card {
    padding-top: 250px;
    background-position: center -300px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #mission .card-wrap .single-card .card-content {
    height: 100%;
    padding: 40px 50px 50px;
  }
  #mission .card-wrap .single-card .card-content.card-red {
    background-color: #EB5B4D;
  }
  #mission .card-wrap .single-card .card-content.card-green {
    background-color: #7BC4A0;
  }
  #mission .card-wrap .single-card .card-content svg {
    height: 100px;
    opacity: 1;
    top: 0;
  }
  #mission .card-wrap .single-card .card-content .the-content {
    height: auto;
    overflow: visible;
    opacity: 1;
    top: 0;
  }
}
@media screen and (max-width: 680px) {
  h1 {
    font-size: 40px;
    line-height: 45px;
  }
  #main {
    margin-top: 40px;
  }
  .section-content-img .right-side img {
    height: 400px;
  }
  #gift .gift-cards {
    gap: 25px;
  }
  #gift .single-gift-card {
    width: 100%;
  }
  form .birth-date-selector .ginput_complex {
    flex-direction: column;
  }
  form .birth-date-selector .ginput_complex .ginput_container_date {
    width: 100%;
  }
  .dashboard-block .wrapper .nav-wrap {
    padding: 45px 25px 5px;
  }
  .dashboard-block .wrapper .content-wrap {
    padding: 45px 25px;
  }
  .orders-wrap .single-order .order-title {
    flex-wrap: wrap;
    position: relative;
  }
  .orders-wrap .single-order .order-title p.order-date {
    font-weight: bold;
  }
  .orders-wrap .single-order .order-title p.order-date, .orders-wrap .single-order .order-title p.order-status, .orders-wrap .single-order .order-title p.order-total {
    width: 100%;
    margin-right: 40px;
  }
  .orders-wrap .single-order .order-title svg {
    position: absolute;
    right: 35px;
    top: calc(50% - 4px);
  }
  .hero-home .hero-img {
    width: 48%;
    height: 350px;
    border-radius: 0 175px 175px 0;
  }
  .hero-home .hero-img.hero-img-2 {
    border-radius: 175px 0 0 175px;
  }
  .hero-home .hero-btns-wrap {
    flex-direction: column;
  }
  .hero-home .hero-center {
    width: 96%;
  }
  .hero-home .hero-center h3 {
    margin-bottom: 5px;
  }
  #portions .single-icon-row {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    padding: 20px;
    text-align: start;
  }
  #portions .single-icon-row .quantity {
    text-align: left;
    margin-top: 5px;
  }
  #the-menu {
    padding: 125px 0 100px;
  }
  #the-menu .title-wrap {
    margin-bottom: 50px;
  }
  #the-menu .title-wrap h2 {
    font-size: 45px;
    line-height: 50px;
  }
  #mission .bloc-title-wrap h2 {
    font-size: 45px;
    line-height: 55px;
  }
  .woocommerce form.checkout_coupon .form-row-first, .woocommerce form.checkout_coupon .form-row-last {
    width: 100%;
  }
  .hero-page .left-side h3, .hero-page + h3 {
    margin-bottom: 20px;
  }
  .map-wrap .coords-bloc .single-coord {
    margin-top: 45px;
  }
  .to-who .texture-flower {
    display: none;
  }
  #week-orders .week-orders-wrap > li.single-week-meal, #week-orders .week-orders-wrap > li.title {
    flex-direction: row-reverse;
    justify-content: start;
  }
  #week-orders .week-orders-wrap > li.single-week-meal p, #week-orders .week-orders-wrap > li.title p {
    padding: 14px 10px;
  }
  #week-orders .week-orders-wrap > li.single-week-meal p:first-child, #week-orders .week-orders-wrap > li.title p:first-child {
    width: unset;
    border-right: none;
  }
  #week-orders .week-orders-wrap > li.single-week-meal p:last-child, #week-orders .week-orders-wrap > li.title p:last-child {
    display: flex;
    width: unset;
    font-weight: bold;
  }
  #week-orders .week-orders-wrap > li.single-week-meal p:last-child:after, #week-orders .week-orders-wrap > li.title p:last-child:after {
    content: "x";
    display: inline-block;
  }
  #week-orders .week-orders-wrap > li.title p:last-child {
    display: none;
  }
  #week-orders .week-orders-wrap > li.total p {
    padding: 14px 10px;
  }
  #week-orders .week-orders-wrap > li.total p:first-child {
    width: unset;
  }
  #week-orders .week-orders-wrap > li.total p:last-child {
    width: unset;
  }
  .week-orders-wrap > li .order-title {
    padding: 14px 15px;
  }
  .week-orders-wrap > li .inventory-content .small-title {
    padding: 20px 15px;
  }
  .week-orders-wrap > li .inventory-content .small-title-wrap {
    padding: 20px 15px;
  }
  .week-orders-wrap > li.single-week-delivery .delivery-content .left-side, .week-orders-wrap > li.single-week-delivery .delivery-content .right-side {
    width: 100%;
    padding: 20px 15px;
  }
  .week-orders-wrap > li.single-week-delivery .delivery-content .left-side {
    border-right: none !important;
    border-bottom: 1px solid rgba(235, 91, 77, 0.2);
  }
  .week-orders-wrap > li.single-week-meal p, .week-orders-wrap > li.title p, .week-orders-wrap > li.total p {
    padding: 14px 15px;
  }
  .week-orders-wrap > li .pickup-content {
    padding: 20px 15px;
  }
  .week-orders-wrap > li.title .btn, .week-orders-wrap > li.title form input[type=submit], form .week-orders-wrap > li.title input[type=submit], .week-orders-wrap > li.title .gform_footer input[type=submit], .gform_footer .week-orders-wrap > li.title input[type=submit] {
    margin-right: 15px;
    margin-left: 15px;
  }
  #week-delivery .week-orders-wrap:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 575px) {
  .to-who .single-who:nth-child(1) {
    order: 1;
  }
  .to-who .single-who:nth-child(2) {
    order: 2;
  }
  .to-who .single-who:nth-child(3) {
    order: 4;
  }
  .to-who .single-who:nth-child(4) {
    order: 3;
  }
  .to-who .single-who:nth-child(5) {
    order: 5;
  }
  .to-who .single-who:nth-child(6) {
    order: 6;
  }
  .single-who {
    margin-bottom: 70px;
  }
  .containers-list li {
    width: 100%;
    padding: 20px 15px;
  }
  .containers-list li:nth-child(odd) {
    border-right: none;
  }
  .popup-fullscreen .return-containers-list, .popup-fullscreen .add-containers-list {
    margin-bottom: 30px;
  }
  .popup-fullscreen .single-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  .page-transition .transition-logo {
    width: 250px;
    height: 250px;
  }
  .slice {
    margin: 100px auto;
  }
  .slice.white-slice {
    padding: 125px 0;
  }
  #mobile-nav {
    width: 100%;
  }
  #mobile-nav .texture-flower {
    right: -100px;
  }
  #mobile-nav .texture-flower svg {
    height: 320px;
  }
  #copyrights > div {
    flex-direction: column;
  }
  #rubik-api-copyright {
    justify-content: center;
    margin-top: 10px;
  }
  footer .top-side #site-logo img {
    height: 60px;
  }
  footer .infos .infos-tel {
    font-size: 20px;
    line-height: 26px;
  }
  .single-who:last-child {
    margin-bottom: 0;
  }
  .to-who h2 {
    font-size: 45px;
    line-height: 48px;
  }
  .to-who .texture-flower {
    opacity: 0.7;
  }
  .hero-page .right-side {
    margin-top: 10px;
  }
  .hero-page .right-side .img-hero {
    height: 400px;
    left: 0;
  }
  .hero-page .right-side .band-wrap {
    height: 65%;
  }
  .hero-page .right-side .icon-wrap {
    top: -60px;
  }
  .single-icon-row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
  }
  .single-icon-row .content {
    width: 90%;
  }
  .single-icon-row svg {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .cta-section h2 {
    font-size: 45px;
    line-height: 55px;
  }
  .swiper {
    height: 420px;
  }
  .single-faq h3 {
    font-size: 18px;
  }
  .map-wrap .coords-bloc .single-coord svg {
    margin-top: 1px;
  }
  .map-wrap .coords-bloc .single-coord p {
    font: 500 20px/26px Jakarta, sans-serif;
  }
  .section-content-img .left-side .wrapper {
    padding: 60px 10px;
    margin: auto;
  }
  .section-content-img .left-side h2 {
    font-size: 45px;
    line-height: 50px;
  }
  #proto {
    margin-bottom: 75px;
  }
  #proto .single-icon-row h3 {
    margin-right: 0;
    margin-bottom: 5px;
  }
  #proto .single-icon-row p {
    text-align: center;
  }
  #shipping .single-card {
    flex-direction: column;
    align-items: center;
  }
  #shipping .single-card svg {
    height: fit-content;
    margin-bottom: 20px;
  }
  #shipping .single-card .content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  ul.products .single-product-row {
    padding: 40px 0;
    flex-direction: column;
    align-items: center;
  }
  ul.products .single-product-row > svg {
    width: 110px;
    height: 110px;
    margin: 20px auto;
  }
  ul.products .single-product-row .product-title {
    width: 100%;
    text-align: center;
  }
  ul.products .single-product-row .product-title .ingredients {
    width: 100%;
    justify-content: center;
  }
  ul.products .single-product-row .number-wrap {
    margin: 0 0 0 19px;
  }
  ul.products .single-product-row .price-wrap {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
  }
  ul.products .single-product-row .price-wrap .btn, ul.products .single-product-row .price-wrap form input[type=submit], form ul.products .single-product-row .price-wrap input[type=submit], ul.products .single-product-row .price-wrap .gform_footer input[type=submit], .gform_footer ul.products .single-product-row .price-wrap input[type=submit] {
    margin: 0 auto;
  }
  ul.products .single-product-row .btn-add-to-cart {
    margin-top: 15px;
    width: 100%;
  }
  #mission .card-wrap .single-card {
    background-position: center -180px;
  }
  #mission .card-wrap .single-card .card-content {
    padding: 30px 25px 50px;
  }
  #mission .card-wrap .single-card .card-content svg {
    height: 75px;
    margin-bottom: 10px;
  }
  ul.products .single-product-row .product-title {
    margin-right: 0;
  }
  body:not(.home).texture-flowers {
    margin: -30px 0;
  }
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 34px;
    line-height: 38px;
  }
  h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .to-who h2, .section-content-img .left-side h2 {
    font-size: 34px;
    line-height: 38px;
  }
  .hero-page h1 br, .hero-page h2 br, .hero-page h3 br, .hero-page h4 br, .bloc-title-wrap h1 br, .bloc-title-wrap h2 br, .bloc-title-wrap h3 br, .bloc-title-wrap h4 br, #shipping .left-side h1 br, #shipping .left-side h2 br, #shipping .left-side h3 br, #shipping .left-side h4 br {
    display: none;
  }
  #shipping .left-side h2 {
    font-size: 30px;
  }
  .orders-wrap .single-order .summary .summary-titles .right-side {
    display: none;
  }
  .orders-wrap .single-order .summary .single-product {
    flex-direction: column;
  }
  .orders-wrap .single-order .summary .single-product .name {
    width: 100%;
  }
  .orders-wrap .single-order .summary .single-product .right-side {
    margin-top: 5px;
    width: 100%;
  }
  .orders-wrap .single-order .summary .single-product .right-side p {
    text-align: left;
  }
  .woocommerce table.cart td.actions .coupon {
    flex-wrap: wrap;
    display: flex;
    margin: 15px 0;
  }
  .woocommerce table.cart td.actions .coupon #coupon_code {
    margin-right: auto;
    margin-bottom: 10px;
    width: 100% !important;
  }
  .woocommerce table.cart td.actions .coupon .wp-element-button {
    margin-left: 0;
    min-width: 200px;
    width: 100%;
  }
}
@media screen and (max-width: 420px) {
  .wrapper {
    width: 86%;
  }
  .mobile-nav-trigger {
    margin-left: 12px;
  }
  .single-icon-row {
    padding: 40px 5px;
  }
  .section-content-img .left-side h2 {
    font-size: 36px;
    line-height: 42px;
  }
  #pwgc-redeem-gift-card-container #pwgc-redeem-gift-card-number {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
  #pwgc-redeem-gift-card-container #pwgc-redeem-button {
    width: 100%;
  }
}
@media screen and (max-width: 380px) {
  header .main-header #site-logo img {
    height: 50px;
  }
  #mobile-nav .top-menu {
    padding: 10px 30px 30px;
  }
  #mobile-nav .mobile-menu-header {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 340px) {
  header .main-header #site-logo img {
    height: 45px;
  }
}
.single-who svg {
  transition: all 250ms ease-in-out;
}
.single-who svg ellipse, .single-who svg g, .single-who svg path {
  transform-origin: center;
  transition: inherit;
}

#svg_family #Groupe_335 {
  animation: svg-family-center 1.5s infinite alternate;
}
#svg_family #Groupe_336 {
  animation: svg-family-circle-1 1.5s infinite alternate;
}
#svg_family #Groupe_337 {
  animation: svg-family-circle-2 1.5s infinite alternate;
}

@keyframes svg-family-center {
  100% {
    transform: scaleX(0.9);
  }
}
@keyframes svg-family-circle-1 {
  100% {
    transform: translate(-5px, 5px);
  }
}
@keyframes svg-family-circle-2 {
  100% {
    transform: translate(5px, 5px);
  }
}
#svg_tea ellipse {
  transform-origin: revert;
}
#svg_tea #Groupe_340 {
  animation: svg-tea 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes svg-tea {
  100% {
    transform: scaleX(0.9);
  }
}
#svg_wheelchair {
  animation: svg-wheelchair 1.5s infinite alternate;
}
#svg_wheelchair #Groupe_207 {
  transform-origin: 30% 74.2%;
  animation: svg-wheelchair-wheel 1.5s infinite alternate;
}

@keyframes svg-wheelchair {
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-8deg);
  }
}
@keyframes svg-wheelchair-wheel {
  50% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(200deg);
  }
}
#svg_panier #panier_arm_1 {
  transform-origin: 40% 100%;
  animation: svg-panier-arm-1 4.5s infinite ease-in-out;
}
#svg_panier #panier_arm_2 {
  transform-origin: 60% 100%;
  animation: svg-panier-arm-2 4.5s infinite ease-in-out;
}

@keyframes svg-panier-arm-1 {
  0% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(-5deg);
  }
  21% {
    transform: rotate(-5deg);
  }
  33% {
    transform: rotate(0deg);
  }
}
@keyframes svg-panier-arm-2 {
  0% {
    transform: rotate(0deg);
  }
  12% {
    transform: rotate(5deg);
  }
  21% {
    transform: rotate(5deg);
  }
  33% {
    transform: rotate(0deg);
  }
}
#svg_money {
  overflow: visible;
}
#svg_money #money_layer_1 {
  animation: svg-money-layer-1 4.5s infinite ease-in-out;
}
#svg_money #money_layer_2 {
  animation: svg-money-layer-2 4.5s infinite ease-in-out;
}

@keyframes svg-money-layer-1 {
  33% {
    transform: translateY(0px);
  }
  40% {
    transform: translateY(-7px);
  }
  48% {
    transform: translateY(-7px);
  }
  66% {
    transform: translateY(0px);
  }
}
@keyframes svg-money-layer-2 {
  33% {
    transform: translateY(0px);
  }
  42% {
    transform: translateY(-15px);
  }
  50% {
    transform: translateY(-15px);
  }
  66% {
    transform: translateY(0px);
  }
}
#Composant_93_2 {
  overflow: visible;
}
#Composant_93_2 #Groupe_285, #Composant_93_2 #Groupe_286, #Composant_93_2 #Groupe_287 {
  animation: svg-spagh 4.5s infinite ease-in-out;
}

@keyframes svg-spagh {
  66% {
    transform: translateY(0px);
  }
  82.5% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media print {
  .no-print, .no-print * {
    display: none !important;
  }
  .page-template-menu-livraison *, html {
    background-color: transparent !important;
  }
  body {
    padding: 0 !important;
    background-color: white !important;
  }
  #main {
    margin: 0 !important;
  }
  .slice .white-slice {
    padding: 0 !important;
    background-color: white !important;
  }
  #the-menu {
    padding: 30px 0 0 0 !important;
    background-color: white !important;
  }
  #the-menu .title-wrap {
    margin-bottom: 10px !important;
  }
  #the-menu .title-wrap h2 {
    font-size: 25px !important;
    line-height: 1.2em !important;
  }
  #the-menu ul.products .single-product-row {
    padding: 10px 0 !important;
  }
  #the-menu ul.products .single-product-row .stock-qty {
    font-size: 14px;
    margin-bottom: 3px;
  }
  #the-menu ul.products .single-product-row svg {
    height: 30px !important;
    width: 30px !important;
  }
  #the-menu ul.products .single-product-row .product-title {
    width: 65% !important;
  }
  #the-menu ul.products .single-product-row h3 {
    font-size: 14px !important;
    line-height: 1.1em !important;
  }
  #the-menu ul.products .single-product-row .price-wrap .price {
    font-size: 18px;
    line-height: 1.1em;
  }
  #the-menu ul.products .single-product-row .ingredients {
    flex-wrap: wrap;
  }
  #the-menu ul.products .single-product-row .ingredients > p {
    font-size: 14px;
    line-height: 1.1em;
    font-weight: bold;
    margin-left: 0;
    margin-bottom: 2px;
  }
  #the-menu ul.products .single-product-row .ingredients .ing-list {
    position: unset;
    opacity: 1;
    background-color: transparent;
    border: none;
    padding: 0;
  }
  #the-menu ul.products .single-product-row .ingredients .ing-list p {
    font-size: 12px;
    line-height: 1.1em;
    font-weight: normal;
  }
  .dashboard-block .block-title {
    margin: 20px 0 10px;
  }
  .dashboard-block .wrapper {
    width: 100%;
    max-width: unset;
  }
  .dashboard-block .wrapper .content-wrap {
    width: 100%;
    min-height: unset;
    border-left: none;
    padding: 0;
  }
  .dashboard-block .wrapper .content-wrap .week-orders-wrap {
    font-size: 14px;
    line-height: 1.3em;
  }
  .dashboard-block .wrapper .content-wrap .week-orders-wrap .single-week-meal p, .dashboard-block .wrapper .content-wrap .week-orders-wrap .title p {
    padding: 9px 15px !important;
  }
  .show-in-print {
    display: block;
  }
  .hide-in-print {
    display: none;
  }
}

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