:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated, .faux-search .field.text .cursor {
  -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, .faux-search .field.text .cursor {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1, .faux-search .field.text .animate__repeat-1.cursor {
  -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, .faux-search .field.text .animate__repeat-2.cursor {
  -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, .faux-search .field.text .animate__repeat-3.cursor {
  -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, .faux-search .field.text .animate__delay-1s.cursor {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s, .faux-search .field.text .animate__delay-2s.cursor {
  -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, .faux-search .field.text .animate__delay-3s.cursor {
  -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, .faux-search .field.text .animate__delay-4s.cursor {
  -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, .faux-search .field.text .animate__delay-5s.cursor {
  -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, .faux-search .field.text .animate__faster.cursor {
  -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, .faux-search .field.text .animate__fast.cursor {
  -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, .faux-search .field.text .animate__slow.cursor {
  -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, .faux-search .field.text .animate__slower.cursor {
  -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, .faux-search .field.text .cursor {
    -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], .faux-search .field.text [class*=Out].cursor {
    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, .faux-search .field.text .cursor {
  -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, .faux-search .field.text .animate__flip.cursor {
  -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 {
  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, .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 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -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
 */
/*
 * Animated underline
 */
/*
 * Drop shadows
 */
/*
 * Remove mobile/iOS default buttons
 */
/*
 * FadeInOut animation loop
 */
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-Thin.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-Thin.woff") format("woff"), url("../fonts/akrobat/Akrobat-Thin.eot") format("embedded-opentype");
  font-weight: 100;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-ExtraLight.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-ExtraLight.woff") format("woff"), url("../fonts/akrobat/Akrobat-ExtraLight.eot") format("embedded-opentype");
  font-weight: 200;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-Light.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-Light.woff") format("woff"), url("../fonts/akrobat/Akrobat-Light.eot") format("embedded-opentype");
  font-weight: 300;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-Regular.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-Regular.woff") format("woff"), url("../fonts/akrobat/Akrobat-Regular.eot") format("embedded-opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-SemiBold.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-SemiBold.woff") format("woff"), url("../fonts/akrobat/Akrobat-SemiBold.eot") format("embedded-opentype");
  font-weight: 500;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-Bold.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-Bold.woff") format("woff"), url("../fonts/akrobat/Akrobat-Bold.eot") format("embedded-opentype");
  font-weight: 700;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-ExtraBold.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-ExtraBold.woff") format("woff"), url("../fonts/akrobat/Akrobat-ExtraBold.eot") format("embedded-opentype");
  font-weight: 800;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/akrobat/Akrobat-Black.woff2") format("woff2"), url("../fonts/akrobat/Akrobat-Black.woff") format("woff"), url("../fonts/akrobat/Akrobat-Black.eot") format("embedded-opentype");
  font-weight: 900;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

html, body {
  font: 20px/1.65em "poppins", sans-serif;
  color: #000000;
}

a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: all 250ms ease-in-out;
}

.buttons {
  display: inline-flex;
}
.buttons .btn, .buttons .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .buttons button, .buttons .activity-buttons .bx_bn_button, .activity-buttons .buttons .bx_bn_button, .buttons #header nav > ul > li.has-btn > a, #header .buttons nav > ul > li.has-btn > a {
  margin-left: 20px;
}
.buttons .btn:first-child, .buttons .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button:first-child, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .buttons button:first-child, .buttons .activity-buttons .bx_bn_button:first-child, .activity-buttons .buttons .bx_bn_button:first-child, .buttons #header nav > ul > li.has-btn > a:first-child, #header .buttons nav > ul > li.has-btn > a:first-child {
  margin-left: 0;
}

.btn, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button, .activity-buttons .bx_bn_button, #header nav > ul > li.has-btn > a {
  font: normal 20px/1em "poppins", sans-serif;
  display: inline-flex;
  border: 0;
  border-radius: 30px;
  color: #FFFFFF;
  transition: all 250ms ease-in-out;
  padding: 15px 20px;
  overflow: hidden;
  -webkit-appearance: none;
  cursor: pointer;
}
.btn:after, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button:after, .activity-buttons .bx_bn_button:after, #header nav > ul > li.has-btn > a:after {
  display: none;
}
.btn:before, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button:before, .activity-buttons .bx_bn_button:before, #header nav > ul > li.has-btn > a:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: all 250ms ease-in-out;
  mix-blend-mode: overlay;
}
.btn:hover:before, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button:hover:before, .activity-buttons .bx_bn_button:hover:before, #header nav > ul > li.has-btn > a:hover:before {
  opacity: 1;
}
.btn > span, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button > span, .activity-buttons .bx_bn_button > span, #header nav > ul > li.has-btn > a > span {
  position: relative;
  z-index: 2;
}
.btn.primary, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button, .page-template-activities-print .the-content h1.btn, .page-template-activities-print .the-content h2.btn, .page-template-activities-print .the-content h3.btn, .page-template-activities-print .the-content h4.btn, .page-template-activities-print .the-content h5.btn, .page-template-activities-print .the-content h6.btn, .activity-buttons .bx_bn_button, #header nav > ul > li.has-btn > a {
  background: var(--color-primary);
}
.btn.primary svg path, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button svg path, .page-template-activities-print .the-content h1.btn svg path, .page-template-activities-print .the-content h2.btn svg path, .page-template-activities-print .the-content h3.btn svg path, .page-template-activities-print .the-content h4.btn svg path, .page-template-activities-print .the-content h5.btn svg path, .page-template-activities-print .the-content h6.btn svg path, .activity-buttons .bx_bn_button svg path, #header nav > ul > li.has-btn > a svg path {
  fill: #FFFFFF;
}
.btn.secondary, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.secondary, .activity-buttons .secondary.bx_bn_button, #header nav > ul > li.has-btn > a.secondary {
  background: var(--color-secondary);
}
.btn.secondary svg path, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.secondary svg path, .activity-buttons .secondary.bx_bn_button svg path, #header nav > ul > li.has-btn > a.secondary svg path {
  fill: #FFFFFF;
}
.btn.tertiary, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.tertiary, .activity-buttons .tertiary.bx_bn_button, #header nav > ul > li.has-btn > a.tertiary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn.tertiary svg path, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.tertiary svg path, .activity-buttons .tertiary.bx_bn_button svg path, #header nav > ul > li.has-btn > a.tertiary svg path, .btn.tertiary svg rect, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.tertiary svg rect, .activity-buttons .tertiary.bx_bn_button svg rect, #header nav > ul > li.has-btn > a.tertiary svg rect {
  stroke: #FFFFFF;
}
.btn.has-icon, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.has-icon, .activity-buttons .has-icon.bx_bn_button, #header nav > ul > li.has-btn > a.has-icon {
  align-items: center;
  justify-content: space-between;
}
.btn.has-icon svg, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.has-icon svg, .activity-buttons .has-icon.bx_bn_button svg, #header nav > ul > li.has-btn > a.has-icon svg {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}
.btn.has-icon span, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.has-icon span, .activity-buttons .has-icon.bx_bn_button span, #header nav > ul > li.has-btn > a.has-icon span {
  flex: 1;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  max-width: 1700px;
  margin: 0 auto;
}
.wrapper.large {
  width: 100%;
  max-width: none;
  padding: 0 50px;
}
.wrapper.big {
  max-width: 1630px;
}
.wrapper.medium {
  max-width: 1350px;
}
.wrapper.small {
  max-width: 960px;
}

.no-top {
  margin-top: 0 !important;
}

#header {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 10px 0;
  background: #FFFFFF;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 6px;
  transition: all 250ms ease-in-out;
}
#header.shrink {
  height: 80px;
}
#header.shrink #header-logo {
  height: 60px;
}
#header.active .mobile-nav-trigger svg:first-child {
  display: none;
}
#header.active .mobile-nav-trigger svg:last-child {
  display: block;
}
#header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header #header-logo {
  max-width: 70%;
  display: flex;
  align-items: center;
  height: 135px;
  transition: all 250ms ease-in-out;
}
#header #header-logo img {
  max-height: 100%;
}
#header nav {
  flex: 1;
  padding-left: 50px;
}
#header nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header nav > ul > li {
  margin-right: 50px;
}
#header nav > ul > li:last-child {
  margin-right: 0;
}
#header nav > ul > li.current-menu-item > a {
  color: var(--color-primary);
}
#header nav > ul > li.current-menu-item > a:after {
  transform: scaleX(1);
}
#header nav > ul > li.has-btn > a span {
  color: white !important;
}
#header nav > ul > li a {
  color: #000000;
}
#header nav > ul > li > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 250ms ease-in-out;
}
#header nav > ul > li > a:hover:after {
  transform: scaleX(1);
}
#header .mobile-nav-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
#header .mobile-nav-trigger svg {
  display: block;
  width: 40px;
  height: 40px;
}
#header .mobile-nav-trigger svg:last-child {
  display: none;
  width: 20px;
  height: 20px;
}
#header .mobile-nav-trigger svg path {
  fill: var(--color-primary);
}

#mobile-nav {
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
  width: 100%;
  max-width: 340px;
  background: var(--color-primary);
  color: #FFFFFF;
  z-index: 3;
  transition: all 250ms ease-in-out;
  transform: translateX(100%);
}
#mobile-nav.active {
  transform: translateX(0);
}
#mobile-nav > ul {
  padding: 15px 0;
}
#mobile-nav > ul > li {
  padding: 15px;
  font: 800 20px/1.16em "poppins", sans-serif;
}

#footer {
  position: relative;
  z-index: 1;
  background: #F6F6F6;
  padding: 75px 0;
  font-family: "poppins", sans-serif;
}
#footer .footer-logo {
  position: relative;
  display: block;
  text-align: center;
}
#footer .footer-logo:before {
  content: "";
  display: block;
  padding-top: 40%;
}
#footer .footer-logo > a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#footer .footer-logo img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#footer .footer-logo p {
  font-size: 24px;
  margin-top: 20px;
}
#footer .footer-logo p a {
  color: var(--color-primary);
}
#footer .footer-logo p a:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 250ms ease-in-out;
}
#footer .footer-logo p a:hover:after {
  transform: scaleX(1);
}
#footer .footer-cities {
  font: 600 16px/1.65em "poppins", sans-serif;
}
#footer .footer-cities a:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 250ms ease-in-out;
}
#footer .footer-cities a:hover:after {
  transform: scaleX(1);
}
#footer .social-btn {
  display: flex;
  justify-content: flex-end;
}
#footer .social-icons {
  margin: 55px 0 0 0;
  justify-content: flex-end;
}
#footer #copyright {
  font: 17px/1.2em "poppins", sans-serif;
  margin-top: 40px;
  text-align: right;
}

.gutter-35 {
  margin-left: -35px;
  margin-right: -35px;
}
.gutter-35 > div[class*=col-] {
  padding-left: 35px;
  padding-right: 35px;
}

.gutter-100 {
  margin-left: -50px;
  margin-right: -50px;
}
.gutter-100 > div[class^=col-] {
  padding-left: 50px;
  padding-right: 50px;
}

.gutter-300 {
  margin-left: -150px;
  margin-right: -150px;
}
.gutter-300 > div[class^=col-] {
  padding-left: 150px;
  padding-right: 150px;
}

#main {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  overflow: hidden;
}
#main.shrink {
  margin-top: 80px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.social-icons li {
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 15px;
}
.social-icons li:last-child {
  margin-right: 0;
}
.social-icons li a {
  display: block;
  width: 100%;
  height: 100%;
}
.social-icons li a:hover svg {
  transform: scale(1.1);
}
.social-icons li a:hover svg path {
  fill: #000000 !important;
}
.social-icons li a svg {
  width: 100%;
  height: 100%;
  transition: all 250ms ease-in-out;
}
.social-icons li a svg path {
  fill: #000000 !important;
  transition: all 250ms ease-in-out;
}

.hero {
  display: flex;
  position: relative;
  color: #66707E;
  background: var(--color-tertiary);
  height: 600px;
}
.hero.has-book {
  max-height: none;
  min-height: 800px;
}
.hero.has-book .decoration-book {
  position: absolute;
  bottom: -15vw;
  left: 0;
  width: 100%;
  z-index: 1 !important;
}
.hero.archive {
  background: #EEC71F;
}
.hero.archive .title {
  text-align: center;
  margin-bottom: 80px;
}
.hero.archive > .hero-content {
  position: relative;
  top: 0;
  transform: none;
  padding: 150px 0;
}
.hero .hero-content {
  position: relative;
  padding: 150px 0;
  z-index: 3;
}

#falling-letters {
  position: relative;
}
#falling-letters .canvas #falling-letters-canvas {
  width: 100%;
  height: 100%;
}
#falling-letters .slice {
  position: relative;
  z-index: 22;
}

.decoration-book {
  position: relative;
  z-index: 2;
}
.decoration-book.primary .spine, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.decoration-book .spine, .page-template-activities-print .the-content h1.decoration-book .spine, .page-template-activities-print .the-content h2.decoration-book .spine, .page-template-activities-print .the-content h3.decoration-book .spine, .page-template-activities-print .the-content h4.decoration-book .spine, .page-template-activities-print .the-content h5.decoration-book .spine, .page-template-activities-print .the-content h6.decoration-book .spine, .activity-buttons .decoration-book.bx_bn_button .spine, #header nav > ul > li.has-btn > a.decoration-book .spine {
  fill: var(--color-primary);
}
.decoration-book.secondary .spine {
  fill: var(--color-secondary);
}
.decoration-book.tertiary .spine {
  fill: var(--color-tertiary);
}
.decoration-book > svg {
  position: relative;
  z-index: 1;
  width: 110%;
  margin-left: -5%;
}

.title {
  font: 900 50px/1.1em "poppins", sans-serif;
  color: #000;
}
.title.primary, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.title, .page-template-activities-print .the-content h1.title, .page-template-activities-print .the-content h2.title, .page-template-activities-print .the-content h3.title, .page-template-activities-print .the-content h4.title, .page-template-activities-print .the-content h5.title, .page-template-activities-print .the-content h6.title, .activity-buttons .title.bx_bn_button, #header nav > ul > li.has-btn > a.title {
  color: var(--color-primary);
}
.title.secondary {
  color: var(--color-secondary);
}
.title.tertiary {
  color: var(--color-tertiary);
}
.title.white {
  color: #FFFFFF;
  text-shadow: rgba(0, 0, 0, 0.16), 0 3px 6px;
}

.subtitle, .page-template-activities-print .the-content h1, .page-template-activities-print .the-content h2, .page-template-activities-print .the-content h3, .page-template-activities-print .the-content h4, .page-template-activities-print .the-content h5, .page-template-activities-print .the-content h6 {
  font: 900 30px/1.1em "poppins", sans-serif;
}
.subtitle.primary, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.subtitle, .page-template-activities-print .the-content h1, .page-template-activities-print .the-content h2, .page-template-activities-print .the-content h3, .page-template-activities-print .the-content h4, .page-template-activities-print .the-content h5, .page-template-activities-print .the-content h6, .activity-buttons .subtitle.bx_bn_button, #header nav > ul > li.has-btn > a.subtitle {
  color: var(--color-primary);
}
.subtitle.secondary, .page-template-activities-print .the-content h1.secondary, .page-template-activities-print .the-content h2.secondary, .page-template-activities-print .the-content h3.secondary, .page-template-activities-print .the-content h4.secondary, .page-template-activities-print .the-content h5.secondary, .page-template-activities-print .the-content h6.secondary {
  color: var(--color-secondary);
}
.subtitle.tertiary, .page-template-activities-print .the-content h1.tertiary, .page-template-activities-print .the-content h2.tertiary, .page-template-activities-print .the-content h3.tertiary, .page-template-activities-print .the-content h4.tertiary, .page-template-activities-print .the-content h5.tertiary, .page-template-activities-print .the-content h6.tertiary {
  color: var(--color-tertiary);
}
.subtitle.white, .page-template-activities-print .the-content h1.white, .page-template-activities-print .the-content h2.white, .page-template-activities-print .the-content h3.white, .page-template-activities-print .the-content h4.white, .page-template-activities-print .the-content h5.white, .page-template-activities-print .the-content h6.white {
  color: #FFFFFF;
  text-shadow: rgba(0, 0, 0, 0.16), 0 3px 6px;
}

.slice {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}
.slice.no-p-top {
  padding-top: 0;
}
.slice.no-p-bottom {
  padding-bottom: 0;
}
.slice.grey {
  background: #F6F6F6;
}
.slice.primary, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.slice, .page-template-activities-print .the-content h1.slice, .page-template-activities-print .the-content h2.slice, .page-template-activities-print .the-content h3.slice, .page-template-activities-print .the-content h4.slice, .page-template-activities-print .the-content h5.slice, .page-template-activities-print .the-content h6.slice, .activity-buttons .slice.bx_bn_button, #header nav > ul > li.has-btn > a.slice {
  background: var(--color-primary);
}
.slice.has-bg-img {
  position: relative;
}
.slice.has-bg-img > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.has-bg-img > img {
  z-index: 2;
}
.slice.has-bg-img .wrapper {
  z-index: 3;
}
.slice .slice-intro {
  margin-bottom: 75px;
}
.slice .slice-intro.has-controls {
  display: flex;
  align-items: center;
}
.slice .slice-intro.has-controls .slider-controls {
  width: 120px;
  margin-left: 25px;
}
.slice .slice-intro.has-controls .title {
  flex: 1;
}
.slice .slice-outro {
  margin-top: 50px;
  text-align: center;
}

.activity-date {
  display: inline-block;
  font: bold 23px/1em "poppins", sans-serif;
  border-radius: 30px;
  background: #5BC2D4;
  color: #000000;
  padding: 10px 15px;
  margin-bottom: 15px;
  transition: all 250ms ease-in-out;
}

.continuous-badge {
  display: inline-block;
  font: bold 23px/1em "poppins", sans-serif;
  border-radius: 6px;
  background: #5BC2D4;
  color: #000000;
  padding: 10px 15px;
  margin-bottom: 15px;
  transition: all 250ms ease-in-out;
}

.activity-block {
  margin-bottom: 60px;
}
.activity-block:hover .meta.replayable .activity-title h2 + .can-be-replayed-badge {
  transform: scale(1.1);
}
.activity-block .meta {
  border-radius: 20px;
  background: #FFFFFF;
  padding: 40px 25px 15px 25px;
  box-shadow: rgba(0, 0, 0, 0.09) 0 3px 6px;
}
.activity-block .meta.replayable .activity-title {
  display: flex;
  align-items: center;
}
.activity-block .meta.replayable .activity-title h2 {
  flex: 1;
}
.activity-block .meta.replayable .activity-title h2:hover + .can-be-replayed-badge {
  transform: scale(1.1);
}
.activity-block .meta .activity-title {
  margin-bottom: 25px;
}
.activity-block .meta .activity-title h2 {
  font: 900 30px/1.16em "poppins", sans-serif;
  color: #000000;
  transition: all 250ms ease-in-out;
}
.activity-block .meta .activity-meta {
  display: flex;
  padding: 10px 25px;
  background-color: rgba(91, 194, 212, 0.2);
  border-radius: 30px;
  margin-bottom: 10px;
}
.activity-block .meta .activity-meta ul li {
  color: #000000;
}
.activity-block .meta .activity-meta .icon {
  display: flex;
  justify-content: center;
  width: 30px;
}
.activity-block .meta .activity-meta .labels {
  flex: 1;
  padding-left: 10px;
}

.can-be-replayed-badge {
  position: relative;
  padding: 25px 0 25px 25px;
  width: 125px;
  transition: all 250ms ease-in-out;
}
.can-be-replayed-badge p {
  line-height: 1.1em;
}
.can-be-replayed-badge p .line {
  position: relative;
  z-index: 2;
  color: #000000;
  font-size: 20px;
  font-weight: 900;
}
.can-be-replayed-badge p .line:first-child {
  font-size: 15px;
  font-weight: 800;
}
.can-be-replayed-badge svg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.can-be-replayed-badge svg path {
  fill: var(--color-primary);
}

.slider-activities {
  position: relative;
  /*&:before{
  	@include v-align(absolute);

  	z-index: 1;
  	content: '';
  	left: -25%;
  	width: 200%;
  	height: 30px;
  	background: $grey-medium;
  }*/
}
.slider-activities .row {
  position: relative;
  z-index: 2;
  min-width: 100%;
}
.slider-activities .row > .slick-list {
  min-width: 100%;
}
.slider-activities .row > .slick-list .slick-track {
  min-width: 100%;
}
.slider-activities .row .activity-block {
  padding-left: 35px;
  padding-right: 35px;
}

.authors-home {
  position: relative;
  color: #FFFFFF;
}
.authors-home:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.authors-home .wrapper {
  z-index: 3;
}
.authors-home .author-block .top a {
  color: #000000;
}

.author-grid {
  position: relative;
  z-index: 5;
}

.icon-list.target-markets ul li {
  background-color: rgba(124, 213, 108, 0.2);
  border-radius: 30px;
  width: fit-content;
  padding: 5px 15px;
}
.icon-list.genres ul li {
  background-color: rgba(238, 199, 31, 0.2);
  border-radius: 30px;
  width: fit-content;
  padding: 5px 15px;
}
.icon-list .list-title {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.icon-list .list-title svg {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.icon-list .list-title svg path {
  fill: var(--color-secondary);
}
.icon-list .list-title span {
  flex: 1;
  color: #000000;
  font: 900 20px/1em "poppins", sans-serif;
}
.icon-list ul li {
  display: flex;
  align-items: center;
  font: 1f7px/1.4em "poppins", sans-serif;
  margin-bottom: 12px;
  color: #000000;
}
.icon-list ul li:last-child {
  margin-bottom: 0;
}

.regional-author-badge {
  position: relative;
  padding: 20px 15px 40px 15px;
  height: 75px;
  width: 75px;
}
.regional-author-badge svg {
  position: absolute;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.regional-author-badge .inner {
  position: relative;
  z-index: 2;
  color: var(--color-secondary);
}
.regional-author-badge .inner .line {
  display: block;
}
.regional-author-badge .inner .line:first-child {
  font: 800 17px/1em "poppins", sans-serif;
}
.regional-author-badge .inner .line:last-child {
  font: 900 27px/1em "poppins", sans-serif;
}

.author-block {
  margin-bottom: 65px;
  transition: all 250ms ease-in-out;
}
.author-block:hover {
  transform: scale(1.025);
}
.author-block:nth-last-child(-n+2) {
  margin-bottom: 0;
}
.author-block .top {
  font: 800 30px/1.2em "poppins", sans-serif;
  margin-bottom: 10px;
}
.author-block .top a {
  color: #000000;
}
.author-block .middle {
  display: flex;
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.09) 0 3px 6px;
  min-height: 320px;
}
.author-block .middle:not(.has-img) .profile-pic {
  display: flex;
  padding: 20px;
  align-items: flex-end;
  justify-content: center;
}
.author-block .middle:not(.has-img) .profile-pic > img {
  object-fit: none;
  object-position: initial;
  border-radius: 0;
}
.author-block .middle .profile-pic {
  position: relative;
  min-height: 320px;
  width: 265px;
  background: #F6F6F6;
  border-radius: 15px;
  overflow: hidden;
}
.author-block .middle .profile-pic > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.author-block .middle .profile-pic > img {
  object-position: top center;
  border-radius: 15px 0 0 15px;
}
.author-block .middle .meta {
  flex: 1;
  position: relative;
  padding: 25px;
  color: #66707E;
}
.author-block .middle .meta .regional-author-badge {
  position: absolute;
  top: 15px;
  right: 15px;
}
.author-block .middle .meta .icon-list {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #F6F6F6;
}
.author-block .middle .meta .icon-list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.partners-row.main {
  margin-bottom: 50px;
}

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

.partner-block.tag {
  position: relative;
  display: flex;
  align-items: center;
}
.partner-block.tag h3 {
  position: relative;
  font: 900 45px/1.11em "poppins", sans-serif;
  color: #000000;
}
.partner-block .logo {
  position: relative;
  position: relative;
  display: block;
  border-radius: 6px;
}
.partner-block .logo:before {
  content: "";
  display: block;
  padding-top: 30%;
}
.partner-block .logo > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.partner-block .logo.has-no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.partner-block .logo.has-no-img > span {
  color: var(--color-secondary);
  text-transform: uppercase;
  font: 900 20px/1.5em "poppins", sans-serif;
}

.slider-controls {
  display: flex;
  align-items: center;
}
.slider-controls .slider-arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid #000000;
  border-radius: 50%;
  margin-right: 20px;
  overflow: hidden;
  cursor: pointer;
  background: #FFFFFF;
}
.slider-controls .slider-arrow:last-child {
  margin-right: 0;
}
.slider-controls .slider-arrow:hover:before {
  transform: scale(1);
}
.slider-controls .slider-arrow:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-tertiary);
  transform: scale(0);
  transition: all 250ms ease-in-out;
}
.slider-controls .slider-arrow.prev svg {
  transform: rotate(180deg);
}
.slider-controls .slider-arrow svg {
  position: relative;
  z-index: 2;
}
.slider-controls .slider-arrow svg path {
  fill: #000000;
}

.pub {
  display: flex;
  justify-content: center;
}
.pub > div,
.pub > a {
  display: block;
  margin: 0 auto;
  width: 728px;
  height: 90px;
}
.pub .pub-mobile {
  display: none;
}

.logo-tag {
  padding: 15px;
}
.logo-tag > img, .logo-tag > svg, .logo-tag > picture {
  max-width: 280px;
}

.author-data .author-name {
  display: flex;
  align-items: center;
  margin-bottom: 55px;
}
.author-data .author-name .regional-author-badge {
  margin-left: 20px;
}
.author-data .author-icon-lists .icon-list {
  display: flex;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 2px solid #F6F6F6;
}
.author-data .author-icon-lists .icon-list.target-markets ul {
  display: flex;
}
.author-data .author-icon-lists .icon-list.target-markets ul > li {
  margin-right: 25px;
  margin-bottom: 0;
}
.author-data .author-icon-lists .icon-list.target-markets ul > li:last-child {
  margin-right: 0;
}
.author-data .author-icon-lists .icon-list.genres {
  display: block;
}
.author-data .author-icon-lists .icon-list.genres .list-title {
  margin-bottom: 15px;
}
.author-data .author-icon-lists .icon-list .list-title {
  margin-right: 40px;
  margin-bottom: 0;
}
.author-data .author-icon-lists .icon-list ul {
  flex: 1;
}
.author-data .the-content {
  margin-bottom: 25px;
}

.author-visual .social-share {
  margin-bottom: 40px;
}

.social-share {
  display: flex;
  justify-content: flex-end;
}
.social-share > p {
  font: 800 20px/1em "poppins", sans-serif;
  margin-right: 25px;
  color: var(--color-primary);
}
.social-share svg:hover path {
  fill: var(--color-primary);
}
.social-share svg path {
  fill: #66707E !important;
}

li.has-icon svg {
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
li.has-icon svg path {
  fill: var(--color-secondary) !important;
}

.book-block .book-cover {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 20px;
  background: #F6F6F6;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 6px;
  margin-bottom: 30px;
}
.book-block .book-cover:before {
  content: "";
  display: block;
  padding-top: 133%;
}
.book-block .book-cover.has-img {
  position: relative;
  padding: 0;
}
.book-block .book-cover.has-img > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.book-block .book-cover.has-img > img {
  border-radius: 25px;
}
.book-block .book-cover > img {
  width: 100%;
}
.book-block h3 {
  font: 800 28px/1.13em "poppins", sans-serif;
  color: var(--color-primary);
}
.book-block time {
  display: block;
  font: 20px/1em "poppins", sans-serif;
  margin-top: 10px;
}

.author-activities .activity-block {
  margin-bottom: 70px;
}
.author-activities .slice-outro {
  margin-top: 0 !important;
}

.activity-ics-form {
  display: none !important;
}

.activity-buttons > div,
.activity-buttons > a {
  display: inline-flex;
}
.activity-buttons .bx_bn_button {
  padding: 15px 60px 15px 20px !important;
}

.activity-stage {
  position: relative;
}
.activity-stage:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.activity-stage > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.activity-dates {
  margin-bottom: 40px;
}
.activity-dates > * {
  margin-right: 30px;
}
.activity-dates > *:last-child {
  margin-right: 0;
}

.activity-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 3px solid #F6F6F6;
}
.activity-name h1 {
  flex: 1;
}
.activity-name .continuous-badge {
  margin-left: 25px;
}

.related-activities {
  display: inline-block;
  width: auto;
  box-shadow: rgba(0, 0, 0, 0.09) 0px 6px 6px;
  padding: 40px 25px;
  margin-bottom: 40px;
}
.related-activities .the-activities {
  margin-top: 40px;
}
.related-activities .the-activities .related-event {
  margin-bottom: 5px;
}
.related-activities .the-activities .related-event:last-child {
  margin-bottom: 0;
}
.related-activities .the-activities .related-event a {
  font: bold 23px/1.2em "poppins", sans-serif;
}
.related-activities .the-activities .related-event a:hover {
  color: var(--color-primary);
}

.featured-image {
  margin-bottom: 40px;
  width: 100%;
}
.featured-image > img {
  display: block;
  border-radius: 15px;
}

.activity-lists {
  margin-bottom: 40px;
}
.activity-lists .activity-list {
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #F6F6F6;
}
.activity-lists .activity-list .list-title svg {
  width: 23px;
  height: 23px;
  margin-right: 10px;
}
.activity-lists .activity-list .list-title svg path {
  fill: var(--color-secondary);
}
.activity-lists .activity-list .list-title span {
  font: 900 20px/1.1em "poppins", sans-serif;
  color: var(--color-primary);
}
.activity-lists .activity-list .list-data {
  flex: 1;
  padding-left: 40px;
}
.activity-lists .activity-list .list-data p {
  display: inline-block;
  margin-right: 40px;
}
.activity-lists .activity-list .list-data p:last-child {
  margin-right: 0;
}
.activity-lists .activity-list .list-data p a {
  color: var(--color-secondary);
  text-decoration: underline;
}
.activity-lists .activity-list .list-data p a:hover {
  color: var(--color-tertiary);
}

.activity-buttons .btn-inscription {
  margin-right: 20px;
}

.single-activity .activity-left .the-content {
  margin-bottom: 40px;
}
.single-activity .social-share {
  margin-bottom: 40px;
}
.single-activity .partners .subtitle, .single-activity .partners .page-template-activities-print .the-content h1, .page-template-activities-print .the-content .single-activity .partners h1, .single-activity .partners .page-template-activities-print .the-content h2, .page-template-activities-print .the-content .single-activity .partners h2, .single-activity .partners .page-template-activities-print .the-content h3, .page-template-activities-print .the-content .single-activity .partners h3, .single-activity .partners .page-template-activities-print .the-content h4, .page-template-activities-print .the-content .single-activity .partners h4, .single-activity .partners .page-template-activities-print .the-content h5, .page-template-activities-print .the-content .single-activity .partners h5, .single-activity .partners .page-template-activities-print .the-content h6, .page-template-activities-print .the-content .single-activity .partners h6 {
  margin-bottom: 25px;
}
.single-activity .partners .row + .the-content {
  margin-top: 30px;
}

.print-program {
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 10;
}

@page {
  margin: 20mm;
}
.page-template-activities-print #header,
.page-template-activities-print #mobile-nav,
.page-template-activities-print #footer {
  display: none;
}
.page-template-activities-print #main {
  margin: 40px 0;
}
.page-template-activities-print .the-content {
  margin-bottom: 20px;
}
.page-template-activities-print .the-content .aligncenter {
  margin-bottom: 40px;
}
.page-template-activities-print .the-content img {
  width: auto;
  height: 100px;
}
.page-template-activities-print .activities-table-print {
  margin: 40px auto;
  color: var(--color-secondary);
  background: white;
  border: 1px solid var(--color-primary);
  font-size: 12px;
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.page-template-activities-print .activities-table-print thead,
.page-template-activities-print .activities-table-print tfoot {
  font-weight: 900;
  text-transform: uppercase;
  background: var(--color-primary);
}
.page-template-activities-print .activities-table-print thead th,
.page-template-activities-print .activities-table-print tfoot th {
  color: #FFFFFF;
}
.page-template-activities-print .activities-table-print th,
.page-template-activities-print .activities-table-print td {
  padding: 5px;
  border: 1px solid var(--color-primary);
}
.page-template-activities-print .activities-table-print th strong,
.page-template-activities-print .activities-table-print td strong {
  font-weight: 900;
}

.faux-search {
  display: block;
}
.faux-search .top {
  position: relative;
  z-index: 2;
  display: flex;
  height: 140px;
  background: #FFFFFF;
  border-radius: 15px;
}
.faux-search .top .fields {
  flex: 1;
  display: flex;
  height: 100%;
}
.faux-search .top .fields.three-col > div {
  width: 33.33%;
}
.faux-search .top .fields.four-col > div {
  width: 25%;
}
.faux-search .top .fields .field:first-child {
  border-radius: 15px 0 0 15px;
}
.faux-search .top .submit {
  width: 90px;
  height: 100%;
}
.faux-search .top .submit a {
  display: flex;
  height: 100%;
  background: var(--color-primary);
  align-items: center;
  justify-content: center;
  border-radius: 0 15px 15px 0;
}
.faux-search .top .submit a:hover {
  background: var(--color-secondary);
}
.faux-search .top .submit a > svg path {
  fill: #FFFFFF;
}
.faux-search .bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  padding: 15px 0;
}
.faux-search .bottom .inner {
  color: var(--color-tertiary);
  font: 900 30px/1.1em "poppins", sans-serif;
}
.faux-search .field {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.faux-search .field.active {
  background: var(--color-primary);
}
.faux-search .field.active .placeholder svg path, .faux-search .field.active .placeholder svg rect {
  fill: var(--color-tertiary);
}
.faux-search .field.active .placeholder .label {
  color: #FFFFFF;
}
.faux-search .field.active .choices {
  display: inline-block;
}
.faux-search .field.checkbox .choices {
  box-shadow: rgba(0, 0, 0, 0.09) 0 3px 6px;
  border-radius: 6px;
  margin-top: 5px;
}
.faux-search .field.checkbox .choices label {
  position: relative;
  display: block;
  margin-bottom: 10px;
}
.faux-search .field.checkbox .choices label input {
  display: none;
}
.faux-search .field.checkbox .choices label input:checked + span:before {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.faux-search .field.checkbox .choices label input:checked + span:after {
  opacity: 1;
}
.faux-search .field.checkbox .choices label span {
  display: block;
  margin-left: 35px;
}
.faux-search .field.checkbox .choices label span:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #66707E;
  transition: all 250ms ease-in-out;
}
.faux-search .field.checkbox .choices label span:after {
  content: "";
  opacity: 0;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 4px;
  left: 2px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: all 250ms ease-in-out;
  background-image: url("../images/icon-checkbox.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.faux-search .field.text:after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 2px;
  height: 90%;
  background: #F6F6F6;
}
.faux-search .field.text .cursor {
  width: 1px;
  height: 40%;
  background: #66707E;
  order: 0;
}
.faux-search .field.text input {
  border: 0;
  font: normal 20px/1em "poppins", sans-serif;
  outline: 0;
  order: 1;
  padding: 0 15px;
}
.faux-search .field.text input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--color-primary);
  opacity: 1;
}
.faux-search .field.text input::-moz-placeholder { /* Firefox 19+ */
  color: var(--color-primary);
  opacity: 1;
}
.faux-search .field.text input:-ms-input-placeholder { /* IE 10+ */
  color: var(--color-primary);
  opacity: 1;
}
.faux-search .field.text input:-moz-placeholder { /* Firefox 18- */
  color: var(--color-primary);
  opacity: 1;
}
.faux-search .field.text input:focus + .cursor {
  display: none;
}
.faux-search .field .choices {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 300px;
  overflow-y: auto;
  background: #FFFFFF;
  padding: 20px;
}
.faux-search .field .placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faux-search .field .placeholder svg {
  width: 35px;
  heigth: 35px;
  margin-right: 15px;
}
.faux-search .field .placeholder svg path, .faux-search .field .placeholder svg rect {
  fill: #000000;
  transition: all 250ms ease-in-out;
}
.faux-search .field .placeholder .label {
  flex: 1;
  color: #000000;
  transition: all 250ms ease-in-out;
}
.faux-search .field .placeholder .label div:first-child {
  font: normal 15px/1em "poppins", sans-serif;
}
.faux-search .field .placeholder .label div:last-child {
  font: 900 25px/1em "poppins", sans-serif;
}

.home .banner .video-thumbnail {
  margin-bottom: 25px;
}
.home .banner .video-thumbnail iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.home .home-search {
  z-index: 99;
}
.home .slice.upcoming-activities {
  z-index: 8 !important;
}

.decoration-book {
  padding: 100px 0 0;
  z-index: 10 !important;
}
.decoration-book.video-out {
  /*.home-search{
  	top: auto;
  	bottom: 260px;
  }*/
}
.decoration-book.video-out .video-wrap {
  margin: 40px auto 0 auto;
  position: relative;
  z-index: 10;
}
.decoration-book.video-out .video-wrap h3 {
  color: black;
}
.decoration-book.video-out .video-wrap .video-thumbnail {
  border: none;
}
.decoration-book.video-out .video-wrap .video-embed, .decoration-book.video-out .video-wrap .video-thumbnail, .decoration-book.video-out .video-wrap .video-thumbnail .image, .decoration-book.video-out .video-wrap .video-thumbnail .image > img {
  max-width: 800px;
}
.decoration-book.video-out .video-wrap .video-thumbnail, .decoration-book.video-out .video-wrap .video-thumbnail .image > img {
  border-radius: 20px;
}

.banner-pixels {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.98;
  mix-blend-mode: multiply;
}
.banner-pixels svg {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-pixels .desk {
  display: block;
}
.banner-pixels .mob {
  display: none;
}
.banner-pixels .mob svg {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-pixels polyline {
  opacity: 1;
}

.bpx {
  animation: fadeIn 750ms infinite alternate;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}
.pixel-container {
  position: absolute;
  transform: translateY(-15%);
  left: 0;
  top: 0;
  height: 1000px;
  width: 100%;
  z-index: 0;
}
.pixel-container .px {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
}
.pixel-container .px.l-1 {
  animation: fadeIn 750ms infinite alternate;
  top: 50px;
  left: 20px;
  background: var(--color-secondary);
}
.pixel-container .px.l-2 {
  animation: fadeIn 1s infinite alternate;
  top: 120px;
  left: 60px;
  background: var(--color-secondary);
}
.pixel-container .px.l-3 {
  animation: fadeIn 1500ms infinite alternate;
  top: 30px;
  left: 200px;
  background: var(--color-tertiary);
}
.pixel-container .px.l-4 {
  animation: fadeIn 950ms infinite alternate;
  top: 60px;
  left: 230px;
  background: var(--color-secondary);
}
.pixel-container .px.l-5 {
  animation: fadeIn 1s infinite alternate;
  bottom: 150px;
  left: 60px;
  background: var(--color-tertiary);
}
.pixel-container .px.l-6 {
  animation: fadeIn 750ms infinite alternate;
  bottom: 210px;
  left: 180px;
  background: var(--color-secondary);
}
.pixel-container .px.l-7 {
  animation: fadeIn 750ms infinite alternate;
  bottom: 240px;
  left: 210px;
  background: var(--color-tertiary);
}
.pixel-container .px.l-8 {
  animation: fadeIn 2s infinite alternate;
  bottom: 90px;
  left: 360px;
  background: var(--color-secondary);
}
.pixel-container .px.l-9 {
  animation: fadeIn 900ms infinite alternate;
  bottom: 120px;
  left: 390px;
  background: var(--color-tertiary);
}
.pixel-container .px.l-10 {
  animation: fadeIn 1000ms infinite alternate;
  bottom: 90px;
  left: 420px;
  background: var(--color-secondary);
}
.pixel-container .px.l-11 {
  animation: fadeIn 1700ms infinite alternate;
  bottom: 230px;
  left: 540px;
  background: var(--color-tertiary);
}
.pixel-container .px.l-12 {
  animation: fadeIn 750ms infinite alternate;
  bottom: 120px;
  left: 610px;
  background: var(--color-secondary);
}
.pixel-container .px.l-13 {
  animation: fadeIn 2s infinite alternate;
  top: 80px;
  left: 600px;
  background: var(--color-secondary);
}
.pixel-container .px.l-14 {
  animation: fadeIn 1000ms infinite alternate;
  top: 110px;
  left: 630px;
  background: var(--color-secondary);
}
.pixel-container .px.l-15 {
  animation: fadeIn 750ms infinite alternate;
  top: 50px;
  left: 770px;
  background: var(--color-secondary);
}
.pixel-container .px.l-16 {
  animation: fadeIn 875ms infinite alternate;
  top: 170px;
  left: 700px;
  background: var(--color-tertiary);
}
.pixel-container .px.r-1 {
  animation: fadeIn 750ms infinite alternate;
  top: 50px;
  right: 50px;
  background: var(--color-secondary);
}
.pixel-container .px.r-2 {
  animation: fadeIn 900ms infinite alternate;
  top: 75px;
  right: 180px;
  background: var(--color-secondary);
}
.pixel-container .px.r-3 {
  animation: fadeIn 900ms infinite alternate;
  top: 80px;
  right: 480px;
  background: var(--color-secondary);
}
.pixel-container .px.r-4 {
  animation: fadeIn 800ms infinite alternate;
  top: 110px;
  right: 450px;
  background: var(--color-tertiary);
}
.pixel-container .px.r-5 {
  animation: fadeIn 900ms infinite alternate;
  bottom: 150px;
  right: 75px;
  background: var(--color-tertiary);
}
.pixel-container .px.r-6 {
  animation: fadeIn 750ms infinite alternate;
  bottom: 210px;
  right: 180px;
  background: var(--color-tertiary);
}
.pixel-container .px.r-7 {
  animation: fadeIn 750ms infinite alternate;
  bottom: 240px;
  right: 210px;
  background: var(--color-tertiary);
}
.pixel-container .px.r-8 {
  animation: fadeIn 750ms infinite alternate;
  bottom: 120px;
  right: 360px;
  background: var(--color-secondary);
}
.pixel-container .px.r-9 {
  animation: fadeIn 900ms infinite alternate;
  bottom: 90px;
  right: 390px;
  background: var(--color-tertiary);
}
.pixel-container .px.r-10 {
  animation: fadeIn 1s infinite alternate;
  bottom: 120px;
  right: 420px;
  background: var(--color-tertiary);
}
.pixel-container .px.r-11 {
  animation: fadeIn 750ms infinite alternate;
  bottom: 230px;
  right: 540px;
  background: var(--color-secondary);
}
.pixel-container .px.r-12 {
  animation: fadeIn 1s infinite alternate;
  bottom: 150px;
  right: 800px;
  background: var(--color-tertiary);
}

.the-content p {
  margin-bottom: 20px;
}
.the-content p:last-child {
  margin-bottom: 0;
}
.the-content p a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: all 250ms ease-in-out;
}
.the-content p a:hover {
  color: var(--color-tertiary);
}
.the-content h1 {
  margin: 20px 0;
  color: var(--color-primary);
  font-weight: 900;
  line-height: 1.5em;
  font-size: 40px;
}
.the-content h2, .the-content h3, .the-content h4, .the-content h5, .the-content h6 {
  color: var(--color-secondary);
  font-weight: 900;
  margin-bottom: 8px !important;
  line-height: 1.125em;
}
.the-content h2 {
  font-size: 30px;
}
.the-content h3 {
  font-size: 26px;
}
.the-content h4 {
  font-size: 22px;
}
.the-content h5 {
  font-size: 18px;
}
.the-content h6 {
  font-size: 16px;
}
.the-content ul {
  margin-bottom: 2em;
}
.the-content ul li {
  position: relative;
  padding-left: 1em;
}
.the-content ul li:before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
}

.content-row {
  position: relative;
  z-index: 1;
}

.popup-container {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  position: fixed;
  padding: 30px;
  border-radius: 16px;
  z-index: 80;
  max-width: 700px;
  overflow-y: scroll;
}
.popup-container.closed {
  display: none;
}
.popup-container.top-left {
  top: 20px;
  left: 20px;
}
.popup-container.top-right {
  top: 20px;
  right: 20px;
}
.popup-container.bottom-left {
  bottom: 20px;
  left: 20px;
}
.popup-container.bottom-right {
  bottom: 20px;
  right: 20px;
}
.popup-container .popup-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 16px;
  z-index: 81;
}
.popup-container .popup-content {
  position: relative;
  z-index: 85;
  opacity: 1 !important;
}
.popup-container .popup-content .subtitle, .popup-container .popup-content .page-template-activities-print .the-content h1, .page-template-activities-print .the-content .popup-container .popup-content h1, .popup-container .popup-content .page-template-activities-print .the-content h2, .page-template-activities-print .the-content .popup-container .popup-content h2, .popup-container .popup-content .page-template-activities-print .the-content h3, .page-template-activities-print .the-content .popup-container .popup-content h3, .popup-container .popup-content .page-template-activities-print .the-content h4, .page-template-activities-print .the-content .popup-container .popup-content h4, .popup-container .popup-content .page-template-activities-print .the-content h5, .page-template-activities-print .the-content .popup-container .popup-content h5, .popup-container .popup-content .page-template-activities-print .the-content h6, .page-template-activities-print .the-content .popup-container .popup-content h6 {
  margin-bottom: 16px;
}
.popup-container .popup-content .image {
  position: relative;
  position: relative;
  position: relative;
  display: block;
  max-width: 100%;
  width: 300px;
}
.popup-container .popup-content .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.popup-container .popup-content .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popup-container .popup-content .image > img, .popup-container .popup-content .image > picture {
  border-radius: 16px;
}
.popup-container .pop-close {
  position: absolute;
  display: block;
  top: 10px;
  left: 10px;
  z-index: 81;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.popup-container .pop-close:hover svg path {
  fill: var(--color-secondary);
}
.popup-container .pop-close.closed {
  display: none;
}
.popup-container .pop-close svg {
  display: block;
  height: 14px;
  width: 14px;
  max-height: 100%;
}
.popup-container .pop-close svg path {
  fill: #FFFFFF;
  transition: all 250ms ease-in-out;
}

.home-search {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0;
  margin: 75px 0;
}
.home-search .faux-search .top {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
}

#falling-letters {
  position: relative;
  z-index: 5 !important;
}

.banner {
  position: relative;
}

.mobile-background {
  display: none;
}
.mobile-background > img, .mobile-background > picture {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

.tablet-background {
  display: none;
}
.tablet-background > img, .tablet-background > picture {
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.desktop-background {
  display: block;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.desktop-background > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.desktop-background > img, .desktop-background > picture {
  object-position: center;
}

.background-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 150px;
}
.background-container .wrapper {
  display: flex;
  align-items: start;
}
.background-container .banner-col-left {
  width: 50%;
  padding-right: 15px;
}
.background-container .banner-col-left:last-child {
  width: 100%;
  padding-right: 0px;
}
.background-container .banner-col-right {
  width: 50%;
  display: block;
  padding-left: 15px;
}

.interior-hero {
  position: relative;
  display: block;
  height: 800px;
  width: calc(100% + 220px);
  left: -110px;
}
.interior-hero > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.interior-hero.has-background {
  height: 800px;
}
.interior-hero.has-background > .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.98;
  mix-blend-mode: multiply;
  z-index: 2;
}
.interior-hero.has-background.center > img, .interior-hero.has-background.center > picture {
  object-position: center !important;
}
.interior-hero.has-background.top > img, .interior-hero.has-background.top > picture {
  object-position: top !important;
}
.interior-hero.has-background.bottom > img, .interior-hero.has-background.bottom > picture {
  object-position: bottom !important;
}
.interior-hero.has-background.top-left > img, .interior-hero.has-background.top-left > picture {
  object-position: left top !important;
}
.interior-hero.has-background.top-right > img, .interior-hero.has-background.top-right > picture {
  object-position: right top !important;
}
.interior-hero.has-background.bottom-left > img, .interior-hero.has-background.bottom-left > picture {
  object-position: left bottom !important;
}
.interior-hero.has-background.bottom-right > img, .interior-hero.has-background.bottom-right > picture {
  object-position: right bottom !important;
}
.interior-hero.has-book {
  max-height: none;
  min-height: 800px;
}
.interior-hero.has-book .decoration-book {
  z-index: 2;
  margin-top: -20vw;
}
.interior-hero .interior-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  top: calc(50% - 12px);
  width: 100%;
  padding: 150px 0;
  z-index: 5;
}
.interior-hero .interior-inner .content.has-logo-tag {
  padding-left: 75px;
}

.hero {
  height: 800px;
  display: block;
}
.hero.front {
  display: block;
  overflow: hidden;
  background: rgb(93, 152, 208);
  background: -moz-linear-gradient(90deg, rgb(93, 152, 208) 0%, rgb(0, 55, 114) 100%);
  background: -webkit-linear-gradient(90deg, rgb(93, 152, 208) 0%, rgb(0, 55, 114) 100%);
  background: linear-gradient(90deg, rgb(93, 152, 208) 0%, rgb(0, 55, 114) 100%);
  background-size: cover;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5d98d0", endColorstr="#003772", GradientType=1);
}
.hero.front .hero-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100%;
  width: 100%;
  z-index: 1;
}
.hero.front .hero-content.no-video .inner .hero-title {
  top: 0;
  left: 0;
  text-align: left;
}
.hero.front .hero-content .inner {
  position: relative;
  z-index: 2;
}
.hero.front .hero-content .inner .hero-title {
  position: absolute;
  top: -225px;
  left: 0;
  text-align: center;
}
.hero.front .hero-content .inner h1 {
  font-size: 60px;
  color: #FFFFFF;
  line-height: 1em;
  text-transform: uppercase;
}

.banner-content-dates {
  display: block;
  position: absolute;
  top: 0;
  left: 110px;
  min-width: 405px;
  max-width: 405px;
  padding: 16px 30px;
  background: var(--color-tertiary);
  color: var(--color-primary);
  z-index: 10;
  font-size: 34px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.highlight-text {
  display: inline-block;
  color: var(--color-primary);
  background: var(--color-tertiary);
  padding: 0 10px;
}

.video-embed {
  position: relative;
  display: block;
  max-width: 560px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.video-embed h3 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.video-embed .embed {
  display: block;
}
.video-embed .embed iframe {
  border: 2px solid #FFFFFF;
  display: block;
  max-width: 560px;
  width: 100%;
}

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

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

.btn.space-top, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button.space-top, #header nav > ul > li.has-btn > a.space-top, .activity-buttons .space-top.bx_bn_button {
  margin-top: 30px;
}

.content.image {
  position: relative;
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 660px;
  max-height: 500px;
  margin-bottom: 30px;
}
.content.image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content.image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.content.image > img, .content.image > picture {
  border-radius: 16px;
}
.content > .title-block {
  margin-bottom: 20px;
}
.content > .title-block h2 {
  font-weight: 900;
}
.content > .title-block .subtitle-block {
  margin-bottom: 0px;
}
.content > .subtitle-block {
  margin-bottom: 15px;
}

.video-thumbnail {
  position: relative;
  position: relative;
  background: var(--color-secondary);
  display: block;
  max-width: 640px;
  max-height: 440px;
  z-index: 1;
  margin-bottom: 30px;
  border: 3px solid #FFFFFF;
}
.video-thumbnail:before {
  content: "";
  display: block;
  padding-top: 56%;
}
.video-thumbnail > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-thumbnail .image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  max-width: 640px;
  max-height: 440px;
}
.video-thumbnail .image > img, .video-thumbnail .image > picture {
  background: var(--color-secondary);
  display: block;
  max-width: 640px;
  max-height: 440px;
  height: 100%;
  width: 100%;
  z-index: 1;
  object-fit: cover;
  opacity: 0.4;
}

.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0 auto;
  color: #FFFFFF;
  text-transform: uppercase;
  z-index: 2;
  transition: all 250ms ease-in-out;
}
.play-video .play-icon {
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.play-video .play-icon svg {
  display: block;
  height: auto;
  width: 70px;
}
.play-video .play-icon svg path {
  transition: all 250ms ease-in-out;
}

.accordions {
  position: relative;
  z-index: 2;
}
.accordions .accordion {
  position: relative;
  margin-bottom: 30px;
}
.accordions .accordion.active .top {
  background: var(--color-primary);
}
.accordions .accordion.active .top h3 {
  color: #FFFFFF;
}
.accordions .accordion.active .top h3:before {
  background-image: url("../images/icon-chev-up.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.accordions .accordion .top {
  background: var(--color-secondary);
  position: relative;
  padding: 20px;
  width: 100%;
  border-radius: 50px;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.accordions .accordion .top h3 {
  position: relative;
  font: 700 25px/1.2em "poppins", sans-serif;
  padding-right: 30px;
  color: #FFFFFF;
}
.accordions .accordion .top h3:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  display: block;
  height: 10px;
  width: 14px;
  transition: all 250ms ease-in-out;
  background-image: url("../images/icon-chev-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.accordions .accordion .bottom {
  margin-top: 15px;
}
.accordions .accordion .bottom .the-content {
  display: none;
}
.accordions .accordion .bottom .activities {
  display: none;
}

.gallery {
  position: relative;
  padding: 40px 0;
}
.gallery .image {
  position: relative;
  position: relative;
  display: block;
  width: 250px;
  max-width: 100%;
  max-height: 100%;
  margin: 15px 0;
}
.gallery .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gallery .image > img, .gallery .image > picture {
  border-radius: 16px 0 0 16px;
  object-position: center top;
}

.call-to-action {
  position: relative;
  position: relative;
  padding: 60px 120px;
  border-radius: 16px;
  overflow: hidden;
}
.call-to-action > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.call-to-action.center {
  text-align: center !important;
}
.call-to-action.left {
  text-align: left !important;
}
.call-to-action.right {
  text-align: right !important;
}
.call-to-action .content {
  position: relative;
  z-index: 5;
}
.call-to-action > .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0.98;
  mix-blend-mode: multiply;
  z-index: 2;
  border-radius: 16px;
}
.call-to-action > img, .call-to-action > picture {
  border-radius: 16px;
  opacity: 0.35;
}

.featured.image {
  position: relative;
  position: relative;
  width: 650px;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
.featured.image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featured.image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.featured.image > img, .featured.image > picture {
  border-radius: 16px;
}

.padding-both {
  padding-top: 75px;
  padding-bottom: 75px;
}

.padding-top {
  padding-top: 75px;
}

.padding-bottom {
  padding-bottom: 75px;
}

.padding-none {
  padding: 0 0;
}

.table table {
  width: 100%;
}
.table table thead tr {
  text-align: left;
}
.table table thead tr th {
  padding: 24px;
  background: var(--color-secondary);
  color: #FFFFFF;
  border-radius: 5px;
  font: 600 25px/1em "poppins", sans-serif;
  border: 2px solid white;
}
.table table tbody tr td {
  padding: 12px 24px;
  color: #66707E;
  background: #F6F6F6;
  font: 400 20px/1em "poppins", sans-serif;
  border-radius: 5px;
  border: 2px solid white;
}
.table table tbody tr:nth-child(odd) td {
  background: #E6E8EA;
}

.form {
  position: relative;
  margin: 15px 0;
}
.form .gform_confirmation_wrapper {
  position: relative;
  padding: 50px 0;
  margin: 15px auto;
  font: 600 22px/1em "poppins", sans-serif;
  color: var(--color-primary);
}
.form .validation_error {
  position: relative;
  display: block;
  text-align: center;
  margin: 15px auto;
  font: 600 18px/1em "poppins", sans-serif;
  color: var(--color-secondary);
}
.form .gform_body .gform_fields {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.form .gform_body .gform_fields fieldset.gfield {
  border: 0px;
}
.form .gform_body .gform_fields .gfield {
  padding: 0 15px;
  margin: 15px 0;
}
.form .gform_body .gform_fields .gfield.hidden_label {
  margin: 0 0 !important;
}
.form .gform_body .gform_fields .gfield.hidden_label label {
  display: none;
}
.form .gform_body .gform_fields .gfield .validation_message {
  position: relative;
  display: block;
  text-align: center;
  margin: 6px auto;
  font: 600 15px/1em "poppins", sans-serif;
  color: var(--color-secondary);
}
.form .gform_body .gform_fields .gfield.gfield--width-full, .form .gform_body .gform_fields .gfield.gsection {
  width: 100%;
}
.form .gform_body .gform_fields .gfield.gfield--width-half {
  width: 50%;
}
.form .gform_body .gform_fields .gfield.gfield--width-third {
  width: 33.333%;
}
.form .gform_body .gform_fields .gfield .ginput_container input[type=text],
.form .gform_body .gform_fields .gfield .ginput_container input[type=email],
.form .gform_body .gform_fields .gfield .ginput_container input[type=tel],
.form .gform_body .gform_fields .gfield .ginput_container input[type=number] {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  font: 400 17px/1em "poppins", sans-serif;
  color: #66707E;
  background: #F6F6F6;
  margin: 15px 0;
  padding: 24px;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  transition: all 250ms ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
}
.form .gform_body .gform_fields .gfield .ginput_container input[type=text]:focus, .form .gform_body .gform_fields .gfield .ginput_container input[type=text]:active,
.form .gform_body .gform_fields .gfield .ginput_container input[type=email]:focus,
.form .gform_body .gform_fields .gfield .ginput_container input[type=email]:active,
.form .gform_body .gform_fields .gfield .ginput_container input[type=tel]:focus,
.form .gform_body .gform_fields .gfield .ginput_container input[type=tel]:active,
.form .gform_body .gform_fields .gfield .ginput_container input[type=number]:focus,
.form .gform_body .gform_fields .gfield .ginput_container input[type=number]:active {
  outline: none;
}
.form .gform_body .gform_fields .gfield .ginput_container textarea {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  font: 400 17px/1.25em "poppins", sans-serif;
  color: #66707E;
  background: #F6F6F6;
  margin: 15px 0;
  padding: 24px;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  resize: vertical;
  transition: all 250ms ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
}
.form .gform_body .gform_fields .gfield .ginput_container textarea:focus, .form .gform_body .gform_fields .gfield .ginput_container textarea:active {
  outline: none;
}
.form .gform_body .gform_fields .gfield .ginput_container_select {
  position: relative;
}
.form .gform_body .gform_fields .gfield .ginput_container_select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../images/icon-chev-down.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: calc(100% - 24px) center;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  max-height: 70px;
  font: 400 17px/1.25em "poppins", sans-serif;
  color: #66707E;
  background-color: #F6F6F6;
  margin: 15px 0;
  padding: 24px;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  transition: all 250ms ease-in-out;
}
.form .gform_body .gform_fields .gfield .ginput_container_select select:focus, .form .gform_body .gform_fields .gfield .ginput_container_select select:active {
  outline: none;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container {
  width: 100% !important;
  position: relative;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container.chosen-container-active.chosen-with-drop .chosen-single {
  background: var(--color-secondary);
  color: #FFFFFF;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container.chosen-container-active.chosen-with-drop .chosen-single span:before {
  background-image: url("../images/icon-chev-up.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container.chosen-container-active.chosen-with-drop .chosen-drop {
  display: block;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-single {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  max-height: 70px;
  font: 400 17px/1.25em "poppins", sans-serif;
  color: #66707E;
  background: #F6F6F6;
  margin: 15px 0;
  padding: 24px;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
  transition: all 250ms ease-in-out;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-single span {
  position: relative;
  width: 100%;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-single span:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  display: block;
  height: 10px;
  width: 14px;
  transition: all 250ms ease-in-out;
  background-image: url("../images/icon-chev-down.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-single div {
  display: none;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-drop {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
  display: none;
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: 50;
  width: calc(100% - 20px);
  background: #FFFFFF;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-drop .chosen-search {
  display: none;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-drop .chosen-search input[type=text] {
  display: none;
  border: none;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-drop .chosen-results {
  display: block;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-drop .chosen-results li {
  font: 400 16px/1em "poppins", sans-serif;
  padding: 15px;
  color: #66707E;
  margin: 0 15px !important;
}
.form .gform_body .gform_fields .gfield .ginput_container_select .chosen-container .chosen-drop .chosen-results li.highlighted {
  background-color: #E6E8EA !important;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice {
  display: inline-flex;
  align-items: center;
  padding: 0 0;
  margin: 8px 0;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice label {
  max-width: 100%;
  width: 100%;
  font: 400 17px/1em "poppins", sans-serif;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice label {
  position: relative;
  padding: 8px 40px;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  box-shadow: none;
  background: #E6E8EA;
}
.form .gform_body .gform_fields .gfield .ginput_container_radio .gfield_radio .gchoice label:after {
  opacity: 0;
  display: block;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 0;
  box-shadow: none;
  background: var(--color-secondary);
  transition: all 250ms ease-in-out;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice {
  display: inline-flex;
  align-items: center;
  padding: 0 0;
  margin: 8px 0;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice label {
  max-width: 100%;
  width: 100%;
  font: 400 17px/1em "poppins", sans-serif;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice label {
  position: relative;
  padding: 8px 40px;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 0;
  box-shadow: none;
  background: #E6E8EA;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 8px;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-image: url("../images/icon-checkmark-p.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 250ms ease-in-out;
}
.form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button:before {
  display: none !important;
}
.form .gform_footer {
  position: relative;
  display: block;
  margin: 15px 0;
  padding: 0 15px;
}
.form .gform_footer input[type=submit] {
  font: normal 20px/1em "poppins", sans-serif;
  display: inline-flex;
  border: 0;
  border-radius: 6px;
  color: #FFFFFF;
  transition: all 250ms ease-in-out;
  padding: 15px 20px;
  overflow: hidden !important;
  -webkit-appearance: none;
  cursor: pointer;
  background: var(--color-primary);
}
.form .gform_footer input[type=submit]:hover {
  background: var(--color-secondary);
}

.slice.upcoming-activities {
  z-index: 4 !important;
}

.home-slider__slide {
  position: relative;
  height: 100%;
  aspect-ratio: 1920/700;
  background-color: var(--bg-color);
  color: var(--text-color);
}
.home-slider__slide-meta {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  padding-top: 150px !important;
  padding-bottom: 200px !important;
}
.home-slider__slide-image {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  object-fit: contain;
  object-position: bottom right;
}
.home-slider__slide-slogan {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  padding: 30px 0;
  background-color: var(--bg-color-secondary);
}
.home-slider__slide-slogan img {
  max-width: 40%;
}
.home-slider__dates {
  font: bold 70px/1em "poppins", sans-serif;
}
.home-slider__location {
  font: 500 60px/1em "poppins", sans-serif;
  margin-top: 0.2em;
}
.home-slider__location span {
  color: var(--color-primary);
}
.home-slider .slick-dots {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.home-slider .slick-dots > li.slick-active button {
  background: var(--color-primary);
}
.home-slider .slick-dots > li button {
  display: block;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  font-size: 0;
  border: 0;
  cursor: pointer;
  background: var(--color-secondary);
  transition: all 250ms ease-in-out;
}

@media (max-width: 1700px) {
  .decoration-book.video-out .video-wrap {
    transform: translateY(-70%);
  }
  .decoration-book.video-out .home-search {
    top: auto;
    bottom: 200px;
  }
}
@media (max-width: 1440px) {
  .decoration-book.video-out .video-wrap {
    transform: translateY(-60%);
  }
  .interior-hero {
    width: calc(100% + 160px);
    left: -80px;
  }
  .banner-content-dates {
    left: 70px;
  }
  .decoration-book.video-out .home-search {
    top: auto;
    bottom: 150px;
  }
  .home-slider__dates {
    font-size: 55px;
  }
  .home-slider__location {
    font-size: 45px;
  }
}
@media (max-width: 1439px) {
  .partners-row.main {
    margin-bottom: 40px;
  }
  .slice {
    padding: 50px 0;
  }
  .slice .slice-intro {
    margin-bottom: 50px;
  }
  .slice .slice-outro {
    margin-top: 50px;
  }
  #footer {
    padding: 50px 0;
  }
  .slider-activities .row .activity-block {
    padding-left: 15px;
    padding-right: 15px;
  }
  .activity-block .activity-date {
    font-size: 18px;
  }
}
@media (max-width: 1365px) {
  .pixel-container {
    transform: translateY(-15%);
  }
  .wrapper.large {
    padding: 0 25px;
  }
  #header {
    height: 80px;
  }
  #header #header-logo {
    height: 60px;
  }
  #header nav {
    padding-left: 25px;
  }
  #header nav > ul > li {
    margin-right: 25px;
    font-size: 16px;
  }
  #main {
    margin-top: 80px;
  }
  .gutter-35,
  .gutter-100,
  .gutter-300 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .gutter-35 > div[class*=col-],
  .gutter-100 > div[class*=col-],
  .gutter-300 > div[class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
  .decoration-book.video-out .video-wrap {
    margin-bottom: 220px;
  }
  .hero.front.no-video {
    background-repeat: no-repeat;
    background-size: cover;
    background-image: var(--banner-tablet-bg) !important;
  }
}
@media (max-width: 1300px) {
  .interior-hero.has-book .decoration-book {
    margin-top: -23vw;
  }
  .home-slider__slide-meta {
    padding-top: 100px !important;
  }
}
@media (max-width: 1199px) {
  .decoration-book.video-out .video-wrap {
    transform: translateY(-40%);
  }
  .decoration-book.video-out .home-search {
    top: auto;
    bottom: 50px;
  }
  .interior-hero {
    width: calc(100% + 120px);
    left: -60px;
  }
  #footer {
    padding-bottom: 10px;
  }
  #footer .footer-logo {
    max-width: 200px;
    margin-bottom: 40px;
  }
  #footer .social-icons {
    margin-top: 0;
  }
  .book-block h3 {
    font-size: 18px;
  }
  .home-slider__slide-meta {
    padding-top: 80px !important;
  }
}
@media (max-width: 1024px) {
  .popup-container .popup-content .the-content {
    font: 400 18px/1.3em "poppins", sans-serif;
  }
  .pixel-container {
    height: 800px;
    transform: translateY(-3%);
  }
  .pixel-container .px {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
  }
  .interior-hero .interior-inner .content.has-logo-tag {
    padding-left: 25px;
  }
  .banner-content-dates {
    left: 50px;
    min-width: auto;
  }
  .hero.front {
    height: 800px;
  }
  .hero.front .hero-content .inner h1 {
    font-size: 50px;
  }
  .faux-search .field .placeholder .label div:last-child {
    font-size: 22px;
  }
  .home-slider__slide-meta {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .home-slider__slide-slogan {
    padding: 15px 0;
  }
  .home-slider__dates {
    font-size: 40px;
  }
  .home-slider__location {
    font-size: 30px;
  }
}
@media (max-width: 1023px) {
  #header nav {
    display: none;
  }
  #header .mobile-nav-trigger {
    display: flex;
  }
  .author-block .middle {
    display: block;
  }
  .author-block .middle .profile-pic {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 15px 15px 0 0;
  }
  .author-block .middle .profile-pic:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  .author-block .middle .profile-pic > img {
    border-radius: 15px 15px 0 0;
  }
  .partner-block.tag h3:before {
    width: 29px;
    height: 36px;
  }
  .social-share {
    justify-content: space-between;
  }
  .social-share > p {
    font-size: 16px;
  }
  .author-visual .social-share {
    margin-bottom: 25px;
  }
}
@media (max-width: 991px) {
  .banner-pixels .desk {
    display: none;
  }
  .banner-pixels .mob {
    display: block;
    height: 100%;
    width: 100%;
  }
  .banner-pixels .mob svg {
    display: block;
  }
  .banner-content-dates {
    left: 25px;
  }
  .hero.archive .title {
    margin-bottom: 40px;
  }
  .hero.archive > .hero-content {
    padding: 100px 0;
  }
  .hero.front {
    height: 1280px;
  }
  .hero.front > img, .hero.front > picture {
    position: relative;
    object-position: center;
  }
  .hero.front .hero-content {
    padding: 350px 0 0 !important;
    z-index: 1;
  }
  .hero.front .hero-content.no-video {
    padding: 150px 0 0 !important;
  }
  .hero.front .hero-content .inner .hero-title {
    position: relative;
    top: -200px;
    left: -150px;
  }
  .hero.front .hero-content .video-embed {
    top: 300px;
  }
  .hero .hero-content {
    padding: 100px 0;
  }
  .hero.front {
    height: 900px;
  }
  .hero.front.no-video {
    height: 600px;
  }
  .hero.front.no-video .mobile-background > img, .hero.front.no-video .mobile-background > picture {
    object-position: bottom center;
    object-fit: cover;
  }
  .hero.front .hero-content {
    padding: 275px 0 0 !important;
  }
  .hero.front .hero-content.no-video {
    padding: 100px 0 0 !important;
  }
  .hero.front .hero-content .inner .hero-title {
    top: -150px;
    left: 0;
    text-align: left;
  }
  .hero.front .hero-content .inner .hero-title h1 {
    font-size: 30px;
  }
  .hero.front .hero-content .video-embed {
    top: 180px;
    max-width: 400px;
  }
  .hero.front .background-container {
    padding-top: 120px;
  }
  .tablet-background {
    display: block;
  }
  .desktop-background {
    display: none;
  }
  .call-to-action {
    padding: 40px;
  }
  .padding-both {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .padding-top {
    padding-top: 50px;
  }
  .padding-bottom {
    padding-bottom: 50px;
  }
  .padding-none {
    padding: 0 0;
  }
  .book-block {
    margin-bottom: 25px;
  }
  .single-activity .activity-right {
    margin-top: 40px;
  }
  .hero.archive .title {
    margin-bottom: 40px;
  }
  .hero.archive > .hero-content {
    padding: 100px 0;
  }
  .hero.front.no-video.hero-video-out {
    height: 770px;
  }
  .decoration-book.video-out {
    transform: translateY(-17%);
  }
  .decoration-book.video-out .video-wrap {
    margin-bottom: 75px;
  }
  .interior-hero.has-book .decoration-book {
    margin-top: -26vw;
  }
}
@media (max-width: 768px) {
  .pixel-container .px {
    position: absolute;
    display: block;
    height: 15px;
    width: 15px;
  }
  .interior-hero {
    width: calc(100% + 80px);
    left: -40px;
  }
  .banner-content-dates {
    font-size: 22px;
  }
  .table table thead tr th {
    padding: 12px;
    font: 600 18px/1em "poppins", sans-serif;
  }
  .table table tbody tr td {
    padding: 6px 12px;
    font: 400 16px/1em "poppins", sans-serif;
  }
  .hero.front {
    height: 1150px;
  }
  .hero.front.no-video {
    background-position: center top;
    background-image: var(--banner-mobile-bg) !important;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .hero.front .hero-content .video-embed {
    top: 190px;
  }
  .hero.front .background-container {
    padding-top: 150px;
  }
  .decoration-book.video-out .video-wrap {
    transform: translateY(0);
    margin-top: 20px;
  }
  .home-slider__slide-meta {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .home-slider__slide-slogan {
    padding: 15px 0;
  }
  .home-slider__dates {
    font-size: 30px;
  }
  .home-slider__location {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .decoration-book.video-out .home-search {
    top: auto;
    bottom: 150px;
  }
  .decoration-book.video-out .video-wrap {
    transform: translateY(-40%);
  }
  .popup-container {
    padding: 30px 20px;
    margin-top: 100px;
    height: 50%;
    max-height: calc(100% - 120px);
  }
  .popup-container .popup-content {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
  .popup-container .popup-content .subtitle, .popup-container .popup-content .page-template-activities-print .the-content h1, .page-template-activities-print .the-content .popup-container .popup-content h1, .popup-container .popup-content .page-template-activities-print .the-content h2, .page-template-activities-print .the-content .popup-container .popup-content h2, .popup-container .popup-content .page-template-activities-print .the-content h3, .page-template-activities-print .the-content .popup-container .popup-content h3, .popup-container .popup-content .page-template-activities-print .the-content h4, .page-template-activities-print .the-content .popup-container .popup-content h4, .popup-container .popup-content .page-template-activities-print .the-content h5, .page-template-activities-print .the-content .popup-container .popup-content h5, .popup-container .popup-content .page-template-activities-print .the-content h6, .page-template-activities-print .the-content .popup-container .popup-content h6 {
    margin-bottom: 10px;
  }
  .popup-container .popup-content .subtitle h3, .popup-container .popup-content .page-template-activities-print .the-content h1 h3, .page-template-activities-print .the-content .popup-container .popup-content h1 h3, .popup-container .popup-content .page-template-activities-print .the-content h2 h3, .page-template-activities-print .the-content .popup-container .popup-content h2 h3, .popup-container .popup-content .page-template-activities-print .the-content h3 h3, .page-template-activities-print .the-content .popup-container .popup-content h3 h3, .popup-container .popup-content .page-template-activities-print .the-content h4 h3, .page-template-activities-print .the-content .popup-container .popup-content h4 h3, .popup-container .popup-content .page-template-activities-print .the-content h5 h3, .page-template-activities-print .the-content .popup-container .popup-content h5 h3, .popup-container .popup-content .page-template-activities-print .the-content h6 h3, .page-template-activities-print .the-content .popup-container .popup-content h6 h3 {
    font-size: 18px;
  }
  .popup-container .popup-content .image {
    margin-bottom: 16px;
    width: 200px;
  }
  .popup-container .popup-content .the-content {
    font: 400 15px/1.25em "poppins", sans-serif;
  }
  .popup-container .popup-content .the-content .buttons .btn, .popup-container .popup-content .the-content .buttons #header nav > ul > li.has-btn > a, #header .popup-container .popup-content .the-content .buttons nav > ul > li.has-btn > a, .popup-container .popup-content .the-content .buttons .activity-buttons .bx_bn_button, .activity-buttons .popup-container .popup-content .the-content .buttons .bx_bn_button, .popup-container .popup-content .the-content .buttons .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox button, .form .gform_body .gform_fields .gfield .ginput_container_checkbox .gfield_checkbox .popup-container .popup-content .the-content .buttons button {
    font-size: 15px;
    padding: 15px;
  }
  .interior-hero {
    width: calc(100% + 40px);
    left: -20px;
  }
  .interior-hero .interior-inner .content.has-logo-tag {
    padding-left: 0px;
  }
  .home-search {
    position: relative;
    padding-bottom: 100px;
  }
  .hero.front {
    display: block;
    background: rgb(93, 152, 208);
    background: -moz-linear-gradient(120deg, rgb(93, 152, 208) 0%, rgb(0, 55, 114) 100%);
    background: -webkit-linear-gradient(120deg, rgb(93, 152, 208) 0%, rgb(0, 55, 114) 100%);
    background: linear-gradient(120deg, rgb(93, 152, 208) 0%, rgb(0, 55, 114) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5d98d0", endColorstr="#003772", GradientType=1);
  }
  .banner-content-dates {
    min-width: auto;
    left: 0px;
    padding: 16px 22px;
  }
  .mobile-background > img, .mobile-background > picture {
    object-position: center;
    object-fit: cover;
  }
  .call-to-action {
    padding: 20px 15px;
    margin: 0 -20px;
  }
  .padding-both {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .padding-top {
    padding-top: 25px;
  }
  .padding-bottom {
    padding-bottom: 25px;
  }
  .padding-none {
    padding: 0 0;
  }
  .content {
    margin: 40px 0;
  }
  .faux-search .top {
    -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.15);
    height: 100%;
    display: block;
  }
  .faux-search .top .submit {
    width: 75px;
  }
  .faux-search .top .fields {
    flex-direction: column;
  }
  .faux-search .top .fields.three-col > div {
    width: 100%;
  }
  .faux-search .top .fields.four-col > div {
    width: 100%;
  }
  .faux-search .top .fields .text.field {
    padding: 20px;
  }
  .faux-search .top .fields .field {
    justify-content: flex-start;
    border-bottom: 1px solid #E6E8EA;
    width: 100%;
  }
  .faux-search .top .fields .field:first-child {
    border-radius: 15px 15px 0 0;
    width: 100%;
  }
  .faux-search .top .fields .field .choices {
    z-index: 1;
    width: 100% !important;
  }
  .faux-search .top .fields .field .placeholder {
    padding: 12px 20px;
    width: 100%;
  }
  .faux-search .top .fields .field .placeholder .label div:last-child {
    font-size: 16px;
  }
  .faux-search .top .submit {
    width: 100%;
  }
  .faux-search .top .submit a {
    padding: 12px 20px;
    border-radius: 0 0 12px 12px;
  }
  .popup-container {
    max-width: 90%;
  }
  .popup-container.top-left {
    top: 135px;
    left: 15px;
  }
  .popup-container.top-right {
    top: 135px;
    right: 15px;
  }
  .popup-container.bottom-left {
    bottom: 15px;
    left: 15px;
  }
  .popup-container.bottom-right {
    bottom: 15px;
    right: 15px;
  }
  .hero .faux-search {
    margin: 30px 0;
  }
  .title {
    font-size: 30px;
  }
  .subtitle, .page-template-activities-print .the-content h1, .page-template-activities-print .the-content h2, .page-template-activities-print .the-content h3, .page-template-activities-print .the-content h4, .page-template-activities-print .the-content h5, .page-template-activities-print .the-content h6 {
    font-size: 20px;
  }
  #footer .social-btn {
    margin-top: 30px;
    justify-content: center;
  }
  #footer .social-icons {
    margin-top: 30px;
    justify-content: center;
  }
  #footer #copyright {
    text-align: center;
  }
  .author-block {
    margin-bottom: 45px;
  }
  .author-block:nth-last-child(-n+2) {
    margin-bottom: 45px;
  }
  .activity-block .activity-date {
    font-size: 14px;
  }
  .activity-block .meta {
    padding: 25px;
  }
  .activity-block .meta .activity-title h2 {
    font-size: 22px;
  }
  .activity-block .meta .activity-meta {
    font-size: 16px;
  }
  .activity-dates > * {
    font-size: 14px;
    margin: 0 5px 5px;
    padding: 5px;
  }
  .activity-name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .activity-lists .activity-list {
    flex-direction: column;
  }
  .activity-buttons {
    display: block;
  }
  .activity-buttons .bx_bn_button {
    width: 100%;
    justify-content: center !important;
  }
  .activity-buttons > div,
  .activity-buttons > a {
    display: block;
    width: 100%;
    text-align: center !important;
    margin: 0 0 10px 0 !important;
  }
  .single-activity .activity-right {
    margin-top: 0;
  }
  .faux-search .field .choices {
    width: calc(100% + 125px);
  }
  .faux-search .field .placeholder {
    display: flex;
  }
  .faux-search .field .placeholder .label div:last-child {
    font-size: 16px;
  }
  .home .home-search {
    padding-bottom: 0;
  }
  .home .upcoming-activities {
    margin-top: 0;
  }
  .pub > div,
  .pub > a {
    width: 320px;
    height: 250px;
  }
  .pub .pub-pc {
    display: none;
  }
  .pub .pub-mobile {
    display: block;
  }
  .decoration-book {
    padding-top: 50px;
  }
  .decoration-book .video-out {
    margin-bottom: 0;
    transform: translateY(-10%);
  }
  .hero.front.no-video.hero-video-out {
    height: 600px;
  }
  .interior-hero.has-book .decoration-book {
    margin-top: -28vw;
  }
}
@media (max-width: 600px) {
  .play-video .play-icon svg {
    width: 50px;
  }
  .decoration-book.video-out .home-search {
    top: auto;
    bottom: 125px;
  }
  .hero.front.no-video {
    height: 720px;
  }
  .hero.front .background-container {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .hero.front .background-container .wrapper {
    flex-wrap: wrap;
  }
  .hero.front .background-container .banner-col-left {
    width: 100%;
    padding-right: 0px !important;
    padding-bottom: 30px;
  }
  .hero.front .background-container .banner-col-left img {
    max-height: 245px;
    width: auto !important;
  }
  .hero.front .background-container .banner-col-right {
    width: 100%;
    padding-left: 0px !important;
  }
  .hero.front .background-container .banner-col-right img {
    max-height: 245px;
    width: auto !important;
  }
  .decoration-book.video-out {
    transform: translateY(-9%);
  }
  .hero.front.no-video.hero-video-out {
    height: 720px;
  }
  .interior-hero.has-book .decoration-book {
    margin-top: -32vw;
  }
  .home-slider__slide {
    aspect-ratio: 1/1;
  }
  .home-slider__slide-image {
    width: 60%;
  }
}
@media (max-width: 474px) {
  .play-video .play-icon svg {
    width: 35px;
  }
  .tablet-background {
    display: none;
  }
  .mobile-background {
    display: block;
  }
  .hero.front {
    height: 800px;
  }
  .hero.front .hero-content .video-embed {
    top: 120px;
  }
  .decoration-book.video-out {
    transform: translateY(-8%);
  }
  .interior-hero.has-book .decoration-book {
    margin-top: -35vw;
  }
}
@media (max-width: 375px) {
  .hero.front {
    height: 840px;
  }
}
@media (max-width: 374px) {
  .decoration-book.video-out .home-search {
    top: auto;
    bottom: 90px;
  }
  .home .decoration-book {
    transform: translateY(-12%);
  }
  .hero.front .hero-content .video-embed {
    top: 150px;
  }
  .decoration-book.video-out {
    transform: translateY(-7%);
  }
  .interior-hero.has-book .decoration-book {
    margin-top: -41vw;
  }
}
@media print {
  @page {
    margin: 0;
  }
  body {
    -webkit-print-color-adjust: exact !important;
  }
  .wrapper {
    width: 95%;
  }
}

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