@import url("https://use.typekit.net/beu3nov.css");
: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;
}

.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, .col2-set {
  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, .col2-set .col-1,
.col2-set .col-2, .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, .col2-set .col-1,
.col2-set .col-2 {
  -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, .col2-set .col-1,
  .col2-set .col-2 {
    -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 {
    -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 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Drop shadows
 */
/*
 * Remove mobile/iOS default buttons
 */
html, body {
  font: 400 18px/1.4em "proxima-nova", sans-serif;
  color: #172a5b;
}
html.active #inner-nav, body.active #inner-nav {
  transform: translateX(0);
}

#main {
  overflow: hidden;
}

body:not(.home) #main {
  padding: 160px 0 80px 0;
}
body:not(.home) #header {
  background: #0a57a4;
}
body:not(.home) #header.shrink {
  height: 100px;
  background: #0a57a4;
}

h1 {
  font: 55px/1.1em "proxima-nova", sans-serif;
}

h2 {
  font: 40px/1.125em "proxima-nova", sans-serif;
}

h3 {
  font: 28px/1.14em "proxima-nova", sans-serif;
}

h4 {
  font: 26px/1.14em "proxima-nova", sans-serif;
}

h5 {
  font: 20px/1.14em "proxima-nova", sans-serif;
}

.the-content {
  font: 300 18px/1.4em "proxima-nova", sans-serif;
  color: #707070;
}
.the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6 {
  font-weight: 700;
  font-family: "proxima-nova", sans-serif;
  line-height: 1.125em;
  margin: 40px 0 20px 0;
  color: #172a5b;
}
.the-content h1 {
  font-size: 40px;
}
.the-content h2 {
  font-size: 36px;
}
.the-content h3 {
  font-size: 30px;
}
.the-content h4 {
  font-size: 26px;
}
.the-content h5 {
  font-size: 22px;
}
.the-content h6 {
  font-size: 20px;
}
.the-content ul {
  margin: 1em 0;
  padding-left: 30px;
}
.the-content li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 18px;
}
.the-content li:last-child {
  margin-bottom: 0px;
}
.the-content li:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  background: #0a57a4;
  height: 10px;
  width: 10px;
  border-radius: 2px;
  margin-right: 8px;
}
.the-content p {
  margin-bottom: 1em;
}
.the-content p img {
  border-radius: 24px;
  margin: 12px 8px;
}
.the-content a {
  color: #172a5b;
  transition: all 150ms ease-in-out;
}
.the-content a:hover {
  color: #0a57a4;
}
.the-content blockquote {
  position: relative;
  font: 600 28px/1.4em "proxima-nova", sans-serif;
  font-style: italic;
  color: #93a6d4;
  margin: 80px;
}
.the-content blockquote:before {
  content: url("../images/blockquotes.svg");
  display: block;
  position: absolute;
  top: -20px;
  left: -40px;
}
.the-content blockquote p {
  margin: 0px;
}

ul, li {
  list-style: none;
}

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

.btn, .addresses .edit, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button, .woocommerce-MyAccount-content a.button, .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce a.checkout-button.button, .woocommerce button.button, .woocommerce .woocommerce-error a .wc-backward, .woocommerce .woocommerce-message a.button, .woocommerce ul.products li.product a.button, .woocommerce p.return-to-shop a, .woocommerce #payment .form-row.place-order button#place_order, .woocommerce .widget button.wcpf-button, .error404 .wrapper > .the-content a, .gform_wrapper .gform_footer input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  padding: 12px 20px;
  background: #0a57a4;
  border: 2px solid #0a57a4;
  border-radius: 6px;
  color: #ffffff;
  font: 500 15px/1em "proxima-nova", sans-serif;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.btn:focus, .addresses .edit:focus, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button:focus, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button:focus, .woocommerce-MyAccount-content a.button:focus, .woocommerce-MyAccount-content .woocommerce-info a:focus, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:focus, .woocommerce a.checkout-button.button:focus, .woocommerce button.button:focus, .woocommerce .woocommerce-error a .wc-backward:focus, .woocommerce .woocommerce-message a.button:focus, .woocommerce ul.products li.product a.button:focus, .woocommerce p.return-to-shop a:focus, .woocommerce #payment .form-row.place-order button#place_order:focus, .woocommerce .widget button.wcpf-button:focus, .error404 .wrapper > .the-content a:focus, .gform_wrapper .gform_footer input:focus, .btn:active, .addresses .edit:active, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button:active, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button:active, .woocommerce-MyAccount-content a.button:active, .woocommerce-MyAccount-content .woocommerce-info a:active, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:active, .woocommerce a.checkout-button.button:active, .woocommerce button.button:active, .woocommerce .woocommerce-error a .wc-backward:active, .woocommerce .woocommerce-message a.button:active, .woocommerce ul.products li.product a.button:active, .woocommerce p.return-to-shop a:active, .woocommerce #payment .form-row.place-order button#place_order:active, .woocommerce .widget button.wcpf-button:active, .error404 .wrapper > .the-content a:active, .gform_wrapper .gform_footer input:active {
  outline: none;
}
.btn:hover, .addresses .edit:hover, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button:hover, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button:hover, .woocommerce-MyAccount-content a.button:hover, .woocommerce-MyAccount-content .woocommerce-info a:hover, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover, .woocommerce a.checkout-button.button:hover, .woocommerce button.button:hover, .woocommerce .woocommerce-error a .wc-backward:hover, .woocommerce .woocommerce-message a.button:hover, .woocommerce ul.products li.product a.button:hover, .woocommerce p.return-to-shop a:hover, .woocommerce #payment .form-row.place-order button#place_order:hover, .woocommerce .widget button.wcpf-button:hover, .error404 .wrapper > .the-content a:hover, .gform_wrapper .gform_footer input:hover {
  background: #93a6d4;
  border-color: #93a6d4;
  color: #ffffff;
}
.btn.small, .addresses .edit, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button, .woocommerce-MyAccount-content a.small.button, .woocommerce-MyAccount-content .addresses a.button.edit, .addresses .woocommerce-MyAccount-content a.button.edit, .woocommerce-MyAccount-content .woocommerce-info a.small, .woocommerce-MyAccount-content .woocommerce-info .addresses a.edit, .addresses .woocommerce-MyAccount-content .woocommerce-info a.edit, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a.small, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout .addresses a.edit, .addresses .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a.edit, .woocommerce a.small.checkout-button.button, .woocommerce .addresses a.checkout-button.button.edit, .addresses .woocommerce a.checkout-button.button.edit, .woocommerce button.small.button, .woocommerce .addresses button.button.edit, .addresses .woocommerce button.button.edit, .woocommerce .woocommerce-error a .small.wc-backward, .woocommerce .woocommerce-error a .addresses .wc-backward.edit, .addresses .woocommerce .woocommerce-error a .wc-backward.edit, .woocommerce .woocommerce-message a.small.button, .woocommerce .woocommerce-message .addresses a.button.edit, .addresses .woocommerce .woocommerce-message a.button.edit, .woocommerce ul.products li.product a.btn, .woocommerce ul.products li.product .addresses a.edit, .addresses .woocommerce ul.products li.product a.edit, .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content .woocommerce-info .woocommerce ul.products li.product a, .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-navigation .woocommerce ul.products li.product li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--customer-logout li.product a, .woocommerce-MyAccount-navigation .woocommerce ul.products li.woocommerce-MyAccount-navigation-link--customer-logout li.product a, .woocommerce ul.products li.product .woocommerce-error a a.wc-backward, .woocommerce .woocommerce-error a ul.products li.product a.wc-backward, .woocommerce ul.products li.product a.button, .woocommerce p.return-to-shop a.small, .woocommerce p.return-to-shop .addresses a.edit, .addresses .woocommerce p.return-to-shop a.edit, .woocommerce ul.products li.product p.return-to-shop a, .woocommerce p.return-to-shop ul.products li.product a, .woocommerce #payment .form-row.place-order button.small#place_order, .woocommerce #payment .form-row.place-order .addresses button#place_order.edit, .addresses .woocommerce #payment .form-row.place-order button#place_order.edit, .woocommerce .widget button.small.wcpf-button, .woocommerce .widget .addresses button.wcpf-button.edit, .addresses .woocommerce .widget button.wcpf-button.edit, .error404 .wrapper > .the-content a.small, .error404 .wrapper > .the-content .addresses a.edit, .addresses .error404 .wrapper > .the-content a.edit, .woocommerce ul.products li.product .error404 .wrapper > .the-content a, .error404 .wrapper > .the-content .woocommerce ul.products li.product a, .gform_wrapper .gform_footer input.small, .gform_wrapper .gform_footer .addresses input.edit, .addresses .gform_wrapper .gform_footer input.edit {
  padding: 10px;
  font-size: 14px;
}
.btn.deep-blue, .addresses .deep-blue.edit, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.deep-blue.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.deep-blue.button, .woocommerce-MyAccount-content a.deep-blue.button, .woocommerce-MyAccount-content .woocommerce-info a.deep-blue, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a.deep-blue, .woocommerce a.deep-blue.checkout-button.button, .woocommerce button.deep-blue.button, .woocommerce .woocommerce-error a .deep-blue.wc-backward, .woocommerce .woocommerce-message a.deep-blue.button, .woocommerce ul.products li.product a.button, .woocommerce p.return-to-shop a.deep-blue, .woocommerce #payment .form-row.place-order button.deep-blue#place_order, .woocommerce .widget button.deep-blue.wcpf-button, .error404 .wrapper > .the-content a.deep-blue, .gform_wrapper .gform_footer input.deep-blue {
  background: #172a5b;
  border-color: #172a5b;
}
.btn.deep-blue:hover, .addresses .deep-blue.edit:hover, .woocommerce-MyAccount-content a.deep-blue.button:hover, .woocommerce-MyAccount-content .woocommerce-info a.deep-blue:hover, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a.deep-blue:hover, .woocommerce a.deep-blue.checkout-button.button:hover, .woocommerce button.deep-blue.button:hover, .woocommerce .woocommerce-error a .deep-blue.wc-backward:hover, .woocommerce .woocommerce-message a.deep-blue.button:hover, .woocommerce ul.products li.product a.button:hover, .woocommerce p.return-to-shop a.deep-blue:hover, .woocommerce #payment .form-row.place-order button.deep-blue#place_order:hover, .woocommerce .widget button.deep-blue.wcpf-button:hover, .error404 .wrapper > .the-content a.deep-blue:hover, .gform_wrapper .gform_footer input.deep-blue:hover {
  background: #0a57a4;
  color: #ffffff;
  border-color: #0a57a4;
}
.btn.reverse, .addresses .reverse.edit, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.reverse.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.reverse.button, .woocommerce-MyAccount-content a.reverse.button, .woocommerce-MyAccount-content .woocommerce-info a.reverse, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a.reverse, .woocommerce a.reverse.checkout-button.button, .woocommerce button.reverse.button, .woocommerce .woocommerce-error a .reverse.wc-backward, .woocommerce .woocommerce-message a.reverse.button, .woocommerce ul.products li.product a.reverse.button, .woocommerce p.return-to-shop a.reverse, .woocommerce #payment .form-row.place-order button.reverse#place_order, .woocommerce .widget button.reverse.wcpf-button, .error404 .wrapper > .the-content a.reverse, .gform_wrapper .gform_footer input.reverse {
  background: #0a57a4;
  color: #ffffff;
  border: 2px solid #93a6d4;
}
.btn.reverse:hover, .addresses .reverse.edit:hover, .woocommerce-MyAccount-content a.reverse.button:hover, .woocommerce-MyAccount-content .woocommerce-info a.reverse:hover, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a.reverse:hover, .woocommerce a.reverse.checkout-button.button:hover, .woocommerce button.reverse.button:hover, .woocommerce .woocommerce-error a .reverse.wc-backward:hover, .woocommerce .woocommerce-message a.reverse.button:hover, .woocommerce ul.products li.product a.reverse.button:hover, .woocommerce p.return-to-shop a.reverse:hover, .woocommerce #payment .form-row.place-order button.reverse#place_order:hover, .woocommerce .widget button.reverse.wcpf-button:hover, .error404 .wrapper > .the-content a.reverse:hover, .gform_wrapper .gform_footer input.reverse:hover {
  background: #93a6d4;
  color: #ffffff;
}
.btn.reverse:hover svg path, .addresses .reverse.edit:hover svg path, .woocommerce-MyAccount-content a.reverse.button:hover svg path, .woocommerce-MyAccount-content .woocommerce-info a.reverse:hover svg path, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a.reverse:hover svg path, .woocommerce a.reverse.checkout-button.button:hover svg path, .woocommerce button.reverse.button:hover svg path, .woocommerce .woocommerce-error a .reverse.wc-backward:hover svg path, .woocommerce .woocommerce-message a.reverse.button:hover svg path, .woocommerce ul.products li.product a.reverse.button:hover svg path, .woocommerce p.return-to-shop a.reverse:hover svg path, .woocommerce #payment .form-row.place-order button.reverse#place_order:hover svg path, .woocommerce .widget button.reverse.wcpf-button:hover svg path, .error404 .wrapper > .the-content a.reverse:hover svg path, .gform_wrapper .gform_footer input.reverse:hover svg path {
  fill: #ffffff;
}

#header {
  position: fixed;
  width: 100%;
  height: 150px;
  padding: 30px 0;
  background: rgba(10, 87, 164, 0);
  z-index: 99;
  transition: all 150ms ease-in-out;
}
#header.shrink {
  height: 100px;
  background: #0a57a4;
}
#header.shrink #site-nav ul li a:before {
  bottom: -5px;
}
#header.shrink #site-nav ul .sub-menu {
  top: 27px;
}

#site-nav ul {
  display: flex;
  padding: 6px 0;
}
#site-nav ul li {
  position: relative;
  margin: 0 12px;
}
#site-nav ul li.current_page_item a {
  color: #93a6d4;
}
#site-nav ul li.current_page_item a:before {
  background: #93a6d4;
}
#site-nav ul li a {
  position: relative;
  font: 600 16px/1em "proxima-nova", sans-serif;
  text-decoration: none;
  color: #ffffff;
  z-index: 5;
  transition: all 150ms ease-in-out;
}
#site-nav ul li a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgba(147, 166, 212, 0);
  bottom: -10px;
  left: 0;
  transition: all 150ms ease-in-out;
}
#site-nav ul li a:hover {
  color: #93a6d4;
}
#site-nav ul li a:hover:before {
  background: #93a6d4;
}
#site-nav ul li.menu-item-has-children:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 20px);
  z-index: 1;
}
#site-nav ul li.menu-item-has-children:hover .sub-menu {
  display: block;
}
#site-nav ul li .sub-menu {
  display: none;
  -webkit-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  -moz-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  position: absolute;
  top: 32px;
  background: #ffffff;
  padding: 20px 28px;
  width: 360px;
  border-top: 2px solid #93a6d4;
}
#site-nav ul li .sub-menu li {
  margin: 12px 0;
}
#site-nav ul li .sub-menu li a {
  color: #0a57a4;
}
#site-nav ul li .sub-menu li a:before {
  content: none;
  display: none;
}
#site-nav ul li .sub-menu li a:hover {
  color: #172a5b;
}

#user-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 6px 0;
}

.nav-cart {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin: 0 12px;
  font: 600 14px/1em "proxima-nova", sans-serif;
  color: #ffffff !important;
  transition: all 150ms ease-in-out;
}
.nav-cart:hover {
  color: #ffffff;
}
.nav-cart:hover svg path {
  fill: #ffffff;
}
.nav-cart:hover .cart-count {
  background: #ffffff;
  color: #DD0606;
}
.nav-cart svg {
  display: block;
  height: 22px;
  width: 24px;
  margin: 0 14px 0 8px;
  transition: all 150ms ease-in-out;
}
.nav-cart svg path {
  transition: all 150ms ease-in-out;
}

.cart-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #DD0606;
  color: #ffffff;
  height: 22px;
  width: 22px;
  left: 22px;
  top: -14px;
  border-radius: 50%;
  font: 700 12px/1em "sofia-pro", sans-serif;
  transition: all 150ms ease-in-out;
}

.sign-in {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin: 0 12px;
}
.sign-in:hover svg path {
  fill: #172a5b;
}
.sign-in svg {
  display: block;
  height: 20px;
  width: 20px;
  margin-right: 6px;
}
.sign-in svg path {
  transition: all 150ms ease-in-out;
}

.menus {
  display: block;
}

.burger-block {
  display: none;
}

#site-burger {
  position: relative;
  display: none;
  height: 36px;
  width: 36px;
}
#site-burger > svg {
  display: block;
  height: 36px;
  width: 36px;
}
#site-burger > svg path {
  fill: #ffffff;
  transition: all 150ms ease-in-out;
}
#site-burger > svg path:hover {
  fill: #0a57a4;
}

#inner-nav {
  position: relative;
  position: fixed;
  display: none;
  z-index: 100;
  height: 100vh;
  width: 500px;
  top: 0;
  right: 0;
  overflow: hidden;
  background: #172a5b;
  transform: translateX(100%);
  overflow-y: auto;
  padding: 40px;
  padding-right: 17px;
  transition: all 150ms ease-in-out;
}
#inner-nav > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}
#inner-nav > img {
  object-fit: cover;
  opacity: 0.25;
}
#inner-nav .menu-item-has-children {
  position: relative;
}
#inner-nav .menu-item-has-children:after {
  content: "";
  display: block;
  background: #93a6d4;
  width: 100%;
  max-width: 70px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
#inner-nav .menu-item-has-children:hover:after {
  display: none;
}
#inner-nav .menu-item-has-children:hover .sub-menu {
  display: block;
}
#inner-nav li {
  margin-bottom: 24px;
  display: block;
}
#inner-nav li:last-child {
  margin-bottom: 0px;
}
#inner-nav li .sub-menu {
  display: none;
  position: relative;
  transition: all 150ms ease-in-out;
  background: #ffffff;
  padding: 24px;
}
#inner-nav li .sub-menu:before {
  content: "";
  display: block;
  background: #93a6d4;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}
#inner-nav li .sub-menu:after {
  content: "";
  display: block;
  background: #93a6d4;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
}
#inner-nav li .sub-menu li {
  margin-bottom: 24px;
  line-height: 0em;
}
#inner-nav li .sub-menu li:last-child {
  margin-bottom: 0px;
}
#inner-nav li .sub-menu li a {
  font: 600 14px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
}
#inner-nav li > a {
  text-decoration: none;
  color: #ffffff;
}
#inner-nav #user-nav ul {
  display: block;
  margin-bottom: 40px;
}
#inner-nav #user-nav .sign-in {
  margin: 0 0;
}
#inner-nav .social-icons ul {
  display: flex;
  justify-content: flex-start;
  margin: 40px 0 0 0;
}
#inner-nav .social-icons ul li {
  margin-bottom: 0px;
  margin-right: 12px;
}

.banner {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0 180px 0;
  z-index: 5;
}
.banner > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(23, 42, 91);
  background: linear-gradient(180deg, rgba(23, 42, 91, 0) 0%, rgb(23, 42, 91) 100%);
  z-index: 1;
}
.banner > img {
  object-fit: cover;
  z-index: 0;
}
.banner .banner-content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}
.banner .banner-content h1 {
  color: #ffffff;
  font-weight: 800;
}
.banner .banner-content h2 {
  color: #93a6d4;
  font-weight: 500;
}

.bread-bar {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
  border-bottom: 2px solid #F5F5F5;
}
.bread-bar > .banner-search {
  margin: 0 0;
}
.bread-bar > .banner-search .search-form input[type=search] {
  -webkit-box-shadow: 0px 4px 15px rgba(23, 42, 91, 0.1);
  -moz-box-shadow: 0px 4px 15px rgba(23, 42, 91, 0.1);
  box-shadow: 0px 4px 15px rgba(23, 42, 91, 0.1);
}

.banner-search {
  margin: 60px 0;
}
.banner-search .search-form {
  position: relative;
  width: 100%;
}
.banner-search .search-form:before {
  content: "";
  display: block;
  position: absolute;
  top: 16px;
  left: calc(50% + 250px);
  height: 26px;
  width: 26px;
  z-index: 2;
  background-image: url("../images/icon-search.svg");
  background-repeat: no-repeat;
  background-size: 26px;
}
.banner-search .search-form input[type=search] {
  background: rgba(255, 255, 255, 0);
  -webkit-box-shadow: 0px 4px 15px #172a5b;
  -moz-box-shadow: 0px 4px 15px #172a5b;
  box-shadow: 0px 4px 15px #172a5b;
  position: relative;
  width: 100%;
  max-width: 600px;
  padding: 20px 80px 20px 20px;
  border-radius: 16px;
  border: 0px;
  background: #ffffff;
  font: 300 16px/1em "proxima-nova", sans-serif;
  color: #707070;
  transition: all 150ms ease-in-out;
}
.banner-search .search-form input[type=search]:focus, .banner-search .search-form input[type=search]:active {
  outline: none;
}

.ui-menu {
  -webkit-box-shadow: 0px 10px 20px rgba(23, 42, 91, 0.5);
  -moz-box-shadow: 0px 10px 20px rgba(23, 42, 91, 0.5);
  box-shadow: 0px 10px 20px rgba(23, 42, 91, 0.5);
  z-index: 6;
  overflow: hidden;
  max-height: 160px;
  min-height: 100%;
  width: 100% !important;
  padding: 0 20px;
  background: #ffffff;
  font: 300 16px/1em "proxima-nova", sans-serif;
  color: #707070;
}

.ui-menu-item {
  background: #ffffff;
  padding: 20px;
}
.ui-menu-item:nth-child(odd) {
  background: #f5f9ff;
}

.service-blocks-section {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 0 20px 0;
}
.service-blocks-section > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}
.service-blocks-section:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgb(23, 42, 91);
  background: linear-gradient(180deg, rgba(23, 42, 91, 0) 0%, rgba(23, 42, 91, 0.05) 100%);
  z-index: 1;
}
.service-blocks-section > img {
  object-fit: cover;
  opacity: 0.25;
}
.service-blocks-section .service-block-row {
  position: relative;
  z-index: 5;
  top: -120px;
}
.service-blocks-section .service-blocks {
  -webkit-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  -moz-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #ffffff;
  text-decoration: none;
  padding: 40px;
  margin: 15px 0;
  border-radius: 24px;
  transition: all 150ms ease-in-out;
  top: 0;
}
.service-blocks-section .service-blocks:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.service-blocks-section .service-blocks:after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  height: 4px;
  width: 60px;
  margin: 0 auto;
  background: #93a6d4;
  border-radius: 24px;
  transition: all 150ms ease-in-out;
}
.service-blocks-section .service-blocks:hover {
  top: -10px;
}
.service-blocks-section .service-blocks:hover:after {
  width: 90%;
  background: #0a57a4;
}
.service-blocks-section .service-blocks:hover .service-blocks-content h3 {
  color: #172a5b;
}
.service-blocks-section .service-blocks .service-blocks-content {
  text-align: center;
}
.service-blocks-section .service-blocks .service-blocks-content h3 {
  color: #0a57a4;
  font-weight: 700;
  margin-top: 12px;
  transition: all 150ms ease-in-out;
}

.featured-blog-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
}
.featured-blog-section h2 {
  font-weight: 700;
  color: #0a57a4;
}
.featured-blog-section h5 {
  font: 700 18px/1.4em "proxima-nova", sans-serif;
  color: #93a6d4;
}
.featured-blog-section h5:after {
  content: "";
  display: block;
  height: 4px;
  width: 60px;
  margin: 30px auto 60px;
  background: #93a6d4;
  border-radius: 24px;
}

.featured-blog-block {
  text-decoration: none;
}
.featured-blog-block .featured-block-img {
  position: relative;
}
.featured-blog-block .featured-block-img:hover .read-more {
  background: #93a6d4;
  border-color: #93a6d4;
}
.featured-blog-block .featured-block-img img {
  position: relative;
  height: 250px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.featured-blog-block .featured-block-img img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.featured-blog-block .featured-block-img .read-more {
  position: absolute;
  bottom: 16px;
  left: 12px;
}
.featured-blog-block .featured-block-content {
  padding: 24px 10px;
  text-align: left;
}
.featured-blog-block .featured-block-content .blog-info .blog-info-content .date {
  font: 700 14px/1em "proxima-nova", sans-serif;
  color: #93a6d4;
}
.featured-blog-block .featured-block-content a {
  text-decoration: none;
}
.featured-blog-block .featured-block-content h4 {
  color: #0a57a4;
  font-weight: 800;
}
.featured-blog-block .featured-block-content h2 {
  font-weight: 800;
  color: #0a57a4;
}
.featured-blog-block .featured-block-content time {
  display: block;
  font: 16px/1em "sofia-pro", sans-serif;
  color: #93a6d4;
  margin-bottom: 20px;
}
.featured-blog-block .featured-block-content .the-content {
  color: #707070;
  font-weight: 300;
  margin-top: 15px;
}
.featured-blog-block .featured-block-content .post-categories {
  display: inline-block;
}
.featured-blog-block .featured-block-content .post-categories li {
  display: inline-block;
}
.featured-blog-block .featured-block-content .post-categories li a {
  font: 16px/1em "sofia-pro", sans-serif;
  text-decoration: none;
  color: #93a6d4;
  transition: all 150ms ease-in-out;
}
.featured-blog-block .featured-block-content .post-categories li a:hover {
  color: #0a57a4;
}

.teaser-block {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 80px;
  z-index: 1;
}
.teaser-block > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}
.teaser-block > img {
  object-fit: cover;
}
.teaser-block .teaser-block-content {
  position: relative;
  display: block;
  text-align: center;
  z-index: 2;
}
.teaser-block .teaser-block-content > img {
  height: 100px;
}
.teaser-block .teaser-block-content h2 {
  font-weight: 600;
  color: #ffffff;
  margin: 30px 0;
}

.breadcrumbs {
  width: 100%;
  padding: 20px 0;
  font: 600 16px/1em "proxima-nova", sans-serif;
  color: #a2a1a1;
}
.breadcrumbs a {
  text-decoration: none;
  color: #a2a1a1;
  transition: all 150ms ease-in-out;
}
.breadcrumbs a:after {
  content: "";
  background: #a2a1a1;
  height: 10px;
  width: 2px;
  position: relative;
  display: inline-block;
  margin: 0 4px;
}
.breadcrumbs a:hover {
  color: #707070;
}
.breadcrumbs .breadcrumb_last {
  color: #0a57a4;
}

.page-top {
  position: relative;
  padding: 0 0 40px 0;
}
.page-top img {
  border-radius: 24px;
}
.page-top .icon img {
  border-radius: 0px;
}
.page-top h1 {
  color: #0a57a4;
  font-style: italic;
  font-weight: 800;
}
.page-top p {
  font-weight: 300;
}

.title {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  color: #0a57a4;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 40px;
}
.title .icon {
  width: 100px;
  height: 100px;
  order: 0;
}
.title .icon img {
  display: block;
}
.title .the-title {
  width: calc(100% - 100px);
  padding-left: 25px;
}

.excerpt {
  font: 300 18px/1.4em "proxima-nova", sans-serif;
}
.excerpt p {
  margin-bottom: 1em;
}

.blog-share {
  position: relative;
  z-index: 2;
}
.blog-share .blog-share-trigger:hover svg path {
  fill: #0a57a4;
}
.blog-share .blog-share-trigger svg {
  display: block;
}
.blog-share .blog-share-trigger svg path {
  transition: all 150ms ease-in-out;
}
.blog-share .share-accordion {
  display: none;
}
.blog-share .share-accordion.active {
  -webkit-box-shadow: 0px 4px 10px rgba(23, 42, 91, 0.4);
  -moz-box-shadow: 0px 4px 10px rgba(23, 42, 91, 0.4);
  box-shadow: 0px 4px 10px rgba(23, 42, 91, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  z-index: 2;
}
.blog-share .share-accordion.active li {
  margin: 0 8px;
}
.blog-share .share-accordion.active li:hover a svg path {
  fill: #172a5b;
}
.blog-share .share-accordion.active li a svg {
  display: block;
  height: 30px;
  width: 30px;
}
.blog-share .share-accordion.active li a svg path {
  fill: #0a57a4;
  transition: all 150ms ease-in-out;
}

.sidebar h3 {
  font: 700 30px/1em "proxima-nova", sans-serif;
}
.sidebar .related {
  margin: 40px 0;
}
.sidebar.blog-bar {
  padding-left: 40px;
}
.sidebar.blog-bar h3 {
  margin: 0 0 20px 0;
  color: #172a5b;
}
.sidebar.faq-bar, .sidebar.distributor-bar {
  text-align: center;
}
.sidebar.faq-bar h3, .sidebar.distributor-bar h3 {
  color: #0a57a4;
  margin: 20px 0 40px 0;
}
.sidebar.service-bar .inner {
  background: #0a57a4;
  color: #ffffff;
  padding: 60px 40px;
  border-radius: 24px;
}
.sidebar.service-bar .inner h3 {
  font-family: "sofia-pro", sans-serif;
  font-weight: 600;
  margin-bottom: 40px;
}
.sidebar.service-bar .inner li {
  display: block;
  margin-bottom: 30px;
  line-height: 1em;
}
.sidebar.service-bar .inner li:last-child {
  margin-bottom: 0;
}
.sidebar.service-bar .inner a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-family: "sofia-pro", sans-serif;
  font-weight: 300;
  transition: all 150ms ease-in-out;
}
.sidebar.service-bar .inner a:hover {
  color: #93a6d4;
}
.sidebar .btn-container {
  margin-bottom: 10px;
}
.sidebar .btn-container .btn, .sidebar .btn-container .addresses .edit, .addresses .sidebar .btn-container .edit, .sidebar .btn-container .woocommerce-MyAccount-content a.button, .woocommerce-MyAccount-content .sidebar .btn-container a.button, .sidebar .btn-container .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content .woocommerce-info .sidebar .btn-container a, .sidebar .btn-container .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout .sidebar .btn-container a, .sidebar .btn-container .woocommerce a.checkout-button.button, .woocommerce .sidebar .btn-container a.checkout-button.button, .sidebar .btn-container .woocommerce button.button, .woocommerce .sidebar .btn-container button.button, .sidebar .btn-container .woocommerce .woocommerce-error a .wc-backward, .woocommerce .woocommerce-error a .sidebar .btn-container .wc-backward, .sidebar .btn-container .woocommerce .woocommerce-message a.button, .woocommerce .woocommerce-message .sidebar .btn-container a.button, .sidebar .btn-container .woocommerce ul.products li.product a.button, .woocommerce ul.products li.product .sidebar .btn-container a.button, .sidebar .btn-container .woocommerce p.return-to-shop a, .woocommerce p.return-to-shop .sidebar .btn-container a, .sidebar .btn-container .woocommerce #payment .form-row.place-order button#place_order, .woocommerce #payment .form-row.place-order .sidebar .btn-container button#place_order, .sidebar .btn-container .woocommerce .widget button.wcpf-button, .woocommerce .widget .sidebar .btn-container button.wcpf-button, .sidebar .btn-container .error404 .wrapper > .the-content a, .error404 .wrapper > .the-content .sidebar .btn-container a, .sidebar .btn-container .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .sidebar .btn-container input {
  background-color: transparent;
  color: #172a5b;
  border-color: #172a5b;
  width: 100%;
  text-align: center;
  border-radius: 5px;
}
.sidebar .btn-container .btn:hover, .sidebar .btn-container .addresses .edit:hover, .addresses .sidebar .btn-container .edit:hover, .sidebar .btn-container .woocommerce-MyAccount-content a.button:hover, .woocommerce-MyAccount-content .sidebar .btn-container a.button:hover, .sidebar .btn-container .woocommerce-MyAccount-content .woocommerce-info a:hover, .woocommerce-MyAccount-content .woocommerce-info .sidebar .btn-container a:hover, .sidebar .btn-container .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a:hover, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout .sidebar .btn-container a:hover, .sidebar .btn-container .woocommerce a.checkout-button.button:hover, .woocommerce .sidebar .btn-container a.checkout-button.button:hover, .sidebar .btn-container .woocommerce button.button:hover, .woocommerce .sidebar .btn-container button.button:hover, .sidebar .btn-container .woocommerce .woocommerce-error a .wc-backward:hover, .woocommerce .woocommerce-error a .sidebar .btn-container .wc-backward:hover, .sidebar .btn-container .woocommerce .woocommerce-message a.button:hover, .woocommerce .woocommerce-message .sidebar .btn-container a.button:hover, .sidebar .btn-container .woocommerce ul.products li.product a.button:hover, .woocommerce ul.products li.product .sidebar .btn-container a.button:hover, .sidebar .btn-container .woocommerce p.return-to-shop a:hover, .woocommerce p.return-to-shop .sidebar .btn-container a:hover, .sidebar .btn-container .woocommerce #payment .form-row.place-order button#place_order:hover, .woocommerce #payment .form-row.place-order .sidebar .btn-container button#place_order:hover, .sidebar .btn-container .woocommerce .widget button.wcpf-button:hover, .woocommerce .widget .sidebar .btn-container button.wcpf-button:hover, .sidebar .btn-container .error404 .wrapper > .the-content a:hover, .error404 .wrapper > .the-content .sidebar .btn-container a:hover, .sidebar .btn-container .gform_wrapper .gform_footer input:hover, .gform_wrapper .gform_footer .sidebar .btn-container input:hover {
  background-color: #172a5b;
  color: #fff;
}

#footer {
  position: relative;
  position: relative;
  bottom: 0;
  left: 0;
  overflow: hidden;
  background: #172a5b;
}
#footer > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}
#footer > img {
  max-width: 980px;
  object-fit: cover;
  left: 50%;
  opacity: 0.5;
}
#footer .footer-inner {
  padding: 80px 0;
}
#footer .footer-inner h4 {
  color: #ffffff;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 20px;
}
#footer .footer-inner .the-content {
  color: #ffffff;
  font-size: 16px;
}
#footer .footer-inner .social-icons {
  margin-bottom: 52px;
}
#footer #footer-nav ul {
  display: block;
}
#footer #footer-nav ul li {
  margin: 12px 0px;
}
#footer #footer-nav ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  transition: all 150ms ease-in-out;
}
#footer #footer-nav ul li a:hover {
  color: #93a6d4;
}

.social-icons ul {
  display: flex;
  align-items: center;
}
.social-icons ul li {
  margin: 0 8px 0 0;
}

.page-template-about .content-section img {
  border-radius: 24px;
}
.page-template-about .the-content h1, .page-template-about .the-content h2, .page-template-about .the-content h3, .page-template-about .the-content h4, .page-template-about .the-content h5, .page-template-about .the-content h6 {
  font-weight: 700;
  font-family: "proxima-nova", sans-serif;
  line-height: 1.125em;
  margin: 40px 0 20px 0;
  color: #172a5b;
}
.page-template-about .the-content h1 {
  font-size: 40px;
}
.page-template-about .the-content h2 {
  font-size: 36px;
}
.page-template-about .the-content h3 {
  font-size: 30px;
}
.page-template-about .the-content h4 {
  font-size: 26px;
}
.page-template-about .the-content h5 {
  font-size: 22px;
}
.page-template-about .the-content h6 {
  font-size: 20px;
}
.page-template-about .the-content ul {
  padding-left: 0px;
}

.board {
  position: relative;
  padding: 80px 0 0 0;
  text-align: center;
}
.board h2 {
  color: #0a57a4;
  font-weight: 700;
  margin-bottom: 60px;
}
.board .btn, .board .addresses .edit, .addresses .board .edit, .board .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button, .woocommerce-MyAccount-content table.woocommerce-orders-table td .board a.button, .board .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .board a.button, .board .woocommerce-MyAccount-content a.button, .woocommerce-MyAccount-content .board a.button, .board .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content .woocommerce-info .board a, .board .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout .board a, .board .woocommerce a.checkout-button.button, .woocommerce .board a.checkout-button.button, .board .woocommerce button.button, .woocommerce .board button.button, .board .woocommerce .woocommerce-error a .wc-backward, .woocommerce .woocommerce-error a .board .wc-backward, .board .woocommerce .woocommerce-message a.button, .woocommerce .woocommerce-message .board a.button, .board .woocommerce ul.products li.product a.button, .woocommerce ul.products li.product .board a.button, .board .woocommerce p.return-to-shop a, .woocommerce p.return-to-shop .board a, .board .woocommerce #payment .form-row.place-order button#place_order, .woocommerce #payment .form-row.place-order .board button#place_order, .board .woocommerce .widget button.wcpf-button, .woocommerce .widget .board button.wcpf-button, .board .error404 .wrapper > .the-content a, .error404 .wrapper > .the-content .board a, .board .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .board input {
  margin-top: 60px;
}

.directors-block {
  -webkit-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  -moz-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  position: relative;
  display: block;
  position: relative;
  background: #ffffff;
  text-decoration: none;
  padding: 40px;
  margin: 15px 0;
  border-radius: 24px;
  transition: all 150ms ease-in-out;
}
.directors-block:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.directors-block:hover {
  background: #0a57a4;
}
.directors-block:hover .directors-block-content h3, .directors-block:hover .directors-block-content .the-content {
  color: #ffffff;
}
.directors-block .directors-block-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 25px;
}
.directors-block .directors-block-content h3 {
  font: 700 24px/1.14em "proxima-nova", sans-serif;
  color: #0a57a4;
  font-style: italic;
  transition: all 150ms ease-in-out;
}
.directors-block .directors-block-content h4 {
  color: #93a6d4;
  font: 600 15px/1em "proxima-nova", sans-serif;
  margin: 12px 0 20px 0;
}
.directors-block .directors-block-content .the-content p {
  margin-bottom: 0;
}
.directors-block .directors-block-content .the-content.biography {
  display: none;
}

.directors-block-inner {
  opacity: 0;
  transition: all 150ms ease-in-out;
}

#director-bio {
  box-shadow: none;
  max-width: 900px;
  margin: 0px 0px;
  padding: 40px;
}
#director-bio .directors-block-content {
  text-align: left;
}
#director-bio .directors-block-content h3 {
  font: 700 30px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  font-style: italic;
}
#director-bio .directors-block-content h4 {
  color: #93a6d4;
  font: 600 20px/1em "proxima-nova", sans-serif;
  margin: 0 0 20px 0;
}
#director-bio .directors-block-content .the-content.member {
  color: #172a5b;
  font-weight: 700;
}
#director-bio .directors-block-content .the-content.member p {
  margin-bottom: 0px;
}
#director-bio .directors-block-content .the-content.biography {
  margin-top: 60px;
  display: block;
  color: #2F2F2F;
}

.fancybox-slide {
  background: rgba(10, 87, 164, 0.8);
}
.fancybox-slide .fancybox-content {
  border-radius: 24px;
  padding: 40px;
}

.dropdown {
  -webkit-box-shadow: 0px 4px 10px rgba(112, 112, 112, 0.2);
  -moz-box-shadow: 0px 4px 10px rgba(112, 112, 112, 0.2);
  box-shadow: 0px 4px 10px rgba(112, 112, 112, 0.2);
  margin-bottom: 24px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all 150ms ease-in-out;
  cursor: pointer;
}
.dropdown.active {
  border-color: #0a57a4;
  box-shadow: none;
}
.dropdown.active .open-drop .line.horizontal {
  fill: #0a57a4;
}
.dropdown.active .open-drop .line.vertical {
  fill: none;
}
.dropdown .dropdown-content h5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.dropdown .dropdown-content .open-drop {
  height: 15px;
  width: 15px;
  margin-left: 30px;
  transition: all 150ms ease-in-out;
}
.dropdown .dropdown-content .open-drop .line {
  fill: #172a5b;
}
.dropdown .dropdown-content .open-drop svg {
  display: block;
  transition: all 150ms ease-in-out;
}
.dropdown .dropdown-content .the-content {
  display: none;
  max-width: 800px;
  margin-top: 30px;
}

.page-template-distributors h1 {
  color: #0a57a4;
  font-style: italic;
  font-weight: 800;
  margin-bottom: 80px;
}
.page-template-distributors .continent-listing .continent-parent {
  margin: 40px 0;
}
.page-template-distributors .continent-listing .continent-parent h2 {
  font-weight: 800;
  color: #172a5b;
  margin-bottom: 20px;
}
.page-template-distributors .continent-listing .continent-parent h3 {
  font: 400 20px/1em "proxima-nova", sans-serif;
  color: #707070;
  margin: 20px 0 12px 0;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows:after {
  content: "";
  background: #F5F5F5;
  width: 100%;
  height: 2px;
  display: block;
  margin: 0 0 20px 0;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row {
  position: relative;
  padding: 20px 12px;
  background: #f5f9ff;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row:nth-child(even) {
  background: #ffffff;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .actions {
  display: flex;
  justify-content: center;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta {
  display: flex;
  justify-content: center;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 a {
  display: block;
  text-decoration: none;
  font: 700 20px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  transition: all 150ms ease-in-out;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 a:hover {
  color: #172a5b;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 .tel {
  display: block;
  margin-top: 8px;
  font: 400 18px/1em "proxima-nova", sans-serif;
  color: #707070;
  transition: all 150ms ease-in-out;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 .tel:hover {
  color: #172a5b;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .flags {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .flags .flag {
  margin: 0 4px;
}
.page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .flags .flag > img {
  max-width: 34px;
}

.page-template-contact h1 {
  color: #0a57a4;
  font-style: italic;
  font-weight: 800;
  margin-bottom: 80px;
}
.page-template-contact h2 {
  font-weight: 800;
  color: #172a5b;
  margin-bottom: 20px;
}
.page-template-contact .the-content.address-block {
  color: #172a5b;
}
.page-template-contact .the-content.address-block p {
  margin-bottom: 20px;
}

.phone-numbers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 150ms ease-in-out;
}
.phone-numbers .phone-title {
  font: 600 18px/1em "sofia-pro", sans-serif;
}
.phone-numbers a {
  text-decoration: none;
  color: #172a5b;
  transition: all 150ms ease-in-out;
}
.phone-numbers a:hover {
  color: #93a6d4;
}

.gform_confirmation_wrapper {
  margin: 60px 0 0 0;
  text-align: center;
  font: 700 20px/1.125em "sofia-pro", sans-serif;
  color: #0a57a4;
}

.gform_wrapper {
  margin: 20px 0;
}
.gform_wrapper .gform_validation_container {
  display: none !important;
}
.gform_wrapper .gform_heading h3 {
  font: 800 40px/1.125em "proxima-nova", sans-serif;
  margin-bottom: 20px;
}
.gform_wrapper .validation_error {
  text-align: center;
  font: 700 18px/1.125em "sofia-pro", sans-serif;
  color: #DD0606;
}
.gform_wrapper .gform_body .validation_message {
  text-align: center;
  font: 700 16px/1.125em "sofia-pro", sans-serif;
  color: #DD0606 !important;
  margin-right: 26px;
  margin-top: 4px;
}
.gform_wrapper .gform_body ul .gfield {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gform_wrapper .gform_body ul .gfield .chosen-container,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100% !important;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-single,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-single {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: none;
  background: rgba(255, 255, 255, 0);
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  padding: 1px 1px 12px 1px;
  margin: 0 0;
  border-radius: 0px;
  width: 100%;
  height: 100%;
  font: 300 16px/1em "sofia-pro", sans-serif;
  color: #000000;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-single:focus, .gform_wrapper .gform_body ul .gfield .chosen-container .chosen-single:active,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-single:focus,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-single:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-single span,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-single span {
  position: relative;
  width: calc(100% - 18px);
  margin: 0 0;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-single div,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-single div {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
  right: 0;
  width: 18px;
  height: 6px;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-single div b,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-single div b {
  background: none !important;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #707070 transparent transparent transparent;
}
.gform_wrapper .gform_body ul .gfield .chosen-container.chosen-with-drop,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi.chosen-with-drop {
  border-bottom-color: #0a57a4;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-drop,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-drop {
  position: absolute;
  bottom: 0;
  border: none;
  background: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
  box-shadow: none;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-drop .chosen-search,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-drop .chosen-search {
  height: 100%;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-drop .chosen-search input[type=text],
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-results,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-results {
  position: relative;
  top: -6px;
  background: #F5F5F5;
  padding: 0 0 !important;
  margin: 0 0 !important;
  color: #172a5b;
  font: 400 18px/1em "sofia-pro", sans-serif;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-results li,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-results li {
  display: block;
  padding: 12px 24px;
  line-height: 1em;
  margin: 0 0;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-results li .active-result .hightlighted,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-results li .active-result .hightlighted {
  color: #ffffff;
  background: #0a57a4 !important;
  background-color: #0a57a4 !important;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-choices,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-choices {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: none;
  background: rgba(255, 255, 255, 0);
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  padding: 1px 1px 12px 1px;
  margin: 0 0;
  border-radius: 0px;
  width: 100%;
  height: 100%;
  font: 300 16px/1em "sofia-pro", sans-serif;
  color: #000000;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-choices li.search-field input[type=text],
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-choices li.search-field input[type=text] {
  font-size: 16px;
  margin: 6px 0 -12px;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-choices li.search-choice,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-choices li.search-choice {
  outline: none;
  background: #f5f9ff;
  box-shadow: none;
  border: 0;
  display: flex;
  align-items: flex-start;
  padding: 4px 6px;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-choices li.search-choice span,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-choices li.search-choice span {
  outline: none;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  padding: 2px;
  font-size: 15px;
}
.gform_wrapper .gform_body ul .gfield .chosen-container .chosen-choices li.search-choice a,
.gform_wrapper .gform_body ul .gfield .chosen-container-multi .chosen-choices li.search-choice a {
  position: relative !important;
  top: 0px !important;
  right: 0 !important;
  display: block !important;
  width: 12px !important;
  height: 12px !important;
}
.gform_wrapper .gform_body ul .gfield .gfield_radio > li,
.gform_wrapper .gform_body ul .gfield .gfield_checkbox > li {
  display: flex;
}
.gform_wrapper .gform_body ul .gfield .gfield_radio > li input,
.gform_wrapper .gform_body ul .gfield .gfield_checkbox > li input {
  width: 15px;
  height: 15px;
  margin: 0 10px 0 0;
}
.gform_wrapper .gform_body ul .gfield .gfield_radio > li label,
.gform_wrapper .gform_body ul .gfield .gfield_checkbox > li label {
  width: calc(100% - 25px);
  text-align: left;
}
.gform_wrapper .gform_body ul li {
  margin: 20px 0;
}
.gform_wrapper .gform_body ul li.hidden_label .gfield_label {
  display: none !important;
}
.gform_wrapper .gform_body ul li .gfield_label {
  font: 300 16px/1em "sofia-pro", sans-serif;
  color: #a2a1a1;
}
.gform_wrapper .gform_body ul li .gfield_label .gfield_required {
  color: #DD0606;
  margin-left: 4px;
}
.gform_wrapper .gform_body ul li input {
  background: rgba(255, 255, 255, 0);
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  border-radius: 0px !important;
  padding-bottom: 12px;
  width: 100%;
  font: 300 18px/1em "sofia-pro", sans-serif;
  color: #000000;
}
.gform_wrapper .gform_body ul li input:focus, .gform_wrapper .gform_body ul li input:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.gform_wrapper .gform_body ul li textarea {
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  padding: 12px;
  resize: vertical;
  font: 300 18px/1em "sofia-pro", sans-serif;
  width: 100%;
  border-radius: 0px !important;
}
.gform_wrapper .gform_body ul li textarea:focus, .gform_wrapper .gform_body ul li textarea:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.gform_wrapper .gform_body ul li select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='#172a5b'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  padding: 12px;
  font: 300 18px/1em "sofia-pro", sans-serif;
  width: 100%;
  border-radius: 0px !important;
  outline: 0 !important;
}
.gform_wrapper .gform_body ul li table {
  margin: 10px 0;
  border-color: #707070;
  border-width: 4px;
}
.gform_wrapper .gform_body ul li table tbody tr {
  background: #ffffff !important;
}
.gform_wrapper .gform_body ul li table tbody tr td {
  padding: 14px 28px;
  border-bottom: 2px solid #f5f9ff;
}
.gform_wrapper .gform_body ul li table tbody tr td input {
  padding-bottom: 0 !important;
  border: 0 !important;
  border-width: 0 !important;
}
.gform_wrapper .gform_body ul li table tbody tr td.gfield_list_icons {
  text-align: right;
}
.gform_wrapper .gform_body ul li table tbody tr td.gfield_list_icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  width: 18px;
}
.gform_wrapper .gform_body ul li .gfield_description {
  font: 300 14px/1.125em "sofia-pro", sans-serif;
  color: #707070;
  margin-left: 30px;
  font-style: italic;
}
.gform_wrapper .gform_body ul li .ginput_container_checkbox ul.gfield_checkbox li {
  display: flex;
  margin-bottom: 8px;
}
.gform_wrapper .gform_body ul li .ginput_container_checkbox ul.gfield_checkbox li input[type=checkbox] {
  display: none;
}
.gform_wrapper .gform_body ul li .ginput_container_checkbox ul.gfield_checkbox li input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.gform_wrapper .gform_body ul li .ginput_container_checkbox ul.gfield_checkbox li label {
  display: block;
  position: relative;
  padding-left: 30px;
  font: 700 16px/1em "sofia-pro", sans-serif;
}
.gform_wrapper .gform_body ul li .ginput_container_checkbox ul.gfield_checkbox li label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #0a57a4;
  background: #ffffff;
}
.gform_wrapper .gform_body ul li .ginput_container_checkbox ul.gfield_checkbox li label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 4px;
  content: "";
  width: 10px;
  height: 10px;
  background: #0a57a4;
  transition: all 150ms ease-in-out;
}
.gform_wrapper .gform_footer input {
  cursor: pointer;
  font: 500 18px/1em "proxima-nova", sans-serif;
  padding: 14px 24px;
}

.newsletter {
  padding: 40px;
  background: rgba(147, 166, 212, 0.1);
}
.newsletter h3 {
  margin: 0 0 20px 0;
}

.category-links li {
  display: block;
  margin-bottom: 12px;
}
.category-links li:last-child {
  margin-bottom: 0px;
}
.category-links a {
  text-decoration: none;
  font: 300 18px/1em "sofia-pro", sans-serif;
  color: #a2a1a1;
  transition: all 150ms ease-in-out;
}
.category-links a:hover {
  color: #0a57a4;
}

.related-articles li {
  margin-bottom: 30px;
}
.related-articles li:last-child {
  margin-bottom: 0px;
}
.related-articles li > a {
  position: relative;
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.related-articles li > a:before {
  content: "";
  display: block;
  padding-top: 48%;
}
.related-articles li > a > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.related-articles li > a img {
  border-radius: 8px;
}
.related-articles li > div a {
  display: block;
  text-decoration: none;
  color: #0a57a4;
  font: 600 18px/1.4em "sofia-pro", sans-serif;
}
.related-articles li > div .date {
  font: 700 14px/1em "sofia-pro", sans-serif;
  color: #93a6d4;
}

.single-post .single-feature-img {
  display: block;
  margin-bottom: 20px;
}
.single-post .single-feature-img > img {
  border-radius: 24px;
}
.single-post h1 {
  font-weight: 700;
  font-style: italic;
  color: #0a57a4;
}
.single-post .the-content h1 {
  font-style: normal;
  color: #172a5b;
}
.single-post .the-content.article-content:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #F5F5F5;
}
.single-post .the-content img {
  border-radius: 24px;
  margin: 12px 0;
}
.single-post .written {
  margin: 30px 0 0 0;
  color: #707070;
  font: 700 16px/1.2em "sofia-pro", sans-serif;
}
.single-post .written h5 {
  color: #172a5b;
  font: 700 20px/1em "sofia-pro", sans-serif;
}

.blog-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.blog-info .author-info {
  display: flex;
  align-items: center;
}
.blog-info .author-img {
  display: block;
  width: 70px;
}
.blog-info img {
  position: relative;
  margin: 0px;
  border-radius: 12px;
}
.blog-info img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.blog-info .author-info-content h5 {
  font: 600 20px/1em "proxima-nova", sans-serif;
  color: #172a5b;
}
.blog-info .author-info-content .date {
  font: 600 16px/1em "proxima-nova", sans-serif;
  color: #a2a1a1;
}

.blog h1, .category h1 {
  font-weight: 800;
  font-style: italic;
  color: #0a57a4;
}
.blog h5, .category h5 {
  font-weight: 600;
  color: #93a6d4;
}
.blog h5.late, .category h5.late {
  margin-top: 80px;
}
.blog h5.late:after, .category h5.late:after {
  content: "";
  display: block;
  background: #F5F5F5;
  width: 100%;
  height: 2px;
  margin: 12px 0;
}
.blog .featured-articles, .category .featured-articles {
  margin: 40px 0 0 0;
}
.blog .featured-blog-block .featured-block-img img, .category .featured-blog-block .featured-block-img img {
  position: relative;
  height: 100%;
  width: 100%;
  min-width: 250px;
  object-fit: cover;
  border-radius: 24px;
}
.blog .featured-blog-block .featured-block-img img:before, .category .featured-blog-block .featured-block-img img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.blog .latest-articles .featured-blog-block, .category .latest-articles .featured-blog-block {
  margin: 12px 0;
}
.blog .latest-articles .featured-blog-block .featured-blog-img img, .category .latest-articles .featured-blog-block .featured-blog-img img {
  position: relative;
  height: 100%;
  width: 250px;
  object-fit: cover;
}
.blog .latest-articles .featured-blog-block .featured-blog-img img:before, .category .latest-articles .featured-blog-block .featured-blog-img img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.blog .latest-articles .featured-blog-block .featured-block-content, .category .latest-articles .featured-blog-block .featured-block-content {
  padding: 0px;
}
.blog .latest-articles .featured-blog-block .featured-block-content .the-content, .category .latest-articles .featured-blog-block .featured-block-content .the-content {
  margin: 15px 0;
}
.blog .latest-articles .featured-blog-block .featured-block-content .blog-info, .category .latest-articles .featured-blog-block .featured-block-content .blog-info {
  display: block;
  margin: 15px 0;
}
.blog .latest-articles .featured-blog-block .featured-block-content .blog-info .author-info-content, .category .latest-articles .featured-blog-block .featured-block-content .blog-info .author-info-content {
  margin: 0;
}
.blog .latest-articles .featured-blog-block .featured-block-content .blog-info .author-info-content .date, .category .latest-articles .featured-blog-block .featured-block-content .blog-info .author-info-content .date {
  color: #93a6d4;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination a {
  text-decoration: none;
  margin: 0 16px;
  color: #172a5b;
  font: 600 16px/1em "proxima-nova", sans-serif;
  transition: all 150ms ease-in-out;
}
.pagination a:hover {
  color: #0a57a4;
}
.pagination .prev,
.pagination .next {
  color: #a2a1a1;
  transition: all 150ms ease-in-out;
}
.pagination .prev:hover,
.pagination .next:hover {
  color: #172a5b;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  font: 600 16px/1em "proxima-nova", sans-serif;
}
.pagination .page-numbers.current {
  padding: 12px;
  border-radius: 8px;
  height: 32px;
  background: #0a57a4;
  color: #ffffff;
}

.popup {
  display: none;
}

#newsletter-form {
  max-width: 600px;
}
#newsletter-form .gform_confirmation_wrapper {
  margin: 0 0 0 0;
}
#newsletter-form form {
  text-align: center;
}
#newsletter-form form h3 {
  font-weight: 700;
  color: #0a57a4;
}

.google-map {
  position: relative;
  width: 100%;
  margin: 0 40px;
  border-radius: 24px;
}
.google-map:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.google-map .acf-map img {
  max-width: inherit !important;
}

.overview {
  padding: 80px 0 0 0;
}
.overview h2 {
  text-align: center;
  font-style: normal !important;
  margin-bottom: 60px;
}
.overview .product-overview-row {
  margin-bottom: 40px;
}
.overview .product-overview-row:last-child {
  margin-bottom: 0px;
}
.overview .product-overviews .overview-title h4 {
  color: #0a57a4;
  text-align: right;
}
.overview .product-overviews .overview-content .the-content {
  padding: 0 16px;
  border-left: 2px solid #93a6d4;
  color: #707070;
}
.overview .product-overviews .overview-content .the-content p {
  font: 300 18px/1.4em "proxima-nova", sans-serif;
  margin: 0 0;
}

.error404 .wrapper > .the-content {
  padding: 100px 0;
}
.error404 .wrapper > .the-content h1 {
  font: 700 55px/1.1em "proxima-nova", sans-serif;
  color: #0a57a4;
  font-style: italic;
}
.error404 .wrapper > .the-content h2, .error404 .wrapper > .the-content h3, .error404 .wrapper > .the-content h4, .error404 .wrapper > .the-content h5 {
  font: 600 40px/1.125em "proxima-nova", sans-serif;
  color: #2F2F2F;
}
#product-datasheet {
  padding: 50px 0;
  display: none;
}
#product-datasheet .inner {
  padding: 40px;
}
#product-datasheet h1 {
  font: 700 18px/1em "proxima-nova", sans-serif;
  font-style: normal !important;
  color: #0a57a4;
  margin: 6px 0;
}
#product-datasheet h2 {
  font: 600 16px/1em "proxima-nova", sans-serif;
  color: #172a5b;
  margin: 12px 0;
  font-style: normal !important;
}
#product-datasheet .product_number {
  font-style: normal !important;
  color: #707070;
  font-size: 16px;
  margin: 6px 0;
}
#product-datasheet .html2pdf__page-break > .overview {
  padding: 0 0 !important;
}
#product-datasheet .html2pdf__page-break > .overview .product-overviews .product-overview-row {
  margin-bottom: 18px;
}
#product-datasheet .html2pdf__page-break > .overview .product-overviews .product-overview-row .overview-title h4 {
  font-size: 20px;
  text-align: left !important;
}
#product-datasheet .html2pdf__page-break > .overview .product-overviews .product-overview-row .overview-content {
  text-align: left;
}
#product-datasheet .html2pdf__page-break > .overview .product-overviews .product-overview-row .overview-content > .the-content {
  padding: 0 0;
  border: none;
  font-size: 16px;
}
#product-datasheet .datasheet-images > img {
  max-width: 300px;
}

.rounded-corners img {
  border-radius: 24px;
  overflow: hidden;
  display: block;
  width: 100%;
}

.services-row {
  margin-left: -30px;
  margin-right: -30px;
}
.services-row > div[class*=col] {
  padding-left: 30px;
  padding-right: 30px;
}

.the-product-btns {
  display: flex;
  margin-top: 15px;
}
.the-product-btns a:first-child {
  margin-left: 0 !important;
}

.woocommerce .woocommerce-product-gallery__image > a {
  position: relative;
  position: relative;
  display: block;
}
.woocommerce .woocommerce-product-gallery__image > a:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.woocommerce .woocommerce-product-gallery__image > a > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}

#shop-notice {
  background: #DD0606;
  color: #ffffff;
  height: 45px;
}
#shop-notice .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#shop-notice .wrapper a,
#shop-notice .wrapper p {
  color: inherit;
  font-weight: bold;
}
#shop-notice .wrapper a {
  transition: all 150ms ease-in-out;
  text-decoration: none;
}
#shop-notice .wrapper a:hover {
  text-decoration: underline;
}

body.has-shop-notice #header.shrink {
  top: 0;
}

.page-template-static-products .content-section .form-container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 65px;
  width: 100%;
}
.page-template-static-products .content-section h3 {
  font-weight: 600;
  text-align: center;
  color: #0a57a4;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.page-template-static-products .content-section table {
  position: relative;
  margin: 50px 0;
  border: 2px solid #f5f9ff;
  border-collapse: collapse;
  width: 100%;
}
.page-template-static-products .content-section table thead {
  background: #0a57a4;
  color: #ffffff;
}
.page-template-static-products .content-section table thead tr th {
  font-weight: 700;
  padding: 9px 14px;
  text-align: left;
}
.page-template-static-products .content-section table thead tr th:first-child {
  padding-left: 45px;
}
.page-template-static-products .content-section table thead tr th h5 {
  font-weight: 700;
}
.page-template-static-products .content-section table thead tr th .prices {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.page-template-static-products .content-section table thead tr th p {
  display: inline-block;
  font-size: 14px;
}
.page-template-static-products .content-section table tbody tr {
  background: #ffffff;
}
.page-template-static-products .content-section table tbody tr:nth-child(2n) {
  background: #f5f9ff;
}
.page-template-static-products .content-section table tbody tr td {
  text-align: left;
  padding: 14px;
  vertical-align: middle;
}
.page-template-static-products .content-section table tbody tr td:first-child {
  padding-left: 45px;
}
.page-template-static-products .content-section table tbody tr td .mobile-only {
  display: none;
}
.page-template-static-products .content-section table tbody tr td .prices {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.page-template-static-products .content-section table tbody tr td .prices p {
  margin: 0 4px;
}
.page-template-static-products .content-section table tbody tr td p {
  display: inline-block;
}
.page-template-static-products .content-section table tbody tr td p.number {
  font-weight: 600;
  color: #0a57a4;
}
.page-template-static-products .content-section .image {
  display: block;
  position: relative;
  max-width: 960px;
  width: 100%;
  height: 100%;
  margin: 0 auto 50px;
}
.page-template-static-products .content-section .the-content {
  text-align: center;
}

.shop_attributes {
  margin-top: 50px;
}
.shop_attributes .woocommerce-product-attributes-item--weight, .shop_attributes .woocommerce-product-attributes-item--dimensions {
  display: none;
}

.woocommerce-checkout #payment div.payment_box {
  border-radius: 16px;
  background: #f5f9ff;
  color: #172a5b;
}
.woocommerce-checkout #payment div.payment_box:before {
  border-bottom-color: #f5f9ff;
}

.row, .col2-set {
  z-index: 1;
}
.row.background:before, .background.col2-set:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  background: #f5f9ff;
  height: 100%;
  min-width: 1920px;
  left: -50%;
  right: -50%;
  top: 220px;
}

.woocommerce span.onsale {
  background: #0a57a4;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 30px;
  border-radius: 0px;
  height: 50px;
  width: 50px;
}
.woocommerce .widget .wcpf-heading-label {
  font: 800 25px/1em "proxima-nova", sans-serif;
  color: #172a5b;
  text-transform: capitalize;
}
.woocommerce .widget .wcpf-checkbox-label div.wcpf-input-container {
  display: none;
}
.woocommerce .widget .wcpf-checkbox-label div.wcpf-title-container {
  margin: 0;
  padding: 0;
}
.woocommerce .widget span.wcpf-title {
  font: 300 16px/1em "sofia-pro", sans-serif;
  color: #707070;
}
.woocommerce .widget span.wcpf-product-counts {
  font: 300 16px/1em "sofia-pro", sans-serif;
  color: #707070;
}
.woocommerce .widget button.wcpf-button {
  width: auto;
  cursor: pointer;
}
.woocommerce .widget .wcpf-item.checked span.wcpf-title {
  font-weight: 600;
  color: #0a57a4;
}
.woocommerce .widget .wcpf-item.checked span.wcpf-product-counts {
  font-weight: 600;
  color: #0a57a4;
}
.woocommerce nav.woocommerce-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0px;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: 0px;
}
.woocommerce nav.woocommerce-pagination ul li a {
  padding: 0px;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: none;
}
.woocommerce nav.woocommerce-pagination ul li span {
  padding: 0px;
}
.woocommerce nav.woocommerce-pagination a {
  text-decoration: none;
  margin: 0 16px;
  color: #172a5b;
  font: 600 16px/1em "proxima-nova", sans-serif;
  transition: all 150ms ease-in-out;
}
.woocommerce nav.woocommerce-pagination a:hover {
  color: #0a57a4;
}
.woocommerce nav.woocommerce-pagination .prev,
.woocommerce nav.woocommerce-pagination .next {
  color: #a2a1a1;
  transition: all 150ms ease-in-out;
}
.woocommerce nav.woocommerce-pagination .prev:hover,
.woocommerce nav.woocommerce-pagination .next:hover {
  color: #172a5b;
}
.woocommerce nav.woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  font: 600 16px/1em "proxima-nova", sans-serif;
  border: 0px;
  margin: 0 16px;
}
.woocommerce nav.woocommerce-pagination .page-numbers.current {
  padding: 12px;
  border-radius: 8px;
  height: 32px;
  background: #0a57a4;
  color: #ffffff;
}
.woocommerce form#add_payment_method #payment {
  background: rgba(147, 166, 212, 0.4);
  border-radius: 24px;
}
.woocommerce form#add_payment_method #payment ul.woocommerce-PaymentMethods li.woocommerce-PaymentMethod input[type=radio] {
  display: none;
}
.woocommerce form#add_payment_method #payment ul.woocommerce-PaymentMethods li.woocommerce-PaymentMethod input[type=radio]:checked + label:after {
  opacity: 1;
}
.woocommerce form#add_payment_method #payment ul.woocommerce-PaymentMethods li.woocommerce-PaymentMethod > label {
  display: block;
  position: relative;
  padding-left: 30px;
}
.woocommerce form#add_payment_method #payment ul.woocommerce-PaymentMethods li.woocommerce-PaymentMethod > label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #0a57a4;
  background: #ffffff;
}
.woocommerce form#add_payment_method #payment ul.woocommerce-PaymentMethods li.woocommerce-PaymentMethod > label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 4px;
  content: "";
  width: 10px;
  height: 10px;
  background: #0a57a4;
  transition: all 150ms ease-in-out;
}
.woocommerce #footer {
  color: #ffffff;
}
.woocommerce #footer p {
  color: #ffffff;
}
.woocommerce #payment {
  background: rgba(147, 166, 212, 0.4);
  border-radius: 24px;
}
.woocommerce #payment ul.wc_payment_methods li.wc_payment_method input[type=radio] {
  display: none;
}
.woocommerce #payment ul.wc_payment_methods li.wc_payment_method input[type=radio]:checked + label:after {
  opacity: 1;
}
.woocommerce #payment ul.wc_payment_methods li.wc_payment_method label {
  display: block;
  position: relative;
  padding-left: 30px;
}
.woocommerce #payment ul.wc_payment_methods li.wc_payment_method label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #0a57a4;
  background: #ffffff;
}
.woocommerce #payment ul.wc_payment_methods li.wc_payment_method label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 4px;
  content: "";
  width: 10px;
  height: 10px;
  background: #0a57a4;
  transition: all 150ms ease-in-out;
}
.woocommerce #payment ul.woocommerce-SavedPaymentMethods {
  margin: 20px 0 !important;
}
.woocommerce #payment .payment_box .form-row {
  padding: 0px;
  margin: 0 0 20px 0;
  padding-left: 0px;
}
.woocommerce #payment .payment_box .form-row:before, .woocommerce #payment .payment_box .form-row:after {
  display: none;
}
.woocommerce #payment .payment_box .form-row label {
  font: 300 16px/1em "sofia-pro", sans-serif;
  color: #a2a1a1;
}
.woocommerce #payment .payment_box .form-row label span.required {
  color: #DD0606;
  margin-left: 4px;
}
.woocommerce #payment .payment_box .stripe-source-errors ul.woocommerce-error {
  border: 2px solid #DD0606;
  border-radius: 16px;
  margin: 12px 0;
  color: #DD0606;
  background: rgba(221, 6, 6, 0.15);
}
.woocommerce #payment .payment_box .stripe-source-errors ul.woocommerce-error:before {
  color: #DD0606;
}
.woocommerce #payment .payment_box fieldset.wc-payment-form {
  box-shadow: none;
}
.woocommerce #payment .payment_box fieldset.wc-payment-form .form-row label {
  padding-left: 0px;
}
.woocommerce #payment .payment_box fieldset.wc-payment-form .form-row label:before, .woocommerce #payment .payment_box fieldset.wc-payment-form .form-row label:after {
  display: none;
}
.woocommerce #payment .payment_box fieldset.wc-payment-form .wc-stripe-elements-field {
  background: rgba(255, 255, 255, 0);
  border-width: 0 0 2px 0;
  border-bottom-color: #707070;
  padding-bottom: 12px;
  width: 100%;
  font: 300 18px/1em "sofia-pro", sans-serif;
  color: #000000;
}
.woocommerce #payment .payment_box fieldset.wc-payment-form .wc-stripe-elements-field.invalid {
  color: #DD0606;
}
.woocommerce #payment .payment_box fieldset.wc-payment-form .wc-stripe-elements-field input {
  font: 18px/1em "proxima-nova", sans-serif;
  color: #172a5b;
}
.woocommerce #payment .payment_box p.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox] {
  display: none;
  width: auto;
}
.woocommerce #payment .payment_box p.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.woocommerce #payment .payment_box p.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox] label {
  display: block;
  position: relative;
  padding-left: 30px;
}
.woocommerce #payment .payment_box p.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox] label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 8px;
  left: 0;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #0a57a4;
  background: #ffffff;
}
.woocommerce #payment .payment_box p.woocommerce-SavedPaymentMethods-saveNew input[type=checkbox] label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 4px;
  content: "";
  width: 10px;
  height: 10px;
  background: #0a57a4;
  transition: all 150ms ease-in-out;
}
.woocommerce #payment .form-row.place-order button#place_order {
  display: block;
  width: auto;
  margin-top: 20px;
}
.woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox {
  display: inline-block;
  color: #2F2F2F;
  padding-left: 30px;
  font: 300 16px/2em "sofia-pro", sans-serif;
}
.woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional {
  display: inline-block;
  padding-left: 0px;
  line-height: 1em;
}
.woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:before {
  top: -33px;
  left: -111px;
}
.woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:after {
  top: -28px;
  left: -106px;
}
.woocommerce #payment ul.wc_payment_methods {
  border-bottom: 2px solid #0a57a4;
}
.woocommerce .woocommerce-order .woocommerce-notice {
  font: 700 28px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  margin-bottom: 20px;
}
.woocommerce .woocommerce-order ul.order_details li {
  border-right: 2px solid #f5f9ff;
}
.woocommerce .woocommerce-order ul.order_details li:last-child {
  border-right: 0px;
}
.woocommerce .woocommerce-order ul.order_details li strong {
  font: 700 18px/1em "proxima-nova", sans-serif;
  color: #2F2F2F;
  margin-top: 8px;
}
.woocommerce .woocommerce-order .woocommerce-order-details h2 {
  font: 700 24px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  margin: 0 0 8px 0;
  font-style: italic;
}
.woocommerce .woocommerce-order .woocommerce-order-details table.shop_table {
  border: 2px solid #f5f9ff !important;
  border-radius: 0px;
  margin: 0 0 0 0;
  color: #2F2F2F;
  border-collapse: collapse;
}
.woocommerce .woocommerce-order .woocommerce-order-details table.shop_table thead {
  background: #0a57a4;
  color: #ffffff;
}
.woocommerce .woocommerce-order .woocommerce-order-details table.shop_table tr th {
  background: #0a57a4;
  color: #ffffff;
  border-color: #0a57a4;
}
.woocommerce .woocommerce-order .woocommerce-order-details table.shop_table .woocommerce-Price-amount {
  font: 700 22px/1em "proxima-nova", sans-serif;
}
.woocommerce .woocommerce-order .woocommerce-customer-details address {
  border: 2px solid #f5f9ff !important;
  border-radius: 0px;
  margin: 0 0 0 0;
  color: #2F2F2F;
  border-collapse: collapse;
  padding: 8px 12px;
}
.woocommerce .woocommerce-order .woocommerce-customer-details h2 {
  font: 700 24px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  margin-bottom: 8px;
  font-style: italic;
}
.woocommerce .woocommerce-order .woocommerce-customer-details .woocommerce-customer-details--email, .woocommerce .woocommerce-order .woocommerce-customer-details .woocommerce-customer-details--phone {
  color: #172a5b;
}
.woocommerce .blockUI.blockOverlay {
  z-index: 50 !important;
}
.woocommerce .checkbox {
  display: block;
  position: relative;
}
.woocommerce .checkbox span.woocommerce-terms-and-conditions-checkbox-text {
  display: inline-block;
  color: #2F2F2F;
}
.woocommerce .checkbox span.required {
  display: inline-block;
  padding-left: 0px;
}
.woocommerce .checkbox span.required:before {
  display: none;
}
.woocommerce .checkbox span.required:after {
  display: none;
}
.woocommerce .checkbox input[type=checkbox] {
  display: none;
}
.woocommerce .checkbox input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.woocommerce .checkbox span {
  display: block;
  position: relative;
  padding-left: 30px;
}
.woocommerce .checkbox span:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #0a57a4;
  background: #ffffff;
}
.woocommerce .checkbox span:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #0a57a4;
  transition: all 150ms ease-in-out;
}
.woocommerce .data-content {
  background: rgba(147, 166, 212, 0.2);
  padding: 30px 60px;
  text-align: center;
  border-radius: 16px;
}
.woocommerce .data-content a {
  margin: 0 12px;
  color: #ffffff;
}
.woocommerce .data-content a:hover {
  color: #ffffff;
}
.woocommerce header.woocommerce-products-header {
  display: block;
  margin-bottom: 80px;
}
.woocommerce div.price-unit {
  display: flex;
  align-items: center;
}
.woocommerce div.price-unit .volume-unit {
  display: block;
  color: #707070;
  font: 300 18px/1.4em "proxima-nova", sans-serif;
  padding-left: 8px;
}
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: #0a57a4;
}
.woocommerce div.product form.cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 40px 0;
}
.woocommerce div.product form.cart:before {
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  width: 100%;
  height: 2px;
  background: #F5F5F5;
  margin: 12px 0;
}
.woocommerce div.product form.cart p.price {
  position: relative;
}
.woocommerce div.product form.cart .volume-unit {
  display: block;
  color: #707070;
  font: 300 18px/1.4em "proxima-nova", sans-serif;
  padding-left: 8px;
}
.woocommerce div.product form.cart button {
  background: #0a57a4;
  margin: 0px;
}
.woocommerce div.product form.cart button:hover {
  background: #93a6d4;
}
.woocommerce div.product form.cart div.quantity {
  margin: 0 0;
  float: none;
}
.woocommerce div.product form.cart div.quantity input.qty {
  margin-right: 0;
  margin-left: 40px;
  appearance: none;
  -webkit-appearance: none;
}
.woocommerce div.product form.cart button.single_add_to_cart_button {
  display: flex;
  align-items: center;
  margin-right: -40px;
}
.woocommerce div.product form.cart button.single_add_to_cart_button:before {
  content: "";
  display: inline-block;
  height: 24px;
  width: 24px;
  margin-right: 12px;
  background-image: url("../images/icon-cart.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  background-fit: contain;
  transition: all 150ms ease-in-out;
}
.woocommerce div.product form.cart button.single_add_to_cart_button:hover:before {
  background-image: url("../images/icon-cart-b.svg");
}
.woocommerce div.product .woocommerce-tabs h2 {
  display: none;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: none;
}
.woocommerce div.product .woocommerce-tabs p {
  font: 300 16px/1.2em "proxima-nova", sans-serif;
  color: #707070;
}
.woocommerce div.product .woocommerce-tabs p:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #F5F5F5;
  margin: 12px 0;
}
.woocommerce div.product div.images {
  width: 100%;
  float: none;
  margin: 0 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 50px;
  height: 50px;
  margin: 30px 12px 0 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) img {
  border-radius: 8px;
  object-fit: cover;
  object-position: center center;
}
.woocommerce div.product div.summary {
  width: 100%;
  float: none;
  margin: 0 0;
}
.woocommerce div.product div.summary .product_number {
  font: 300 18px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  margin-bottom: 20px;
}
.woocommerce div.product div.summary .product_title {
  font: 700 40px/1.125em "proxima-nova", sans-serif;
  color: #0a57a4;
  font-style: italic;
}
.woocommerce ul.products li.product {
  -webkit-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  -moz-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  margin: 0 0 30px 0;
}
.woocommerce ul.products li.product .button {
  margin: 0 8px;
}
.woocommerce ul.products li.product a.btn, .woocommerce ul.products li.product .addresses a.edit, .addresses .woocommerce ul.products li.product a.edit, .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content .woocommerce-info .woocommerce ul.products li.product a, .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-navigation .woocommerce ul.products li.product li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--customer-logout li.product a, .woocommerce-MyAccount-navigation .woocommerce ul.products li.woocommerce-MyAccount-navigation-link--customer-logout li.product a, .woocommerce ul.products li.product .woocommerce-error a a.wc-backward, .woocommerce .woocommerce-error a ul.products li.product a.wc-backward, .woocommerce ul.products li.product a.button, .woocommerce ul.products li.product .error404 .wrapper > .the-content a, .error404 .wrapper > .the-content .woocommerce ul.products li.product a, .woocommerce ul.products li.product p.return-to-shop a, .woocommerce p.return-to-shop ul.products li.product a {
  margin: 0 8px;
}
.woocommerce ul.products li.product .product_number {
  font: 300 18px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
}
.woocommerce ul.products li.product .single-product-buttons {
  margin-top: 25px;
}
.woocommerce ul.products li.product .single-product-buttons a {
  display: block;
  text-align: center;
}
.woocommerce ul.products li.product .single-product-buttons a.added_to_cart {
  color: #93a6d4;
  font-weight: 700;
}
.woocommerce ul.products li.product .single-product-buttons a.added_to_cart:hover {
  color: #0a57a4;
}
.woocommerce ul.products li.product .single-product-buttons a.add_to_cart_button {
  display: flex;
  align-items: center;
  padding: 10px;
}
.woocommerce ul.products li.product .single-product-buttons a.add_to_cart_button:before {
  content: "";
  display: inline-block;
  height: 16px;
  width: 16px;
  margin-right: 8px;
  background-image: url("../images/icon-cart.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center center;
  background-fit: contain;
}
.woocommerce ul.products li.product a {
  position: relative;
}
.woocommerce ul.products li.product a > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
}
.woocommerce ul.products li.product a img {
  position: relative;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  height: 300px !important;
  width: 100%;
  margin: 0 0;
}
.woocommerce ul.products li.product a img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.woocommerce ul.products li.product .onsale {
  background: #0a57a4;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 30px;
  border-radius: 0px;
  height: 50px;
  width: 50px;
}
.woocommerce ul.products li.product .price {
  color: #0a57a4;
  margin-bottom: 0px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font: 600 24px/1.25em "proxima-nova", sans-serif;
  padding: 0 0;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: #0a57a4;
  transition: all 150ms ease-in-out;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title a:hover {
  color: #546f97;
}
.woocommerce ul.products li.product a.btn, .woocommerce ul.products li.product .addresses a.edit, .addresses .woocommerce ul.products li.product a.edit, .woocommerce ul.products li.product .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content .woocommerce-info .woocommerce ul.products li.product a, .woocommerce .woocommerce-MyAccount-navigation ul.products li.product li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-navigation .woocommerce ul.products li.product li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce .woocommerce-MyAccount-navigation ul.products li.woocommerce-MyAccount-navigation-link--customer-logout li.product a, .woocommerce-MyAccount-navigation .woocommerce ul.products li.woocommerce-MyAccount-navigation-link--customer-logout li.product a, .woocommerce ul.products li.product .woocommerce-error a a.wc-backward, .woocommerce .woocommerce-error a ul.products li.product a.wc-backward, .woocommerce ul.products li.product .error404 .wrapper > .the-content a, .error404 .wrapper > .the-content .woocommerce ul.products li.product a, .woocommerce ul.products li.product p.return-to-shop a, .woocommerce p.return-to-shop ul.products li.product a, .woocommerce ul.products li.product a.button {
  color: #ffffff;
}
.woocommerce .woocommerce-notices-wrapper {
  margin: 15px 0;
}
.woocommerce .woocommerce-notices-wrapper div, .woocommerce .woocommerce-notices-wrapper ul {
  margin: 15px 0;
  border-radius: 15px;
  border: 2px solid;
}
.woocommerce .woocommerce-message {
  color: #0AA457;
  background: rgba(10, 164, 87, 0.1);
  border-color: #0AA457;
  border: 2px solid;
  border-radius: 8px;
}
.woocommerce .woocommerce-message:before {
  color: #0AA457;
}
.woocommerce .woocommerce-info {
  color: #2F2F2F;
  background: #f5f9ff;
  border-color: #546f97;
  border: 2px solid;
  border-radius: 8px;
}
.woocommerce .woocommerce-info:before {
  color: #0a57a4;
}
.woocommerce .woocommerce-info a {
  color: #0a57a4;
  font-weight: 700;
}
.woocommerce .woocommerce-error {
  color: #DD0606;
  background: rgba(221, 6, 6, 0.15);
  border-color: #DD0606;
  border: 2px solid;
  border-radius: 8px;
}
.woocommerce .woocommerce-error a {
  margin: 0 20px;
}
.woocommerce .woocommerce-error a:hover {
  color: #ffffff;
}
.woocommerce .woocommerce-error:before {
  color: #DD0606;
}
.woocommerce form.woocommerce-form-login {
  -webkit-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  -moz-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  border: 0px;
  background: #ffffff;
  border-radius: 8px;
}
.woocommerce form.woocommerce-form-login .form-row input#username {
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  transition: all 150ms ease-in-out;
}
.woocommerce form.woocommerce-form-login .form-row input#username:focus, .woocommerce form.woocommerce-form-login .form-row input#username:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.woocommerce form.woocommerce-form-login .form-row input#password {
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  transition: all 150ms ease-in-out;
}
.woocommerce form.woocommerce-form-login .form-row input#password:focus, .woocommerce form.woocommerce-form-login .form-row input#password:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.woocommerce form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme {
  display: block;
}
.woocommerce form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme input[type=checkbox] {
  display: none;
}
.woocommerce form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.woocommerce form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme span {
  display: block;
  position: relative;
  padding-left: 30px;
}
.woocommerce form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme span:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #0a57a4;
  background: #ffffff;
}
.woocommerce form.woocommerce-form-login .form-row label.woocommerce-form-login__rememberme span:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 5px;
  content: "";
  width: 10px;
  height: 10px;
  background: #0a57a4;
  transition: all 150ms ease-in-out;
}
.woocommerce form.woocommerce-form-register {
  -webkit-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  -moz-box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  box-shadow: 0px 4px 5px rgba(112, 112, 112, 0.25);
  border: 0px;
  background: #ffffff;
  border-radius: 8px;
}
.woocommerce form.woocommerce-form-register .form-row input#reg_email {
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  transition: all 150ms ease-in-out;
}
.woocommerce form.woocommerce-form-register .form-row input#reg_email:focus, .woocommerce form.woocommerce-form-register .form-row input#reg_email:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.woocommerce form.woocommerce-form-register .woocommerce-privacy-policy-text {
  margin: 1em 0;
}
.woocommerce form.woocommerce-form-register .woocommerce-privacy-policy-text p {
  font: 16px/1.2em "proxima-nova", sans-serif;
  color: #707070;
}
.woocommerce form.checkout_coupon {
  border: 0px;
  background: #f5f9ff;
  border-radius: 8px;
}
.woocommerce p {
  font: 400 18px/1.4em "proxima-nova", sans-serif;
  color: #2F2F2F;
}
.woocommerce small {
  font: 400 12px/1em "proxima-nova", sans-serif;
  color: #F5F5F5 !important;
}
.woocommerce a {
  color: #93a6d4;
  text-decoration: none;
  transition: all 150ms ease-in-out;
}
.woocommerce a:hover {
  color: #172a5b;
}
.woocommerce a.remove {
  color: #DD0606;
}
.woocommerce h1, .woocommerce h2, .woocommerce h3, .woocommerce h4, .woocommerce h5 {
  font-weight: 800;
  font-style: italic;
  color: #0a57a4;
}
.woocommerce button.button {
  margin: 20px 0;
}
.woocommerce button.button:disabled {
  padding: 15px 30px !important;
  background: #707070;
  border-color: #707070;
  color: #ffffff;
}
.woocommerce a.checkout-button.button {
  margin: 20px 0;
}
.woocommerce .woocommerce-cart-form {
  border: 2px solid #f5f9ff;
}
.woocommerce .woocommerce-cart-form .shop_table {
  border: 0px;
  margin: 0 0;
  border-radius: 0px;
}
.woocommerce .woocommerce-cart-form .shop_table thead {
  background: #0a57a4;
  color: #ffffff;
}
.woocommerce .woocommerce-cart-form .shop_table td {
  border-top: 2px solid #f5f9ff;
  font: 600 20px/1.4em "proxima-nova", sans-serif;
  padding: 8px 8px;
  color: #2F2F2F;
}
.woocommerce .woocommerce-cart-form .shop_table td > a {
  color: #172a5b;
}
.woocommerce .woocommerce-cart-form .shop_table td .actions {
  display: flex;
  align-items: center;
}
.woocommerce .woocommerce-cart-form .shop_table td .coupon {
  display: flex;
  align-items: center;
}
.woocommerce .woocommerce-cart-form .shop_table td .coupon input.input-text {
  background: rgba(255, 255, 255, 0);
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  padding: 6px;
  width: 200px;
  font: 300 18px/1em "sofia-pro", sans-serif;
  color: #000000;
  margin-right: 16px;
  transition: all 150ms ease-in-out;
}
.woocommerce .woocommerce-cart-form .shop_table td .coupon input.input-text:focus, .woocommerce .woocommerce-cart-form .shop_table td .coupon input.input-text:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.woocommerce .woocommerce-cart-form .shop_table img {
  width: 100px;
}
.woocommerce table.my_account_orders {
  font-size: 18px;
}
.woocommerce table.my_account_orders tbody tr.woocommerce-orders-table__row td.woocommerce-orders-table__cell-order-status {
  font-weight: 700;
  color: #546f97;
}
.woocommerce table.my_account_orders tbody tr.woocommerce-orders-table__row td a.woocommerce-button {
  margin: 0 2px;
}

.woocommerce-Price-amount {
  font: 700 20px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
}

input.qty {
  background: rgba(255, 255, 255, 0);
  border: 2px solid #f5f9ff;
  border-radius: 8px;
  padding: 6px;
  font: 500 18px/1em "sofia-pro", sans-serif;
  color: #0a57a4;
  margin-right: 16px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 150ms ease-in-out;
  appearance: none;
  -webkit-appearance: none;
}
input.qty:focus, input.qty:active {
  outline: none;
  border-color: #172a5b;
}

.woocommerce-MyAccount-navigation ul li {
  position: relative;
  padding: 24px 24px 24px 70px;
  display: block;
  background: #f5f9ff;
}
.woocommerce-MyAccount-navigation ul li:nth-child(even) {
  background: #ffffff;
}
.woocommerce-MyAccount-navigation ul li:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  left: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #172a5b;
}
.woocommerce-MyAccount-navigation ul li a {
  font: 600 16px/1em "proxima-nova", sans-serif;
  text-decoration: none;
  color: #0a57a4;
  transition: all 150ms ease-in-out;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #172a5b;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout {
  padding: 20px;
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard:after {
  background-image: url("../images/account/dashboard.svg");
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders:after {
  background-image: url("../images/account/shopping-cart.svg");
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--gift-cards:after {
  background-image: url("../images/account/gift-card.svg");
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address:after {
  background-image: url("../images/account/home.svg");
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods:after {
  background-image: url("../images/account/credit-card-payment.svg");
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account:after {
  background-image: url("../images/account/settings.svg");
}
.woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--aff:after {
  background-image: url("../images/account/megaphone.svg");
}

.woocommerce-password-strength {
  margin: 12px 0;
  border-radius: 8px;
  color: #172a5b;
}
.woocommerce-password-strength.bad {
  background: #DD0606;
  border-color: #DD0606;
}
.woocommerce-password-strength.good {
  background: #93a6d4;
  border-color: #93a6d4;
}
.woocommerce-password-strength.strong {
  background: #0AA457;
  border-color: #0AA457;
}

.woocommerce-MyAccount-content h2 {
  margin-bottom: 12px;
}
.woocommerce-MyAccount-content p {
  margin: 0.5em 0;
}
.woocommerce-MyAccount-content p .order-number, .woocommerce-MyAccount-content p .order-date, .woocommerce-MyAccount-content p .order-status {
  font: 700 18px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  display: inline-block;
  background: #f5f9ff;
}
.woocommerce-MyAccount-content p .order-status {
  font-size: 22px;
}
.woocommerce-MyAccount-content .woocommerce-order-details .gform_wrapper {
  padding: 20px;
  background: #f5f9ff;
  border-radius: 24px;
}
.woocommerce-MyAccount-content .woocommerce-order-details .gform_wrapper div.gform_heading h3 {
  font: 800 28px/1em "proxima-nova", sans-serif;
  color: #172a5b;
  margin: 0 0 8px 0;
}
.woocommerce-MyAccount-content .woocommerce-order-details h2 {
  font: 700 24px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  margin: 20px 0 8px 0;
  font-style: italic;
}
.woocommerce-MyAccount-content .woocommerce-order-details table.shop_table {
  border: 2px solid #f5f9ff !important;
  border-radius: 0px;
  margin: 0 0 0 0;
  color: #2F2F2F;
  border-collapse: collapse;
}
.woocommerce-MyAccount-content .woocommerce-order-details table.shop_table thead {
  background: #0a57a4;
  color: #ffffff;
}
.woocommerce-MyAccount-content .woocommerce-order-details table.shop_table tr th {
  background: #0a57a4;
  color: #ffffff;
  border-color: #0a57a4;
}
.woocommerce-MyAccount-content .woocommerce-order-details table.shop_table .woocommerce-Price-amount {
  font: 700 22px/1em "proxima-nova", sans-serif;
}
.woocommerce-MyAccount-content .woocommerce-customer-details address {
  border: 2px solid #f5f9ff !important;
  border-radius: 0px;
  margin: 0 0 0 0;
  color: #2F2F2F;
  border-collapse: collapse;
  padding: 8px 12px;
}
.woocommerce-MyAccount-content .woocommerce-customer-details h2 {
  font: 700 24px/1em "proxima-nova", sans-serif;
  color: #0a57a4;
  margin-bottom: 8px;
  font-style: italic;
}
.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-customer-details--email, .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-customer-details--phone {
  color: #172a5b;
}
.woocommerce-MyAccount-content .woocommerce-info {
  color: #2F2F2F;
  background: #f5f9ff;
  border-color: #546f97;
  border: 2px solid;
  border-radius: 8px;
}
.woocommerce-MyAccount-content .woocommerce-info:before {
  color: #0a57a4;
}
.woocommerce-MyAccount-content .woocommerce-info a {
  color: #ffffff !important;
}
.woocommerce-MyAccount-content table.woocommerce-orders-table, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods {
  border: 2px solid #f5f9ff !important;
  border-radius: 0px;
  margin: 0 0 20px 0;
  color: #2F2F2F;
  border-collapse: collapse;
}
.woocommerce-MyAccount-content table.woocommerce-orders-table thead, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods thead {
  background: #0a57a4;
  color: #ffffff;
}
.addresses {
  margin: 40px -15px;
}
.addresses .edit {
  color: #ffffff;
}
.addresses .title h3 {
  padding-right: 20px;
}

.form-row label {
  font: 300 16px/1em "sofia-pro", sans-serif;
  color: #a2a1a1;
}
.form-row input {
  background: rgba(255, 255, 255, 0);
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  padding-bottom: 6px;
  width: 100%;
  font: 300 18px/1em "sofia-pro", sans-serif;
  color: #000000;
  transition: all 150ms ease-in-out;
}
.form-row input:focus, .form-row input:active {
  outline: none;
  border-bottom-color: #0a57a4;
}
.form-row textarea {
  border-width: 0 0 4px 0;
  border-bottom-color: #707070;
  padding: 12px;
  resize: vertical;
  font: 300 18px/1em "sofia-pro", sans-serif;
  transition: all 150ms ease-in-out;
}
.form-row textarea:focus, .form-row textarea:active {
  outline: none;
  border-bottom-color: #0a57a4;
}

fieldset {
  -webkit-box-shadow: 0px 4px 10px rgba(112, 112, 112, 0.2);
  -moz-box-shadow: 0px 4px 10px rgba(112, 112, 112, 0.2);
  box-shadow: 0px 4px 10px rgba(112, 112, 112, 0.2);
  position: relative;
  border: 0px;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  margin: 20px 0;
}
fieldset legend {
  position: relative;
  top: 30px;
  font-weight: 700;
  font-style: italic;
  color: #2F2F2F;
}

.woocommerce-cart .cart-collaterals {
  margin: 40px 0;
}
.woocommerce-cart .cart-collaterals h2 {
  margin-bottom: 12px;
}
.woocommerce-cart .cart-collaterals table.shop_table {
  border: 2px solid #f5f9ff !important;
  border-radius: 0px;
  margin: 0 0 0 0;
  color: #2F2F2F;
}
.woocommerce-cart .cart-collaterals table.shop_table td {
  border-top: 2px solid #f5f9ff;
}
.woocommerce-cart .cart-collaterals table.shop_table tr.order-total {
  color: #0a57a4;
}
.woocommerce-cart .cart-collaterals table.shop_table tr th {
  background: #0a57a4;
  color: #ffffff;
  border-color: #0a57a4;
}
.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
  text-align: right;
}

#customer_details {
  margin-bottom: 40px;
}

.woocommerce-checkout-review-order table.shop_table {
  border: 2px solid #f5f9ff !important;
  border-radius: 0px;
  margin: 20px 0 40px 0;
  border-collapse: collapse;
  color: #2F2F2F;
}
.woocommerce-checkout-review-order table.shop_table tr.order-total {
  color: #0a57a4;
}
.woocommerce-checkout-review-order table.shop_table tr td {
  border-top: 2px solid #f5f9ff;
}
.woocommerce-checkout-review-order table.shop_table tr th {
  background: #0a57a4;
  color: #ffffff;
  border-color: #0a57a4;
}

.product-category-block {
  margin: 40px 0;
}
.product-category-block .product-category-info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.product-category-block .product-category-info:last-child {
  margin-bottom: 0;
}
.product-category-block .product-category-info h4 {
  font: 600 22px/1em "proxima-nova", sans-serif;
  color: #93a6d4;
  font-style: normal;
}
.product-category-block .product-category-info h4:last-child {
  margin-bottom: 0px;
}
.product-category-block .product-category-info span {
  padding-left: 8px;
  font: 300 18px/1em "proxima-nova", sans-serif;
  text-align: left;
  color: #707070;
}

.archive .product-category-block {
  margin: 12px 0;
}
.archive .product-category-block .product-category-info:last-child {
  margin-bottom: 0;
}
.archive .product-category-block .product-category-info h4 {
  font: 600 16px/1em "proxima-nova", sans-serif;
  color: #93a6d4;
  font-style: normal;
  display: inline-block;
  vertical-align: middle;
}
.archive .product-category-block .product-category-info h4:last-child {
  margin-bottom: 0px;
}
.archive .product-category-block .product-category-info span {
  font-size: 16px;
  display: block;
  vertical-align: middle;
  color: #707070;
}

.woocommerce-multi-currency.wmc-price-switcher {
  width: calc(100% - 400px);
  margin: 0 0;
}
.woocommerce-multi-currency.wmc-price-switcher .wmc-current-currency {
  padding: 0 20px 0 0;
}
.woocommerce-multi-currency.wmc-price-switcher .wmc-current-currency i {
  transform: scale(0.5) !important;
}
.woocommerce-multi-currency.wmc-price-switcher a {
  align-items: center;
  background: #172a5b !important;
  padding: 6px;
  border-radius: 14px;
}
.woocommerce-multi-currency.wmc-price-switcher a span {
  padding: 0 4px 0 0;
}
.woocommerce-multi-currency.wmc-price-switcher .wmc-sub-currency .wmc-currency a.wmc-currency-redirect i {
  transform: scale(0.6) !important;
}

.sidebar a.widget-filter {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
  position: relative;
  text-decoration: none;
  transition: all 150ms ease-in-out;
  font: 600 22px/1em "proxima-nova", sans-serif;
  color: #ffffff;
  background: #172a5b;
  margin-bottom: 20px;
  padding: 12px 20px;
  border-radius: 6px;
  max-width: 180px;
  text-align: right;
}
.sidebar a.widget-filter:before {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 16px;
  background-image: url("../images/icon-filter.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.sidebar a.widget-filter:hover {
  background: #93a6d4;
  color: #ffffff;
}
.sidebar a.widget-filter:focus, .sidebar a.widget-filter:active {
  outline: none;
}

.woocommerce-error li, .woocommerce-info li, .woocommerce-message li {
  padding-left: 35px !important;
}

@media (max-width: 1199px) {
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox {
    display: inline-block;
    color: #2F2F2F;
    padding-left: 30px;
    font: 300 16px/2em "sofia-pro", sans-serif;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional {
    display: inline-block;
    padding-left: 0px;
    line-height: 1em;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:before {
    top: -33px;
    left: -111px;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:after {
    top: -28px;
    left: -237px;
  }
}
@media (max-width: 1024px) {
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox {
    display: inline-block;
    color: #2F2F2F;
    padding-left: 30px;
    font: 300 16px/2em "sofia-pro", sans-serif;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional {
    display: inline-block;
    padding-left: 0px;
    line-height: 1em;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:before {
    top: -33px;
    left: -338px;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:after {
    top: -28px;
    left: -333px;
  }
}
@media (max-width: 1023px) {
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox {
    display: inline-block;
    color: #2F2F2F;
    padding-left: 30px;
    font: 300 16px/2em "sofia-pro", sans-serif;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional {
    display: inline-block;
    padding-left: 0px;
    line-height: 1em;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:before {
    top: -33px;
    left: -356px;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:after {
    top: -28px;
    left: -351px;
  }
}
@media (max-width: 768px) {
  .sidebar a.widget-filter {
    display: block;
  }
  .woocommerce-Price-amount {
    font-size: 18px;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox {
    display: inline-block;
    color: #2F2F2F;
    padding-left: 30px;
    font: 300 16px/2em "sofia-pro", sans-serif;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional {
    display: inline-block;
    padding-left: 0px;
    line-height: 1em;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:before {
    top: -65px;
    left: -30px;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:after {
    top: -60px;
    left: -25px;
  }
  .woocommerce .widget {
    display: none;
  }
  .woocommerce .widget.active {
    display: block;
  }
  .woocommerce div.product form.cart {
    margin: 40px 0;
    flex-wrap: wrap;
  }
  .woocommerce div.product div.images.woocommerce-product-gallery {
    margin-bottom: 40px;
  }
  .woocommerce div.product div.summary .product_number {
    font-size: 16px;
  }
  .woocommerce div.product div.summary .product_title {
    font-size: 28px;
  }
  .woocommerce .data-content {
    padding: 20px;
  }
  .woocommerce ul.products li.product .single-product-buttons {
    justify-content: center;
  }
  .woocommerce ul.products li.product .product_number {
    font-size: 14px;
  }
  .woocommerce ul.products li.product a img {
    margin-bottom: 20px;
  }
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    padding: 12px 0;
    font-size: 16px;
  }
  .woocommerce .woocommerce-cart-form .shop_table td.product-name a {
    display: inline-block;
    text-align: left !important;
  }
  .archive .product-category-block {
    margin: 0 0;
  }
  .archive .product-category-block .product-category-info h4 {
    font-size: 14px;
  }
  .archive .product-category-block .product-category-info span {
    font-size: 14px;
  }
  .archive .product-category-block .product-category-info .the-content {
    font-size: 14px;
  }
  .product-category-block {
    margin: 20px 0;
  }
  .product-category-block .product-category-info h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  input.qty {
    border-color: #0a57a4;
  }
  .single-product .product-category-block .product-category-info {
    display: flex;
  }
  .single-product .product-category-block .product-category-info h4 {
    width: 50%;
  }
  .single-product .product-category-block .product-category-info span {
    width: 50%;
  }
  .row.background:before, .background.col2-set:before {
    top: 250px;
  }
  .woocommerce nav.woocommerce-pagination .page-numbers {
    margin: 0 8px;
  }
  .woocommerce .quantity input.qty {
    width: 3em;
  }
  .woocommerce ul.products li.product {
    margin: 15px 0 !important;
  }
  .woocommerce ul.products li.product a img {
    height: 160px !important;
  }
  .woocommerce div.price-unit {
    display: block;
  }
  .woocommerce div.price-unit .volume-unit {
    font-size: 14px;
    padding-left: 0px;
  }
  .woocommerce div.product form.cart {
    -webkit-box-shadow: 0px 0px 10px rgba(10, 87, 164, 0.5);
    -moz-box-shadow: 0px 0px 10px rgba(10, 87, 164, 0.5);
    box-shadow: 0px 0px 10px rgba(10, 87, 164, 0.5);
    background: rgba(245, 249, 255, 0.95);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px 20px;
    z-index: 10;
    margin: 0px;
  }
  .woocommerce div.product form.cart:before {
    display: none;
  }
  .woocommerce div.product form.cart .volume-unit {
    font-size: 16px;
  }
  .woocommerce div.product form.cart button.single_add_to_cart_button {
    margin-right: 0px;
  }
  .woocommerce-Price-amount {
    font-size: 16px;
  }
  .product-category-block .product-category-info {
    display: block;
    margin-bottom: 6px;
    line-height: 1em;
  }
  .product-category-block .product-category-info span {
    padding-left: 0px;
  }
}
@media (max-width: 475px) {
  .woocommerce header.woocommerce-products-header {
    display: block;
    margin-bottom: 40px;
  }
  .woocommerce ul.products li.product {
    padding: 12px;
  }
  .woocommerce ul.products li.product .single-product-buttons {
    display: block;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox {
    display: inline-block;
    color: #2F2F2F;
    padding-left: 30px;
    font: 300 16px/2em "sofia-pro", sans-serif;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional {
    display: inline-block;
    padding-left: 0px;
    line-height: 1em;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:before {
    top: -160px;
    left: -30px;
  }
  .woocommerce #payment .form-row.place-order #mailpoet_woocommerce_checkout_optin_field label.checkbox span.optional:after {
    top: -155px;
    left: -25px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 22px;
  }
  h5 {
    font-size: 18px;
  }
  .gform_wrapper .gform_body ul li table {
    margin: 10px 0;
  }
  .gform_wrapper .gform_body ul li table tbody tr td {
    padding: 14px 20px;
  }
  .gform_wrapper .gform_body ul li table tbody tr td.gfield_list_icons {
    text-align: right;
  }
  .gform_wrapper .gform_body ul li table tbody tr td.gfield_list_icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    width: 18px;
  }
  .page-template-static-products .content-section table thead tr th {
    padding: 5px 8px;
  }
  .page-template-static-products .content-section table thead tr th:first-child {
    padding-left: 20px;
  }
  .page-template-static-products .content-section table thead tr th h5 {
    font-weight: 700;
  }
  .page-template-static-products .content-section table thead tr th p {
    font-size: 12px;
  }
  .page-template-static-products .content-section table tbody tr td {
    padding: 5px 8px;
    line-height: 1.2em;
  }
  .page-template-static-products .content-section table tbody tr td:first-child {
    padding-left: 20px;
  }
  .page-template-static-products .content-section table tbody tr td p {
    font-size: 15px;
  }
  .gform_wrapper .gform_heading h3 {
    font-size: 24px;
  }
  .the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6 {
    margin: 28px 0 12px 0;
  }
  .the-content h1 {
    font-size: 32px;
  }
  .the-content h2 {
    font-size: 28px;
  }
  .the-content h3 {
    font-size: 24px;
  }
  .the-content h4, .the-content h5, .the-content h6 {
    font-size: 20px;
  }
  .the-content blockquote {
    font-size: 24px;
    margin: 40px;
  }
  .page-template-default-page .the-content h1, .page-template-default-page .the-content h2, .page-template-default-page .the-content h3, .page-template-default-page .the-content h4, .page-template-default-page .the-content h5, .page-template-default-page .the-content h6 {
    margin: 28px 0 12px 0;
  }
  .page-template-default-page .the-content h1 {
    font-size: 32px;
  }
  .page-template-default-page .the-content h2 {
    font-size: 28px;
  }
  .page-template-default-page .the-content h3 {
    font-size: 24px;
  }
  .page-template-default-page .the-content h4, .page-template-default-page .the-content h5, .page-template-default-page .the-content h6 {
    font-size: 20px;
  }
  .btn, .gform_wrapper .gform_footer input, .error404 .wrapper > .the-content a, .woocommerce .widget button.wcpf-button, .woocommerce #payment .form-row.place-order button#place_order, .woocommerce p.return-to-shop a, .woocommerce ul.products li.product a.button, .woocommerce .woocommerce-message a.button, .woocommerce .woocommerce-error a .wc-backward, .woocommerce button.button, .woocommerce a.checkout-button.button, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content a.button, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button, .addresses .edit {
    padding: 12px;
  }
  .page-top {
    padding: 0 0 80px 0;
  }
  .board {
    padding: 60px 0 0 0;
  }
  .sidebar h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .sidebar.service-bar {
    padding: 40px;
  }
  .sidebar.service-bar h3 {
    margin-bottom: 20px;
  }
  .sidebar.service-bar li {
    margin-bottom: 18px;
  }
  .sidebar.service-bar li:last-child {
    margin-bottom: 0px;
  }
  .related-articles a {
    font-size: 16px;
    line-height: 1.2em;
  }
  .blog h5.late {
    margin-top: 40px;
  }
  .newsletter {
    padding: 24px;
  }
  #footer .footer-inner #site-logo svg {
    width: 200px;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 30px;
  }
  h4 {
    font-size: 20px;
  }
  .btn, .gform_wrapper .gform_footer input, .error404 .wrapper > .the-content a, .woocommerce .widget button.wcpf-button, .woocommerce #payment .form-row.place-order button#place_order, .woocommerce p.return-to-shop a, .woocommerce ul.products li.product a.button, .woocommerce .woocommerce-message a.button, .woocommerce .woocommerce-error a .wc-backward, .woocommerce button.button, .woocommerce a.checkout-button.button, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content a.button, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button, .addresses .edit {
    font-size: 14px;
  }
  .banner {
    padding: 200px 0 80px 0;
  }
  .featured-blog-section h5:after {
    margin: 40px auto;
  }
  .page-top {
    padding: 0 0 60px 0;
  }
  .board h2 {
    margin-bottom: 40px;
  }
  .page-template-contact h1 {
    margin-bottom: 40px;
  }
  .page-template-contact h2 {
    margin-bottom: 8px;
  }
  .phone-numbers .phone-title {
    font-size: 16px;
  }
  .phone-numbers a {
    font-size: 16px;
  }
  .sidebar.blog-bar {
    padding-left: 0px;
  }
  .page-template-distributors h1 {
    color: #0a57a4;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 80px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row {
    padding: 14px 12px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 a {
    font-size: 18px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 .tel {
    font-size: 16px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .flags .flag > img {
    width: 40px;
  }
}
@media (max-width: 1023px) {
  .page-template-static-products .content-section table thead {
    background: #0a57a4;
    color: #ffffff;
  }
  .page-template-static-products .content-section table thead tr th h5 {
    font-size: 16px;
  }
  .page-template-static-products .content-section table thead tr th p {
    font-size: 12px;
  }
  .page-template-static-products .content-section table tbody tr td p {
    font-size: 14px;
  }
  #site-nav {
    display: none;
  }
  .burger-block {
    display: block;
  }
  #site-burger {
    display: block;
    margin-left: 20px;
  }
  .menus {
    margin-left: auto;
  }
  #inner-nav {
    display: block;
  }
}
@media (max-width: 768px) {
  br {
    display: none;
  }
  #site-logo svg {
    width: 200px;
  }
  .page-top {
    padding: 0 0 20px 0;
  }
  .service-feature-img {
    margin-top: 20px;
    text-align: center;
  }
  .breadcrumbs {
    line-height: 1.4em;
    font-size: 14px;
  }
  .sidebar {
    margin: 20px 0;
  }
  .fancybox-slide .directors-block {
    padding: 0px;
  }
  .fancybox-slide .directors-block .directors-block-content h3 {
    font-size: 24px;
  }
  .fancybox-slide .directors-block .directors-block-content .the-content {
    font-size: 16px;
  }
  .directors-block {
    padding: 40px 20px;
  }
  .directors-block .directors-block-content h3 {
    font-size: 24px;
  }
  .directors-block .directors-block-content .the-content {
    font-size: 16px;
  }
  #footer .footer-inner h4 {
    margin-bottom: 12px;
  }
  #footer .footer-inner .footer-news, #footer .footer-inner .footer-contact {
    margin: 20px auto;
  }
  #footer .footer-inner .social-icons {
    margin-bottom: 1em;
  }
  #footer .footer-inner #footer-nav ul {
    margin: 20px 0;
  }
  .teaser-block {
    padding: 60px 40px;
  }
  .google-map {
    margin: 0 auto;
  }
  .dropdown .dropdown-content .the-content {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .bread-bar {
    display: block;
  }
  #site-logo svg {
    width: 160px;
  }
  #site-burger {
    margin-left: 12px;
  }
  .menus #user-nav li .sign-in {
    display: none;
  }
}
@media (max-width: 575px) {
  .gform_wrapper .gform_body ul li table tbody tr {
    display: flex;
    padding: 0 0 !important;
  }
  .gform_wrapper .gform_body ul li table tbody tr td {
    display: inline-block !important;
    padding: 14px;
    margin-bottom: 0;
  }
  .gform_wrapper .gform_body ul li table tbody tr td.gfield_list_cell {
    width: 80%;
  }
  .gform_wrapper .gform_body ul li table tbody tr td.gfield_list_icons {
    width: 20%;
  }
  .gform_wrapper .gform_body ul li table tbody tr td.gfield_list_icons a {
    height: 16px;
    width: 16px;
    margin: 2px auto;
  }
  .page-template-static-products .content-section table {
    margin: 30px 0;
  }
  .page-template-static-products .content-section table thead {
    display: none;
  }
  .page-template-static-products .content-section table tbody tr {
    display: block;
    width: 100%;
    padding: 16px 10px;
  }
  .page-template-static-products .content-section table tbody tr td {
    padding: 2px 0;
    display: block;
    margin-bottom: 8px;
  }
  .page-template-static-products .content-section table tbody tr td:first-child {
    padding-left: 0;
  }
  .page-template-static-products .content-section table tbody tr td:last-child {
    margin-bottom: 0;
  }
  .page-template-static-products .content-section table tbody tr td .mobile-only {
    display: inline-block;
    font-weight: 600;
    margin-right: 4px;
    font-size: 16px;
    color: #2F2F2F;
  }
  .page-template-static-products .content-section table tbody tr td.documents .mobile-only {
    display: block;
  }
  .page-template-static-products .content-section table tbody tr td.documents p {
    display: block;
  }
  .page-template-static-products .content-section table tbody tr td p {
    font-size: 16px;
    color: #0a57a4;
  }
  .page-template-static-products .content-section table tbody tr td .prices {
    display: block;
  }
  .page-template-static-products .content-section table tbody tr td .prices p {
    margin: 0 0;
    display: block;
  }
}
@media (max-width: 475px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h5 {
    font-size: 16px;
  }
  .btn, .gform_wrapper .gform_footer input, .error404 .wrapper > .the-content a, .woocommerce .widget button.wcpf-button, .woocommerce #payment .form-row.place-order button#place_order, .woocommerce p.return-to-shop a, .woocommerce ul.products li.product a.button, .woocommerce .woocommerce-message a.button, .woocommerce .woocommerce-error a .wc-backward, .woocommerce button.button, .woocommerce a.checkout-button.button, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content a.button, .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button, .addresses .edit {
    font-size: 12px;
  }
  .the-content ul {
    padding-left: 0px;
  }
  .title .the-title {
    font-size: 28px;
    line-height: 1.08em;
  }
  .blog-share .share-accordion.active {
    right: -10px;
    top: 40px;
    padding: 16px 8px;
  }
  .blog-share .share-accordion.active li a svg {
    height: 24px;
    width: 24px;
  }
  #inner-nav {
    width: 80%;
  }
  #inner-nav #user-nav .sign-in {
    font-size: 18px;
  }
  .banner-search {
    margin: 40px 0;
  }
  .banner-search .search-form #search {
    font-size: 14px;
  }
  .dropdown .dropdown-content .the-content {
    max-width: 260px;
    margin-top: 18px;
  }
  .dropdown .dropdown-content .open-drop svg {
    height: 16px;
    width: 16px;
  }
  .page-template-distributors h1 {
    color: #0a57a4;
    font-style: italic;
    font-weight: 700;
    margin-bottom: 80px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta {
    justify-content: flex-start;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 a {
    font-size: 16px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .meta h4 .tel {
    margin-top: 4px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .flags {
    justify-content: flex-start;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .flags .flag {
    margin: 0 0;
    margin-right: 4px;
  }
  .page-template-distributors .continent-listing .continent-parent .distributor-rows .distributor-row .flags .flag:last-child {
    margin-right: 0px;
  }
  .banner-search .search-form:before {
    left: calc(50% + 120px);
  }
  .banner-search .search-form input[type=text] {
    max-width: 100%;
  }
  .ui-menu {
    width: 300px;
  }
  #footer .footer-inner {
    text-align: center;
    padding: 40px 0;
  }
  #footer .footer-inner h4 {
    text-align: center;
  }
  #footer .footer-inner .footer-news, #footer .footer-inner .footer-contact {
    text-align: center;
  }
  #footer .footer-inner .social-icons ul {
    justify-content: center;
  }
  #footer .footer-inner #footer-nav ul {
    text-align: center;
  }
  .teaser-block {
    padding: 40px;
  }
  .teaser-block .teaser-block-content h2 {
    font-size: 24px;
  }
  .teaser-block .teaser-block-content > img {
    height: 80px;
  }
  .overview .product-overviews .overview-title h4 {
    text-align: left;
    padding-bottom: 12px;
  }
  .featured-blog-block .featured-block-content h4 {
    margin-top: 20px;
  }
  .the-product-btns {
    display: block;
    text-align: center;
  }
  .the-product-btns a {
    font-size: 14px;
  }
  .the-product-btns .btn, .the-product-btns .gform_wrapper .gform_footer input, .gform_wrapper .gform_footer .the-product-btns input, .the-product-btns .error404 .wrapper > .the-content a, .error404 .wrapper > .the-content .the-product-btns a, .the-product-btns .woocommerce .widget button.wcpf-button, .woocommerce .widget .the-product-btns button.wcpf-button, .the-product-btns .woocommerce #payment .form-row.place-order button#place_order, .woocommerce #payment .form-row.place-order .the-product-btns button#place_order, .the-product-btns .woocommerce p.return-to-shop a, .woocommerce p.return-to-shop .the-product-btns a, .the-product-btns .woocommerce ul.products li.product a.button, .woocommerce ul.products li.product .the-product-btns a.button, .the-product-btns .woocommerce .woocommerce-message a.button, .woocommerce .woocommerce-message .the-product-btns a.button, .the-product-btns .woocommerce .woocommerce-error a .wc-backward, .woocommerce .woocommerce-error a .the-product-btns .wc-backward, .the-product-btns .woocommerce button.button, .woocommerce .the-product-btns button.button, .the-product-btns .woocommerce a.checkout-button.button, .woocommerce .the-product-btns a.checkout-button.button, .the-product-btns .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a, .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout .the-product-btns a, .the-product-btns .woocommerce-MyAccount-content .woocommerce-info a, .woocommerce-MyAccount-content .woocommerce-info .the-product-btns a, .the-product-btns .woocommerce-MyAccount-content a.button, .woocommerce-MyAccount-content .the-product-btns a.button, .the-product-btns .woocommerce-MyAccount-content table.woocommerce-orders-table td a.button, .woocommerce-MyAccount-content table.woocommerce-orders-table td .the-product-btns a.button, .the-product-btns .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td a.button, .woocommerce-MyAccount-content table.woocommerce-MyAccount-paymentMethods td .the-product-btns a.button, .the-product-btns .addresses .edit, .addresses .the-product-btns .edit {
    font-size: 14px;
    margin: 4px 0 !important;
  }
  .the-product-btns .button {
    font-size: 14px;
    margin: 4px 0 !important;
    justify-content: center;
  }
  .gform_wrapper .gform_footer input {
    font: 500 18px/1em "proxima-nova", sans-serif;
    padding: 14px 24px;
  }
  #newsletter-form {
    max-width: 340px;
    width: 100%;
    padding: 0 20px;
  }
}

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