@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

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

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

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

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

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

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

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

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

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

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

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

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

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

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

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

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

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

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

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

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

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

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

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

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

.bootstrap-form-builder {
  /*!
 * Bootstrap v4.3.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 The Bootstrap Authors
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
  /*!
 *
 *     Litepicker v1.4.5 (https://github.com/wakirin/Litepicker)
 *     Package: litepicker (https://www.npmjs.com/package/litepicker)
 *     License: MIT (https://github.com/wakirin/Litepicker/blob/master/LICENCE.md)
 *     Copyright 2019-2020 Rinat G.
 *
 *     Hash: a40e40fe2fd7821d251c
 *     Generated on: 1589809451890
 *
 */
}

.bootstrap-form-builder :root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace
;
}

.bootstrap-form-builder *, .bootstrap-form-builder ::after, .bootstrap-form-builder ::before {
  box-sizing: border-box;
}

.bootstrap-form-builder html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.bootstrap-form-builder article, .bootstrap-form-builder aside, .bootstrap-form-builder figcaption, .bootstrap-form-builder figure, .bootstrap-form-builder footer, .bootstrap-form-builder header, .bootstrap-form-builder hgroup, .bootstrap-form-builder main, .bootstrap-form-builder nav, .bootstrap-form-builder section {
  display: block;
}

.bootstrap-form-builder body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

.bootstrap-form-builder [tabindex="-1"]:focus {
  outline: 0 !important;
}

.bootstrap-form-builder hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

.bootstrap-form-builder h1, .bootstrap-form-builder h2, .bootstrap-form-builder h3, .bootstrap-form-builder h4, .bootstrap-form-builder h5, .bootstrap-form-builder h6 {
  margin-top: 0;
  margin-bottom: .5rem;
}

.bootstrap-form-builder p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bootstrap-form-builder abbr[data-original-title], .bootstrap-form-builder abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.bootstrap-form-builder address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

.bootstrap-form-builder dl, .bootstrap-form-builder ol, .bootstrap-form-builder ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

.bootstrap-form-builder ol ol, .bootstrap-form-builder ol ul, .bootstrap-form-builder ul ol, .bootstrap-form-builder ul ul {
  margin-bottom: 0;
}

.bootstrap-form-builder dt {
  font-weight: 700;
}

.bootstrap-form-builder dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

.bootstrap-form-builder blockquote {
  margin: 0 0 1rem;
}

.bootstrap-form-builder b, .bootstrap-form-builder strong {
  font-weight: bolder;
}

.bootstrap-form-builder small {
  font-size: 80%;
}

.bootstrap-form-builder sub, .bootstrap-form-builder sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

.bootstrap-form-builder sub {
  bottom: -.25em;
}

.bootstrap-form-builder sup {
  top: -.5em;
}

.bootstrap-form-builder a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

.bootstrap-form-builder a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.bootstrap-form-builder a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

.bootstrap-form-builder a:not([href]):not([tabindex]):focus, .bootstrap-form-builder a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

.bootstrap-form-builder a:not([href]):not([tabindex]):focus {
  outline: 0;
}

.bootstrap-form-builder code, .bootstrap-form-builder kbd, .bootstrap-form-builder pre, .bootstrap-form-builder samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

.bootstrap-form-builder pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

.bootstrap-form-builder figure {
  margin: 0 0 1rem;
}

.bootstrap-form-builder img {
  vertical-align: middle;
  border-style: none;
}

.bootstrap-form-builder svg {
  overflow: hidden;
  vertical-align: middle;
}

.bootstrap-form-builder table {
  border-collapse: collapse;
}

.bootstrap-form-builder caption {
  padding-top: .75rem;
  padding-bottom: .75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

.bootstrap-form-builder th {
  text-align: inherit;
}

.bootstrap-form-builder label {
  display: inline-block;
  margin-bottom: .5rem;
}

.bootstrap-form-builder input, .bootstrap-form-builder optgroup, .bootstrap-form-builder select, .bootstrap-form-builder textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.bootstrap-form-builder input {
  overflow: visible;
}

.bootstrap-form-builder select {
  text-transform: none;
}

.bootstrap-form-builder select {
  word-wrap: normal;
}

.bootstrap-form-builder [type=button], .bootstrap-form-builder [type=reset], .bootstrap-form-builder [type=submit], .bootstrap-form-builder button {
  -webkit-appearance: button;
}

.bootstrap-form-builder [type=button]:not(:disabled), .bootstrap-form-builder [type=reset]:not(:disabled), .bootstrap-form-builder [type=submit]:not(:disabled), .bootstrap-form-builder button:not(:disabled) {
  cursor: pointer;
}

.bootstrap-form-builder [type=button]::-moz-focus-inner, .bootstrap-form-builder [type=reset]::-moz-focus-inner, .bootstrap-form-builder [type=submit]::-moz-focus-inner, .bootstrap-form-builder button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

.bootstrap-form-builder input[type=checkbox], .bootstrap-form-builder input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

.bootstrap-form-builder input[type=date], .bootstrap-form-builder input[type=datetime-local], .bootstrap-form-builder input[type=month], .bootstrap-form-builder input[type=time] {
  -webkit-appearance: listbox;
}

.bootstrap-form-builder textarea {
  overflow: auto;
  resize: vertical;
}

.bootstrap-form-builder fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.bootstrap-form-builder legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

.bootstrap-form-builder progress {
  vertical-align: baseline;
}

.bootstrap-form-builder [type=number]::-webkit-inner-spin-button, .bootstrap-form-builder [type=number]::-webkit-outer-spin-button {
  height: auto;
}

.bootstrap-form-builder [type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

.bootstrap-form-builder [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

.bootstrap-form-builder ::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

.bootstrap-form-builder output {
  display: inline-block;
}

.bootstrap-form-builder summary {
  display: list-item;
  cursor: pointer;
}

.bootstrap-form-builder template {
  display: none;
}

.bootstrap-form-builder [hidden] {
  display: none !important;
}

.bootstrap-form-builder .h1, .bootstrap-form-builder .h2, .bootstrap-form-builder .h3, .bootstrap-form-builder .h4, .bootstrap-form-builder .h5, .bootstrap-form-builder .h6, .bootstrap-form-builder h1, .bootstrap-form-builder h2, .bootstrap-form-builder h3, .bootstrap-form-builder h4, .bootstrap-form-builder h5, .bootstrap-form-builder h6 {
  margin-bottom: .5rem;
  font-weight: 500;
  line-height: 1.2;
}

.bootstrap-form-builder .h1, .bootstrap-form-builder h1 {
  font-size: 2.5rem;
}

.bootstrap-form-builder .h2, .bootstrap-form-builder h2 {
  font-size: 2rem;
}

.bootstrap-form-builder .h3, .bootstrap-form-builder h3 {
  font-size: 1.75rem;
}

.bootstrap-form-builder .h4, .bootstrap-form-builder h4 {
  font-size: 1.5rem;
}

.bootstrap-form-builder .h5, .bootstrap-form-builder h5 {
  font-size: 1.25rem;
}

.bootstrap-form-builder .h6, .bootstrap-form-builder h6 {
  font-size: 1rem;
}

.bootstrap-form-builder .lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.bootstrap-form-builder .display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.bootstrap-form-builder .display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.bootstrap-form-builder .display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.bootstrap-form-builder .display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.bootstrap-form-builder hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bootstrap-form-builder .small, .bootstrap-form-builder small {
  font-size: 80%;
  font-weight: 400;
}

.bootstrap-form-builder .mark, .bootstrap-form-builder mark {
  padding: .2em;
  background-color: #fcf8e3;
}

.bootstrap-form-builder .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.bootstrap-form-builder .list-inline {
  padding-left: 0;
  list-style: none;
}

.bootstrap-form-builder .list-inline-item {
  display: inline-block;
}

.bootstrap-form-builder .list-inline-item:not(:last-child) {
  margin-right: .5rem;
}

.bootstrap-form-builder .initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.bootstrap-form-builder .blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.bootstrap-form-builder .blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}

.bootstrap-form-builder .blockquote-footer::before {
  content: "\2014\00A0";
}

.bootstrap-form-builder .img-fluid {
  max-width: 100%;
  height: auto;
}

.bootstrap-form-builder .img-thumbnail {
  padding: .25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: .25rem;
  max-width: 100%;
  height: auto;
}

.bootstrap-form-builder .figure {
  display: inline-block;
}

.bootstrap-form-builder .figure-img {
  margin-bottom: .5rem;
  line-height: 1;
}

.bootstrap-form-builder .figure-caption {
  font-size: 90%;
  color: #6c757d;
}

.bootstrap-form-builder code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word;
}

.bootstrap-form-builder a > code {
  color: inherit;
}

.bootstrap-form-builder kbd {
  padding: .2rem .4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: .2rem;
}

.bootstrap-form-builder kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

.bootstrap-form-builder pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

.bootstrap-form-builder pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.bootstrap-form-builder .pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

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

@media (min-width: 576px) {
  .bootstrap-form-builder .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .container {
    max-width: 1140px;
  }
}

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

.bootstrap-form-builder .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

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

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

.bootstrap-form-builder .col, .bootstrap-form-builder .col-1, .bootstrap-form-builder .col-10, .bootstrap-form-builder .col-11, .bootstrap-form-builder .col-12, .bootstrap-form-builder .col-2, .bootstrap-form-builder .col-3, .bootstrap-form-builder .col-4, .bootstrap-form-builder .col-5, .bootstrap-form-builder .col-6, .bootstrap-form-builder .col-7, .bootstrap-form-builder .col-8, .bootstrap-form-builder .col-9, .bootstrap-form-builder .col-auto, .bootstrap-form-builder .col-lg, .bootstrap-form-builder .col-lg-1, .bootstrap-form-builder .col-lg-10, .bootstrap-form-builder .col-lg-11, .bootstrap-form-builder .col-lg-12, .bootstrap-form-builder .col-lg-2, .bootstrap-form-builder .col-lg-3, .bootstrap-form-builder .col-lg-4, .bootstrap-form-builder .col-lg-5, .bootstrap-form-builder .col-lg-6, .bootstrap-form-builder .col-lg-7, .bootstrap-form-builder .col-lg-8, .bootstrap-form-builder .col-lg-9, .bootstrap-form-builder .col-lg-auto, .bootstrap-form-builder .col-md, .bootstrap-form-builder .col-md-1, .bootstrap-form-builder .col-md-10, .bootstrap-form-builder .col-md-11, .bootstrap-form-builder .col-md-12, .bootstrap-form-builder .col-md-2, .bootstrap-form-builder .col-md-3, .bootstrap-form-builder .col-md-4, .bootstrap-form-builder .col-md-5, .bootstrap-form-builder .col-md-6, .bootstrap-form-builder .col-md-7, .bootstrap-form-builder .col-md-8, .bootstrap-form-builder .col-md-9, .bootstrap-form-builder .col-md-auto, .bootstrap-form-builder .col-sm, .bootstrap-form-builder .col-sm-1, .bootstrap-form-builder .col-sm-10, .bootstrap-form-builder .col-sm-11, .bootstrap-form-builder .col-sm-12, .bootstrap-form-builder .col-sm-2, .bootstrap-form-builder .col-sm-3, .bootstrap-form-builder .col-sm-4, .bootstrap-form-builder .col-sm-5, .bootstrap-form-builder .col-sm-6, .bootstrap-form-builder .col-sm-7, .bootstrap-form-builder .col-sm-8, .bootstrap-form-builder .col-sm-9, .bootstrap-form-builder .col-sm-auto, .bootstrap-form-builder .col-xl, .bootstrap-form-builder .col-xl-1, .bootstrap-form-builder .col-xl-10, .bootstrap-form-builder .col-xl-11, .bootstrap-form-builder .col-xl-12, .bootstrap-form-builder .col-xl-2, .bootstrap-form-builder .col-xl-3, .bootstrap-form-builder .col-xl-4, .bootstrap-form-builder .col-xl-5, .bootstrap-form-builder .col-xl-6, .bootstrap-form-builder .col-xl-7, .bootstrap-form-builder .col-xl-8, .bootstrap-form-builder .col-xl-9, .bootstrap-form-builder .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.bootstrap-form-builder .col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.bootstrap-form-builder .col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.bootstrap-form-builder .col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.bootstrap-form-builder .col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.bootstrap-form-builder .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.bootstrap-form-builder .col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.bootstrap-form-builder .col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.bootstrap-form-builder .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.bootstrap-form-builder .col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.bootstrap-form-builder .col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.bootstrap-form-builder .col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.bootstrap-form-builder .col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.bootstrap-form-builder .col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.bootstrap-form-builder .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.bootstrap-form-builder .order-first {
  order: -1;
}

.bootstrap-form-builder .order-last {
  order: 13;
}

.bootstrap-form-builder .order-0 {
  order: 0;
}

.bootstrap-form-builder .order-1 {
  order: 1;
}

.bootstrap-form-builder .order-2 {
  order: 2;
}

.bootstrap-form-builder .order-3 {
  order: 3;
}

.bootstrap-form-builder .order-4 {
  order: 4;
}

.bootstrap-form-builder .order-5 {
  order: 5;
}

.bootstrap-form-builder .order-6 {
  order: 6;
}

.bootstrap-form-builder .order-7 {
  order: 7;
}

.bootstrap-form-builder .order-8 {
  order: 8;
}

.bootstrap-form-builder .order-9 {
  order: 9;
}

.bootstrap-form-builder .order-10 {
  order: 10;
}

.bootstrap-form-builder .order-11 {
  order: 11;
}

.bootstrap-form-builder .order-12 {
  order: 12;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .bootstrap-form-builder .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .bootstrap-form-builder .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .bootstrap-form-builder .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-form-builder .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .bootstrap-form-builder .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .bootstrap-form-builder .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-form-builder .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .bootstrap-form-builder .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .bootstrap-form-builder .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-form-builder .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .bootstrap-form-builder .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .bootstrap-form-builder .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-form-builder .order-sm-first {
    order: -1;
  }
  .bootstrap-form-builder .order-sm-last {
    order: 13;
  }
  .bootstrap-form-builder .order-sm-0 {
    order: 0;
  }
  .bootstrap-form-builder .order-sm-1 {
    order: 1;
  }
  .bootstrap-form-builder .order-sm-2 {
    order: 2;
  }
  .bootstrap-form-builder .order-sm-3 {
    order: 3;
  }
  .bootstrap-form-builder .order-sm-4 {
    order: 4;
  }
  .bootstrap-form-builder .order-sm-5 {
    order: 5;
  }
  .bootstrap-form-builder .order-sm-6 {
    order: 6;
  }
  .bootstrap-form-builder .order-sm-7 {
    order: 7;
  }
  .bootstrap-form-builder .order-sm-8 {
    order: 8;
  }
  .bootstrap-form-builder .order-sm-9 {
    order: 9;
  }
  .bootstrap-form-builder .order-sm-10 {
    order: 10;
  }
  .bootstrap-form-builder .order-sm-11 {
    order: 11;
  }
  .bootstrap-form-builder .order-sm-12 {
    order: 12;
  }
  .bootstrap-form-builder .offset-sm-0 {
    margin-left: 0;
  }
  .bootstrap-form-builder .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .bootstrap-form-builder .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .bootstrap-form-builder .offset-sm-3 {
    margin-left: 25%;
  }
  .bootstrap-form-builder .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .bootstrap-form-builder .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .bootstrap-form-builder .offset-sm-6 {
    margin-left: 50%;
  }
  .bootstrap-form-builder .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .bootstrap-form-builder .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .bootstrap-form-builder .offset-sm-9 {
    margin-left: 75%;
  }
  .bootstrap-form-builder .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .bootstrap-form-builder .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .bootstrap-form-builder .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .bootstrap-form-builder .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-form-builder .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .bootstrap-form-builder .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .bootstrap-form-builder .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-form-builder .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .bootstrap-form-builder .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .bootstrap-form-builder .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-form-builder .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .bootstrap-form-builder .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .bootstrap-form-builder .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-form-builder .order-md-first {
    order: -1;
  }
  .bootstrap-form-builder .order-md-last {
    order: 13;
  }
  .bootstrap-form-builder .order-md-0 {
    order: 0;
  }
  .bootstrap-form-builder .order-md-1 {
    order: 1;
  }
  .bootstrap-form-builder .order-md-2 {
    order: 2;
  }
  .bootstrap-form-builder .order-md-3 {
    order: 3;
  }
  .bootstrap-form-builder .order-md-4 {
    order: 4;
  }
  .bootstrap-form-builder .order-md-5 {
    order: 5;
  }
  .bootstrap-form-builder .order-md-6 {
    order: 6;
  }
  .bootstrap-form-builder .order-md-7 {
    order: 7;
  }
  .bootstrap-form-builder .order-md-8 {
    order: 8;
  }
  .bootstrap-form-builder .order-md-9 {
    order: 9;
  }
  .bootstrap-form-builder .order-md-10 {
    order: 10;
  }
  .bootstrap-form-builder .order-md-11 {
    order: 11;
  }
  .bootstrap-form-builder .order-md-12 {
    order: 12;
  }
  .bootstrap-form-builder .offset-md-0 {
    margin-left: 0;
  }
  .bootstrap-form-builder .offset-md-1 {
    margin-left: 8.333333%;
  }
  .bootstrap-form-builder .offset-md-2 {
    margin-left: 16.666667%;
  }
  .bootstrap-form-builder .offset-md-3 {
    margin-left: 25%;
  }
  .bootstrap-form-builder .offset-md-4 {
    margin-left: 33.333333%;
  }
  .bootstrap-form-builder .offset-md-5 {
    margin-left: 41.666667%;
  }
  .bootstrap-form-builder .offset-md-6 {
    margin-left: 50%;
  }
  .bootstrap-form-builder .offset-md-7 {
    margin-left: 58.333333%;
  }
  .bootstrap-form-builder .offset-md-8 {
    margin-left: 66.666667%;
  }
  .bootstrap-form-builder .offset-md-9 {
    margin-left: 75%;
  }
  .bootstrap-form-builder .offset-md-10 {
    margin-left: 83.333333%;
  }
  .bootstrap-form-builder .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .bootstrap-form-builder .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .bootstrap-form-builder .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-form-builder .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .bootstrap-form-builder .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .bootstrap-form-builder .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-form-builder .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .bootstrap-form-builder .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .bootstrap-form-builder .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-form-builder .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .bootstrap-form-builder .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .bootstrap-form-builder .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-form-builder .order-lg-first {
    order: -1;
  }
  .bootstrap-form-builder .order-lg-last {
    order: 13;
  }
  .bootstrap-form-builder .order-lg-0 {
    order: 0;
  }
  .bootstrap-form-builder .order-lg-1 {
    order: 1;
  }
  .bootstrap-form-builder .order-lg-2 {
    order: 2;
  }
  .bootstrap-form-builder .order-lg-3 {
    order: 3;
  }
  .bootstrap-form-builder .order-lg-4 {
    order: 4;
  }
  .bootstrap-form-builder .order-lg-5 {
    order: 5;
  }
  .bootstrap-form-builder .order-lg-6 {
    order: 6;
  }
  .bootstrap-form-builder .order-lg-7 {
    order: 7;
  }
  .bootstrap-form-builder .order-lg-8 {
    order: 8;
  }
  .bootstrap-form-builder .order-lg-9 {
    order: 9;
  }
  .bootstrap-form-builder .order-lg-10 {
    order: 10;
  }
  .bootstrap-form-builder .order-lg-11 {
    order: 11;
  }
  .bootstrap-form-builder .order-lg-12 {
    order: 12;
  }
  .bootstrap-form-builder .offset-lg-0 {
    margin-left: 0;
  }
  .bootstrap-form-builder .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .bootstrap-form-builder .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .bootstrap-form-builder .offset-lg-3 {
    margin-left: 25%;
  }
  .bootstrap-form-builder .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .bootstrap-form-builder .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .bootstrap-form-builder .offset-lg-6 {
    margin-left: 50%;
  }
  .bootstrap-form-builder .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .bootstrap-form-builder .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .bootstrap-form-builder .offset-lg-9 {
    margin-left: 75%;
  }
  .bootstrap-form-builder .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .bootstrap-form-builder .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .bootstrap-form-builder .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .bootstrap-form-builder .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .bootstrap-form-builder .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .bootstrap-form-builder .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .bootstrap-form-builder .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .bootstrap-form-builder .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .bootstrap-form-builder .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .bootstrap-form-builder .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .bootstrap-form-builder .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .bootstrap-form-builder .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .bootstrap-form-builder .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .bootstrap-form-builder .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .bootstrap-form-builder .order-xl-first {
    order: -1;
  }
  .bootstrap-form-builder .order-xl-last {
    order: 13;
  }
  .bootstrap-form-builder .order-xl-0 {
    order: 0;
  }
  .bootstrap-form-builder .order-xl-1 {
    order: 1;
  }
  .bootstrap-form-builder .order-xl-2 {
    order: 2;
  }
  .bootstrap-form-builder .order-xl-3 {
    order: 3;
  }
  .bootstrap-form-builder .order-xl-4 {
    order: 4;
  }
  .bootstrap-form-builder .order-xl-5 {
    order: 5;
  }
  .bootstrap-form-builder .order-xl-6 {
    order: 6;
  }
  .bootstrap-form-builder .order-xl-7 {
    order: 7;
  }
  .bootstrap-form-builder .order-xl-8 {
    order: 8;
  }
  .bootstrap-form-builder .order-xl-9 {
    order: 9;
  }
  .bootstrap-form-builder .order-xl-10 {
    order: 10;
  }
  .bootstrap-form-builder .order-xl-11 {
    order: 11;
  }
  .bootstrap-form-builder .order-xl-12 {
    order: 12;
  }
  .bootstrap-form-builder .offset-xl-0 {
    margin-left: 0;
  }
  .bootstrap-form-builder .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .bootstrap-form-builder .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .bootstrap-form-builder .offset-xl-3 {
    margin-left: 25%;
  }
  .bootstrap-form-builder .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .bootstrap-form-builder .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .bootstrap-form-builder .offset-xl-6 {
    margin-left: 50%;
  }
  .bootstrap-form-builder .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .bootstrap-form-builder .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .bootstrap-form-builder .offset-xl-9 {
    margin-left: 75%;
  }
  .bootstrap-form-builder .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .bootstrap-form-builder .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.bootstrap-form-builder .table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.bootstrap-form-builder .table td, .bootstrap-form-builder .table th {
  padding: .75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.bootstrap-form-builder .table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.bootstrap-form-builder .table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.bootstrap-form-builder .table-sm td, .bootstrap-form-builder .table-sm th {
  padding: .3rem;
}

.bootstrap-form-builder .table-bordered {
  border: 1px solid #dee2e6;
}

.bootstrap-form-builder .table-bordered td, .bootstrap-form-builder .table-bordered th {
  border: 1px solid #dee2e6;
}

.bootstrap-form-builder .table-bordered thead td, .bootstrap-form-builder .table-bordered thead th {
  border-bottom-width: 2px;
}

.bootstrap-form-builder .table-borderless tbody + tbody, .bootstrap-form-builder .table-borderless td, .bootstrap-form-builder .table-borderless th, .bootstrap-form-builder .table-borderless thead th {
  border: 0;
}

.bootstrap-form-builder .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.bootstrap-form-builder .table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.bootstrap-form-builder .table-primary, .bootstrap-form-builder .table-primary > td, .bootstrap-form-builder .table-primary > th {
  background-color: #b8daff;
}

.bootstrap-form-builder .table-primary tbody + tbody, .bootstrap-form-builder .table-primary td, .bootstrap-form-builder .table-primary th, .bootstrap-form-builder .table-primary thead th {
  border-color: #7abaff;
}

.bootstrap-form-builder .table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.bootstrap-form-builder .table-hover .table-primary:hover > td, .bootstrap-form-builder .table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.bootstrap-form-builder .table-secondary, .bootstrap-form-builder .table-secondary > td, .bootstrap-form-builder .table-secondary > th {
  background-color: #d6d8db;
}

.bootstrap-form-builder .table-secondary tbody + tbody, .bootstrap-form-builder .table-secondary td, .bootstrap-form-builder .table-secondary th, .bootstrap-form-builder .table-secondary thead th {
  border-color: #b3b7bb;
}

.bootstrap-form-builder .table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.bootstrap-form-builder .table-hover .table-secondary:hover > td, .bootstrap-form-builder .table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.bootstrap-form-builder .table-success, .bootstrap-form-builder .table-success > td, .bootstrap-form-builder .table-success > th {
  background-color: #c3e6cb;
}

.bootstrap-form-builder .table-success tbody + tbody, .bootstrap-form-builder .table-success td, .bootstrap-form-builder .table-success th, .bootstrap-form-builder .table-success thead th {
  border-color: #8fd19e;
}

.bootstrap-form-builder .table-hover .table-success:hover {
  background-color: #b1dfbb;
}

.bootstrap-form-builder .table-hover .table-success:hover > td, .bootstrap-form-builder .table-hover .table-success:hover > th {
  background-color: #b1dfbb;
}

.bootstrap-form-builder .table-info, .bootstrap-form-builder .table-info > td, .bootstrap-form-builder .table-info > th {
  background-color: #bee5eb;
}

.bootstrap-form-builder .table-info tbody + tbody, .bootstrap-form-builder .table-info td, .bootstrap-form-builder .table-info th, .bootstrap-form-builder .table-info thead th {
  border-color: #86cfda;
}

.bootstrap-form-builder .table-hover .table-info:hover {
  background-color: #abdde5;
}

.bootstrap-form-builder .table-hover .table-info:hover > td, .bootstrap-form-builder .table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.bootstrap-form-builder .table-warning, .bootstrap-form-builder .table-warning > td, .bootstrap-form-builder .table-warning > th {
  background-color: #ffeeba;
}

.bootstrap-form-builder .table-warning tbody + tbody, .bootstrap-form-builder .table-warning td, .bootstrap-form-builder .table-warning th, .bootstrap-form-builder .table-warning thead th {
  border-color: #ffdf7e;
}

.bootstrap-form-builder .table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.bootstrap-form-builder .table-hover .table-warning:hover > td, .bootstrap-form-builder .table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.bootstrap-form-builder .table-danger, .bootstrap-form-builder .table-danger > td, .bootstrap-form-builder .table-danger > th {
  background-color: #f5c6cb;
}

.bootstrap-form-builder .table-danger tbody + tbody, .bootstrap-form-builder .table-danger td, .bootstrap-form-builder .table-danger th, .bootstrap-form-builder .table-danger thead th {
  border-color: #ed969e;
}

.bootstrap-form-builder .table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.bootstrap-form-builder .table-hover .table-danger:hover > td, .bootstrap-form-builder .table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.bootstrap-form-builder .table-light, .bootstrap-form-builder .table-light > td, .bootstrap-form-builder .table-light > th {
  background-color: #fdfdfe;
}

.bootstrap-form-builder .table-light tbody + tbody, .bootstrap-form-builder .table-light td, .bootstrap-form-builder .table-light th, .bootstrap-form-builder .table-light thead th {
  border-color: #fbfcfc;
}

.bootstrap-form-builder .table-hover .table-light:hover {
  background-color: #ececf6;
}

.bootstrap-form-builder .table-hover .table-light:hover > td, .bootstrap-form-builder .table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.bootstrap-form-builder .table-dark, .bootstrap-form-builder .table-dark > td, .bootstrap-form-builder .table-dark > th {
  background-color: #c6c8ca;
}

.bootstrap-form-builder .table-dark tbody + tbody, .bootstrap-form-builder .table-dark td, .bootstrap-form-builder .table-dark th, .bootstrap-form-builder .table-dark thead th {
  border-color: #95999c;
}

.bootstrap-form-builder .table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.bootstrap-form-builder .table-hover .table-dark:hover > td, .bootstrap-form-builder .table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.bootstrap-form-builder .table-active, .bootstrap-form-builder .table-active > td, .bootstrap-form-builder .table-active > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.bootstrap-form-builder .table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.bootstrap-form-builder .table-hover .table-active:hover > td, .bootstrap-form-builder .table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.bootstrap-form-builder .table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.bootstrap-form-builder .table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.bootstrap-form-builder .table-dark {
  color: #fff;
  background-color: #343a40;
}

.bootstrap-form-builder .table-dark td, .bootstrap-form-builder .table-dark th, .bootstrap-form-builder .table-dark thead th {
  border-color: #454d55;
}

.bootstrap-form-builder .table-dark.table-bordered {
  border: 0;
}

.bootstrap-form-builder .table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.bootstrap-form-builder .table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .bootstrap-form-builder .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-form-builder .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .bootstrap-form-builder .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-form-builder .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 991.98px) {
  .bootstrap-form-builder .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-form-builder .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .bootstrap-form-builder .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .bootstrap-form-builder .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

.bootstrap-form-builder .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bootstrap-form-builder .table-responsive > .table-bordered {
  border: 0;
}

.bootstrap-form-builder .form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .form-control {
    transition: none;
  }
}

.bootstrap-form-builder .form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.bootstrap-form-builder .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.bootstrap-form-builder .form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.bootstrap-form-builder .form-control:disabled, .bootstrap-form-builder .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.bootstrap-form-builder select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.bootstrap-form-builder .form-control-file, .bootstrap-form-builder .form-control-range {
  display: block;
  width: 100%;
}

.bootstrap-form-builder .col-form-label {
  padding-top: calc(.375rem + 1px);
  padding-bottom: calc(.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.bootstrap-form-builder .col-form-label-lg {
  padding-top: calc(.5rem + 1px);
  padding-bottom: calc(.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.bootstrap-form-builder .col-form-label-sm {
  padding-top: calc(.25rem + 1px);
  padding-bottom: calc(.25rem + 1px);
  font-size: .875rem;
  line-height: 1.5;
}

.bootstrap-form-builder .form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: .375rem;
  padding-bottom: .375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.bootstrap-form-builder .form-control-plaintext.form-control-lg, .bootstrap-form-builder .form-control-plaintext.form-control-sm {
  padding-right: 0;
  padding-left: 0;
}

.bootstrap-form-builder .form-control-sm {
  height: calc(1.5em + .5rem + 2px);
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.bootstrap-form-builder .form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.bootstrap-form-builder select.form-control[multiple], .bootstrap-form-builder select.form-control[size] {
  height: auto;
}

.bootstrap-form-builder textarea.form-control {
  height: auto;
}

.bootstrap-form-builder .form-group {
  margin-bottom: 1rem;
}

.bootstrap-form-builder .form-text {
  display: block;
  margin-top: .25rem;
}

.bootstrap-form-builder .form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.bootstrap-form-builder .form-row > .col, .bootstrap-form-builder .form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.bootstrap-form-builder .form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.bootstrap-form-builder .form-check-input {
  position: absolute;
  margin-top: .3rem;
  margin-left: -1.25rem;
}

.bootstrap-form-builder .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.bootstrap-form-builder .form-check-label {
  margin-bottom: 0;
}

.bootstrap-form-builder .form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: .75rem;
}

.bootstrap-form-builder .form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: .3125rem;
  margin-left: 0;
}

.bootstrap-form-builder .valid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #28a745;
}

.bootstrap-form-builder .valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: .25rem;
}

.bootstrap-form-builder .form-control.is-valid, .bootstrap-form-builder .was-validated .form-control:valid {
  border-color: #28a745;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(.375em + .1875rem);
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.bootstrap-form-builder .form-control.is-valid:focus, .bootstrap-form-builder .was-validated .form-control:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.bootstrap-form-builder .form-control.is-valid ~ .valid-feedback, .bootstrap-form-builder .form-control.is-valid ~ .valid-tooltip, .bootstrap-form-builder .was-validated .form-control:valid ~ .valid-feedback, .bootstrap-form-builder .was-validated .form-control:valid ~ .valid-tooltip {
  display: block;
}

.bootstrap-form-builder .was-validated textarea.form-control:valid, .bootstrap-form-builder textarea.form-control.is-valid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}

.bootstrap-form-builder .custom-select.is-valid, .bootstrap-form-builder .was-validated .custom-select:valid {
  border-color: #28a745;
  padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}

.bootstrap-form-builder .custom-select.is-valid:focus, .bootstrap-form-builder .was-validated .custom-select:valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.bootstrap-form-builder .custom-select.is-valid ~ .valid-feedback, .bootstrap-form-builder .custom-select.is-valid ~ .valid-tooltip, .bootstrap-form-builder .was-validated .custom-select:valid ~ .valid-feedback, .bootstrap-form-builder .was-validated .custom-select:valid ~ .valid-tooltip {
  display: block;
}

.bootstrap-form-builder .form-control-file.is-valid ~ .valid-feedback, .bootstrap-form-builder .form-control-file.is-valid ~ .valid-tooltip, .bootstrap-form-builder .was-validated .form-control-file:valid ~ .valid-feedback, .bootstrap-form-builder .was-validated .form-control-file:valid ~ .valid-tooltip {
  display: block;
}

.bootstrap-form-builder .form-check-input.is-valid ~ .form-check-label, .bootstrap-form-builder .was-validated .form-check-input:valid ~ .form-check-label {
  color: #28a745;
}

.bootstrap-form-builder .form-check-input.is-valid ~ .valid-feedback, .bootstrap-form-builder .form-check-input.is-valid ~ .valid-tooltip, .bootstrap-form-builder .was-validated .form-check-input:valid ~ .valid-feedback, .bootstrap-form-builder .was-validated .form-check-input:valid ~ .valid-tooltip {
  display: block;
}

.bootstrap-form-builder .custom-control-input.is-valid ~ .custom-control-label, .bootstrap-form-builder .was-validated .custom-control-input:valid ~ .custom-control-label {
  color: #28a745;
}

.bootstrap-form-builder .custom-control-input.is-valid ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.bootstrap-form-builder .custom-control-input.is-valid ~ .valid-feedback, .bootstrap-form-builder .custom-control-input.is-valid ~ .valid-tooltip, .bootstrap-form-builder .was-validated .custom-control-input:valid ~ .valid-feedback, .bootstrap-form-builder .was-validated .custom-control-input:valid ~ .valid-tooltip {
  display: block;
}

.bootstrap-form-builder .custom-control-input.is-valid:checked ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.bootstrap-form-builder .custom-control-input.is-valid:focus ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.bootstrap-form-builder .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #28a745;
}

.bootstrap-form-builder .custom-file-input.is-valid ~ .custom-file-label, .bootstrap-form-builder .was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #28a745;
}

.bootstrap-form-builder .custom-file-input.is-valid ~ .valid-feedback, .bootstrap-form-builder .custom-file-input.is-valid ~ .valid-tooltip, .bootstrap-form-builder .was-validated .custom-file-input:valid ~ .valid-feedback, .bootstrap-form-builder .was-validated .custom-file-input:valid ~ .valid-tooltip {
  display: block;
}

.bootstrap-form-builder .custom-file-input.is-valid:focus ~ .custom-file-label, .bootstrap-form-builder .was-validated .custom-file-input:valid:focus ~ .custom-file-label {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.bootstrap-form-builder .invalid-feedback {
  display: none;
  width: 100%;
  margin-top: .25rem;
  font-size: 80%;
  color: #dc3545;
}

.bootstrap-form-builder .invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: .25rem .5rem;
  margin-top: .1rem;
  font-size: .875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: .25rem;
}

.bootstrap-form-builder .form-control.is-invalid, .bootstrap-form-builder .was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + .75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(.375em + .1875rem);
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.bootstrap-form-builder .form-control.is-invalid:focus, .bootstrap-form-builder .was-validated .form-control:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.bootstrap-form-builder .form-control.is-invalid ~ .invalid-feedback, .bootstrap-form-builder .form-control.is-invalid ~ .invalid-tooltip, .bootstrap-form-builder .was-validated .form-control:invalid ~ .invalid-feedback, .bootstrap-form-builder .was-validated .form-control:invalid ~ .invalid-tooltip {
  display: block;
}

.bootstrap-form-builder .was-validated textarea.form-control:invalid, .bootstrap-form-builder textarea.form-control.is-invalid {
  padding-right: calc(1.5em + .75rem);
  background-position: top calc(.375em + .1875rem) right calc(.375em + .1875rem);
}

.bootstrap-form-builder .custom-select.is-invalid, .bootstrap-form-builder .was-validated .custom-select:invalid {
  border-color: #dc3545;
  padding-right: calc((1em + .75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(.75em + .375rem) calc(.75em + .375rem);
}

.bootstrap-form-builder .custom-select.is-invalid:focus, .bootstrap-form-builder .was-validated .custom-select:invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.bootstrap-form-builder .custom-select.is-invalid ~ .invalid-feedback, .bootstrap-form-builder .custom-select.is-invalid ~ .invalid-tooltip, .bootstrap-form-builder .was-validated .custom-select:invalid ~ .invalid-feedback, .bootstrap-form-builder .was-validated .custom-select:invalid ~ .invalid-tooltip {
  display: block;
}

.bootstrap-form-builder .form-control-file.is-invalid ~ .invalid-feedback, .bootstrap-form-builder .form-control-file.is-invalid ~ .invalid-tooltip, .bootstrap-form-builder .was-validated .form-control-file:invalid ~ .invalid-feedback, .bootstrap-form-builder .was-validated .form-control-file:invalid ~ .invalid-tooltip {
  display: block;
}

.bootstrap-form-builder .form-check-input.is-invalid ~ .form-check-label, .bootstrap-form-builder .was-validated .form-check-input:invalid ~ .form-check-label {
  color: #dc3545;
}

.bootstrap-form-builder .form-check-input.is-invalid ~ .invalid-feedback, .bootstrap-form-builder .form-check-input.is-invalid ~ .invalid-tooltip, .bootstrap-form-builder .was-validated .form-check-input:invalid ~ .invalid-feedback, .bootstrap-form-builder .was-validated .form-check-input:invalid ~ .invalid-tooltip {
  display: block;
}

.bootstrap-form-builder .custom-control-input.is-invalid ~ .custom-control-label, .bootstrap-form-builder .was-validated .custom-control-input:invalid ~ .custom-control-label {
  color: #dc3545;
}

.bootstrap-form-builder .custom-control-input.is-invalid ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.bootstrap-form-builder .custom-control-input.is-invalid ~ .invalid-feedback, .bootstrap-form-builder .custom-control-input.is-invalid ~ .invalid-tooltip, .bootstrap-form-builder .was-validated .custom-control-input:invalid ~ .invalid-feedback, .bootstrap-form-builder .was-validated .custom-control-input:invalid ~ .invalid-tooltip {
  display: block;
}

.bootstrap-form-builder .custom-control-input.is-invalid:checked ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.bootstrap-form-builder .custom-control-input.is-invalid:focus ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.bootstrap-form-builder .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before, .bootstrap-form-builder .was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.bootstrap-form-builder .custom-file-input.is-invalid ~ .custom-file-label, .bootstrap-form-builder .was-validated .custom-file-input:invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.bootstrap-form-builder .custom-file-input.is-invalid ~ .invalid-feedback, .bootstrap-form-builder .custom-file-input.is-invalid ~ .invalid-tooltip, .bootstrap-form-builder .was-validated .custom-file-input:invalid ~ .invalid-feedback, .bootstrap-form-builder .was-validated .custom-file-input:invalid ~ .invalid-tooltip {
  display: block;
}

.bootstrap-form-builder .custom-file-input.is-invalid:focus ~ .custom-file-label, .bootstrap-form-builder .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.bootstrap-form-builder .form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.bootstrap-form-builder .form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .bootstrap-form-builder .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .bootstrap-form-builder .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .bootstrap-form-builder .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .bootstrap-form-builder .form-inline .custom-select, .bootstrap-form-builder .form-inline .input-group {
    width: auto;
  }
  .bootstrap-form-builder .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .bootstrap-form-builder .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: .25rem;
    margin-left: 0;
  }
  .bootstrap-form-builder .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .bootstrap-form-builder .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.bootstrap-form-builder .btn {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .btn {
    transition: none;
  }
}

.bootstrap-form-builder .btn:hover {
  color: #212529;
  text-decoration: none;
}

.bootstrap-form-builder .btn.focus, .bootstrap-form-builder .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .btn.disabled, .bootstrap-form-builder .btn:disabled {
  opacity: .65;
}

.bootstrap-form-builder a.btn.disabled, .bootstrap-form-builder fieldset:disabled a.btn {
  pointer-events: none;
}

.bootstrap-form-builder .btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.bootstrap-form-builder .btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.bootstrap-form-builder .btn-outline-primary.focus, .bootstrap-form-builder .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.bootstrap-form-builder .btn-outline-primary.disabled, .bootstrap-form-builder .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-primary:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-primary:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.bootstrap-form-builder .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.bootstrap-form-builder .btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.bootstrap-form-builder .btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.bootstrap-form-builder .btn-outline-secondary.focus, .bootstrap-form-builder .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.bootstrap-form-builder .btn-outline-secondary.disabled, .bootstrap-form-builder .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-secondary:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-secondary:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.bootstrap-form-builder .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.bootstrap-form-builder .btn-outline-success {
  color: #28a745;
  border-color: #28a745;
}

.bootstrap-form-builder .btn-outline-success:hover {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.bootstrap-form-builder .btn-outline-success.focus, .bootstrap-form-builder .btn-outline-success:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.bootstrap-form-builder .btn-outline-success.disabled, .bootstrap-form-builder .btn-outline-success:disabled {
  color: #28a745;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-success:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-success:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.bootstrap-form-builder .btn-outline-success:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-success:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.bootstrap-form-builder .btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.bootstrap-form-builder .btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.bootstrap-form-builder .btn-outline-info.focus, .bootstrap-form-builder .btn-outline-info:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.bootstrap-form-builder .btn-outline-info.disabled, .bootstrap-form-builder .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-info:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-info:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.bootstrap-form-builder .btn-outline-info:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-info:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.bootstrap-form-builder .btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.bootstrap-form-builder .btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.bootstrap-form-builder .btn-outline-warning.focus, .bootstrap-form-builder .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.bootstrap-form-builder .btn-outline-warning.disabled, .bootstrap-form-builder .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-warning:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-warning:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.bootstrap-form-builder .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.bootstrap-form-builder .btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.bootstrap-form-builder .btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.bootstrap-form-builder .btn-outline-danger.focus, .bootstrap-form-builder .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.bootstrap-form-builder .btn-outline-danger.disabled, .bootstrap-form-builder .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-danger:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-danger:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.bootstrap-form-builder .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.bootstrap-form-builder .btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.bootstrap-form-builder .btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.bootstrap-form-builder .btn-outline-light.focus, .bootstrap-form-builder .btn-outline-light:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.bootstrap-form-builder .btn-outline-light.disabled, .bootstrap-form-builder .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-light:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-light:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.bootstrap-form-builder .btn-outline-light:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-light:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.bootstrap-form-builder .btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.bootstrap-form-builder .btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.bootstrap-form-builder .btn-outline-dark.focus, .bootstrap-form-builder .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.bootstrap-form-builder .btn-outline-dark.disabled, .bootstrap-form-builder .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.bootstrap-form-builder .btn-outline-dark:not(:disabled):not(.disabled).active, .bootstrap-form-builder .btn-outline-dark:not(:disabled):not(.disabled):active, .bootstrap-form-builder .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.bootstrap-form-builder .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .bootstrap-form-builder .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .bootstrap-form-builder .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.bootstrap-form-builder .btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.bootstrap-form-builder .btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.bootstrap-form-builder .btn-link.focus, .bootstrap-form-builder .btn-link:focus {
  text-decoration: underline;
  box-shadow: none;
}

.bootstrap-form-builder .btn-link.disabled, .bootstrap-form-builder .btn-link:disabled {
  color: #6c757d;
  pointer-events: none;
}

.bootstrap-form-builder .btn-group-lg > .btn, .bootstrap-form-builder .btn-lg {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.bootstrap-form-builder .btn-group-sm > .btn, .bootstrap-form-builder .btn-sm {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.bootstrap-form-builder .btn-block {
  display: block;
  width: 100%;
}

.bootstrap-form-builder .btn-block + .btn-block {
  margin-top: .5rem;
}

.bootstrap-form-builder input[type=button].btn-block, .bootstrap-form-builder input[type=reset].btn-block, .bootstrap-form-builder input[type=submit].btn-block {
  width: 100%;
}

.bootstrap-form-builder .fade {
  transition: opacity .15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .fade {
    transition: none;
  }
}

.bootstrap-form-builder .fade:not(.show) {
  opacity: 0;
}

.bootstrap-form-builder .collapse:not(.show) {
  display: none;
}

.bootstrap-form-builder .collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height .35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .collapsing {
    transition: none;
  }
}

.bootstrap-form-builder .dropdown, .bootstrap-form-builder .dropleft, .bootstrap-form-builder .dropright, .bootstrap-form-builder .dropup {
  position: relative;
}

.bootstrap-form-builder .dropdown-toggle {
  white-space: nowrap;
}

.bootstrap-form-builder .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.bootstrap-form-builder .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-form-builder .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: .5rem 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: .25rem;
}

.bootstrap-form-builder .dropdown-menu-left {
  right: auto;
  left: 0;
}

.bootstrap-form-builder .dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .bootstrap-form-builder .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .bootstrap-form-builder .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .bootstrap-form-builder .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .bootstrap-form-builder .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

.bootstrap-form-builder .dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: .125rem;
}

.bootstrap-form-builder .dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: 0;
  border-right: .3em solid transparent;
  border-bottom: .3em solid;
  border-left: .3em solid transparent;
}

.bootstrap-form-builder .dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-form-builder .dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: .125rem;
}

.bootstrap-form-builder .dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .3em solid;
}

.bootstrap-form-builder .dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-form-builder .dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.bootstrap-form-builder .dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: .125rem;
}

.bootstrap-form-builder .dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
}

.bootstrap-form-builder .dropleft .dropdown-toggle::after {
  display: none;
}

.bootstrap-form-builder .dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: .3em solid;
  border-bottom: .3em solid transparent;
}

.bootstrap-form-builder .dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.bootstrap-form-builder .dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.bootstrap-form-builder .dropdown-menu[x-placement^=bottom], .bootstrap-form-builder .dropdown-menu[x-placement^=left], .bootstrap-form-builder .dropdown-menu[x-placement^=right], .bootstrap-form-builder .dropdown-menu[x-placement^=top] {
  right: auto;
  bottom: auto;
}

.bootstrap-form-builder .dropdown-divider {
  height: 0;
  margin: .5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.bootstrap-form-builder .dropdown-item {
  display: block;
  width: 100%;
  padding: .25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.bootstrap-form-builder .dropdown-item:focus, .bootstrap-form-builder .dropdown-item:hover {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}

.bootstrap-form-builder .dropdown-item.active, .bootstrap-form-builder .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.bootstrap-form-builder .dropdown-item.disabled, .bootstrap-form-builder .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.bootstrap-form-builder .dropdown-menu.show {
  display: block;
}

.bootstrap-form-builder .dropdown-header {
  display: block;
  padding: .5rem 1.5rem;
  margin-bottom: 0;
  font-size: .875rem;
  color: #6c757d;
  white-space: nowrap;
}

.bootstrap-form-builder .dropdown-item-text {
  display: block;
  padding: .25rem 1.5rem;
  color: #212529;
}

.bootstrap-form-builder .btn-group, .bootstrap-form-builder .btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}

.bootstrap-form-builder .btn-group-vertical > .btn, .bootstrap-form-builder .btn-group > .btn {
  position: relative;
  flex: 1 1 auto;
}

.bootstrap-form-builder .btn-group-vertical > .btn:hover, .bootstrap-form-builder .btn-group > .btn:hover {
  z-index: 1;
}

.bootstrap-form-builder .btn-group-vertical > .btn.active, .bootstrap-form-builder .btn-group-vertical > .btn:active, .bootstrap-form-builder .btn-group-vertical > .btn:focus, .bootstrap-form-builder .btn-group > .btn.active, .bootstrap-form-builder .btn-group > .btn:active, .bootstrap-form-builder .btn-group > .btn:focus {
  z-index: 1;
}

.bootstrap-form-builder .btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.bootstrap-form-builder .btn-toolbar .input-group {
  width: auto;
}

.bootstrap-form-builder .btn-group > .btn-group:not(:first-child), .bootstrap-form-builder .btn-group > .btn:not(:first-child) {
  margin-left: -1px;
}

.bootstrap-form-builder .btn-group > .btn-group:not(:last-child) > .btn, .bootstrap-form-builder .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-form-builder .btn-group > .btn-group:not(:first-child) > .btn, .bootstrap-form-builder .btn-group > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-form-builder .dropdown-toggle-split {
  padding-right: .5625rem;
  padding-left: .5625rem;
}

.bootstrap-form-builder .dropdown-toggle-split::after, .bootstrap-form-builder .dropright .dropdown-toggle-split::after, .bootstrap-form-builder .dropup .dropdown-toggle-split::after {
  margin-left: 0;
}

.bootstrap-form-builder .dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.bootstrap-form-builder .btn-group-sm > .btn + .dropdown-toggle-split, .bootstrap-form-builder .btn-sm + .dropdown-toggle-split {
  padding-right: .375rem;
  padding-left: .375rem;
}

.bootstrap-form-builder .btn-group-lg > .btn + .dropdown-toggle-split, .bootstrap-form-builder .btn-lg + .dropdown-toggle-split {
  padding-right: .75rem;
  padding-left: .75rem;
}

.bootstrap-form-builder .btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.bootstrap-form-builder .btn-group-vertical > .btn, .bootstrap-form-builder .btn-group-vertical > .btn-group {
  width: 100%;
}

.bootstrap-form-builder .btn-group-vertical > .btn-group:not(:first-child), .bootstrap-form-builder .btn-group-vertical > .btn:not(:first-child) {
  margin-top: -1px;
}

.bootstrap-form-builder .btn-group-vertical > .btn-group:not(:last-child) > .btn, .bootstrap-form-builder .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-form-builder .btn-group-vertical > .btn-group:not(:first-child) > .btn, .bootstrap-form-builder .btn-group-vertical > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-form-builder .btn-group-toggle > .btn, .bootstrap-form-builder .btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}

.bootstrap-form-builder .btn-group-toggle > .btn input[type=checkbox], .bootstrap-form-builder .btn-group-toggle > .btn input[type=radio], .bootstrap-form-builder .btn-group-toggle > .btn-group > .btn input[type=checkbox], .bootstrap-form-builder .btn-group-toggle > .btn-group > .btn input[type=radio] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.bootstrap-form-builder .input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.bootstrap-form-builder .input-group > .custom-file, .bootstrap-form-builder .input-group > .custom-select, .bootstrap-form-builder .input-group > .form-control, .bootstrap-form-builder .input-group > .form-control-plaintext {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  margin-bottom: 0;
}

.bootstrap-form-builder .input-group > .custom-file + .custom-file, .bootstrap-form-builder .input-group > .custom-file + .custom-select, .bootstrap-form-builder .input-group > .custom-file + .form-control, .bootstrap-form-builder .input-group > .custom-select + .custom-file, .bootstrap-form-builder .input-group > .custom-select + .custom-select, .bootstrap-form-builder .input-group > .custom-select + .form-control, .bootstrap-form-builder .input-group > .form-control + .custom-file, .bootstrap-form-builder .input-group > .form-control + .custom-select, .bootstrap-form-builder .input-group > .form-control + .form-control, .bootstrap-form-builder .input-group > .form-control-plaintext + .custom-file, .bootstrap-form-builder .input-group > .form-control-plaintext + .custom-select, .bootstrap-form-builder .input-group > .form-control-plaintext + .form-control {
  margin-left: -1px;
}

.bootstrap-form-builder .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label, .bootstrap-form-builder .input-group > .custom-select:focus, .bootstrap-form-builder .input-group > .form-control:focus {
  z-index: 3;
}

.bootstrap-form-builder .input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.bootstrap-form-builder .input-group > .custom-select:not(:last-child), .bootstrap-form-builder .input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-form-builder .input-group > .custom-select:not(:first-child), .bootstrap-form-builder .input-group > .form-control:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-form-builder .input-group > .custom-file {
  display: flex;
  align-items: center;
}

.bootstrap-form-builder .input-group > .custom-file:not(:last-child) .custom-file-label, .bootstrap-form-builder .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-form-builder .input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-form-builder .input-group-append, .bootstrap-form-builder .input-group-prepend {
  display: flex;
}

.bootstrap-form-builder .input-group-append .btn, .bootstrap-form-builder .input-group-prepend .btn {
  position: relative;
  z-index: 2;
}

.bootstrap-form-builder .input-group-append .btn:focus, .bootstrap-form-builder .input-group-prepend .btn:focus {
  z-index: 3;
}

.bootstrap-form-builder .input-group-append .btn + .btn, .bootstrap-form-builder .input-group-append .btn + .input-group-text, .bootstrap-form-builder .input-group-append .input-group-text + .btn, .bootstrap-form-builder .input-group-append .input-group-text + .input-group-text, .bootstrap-form-builder .input-group-prepend .btn + .btn, .bootstrap-form-builder .input-group-prepend .btn + .input-group-text, .bootstrap-form-builder .input-group-prepend .input-group-text + .btn, .bootstrap-form-builder .input-group-prepend .input-group-text + .input-group-text {
  margin-left: -1px;
}

.bootstrap-form-builder .input-group-prepend {
  margin-right: -1px;
}

.bootstrap-form-builder .input-group-append {
  margin-left: -1px;
}

.bootstrap-form-builder .input-group-text {
  display: flex;
  align-items: center;
  padding: .375rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.bootstrap-form-builder .input-group-text input[type=checkbox], .bootstrap-form-builder .input-group-text input[type=radio] {
  margin-top: 0;
}

.bootstrap-form-builder .input-group-lg > .custom-select, .bootstrap-form-builder .input-group-lg > .form-control:not(textarea) {
  height: calc(1.5em + 1rem + 2px);
}

.bootstrap-form-builder .input-group-lg > .custom-select, .bootstrap-form-builder .input-group-lg > .form-control, .bootstrap-form-builder .input-group-lg > .input-group-append > .btn, .bootstrap-form-builder .input-group-lg > .input-group-append > .input-group-text, .bootstrap-form-builder .input-group-lg > .input-group-prepend > .btn, .bootstrap-form-builder .input-group-lg > .input-group-prepend > .input-group-text {
  padding: .5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: .3rem;
}

.bootstrap-form-builder .input-group-sm > .custom-select, .bootstrap-form-builder .input-group-sm > .form-control:not(textarea) {
  height: calc(1.5em + .5rem + 2px);
}

.bootstrap-form-builder .input-group-sm > .custom-select, .bootstrap-form-builder .input-group-sm > .form-control, .bootstrap-form-builder .input-group-sm > .input-group-append > .btn, .bootstrap-form-builder .input-group-sm > .input-group-append > .input-group-text, .bootstrap-form-builder .input-group-sm > .input-group-prepend > .btn, .bootstrap-form-builder .input-group-sm > .input-group-prepend > .input-group-text {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
  border-radius: .2rem;
}

.bootstrap-form-builder .input-group-lg > .custom-select, .bootstrap-form-builder .input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.bootstrap-form-builder .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .bootstrap-form-builder .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .bootstrap-form-builder .input-group > .input-group-append:not(:last-child) > .btn, .bootstrap-form-builder .input-group > .input-group-append:not(:last-child) > .input-group-text, .bootstrap-form-builder .input-group > .input-group-prepend > .btn, .bootstrap-form-builder .input-group > .input-group-prepend > .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-form-builder .input-group > .input-group-append > .btn, .bootstrap-form-builder .input-group > .input-group-append > .input-group-text, .bootstrap-form-builder .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .bootstrap-form-builder .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .bootstrap-form-builder .input-group > .input-group-prepend:not(:first-child) > .btn, .bootstrap-form-builder .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-form-builder .custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}

.bootstrap-form-builder .custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.bootstrap-form-builder .custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.bootstrap-form-builder .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.bootstrap-form-builder .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.bootstrap-form-builder .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.bootstrap-form-builder .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.bootstrap-form-builder .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.bootstrap-form-builder .custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.bootstrap-form-builder .custom-control-label::before {
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}

.bootstrap-form-builder .custom-control-label::after {
  position: absolute;
  top: .25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.bootstrap-form-builder .custom-checkbox .custom-control-label::before {
  border-radius: .25rem;
}

.bootstrap-form-builder .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.bootstrap-form-builder .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.bootstrap-form-builder .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.bootstrap-form-builder .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.bootstrap-form-builder .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.bootstrap-form-builder .custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.bootstrap-form-builder .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.bootstrap-form-builder .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.bootstrap-form-builder .custom-switch {
  padding-left: 2.25rem;
}

.bootstrap-form-builder .custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: .5rem;
}

.bootstrap-form-builder .custom-switch .custom-control-label::after {
  top: calc(.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: .5rem;
  transition: transform .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .custom-switch .custom-control-label::after {
    transition: none;
  }
}

.bootstrap-form-builder .custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}

.bootstrap-form-builder .custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.bootstrap-form-builder .custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem 1.75rem .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bootstrap-form-builder .custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.bootstrap-form-builder .custom-select[multiple], .bootstrap-form-builder .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: .75rem;
  background-image: none;
}

.bootstrap-form-builder .custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.bootstrap-form-builder .custom-select::-ms-expand {
  display: none;
}

.bootstrap-form-builder .custom-select-sm {
  height: calc(1.5em + .5rem + 2px);
  padding-top: .25rem;
  padding-bottom: .25rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.bootstrap-form-builder .custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: .5rem;
  padding-bottom: .5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.bootstrap-form-builder .custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin-bottom: 0;
}

.bootstrap-form-builder .custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + .75rem + 2px);
  margin: 0;
  opacity: 0;
}

.bootstrap-form-builder .custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.bootstrap-form-builder .custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.bootstrap-form-builder .custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.bootstrap-form-builder .custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + .75rem + 2px);
  padding: .375rem .75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.bootstrap-form-builder .custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + .75rem);
  padding: .375rem .75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 .25rem .25rem 0;
}

.bootstrap-form-builder .custom-range {
  width: 100%;
  height: calc(1rem + .4rem);
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bootstrap-form-builder .custom-range:focus {
  outline: 0;
}

.bootstrap-form-builder .custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .custom-range::-moz-focus-outer {
  border: 0;
}

.bootstrap-form-builder .custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -webkit-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.bootstrap-form-builder .custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.bootstrap-form-builder .custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.bootstrap-form-builder .custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -moz-appearance: none;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.bootstrap-form-builder .custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.bootstrap-form-builder .custom-range::-moz-range-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.bootstrap-form-builder .custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: .2rem;
  margin-left: .2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.bootstrap-form-builder .custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.bootstrap-form-builder .custom-range::-ms-track {
  width: 100%;
  height: .5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: .5rem;
}

.bootstrap-form-builder .custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.bootstrap-form-builder .custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.bootstrap-form-builder .custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.bootstrap-form-builder .custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.bootstrap-form-builder .custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.bootstrap-form-builder .custom-range:disabled::-moz-range-track {
  cursor: default;
}

.bootstrap-form-builder .custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.bootstrap-form-builder .custom-control-label::before, .bootstrap-form-builder .custom-file-label, .bootstrap-form-builder .custom-select {
  transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .custom-control-label::before, .bootstrap-form-builder .custom-file-label, .bootstrap-form-builder .custom-select {
    transition: none;
  }
}

.bootstrap-form-builder .nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bootstrap-form-builder .nav-link {
  display: block;
  padding: .5rem 1rem;
}

.bootstrap-form-builder .nav-link:focus, .bootstrap-form-builder .nav-link:hover {
  text-decoration: none;
}

.bootstrap-form-builder .nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.bootstrap-form-builder .nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.bootstrap-form-builder .nav-tabs .nav-item {
  margin-bottom: -1px;
}

.bootstrap-form-builder .nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.bootstrap-form-builder .nav-tabs .nav-link:focus, .bootstrap-form-builder .nav-tabs .nav-link:hover {
  border-color: #e9ecef #e9ecef #dee2e6;
}

.bootstrap-form-builder .nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.bootstrap-form-builder .nav-tabs .nav-item.show .nav-link, .bootstrap-form-builder .nav-tabs .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.bootstrap-form-builder .nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-form-builder .nav-pills .nav-link {
  border-radius: .25rem;
}

.bootstrap-form-builder .nav-pills .nav-link.active, .bootstrap-form-builder .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.bootstrap-form-builder .nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.bootstrap-form-builder .nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.bootstrap-form-builder .tab-content > .tab-pane {
  display: none;
}

.bootstrap-form-builder .tab-content > .active {
  display: block;
}

.bootstrap-form-builder .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: .5rem 1rem;
}

.bootstrap-form-builder .navbar > .container, .bootstrap-form-builder .navbar > .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.bootstrap-form-builder .navbar-brand {
  display: inline-block;
  padding-top: .3125rem;
  padding-bottom: .3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

.bootstrap-form-builder .navbar-brand:focus, .bootstrap-form-builder .navbar-brand:hover {
  text-decoration: none;
}

.bootstrap-form-builder .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.bootstrap-form-builder .navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.bootstrap-form-builder .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.bootstrap-form-builder .navbar-text {
  display: inline-block;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.bootstrap-form-builder .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.bootstrap-form-builder .navbar-toggler {
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.bootstrap-form-builder .navbar-toggler:focus, .bootstrap-form-builder .navbar-toggler:hover {
  text-decoration: none;
}

.bootstrap-form-builder .navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .bootstrap-form-builder .navbar-expand-sm > .container, .bootstrap-form-builder .navbar-expand-sm > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .bootstrap-form-builder .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-form-builder .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-form-builder .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-form-builder .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .bootstrap-form-builder .navbar-expand-sm > .container, .bootstrap-form-builder .navbar-expand-sm > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-form-builder .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-form-builder .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .bootstrap-form-builder .navbar-expand-md > .container, .bootstrap-form-builder .navbar-expand-md > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-form-builder .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-form-builder .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-form-builder .navbar-expand-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .bootstrap-form-builder .navbar-expand-md > .container, .bootstrap-form-builder .navbar-expand-md > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-form-builder .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-form-builder .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .bootstrap-form-builder .navbar-expand-lg > .container, .bootstrap-form-builder .navbar-expand-lg > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-form-builder .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-form-builder .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-form-builder .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .bootstrap-form-builder .navbar-expand-lg > .container, .bootstrap-form-builder .navbar-expand-lg > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-form-builder .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-form-builder .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .bootstrap-form-builder .navbar-expand-xl > .container, .bootstrap-form-builder .navbar-expand-xl > .container-fluid {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .bootstrap-form-builder .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .bootstrap-form-builder .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .bootstrap-form-builder .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .bootstrap-form-builder .navbar-expand-xl > .container, .bootstrap-form-builder .navbar-expand-xl > .container-fluid {
    flex-wrap: nowrap;
  }
  .bootstrap-form-builder .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .bootstrap-form-builder .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

.bootstrap-form-builder .navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}

.bootstrap-form-builder .navbar-expand > .container, .bootstrap-form-builder .navbar-expand > .container-fluid {
  padding-right: 0;
  padding-left: 0;
}

.bootstrap-form-builder .navbar-expand .navbar-nav {
  flex-direction: row;
}

.bootstrap-form-builder .navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.bootstrap-form-builder .navbar-expand .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}

.bootstrap-form-builder .navbar-expand > .container, .bootstrap-form-builder .navbar-expand > .container-fluid {
  flex-wrap: nowrap;
}

.bootstrap-form-builder .navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}

.bootstrap-form-builder .navbar-expand .navbar-toggler {
  display: none;
}

.bootstrap-form-builder .navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.bootstrap-form-builder .navbar-light .navbar-brand:focus, .bootstrap-form-builder .navbar-light .navbar-brand:hover {
  color: rgba(0, 0, 0, 0.9);
}

.bootstrap-form-builder .navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.bootstrap-form-builder .navbar-light .navbar-nav .nav-link:focus, .bootstrap-form-builder .navbar-light .navbar-nav .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.bootstrap-form-builder .navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.bootstrap-form-builder .navbar-light .navbar-nav .active > .nav-link, .bootstrap-form-builder .navbar-light .navbar-nav .nav-link.active, .bootstrap-form-builder .navbar-light .navbar-nav .nav-link.show, .bootstrap-form-builder .navbar-light .navbar-nav .show > .nav-link {
  color: rgba(0, 0, 0, 0.9);
}

.bootstrap-form-builder .navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.bootstrap-form-builder .navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.bootstrap-form-builder .navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.bootstrap-form-builder .navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.bootstrap-form-builder .navbar-light .navbar-text a:focus, .bootstrap-form-builder .navbar-light .navbar-text a:hover {
  color: rgba(0, 0, 0, 0.9);
}

.bootstrap-form-builder .navbar-dark .navbar-brand {
  color: #fff;
}

.bootstrap-form-builder .navbar-dark .navbar-brand:focus, .bootstrap-form-builder .navbar-dark .navbar-brand:hover {
  color: #fff;
}

.bootstrap-form-builder .navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.bootstrap-form-builder .navbar-dark .navbar-nav .nav-link:focus, .bootstrap-form-builder .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.bootstrap-form-builder .navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.bootstrap-form-builder .navbar-dark .navbar-nav .active > .nav-link, .bootstrap-form-builder .navbar-dark .navbar-nav .nav-link.active, .bootstrap-form-builder .navbar-dark .navbar-nav .nav-link.show, .bootstrap-form-builder .navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}

.bootstrap-form-builder .navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.bootstrap-form-builder .navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.bootstrap-form-builder .navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.bootstrap-form-builder .navbar-dark .navbar-text a {
  color: #fff;
}

.bootstrap-form-builder .navbar-dark .navbar-text a:focus, .bootstrap-form-builder .navbar-dark .navbar-text a:hover {
  color: #fff;
}

.bootstrap-form-builder .card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: .25rem;
}

.bootstrap-form-builder .card > hr {
  margin-right: 0;
  margin-left: 0;
}

.bootstrap-form-builder .card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.bootstrap-form-builder .card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.bootstrap-form-builder .card-body {
  flex: 1 1 auto;
  padding: 1.25rem;
}

.bootstrap-form-builder .card-title {
  margin-bottom: .75rem;
}

.bootstrap-form-builder .card-subtitle {
  margin-top: -.375rem;
  margin-bottom: 0;
}

.bootstrap-form-builder .card-text:last-child {
  margin-bottom: 0;
}

.bootstrap-form-builder .card-link:hover {
  text-decoration: none;
}

.bootstrap-form-builder .card-link + .card-link {
  margin-left: 1.25rem;
}

.bootstrap-form-builder .card-header {
  padding: .75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.bootstrap-form-builder .card-header:first-child {
  border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
}

.bootstrap-form-builder .card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.bootstrap-form-builder .card-footer {
  padding: .75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.bootstrap-form-builder .card-footer:last-child {
  border-radius: 0 0 calc(.25rem - 1px) calc(.25rem - 1px);
}

.bootstrap-form-builder .card-header-tabs {
  margin-right: -.625rem;
  margin-bottom: -.75rem;
  margin-left: -.625rem;
  border-bottom: 0;
}

.bootstrap-form-builder .card-header-pills {
  margin-right: -.625rem;
  margin-left: -.625rem;
}

.bootstrap-form-builder .card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.bootstrap-form-builder .card-img {
  width: 100%;
  border-radius: calc(.25rem - 1px);
}

.bootstrap-form-builder .card-img-top {
  width: 100%;
  border-top-left-radius: calc(.25rem - 1px);
  border-top-right-radius: calc(.25rem - 1px);
}

.bootstrap-form-builder .card-img-bottom {
  width: 100%;
  border-bottom-right-radius: calc(.25rem - 1px);
  border-bottom-left-radius: calc(.25rem - 1px);
}

.bootstrap-form-builder .card-deck {
  display: flex;
  flex-direction: column;
}

.bootstrap-form-builder .card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .card-deck {
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .bootstrap-form-builder .card-deck .card {
    display: flex;
    flex: 1 0 0%;
    flex-direction: column;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.bootstrap-form-builder .card-group {
  display: flex;
  flex-direction: column;
}

.bootstrap-form-builder .card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .card-group {
    flex-flow: row wrap;
  }
  .bootstrap-form-builder .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .bootstrap-form-builder .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .bootstrap-form-builder .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .bootstrap-form-builder .card-group > .card:not(:last-child) .card-header, .bootstrap-form-builder .card-group > .card:not(:last-child) .card-img-top {
    border-top-right-radius: 0;
  }
  .bootstrap-form-builder .card-group > .card:not(:last-child) .card-footer, .bootstrap-form-builder .card-group > .card:not(:last-child) .card-img-bottom {
    border-bottom-right-radius: 0;
  }
  .bootstrap-form-builder .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .bootstrap-form-builder .card-group > .card:not(:first-child) .card-header, .bootstrap-form-builder .card-group > .card:not(:first-child) .card-img-top {
    border-top-left-radius: 0;
  }
  .bootstrap-form-builder .card-group > .card:not(:first-child) .card-footer, .bootstrap-form-builder .card-group > .card:not(:first-child) .card-img-bottom {
    border-bottom-left-radius: 0;
  }
}

.bootstrap-form-builder .card-columns .card {
  margin-bottom: .75rem;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .card-columns {
    -moz-column-count: 3;
    column-count: 3;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .bootstrap-form-builder .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.bootstrap-form-builder .accordion > .card {
  overflow: hidden;
}

.bootstrap-form-builder .accordion > .card:not(:first-of-type) .card-header:first-child {
  border-radius: 0;
}

.bootstrap-form-builder .accordion > .card:not(:first-of-type):not(:last-of-type) {
  border-bottom: 0;
  border-radius: 0;
}

.bootstrap-form-builder .accordion > .card:first-of-type {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.bootstrap-form-builder .accordion > .card:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.bootstrap-form-builder .accordion > .card .card-header {
  margin-bottom: -1px;
}

.bootstrap-form-builder .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: .25rem;
}

.bootstrap-form-builder .breadcrumb-item + .breadcrumb-item {
  padding-left: .5rem;
}

.bootstrap-form-builder .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  color: #6c757d;
  content: "/";
}

.bootstrap-form-builder .breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.bootstrap-form-builder .breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.bootstrap-form-builder .breadcrumb-item.active {
  color: #6c757d;
}

.bootstrap-form-builder .pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: .25rem;
}

.bootstrap-form-builder .page-link {
  position: relative;
  display: block;
  padding: .5rem .75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.bootstrap-form-builder .page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.bootstrap-form-builder .page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.bootstrap-form-builder .page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.bootstrap-form-builder .page-item:last-child .page-link {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.bootstrap-form-builder .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.bootstrap-form-builder .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.bootstrap-form-builder .pagination-lg .page-link {
  padding: .75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.bootstrap-form-builder .pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: .3rem;
  border-bottom-left-radius: .3rem;
}

.bootstrap-form-builder .pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: .3rem;
  border-bottom-right-radius: .3rem;
}

.bootstrap-form-builder .pagination-sm .page-link {
  padding: .25rem .5rem;
  font-size: .875rem;
  line-height: 1.5;
}

.bootstrap-form-builder .pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: .2rem;
  border-bottom-left-radius: .2rem;
}

.bootstrap-form-builder .pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: .2rem;
  border-bottom-right-radius: .2rem;
}

.bootstrap-form-builder .badge {
  display: inline-block;
  padding: .25em .4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .badge {
    transition: none;
  }
}

.bootstrap-form-builder a.badge:focus, .bootstrap-form-builder a.badge:hover {
  text-decoration: none;
}

.bootstrap-form-builder .badge:empty {
  display: none;
}

.bootstrap-form-builder .btn .badge {
  position: relative;
  top: -1px;
}

.bootstrap-form-builder .badge-pill {
  padding-right: .6em;
  padding-left: .6em;
  border-radius: 10rem;
}

.bootstrap-form-builder .badge-primary {
  color: #fff;
  background-color: #007bff;
}

.bootstrap-form-builder a.badge-primary:focus, .bootstrap-form-builder a.badge-primary:hover {
  color: #fff;
  background-color: #0062cc;
}

.bootstrap-form-builder a.badge-primary.focus, .bootstrap-form-builder a.badge-primary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.bootstrap-form-builder .badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

.bootstrap-form-builder a.badge-secondary:focus, .bootstrap-form-builder a.badge-secondary:hover {
  color: #fff;
  background-color: #545b62;
}

.bootstrap-form-builder a.badge-secondary.focus, .bootstrap-form-builder a.badge-secondary:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.bootstrap-form-builder .badge-success {
  color: #fff;
  background-color: #28a745;
}

.bootstrap-form-builder a.badge-success:focus, .bootstrap-form-builder a.badge-success:hover {
  color: #fff;
  background-color: #1e7e34;
}

.bootstrap-form-builder a.badge-success.focus, .bootstrap-form-builder a.badge-success:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.bootstrap-form-builder .badge-info {
  color: #fff;
  background-color: #17a2b8;
}

.bootstrap-form-builder a.badge-info:focus, .bootstrap-form-builder a.badge-info:hover {
  color: #fff;
  background-color: #117a8b;
}

.bootstrap-form-builder a.badge-info.focus, .bootstrap-form-builder a.badge-info:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.bootstrap-form-builder .badge-warning {
  color: #212529;
  background-color: #ffc107;
}

.bootstrap-form-builder a.badge-warning:focus, .bootstrap-form-builder a.badge-warning:hover {
  color: #212529;
  background-color: #d39e00;
}

.bootstrap-form-builder a.badge-warning.focus, .bootstrap-form-builder a.badge-warning:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.bootstrap-form-builder .badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.bootstrap-form-builder a.badge-danger:focus, .bootstrap-form-builder a.badge-danger:hover {
  color: #fff;
  background-color: #bd2130;
}

.bootstrap-form-builder a.badge-danger.focus, .bootstrap-form-builder a.badge-danger:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.bootstrap-form-builder .badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

.bootstrap-form-builder a.badge-light:focus, .bootstrap-form-builder a.badge-light:hover {
  color: #212529;
  background-color: #dae0e5;
}

.bootstrap-form-builder a.badge-light.focus, .bootstrap-form-builder a.badge-light:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.bootstrap-form-builder .badge-dark {
  color: #fff;
  background-color: #343a40;
}

.bootstrap-form-builder a.badge-dark:focus, .bootstrap-form-builder a.badge-dark:hover {
  color: #fff;
  background-color: #1d2124;
}

.bootstrap-form-builder a.badge-dark.focus, .bootstrap-form-builder a.badge-dark:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.bootstrap-form-builder .jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: .3rem;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .jumbotron {
    padding: 4rem 2rem;
  }
}

.bootstrap-form-builder .jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.bootstrap-form-builder .alert {
  position: relative;
  padding: .75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: .25rem;
}

.bootstrap-form-builder .alert-heading {
  color: inherit;
}

.bootstrap-form-builder .alert-link {
  font-weight: 700;
}

.bootstrap-form-builder .alert-dismissible {
  padding-right: 4rem;
}

.bootstrap-form-builder .alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: .75rem 1.25rem;
  color: inherit;
}

.bootstrap-form-builder .alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.bootstrap-form-builder .alert-primary hr {
  border-top-color: #9fcdff;
}

.bootstrap-form-builder .alert-primary .alert-link {
  color: #002752;
}

.bootstrap-form-builder .alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.bootstrap-form-builder .alert-secondary hr {
  border-top-color: #c8cbcf;
}

.bootstrap-form-builder .alert-secondary .alert-link {
  color: #202326;
}

.bootstrap-form-builder .alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.bootstrap-form-builder .alert-success hr {
  border-top-color: #b1dfbb;
}

.bootstrap-form-builder .alert-success .alert-link {
  color: #0b2e13;
}

.bootstrap-form-builder .alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.bootstrap-form-builder .alert-info hr {
  border-top-color: #abdde5;
}

.bootstrap-form-builder .alert-info .alert-link {
  color: #062c33;
}

.bootstrap-form-builder .alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.bootstrap-form-builder .alert-warning hr {
  border-top-color: #ffe8a1;
}

.bootstrap-form-builder .alert-warning .alert-link {
  color: #533f03;
}

.bootstrap-form-builder .alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.bootstrap-form-builder .alert-danger hr {
  border-top-color: #f1b0b7;
}

.bootstrap-form-builder .alert-danger .alert-link {
  color: #491217;
}

.bootstrap-form-builder .alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.bootstrap-form-builder .alert-light hr {
  border-top-color: #ececf6;
}

.bootstrap-form-builder .alert-light .alert-link {
  color: #686868;
}

.bootstrap-form-builder .alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.bootstrap-form-builder .alert-dark hr {
  border-top-color: #b9bbbe;
}

.bootstrap-form-builder .alert-dark .alert-link {
  color: #040505;
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.bootstrap-form-builder .progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: .75rem;
  background-color: #e9ecef;
  border-radius: .25rem;
}

.bootstrap-form-builder .progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width .6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .progress-bar {
    transition: none;
  }
}

.bootstrap-form-builder .progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.bootstrap-form-builder .progress-bar-animated {
  animation: progress-bar-stripes 1s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .progress-bar-animated {
    animation: none;
  }
}

.bootstrap-form-builder .media {
  display: flex;
  align-items: flex-start;
}

.bootstrap-form-builder .media-body {
  flex: 1;
}

.bootstrap-form-builder .list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.bootstrap-form-builder .list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.bootstrap-form-builder .list-group-item-action:focus, .bootstrap-form-builder .list-group-item-action:hover {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.bootstrap-form-builder .list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.bootstrap-form-builder .list-group-item {
  position: relative;
  display: block;
  padding: .75rem 1.25rem;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.bootstrap-form-builder .list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
}

.bootstrap-form-builder .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: .25rem;
}

.bootstrap-form-builder .list-group-item.disabled, .bootstrap-form-builder .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.bootstrap-form-builder .list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.bootstrap-form-builder .list-group-horizontal {
  flex-direction: row;
}

.bootstrap-form-builder .list-group-horizontal .list-group-item {
  margin-right: -1px;
  margin-bottom: 0;
}

.bootstrap-form-builder .list-group-horizontal .list-group-item:first-child {
  border-top-left-radius: .25rem;
  border-bottom-left-radius: .25rem;
  border-top-right-radius: 0;
}

.bootstrap-form-builder .list-group-horizontal .list-group-item:last-child {
  margin-right: 0;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .list-group-horizontal-sm {
    flex-direction: row;
  }
  .bootstrap-form-builder .list-group-horizontal-sm .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-sm .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-sm .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .list-group-horizontal-md {
    flex-direction: row;
  }
  .bootstrap-form-builder .list-group-horizontal-md .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-md .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-md .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .list-group-horizontal-lg {
    flex-direction: row;
  }
  .bootstrap-form-builder .list-group-horizontal-lg .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-lg .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-lg .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .list-group-horizontal-xl {
    flex-direction: row;
  }
  .bootstrap-form-builder .list-group-horizontal-xl .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-xl .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
    border-top-right-radius: 0;
  }
  .bootstrap-form-builder .list-group-horizontal-xl .list-group-item:last-child {
    margin-right: 0;
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: 0;
  }
}

.bootstrap-form-builder .list-group-flush .list-group-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.bootstrap-form-builder .list-group-flush .list-group-item:last-child {
  margin-bottom: -1px;
}

.bootstrap-form-builder .list-group-flush:first-child .list-group-item:first-child {
  border-top: 0;
}

.bootstrap-form-builder .list-group-flush:last-child .list-group-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.bootstrap-form-builder .list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.bootstrap-form-builder .list-group-item-primary.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-primary.list-group-item-action:hover {
  color: #004085;
  background-color: #9fcdff;
}

.bootstrap-form-builder .list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.bootstrap-form-builder .list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.bootstrap-form-builder .list-group-item-secondary.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-secondary.list-group-item-action:hover {
  color: #383d41;
  background-color: #c8cbcf;
}

.bootstrap-form-builder .list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.bootstrap-form-builder .list-group-item-success {
  color: #155724;
  background-color: #c3e6cb;
}

.bootstrap-form-builder .list-group-item-success.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-success.list-group-item-action:hover {
  color: #155724;
  background-color: #b1dfbb;
}

.bootstrap-form-builder .list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #155724;
  border-color: #155724;
}

.bootstrap-form-builder .list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.bootstrap-form-builder .list-group-item-info.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-info.list-group-item-action:hover {
  color: #0c5460;
  background-color: #abdde5;
}

.bootstrap-form-builder .list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.bootstrap-form-builder .list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.bootstrap-form-builder .list-group-item-warning.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-warning.list-group-item-action:hover {
  color: #856404;
  background-color: #ffe8a1;
}

.bootstrap-form-builder .list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.bootstrap-form-builder .list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.bootstrap-form-builder .list-group-item-danger.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-danger.list-group-item-action:hover {
  color: #721c24;
  background-color: #f1b0b7;
}

.bootstrap-form-builder .list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.bootstrap-form-builder .list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.bootstrap-form-builder .list-group-item-light.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-light.list-group-item-action:hover {
  color: #818182;
  background-color: #ececf6;
}

.bootstrap-form-builder .list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.bootstrap-form-builder .list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.bootstrap-form-builder .list-group-item-dark.list-group-item-action:focus, .bootstrap-form-builder .list-group-item-dark.list-group-item-action:hover {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.bootstrap-form-builder .list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.bootstrap-form-builder .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.bootstrap-form-builder .close:hover {
  color: #000;
  text-decoration: none;
}

.bootstrap-form-builder .close:not(:disabled):not(.disabled):focus, .bootstrap-form-builder .close:not(:disabled):not(.disabled):hover {
  opacity: .75;
}

.bootstrap-form-builder button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.bootstrap-form-builder a.close.disabled {
  pointer-events: none;
}

.bootstrap-form-builder .toast {
  max-width: 350px;
  overflow: hidden;
  font-size: .875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: .25rem;
}

.bootstrap-form-builder .toast:not(:last-child) {
  margin-bottom: .75rem;
}

.bootstrap-form-builder .toast.showing {
  opacity: 1;
}

.bootstrap-form-builder .toast.show {
  display: block;
  opacity: 1;
}

.bootstrap-form-builder .toast.hide {
  display: none;
}

.bootstrap-form-builder .toast-header {
  display: flex;
  align-items: center;
  padding: .25rem .75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bootstrap-form-builder .toast-body {
  padding: .75rem;
}

.bootstrap-form-builder .modal-open {
  overflow: hidden;
}

.bootstrap-form-builder .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.bootstrap-form-builder .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.bootstrap-form-builder .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}

.bootstrap-form-builder .modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .modal.fade .modal-dialog {
    transition: none;
  }
}

.bootstrap-form-builder .modal.show .modal-dialog {
  transform: none;
}

.bootstrap-form-builder .modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.bootstrap-form-builder .modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.bootstrap-form-builder .modal-dialog-scrollable .modal-footer, .bootstrap-form-builder .modal-dialog-scrollable .modal-header {
  flex-shrink: 0;
}

.bootstrap-form-builder .modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.bootstrap-form-builder .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.bootstrap-form-builder .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.bootstrap-form-builder .modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.bootstrap-form-builder .modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.bootstrap-form-builder .modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.bootstrap-form-builder .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .3rem;
  outline: 0;
}

.bootstrap-form-builder .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.bootstrap-form-builder .modal-backdrop.fade {
  opacity: 0;
}

.bootstrap-form-builder .modal-backdrop.show {
  opacity: .5;
}

.bootstrap-form-builder .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: .3rem;
  border-top-right-radius: .3rem;
}

.bootstrap-form-builder .modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.bootstrap-form-builder .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.bootstrap-form-builder .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.bootstrap-form-builder .modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: .3rem;
  border-bottom-left-radius: .3rem;
}

.bootstrap-form-builder .modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.bootstrap-form-builder .modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.bootstrap-form-builder .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .bootstrap-form-builder .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .bootstrap-form-builder .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .bootstrap-form-builder .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .bootstrap-form-builder .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }
  .bootstrap-form-builder .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .modal-lg, .bootstrap-form-builder .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .modal-xl {
    max-width: 1140px;
  }
}

.bootstrap-form-builder .tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  opacity: 0;
}

.bootstrap-form-builder .tooltip.show {
  opacity: .9;
}

.bootstrap-form-builder .tooltip .arrow {
  position: absolute;
  display: block;
  width: .8rem;
  height: .4rem;
}

.bootstrap-form-builder .tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=top], .bootstrap-form-builder .bs-tooltip-top {
  padding: .4rem 0;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=top] .arrow, .bootstrap-form-builder .bs-tooltip-top .arrow {
  bottom: 0;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=top] .arrow::before, .bootstrap-form-builder .bs-tooltip-top .arrow::before {
  top: 0;
  border-width: .4rem .4rem 0;
  border-top-color: #000;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=right], .bootstrap-form-builder .bs-tooltip-right {
  padding: 0 .4rem;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=right] .arrow, .bootstrap-form-builder .bs-tooltip-right .arrow {
  left: 0;
  width: .4rem;
  height: .8rem;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=right] .arrow::before, .bootstrap-form-builder .bs-tooltip-right .arrow::before {
  right: 0;
  border-width: .4rem .4rem .4rem 0;
  border-right-color: #000;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=bottom], .bootstrap-form-builder .bs-tooltip-bottom {
  padding: .4rem 0;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=bottom] .arrow, .bootstrap-form-builder .bs-tooltip-bottom .arrow {
  top: 0;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bootstrap-form-builder .bs-tooltip-bottom .arrow::before {
  bottom: 0;
  border-width: 0 .4rem .4rem;
  border-bottom-color: #000;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=left], .bootstrap-form-builder .bs-tooltip-left {
  padding: 0 .4rem;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=left] .arrow, .bootstrap-form-builder .bs-tooltip-left .arrow {
  right: 0;
  width: .4rem;
  height: .8rem;
}

.bootstrap-form-builder .bs-tooltip-auto[x-placement^=left] .arrow::before, .bootstrap-form-builder .bs-tooltip-left .arrow::before {
  left: 0;
  border-width: .4rem 0 .4rem .4rem;
  border-left-color: #000;
}

.bootstrap-form-builder .tooltip-inner {
  max-width: 200px;
  padding: .25rem .5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: .25rem;
}

.bootstrap-form-builder .popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: .875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: .3rem;
}

.bootstrap-form-builder .popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: .5rem;
  margin: 0 .3rem;
}

.bootstrap-form-builder .popover .arrow::after, .bootstrap-form-builder .popover .arrow::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=top], .bootstrap-form-builder .bs-popover-top {
  margin-bottom: .5rem;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=top] > .arrow, .bootstrap-form-builder .bs-popover-top > .arrow {
  bottom: calc((.5rem + 1px) * -1);
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=top] > .arrow::before, .bootstrap-form-builder .bs-popover-top > .arrow::before {
  bottom: 0;
  border-width: .5rem .5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=top] > .arrow::after, .bootstrap-form-builder .bs-popover-top > .arrow::after {
  bottom: 1px;
  border-width: .5rem .5rem 0;
  border-top-color: #fff;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=right], .bootstrap-form-builder .bs-popover-right {
  margin-left: .5rem;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=right] > .arrow, .bootstrap-form-builder .bs-popover-right > .arrow {
  left: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=right] > .arrow::before, .bootstrap-form-builder .bs-popover-right > .arrow::before {
  left: 0;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=right] > .arrow::after, .bootstrap-form-builder .bs-popover-right > .arrow::after {
  left: 1px;
  border-width: .5rem .5rem .5rem 0;
  border-right-color: #fff;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=bottom], .bootstrap-form-builder .bs-popover-bottom {
  margin-top: .5rem;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=bottom] > .arrow, .bootstrap-form-builder .bs-popover-bottom > .arrow {
  top: calc((.5rem + 1px) * -1);
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=bottom] > .arrow::before, .bootstrap-form-builder .bs-popover-bottom > .arrow::before {
  top: 0;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=bottom] > .arrow::after, .bootstrap-form-builder .bs-popover-bottom > .arrow::after {
  top: 1px;
  border-width: 0 .5rem .5rem .5rem;
  border-bottom-color: #fff;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=bottom] .popover-header::before, .bootstrap-form-builder .bs-popover-bottom .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=left], .bootstrap-form-builder .bs-popover-left {
  margin-right: .5rem;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=left] > .arrow, .bootstrap-form-builder .bs-popover-left > .arrow {
  right: calc((.5rem + 1px) * -1);
  width: .5rem;
  height: 1rem;
  margin: .3rem 0;
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=left] > .arrow::before, .bootstrap-form-builder .bs-popover-left > .arrow::before {
  right: 0;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bootstrap-form-builder .bs-popover-auto[x-placement^=left] > .arrow::after, .bootstrap-form-builder .bs-popover-left > .arrow::after {
  right: 1px;
  border-width: .5rem 0 .5rem .5rem;
  border-left-color: #fff;
}

.bootstrap-form-builder .popover-header {
  padding: .5rem .75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}

.bootstrap-form-builder .popover-header:empty {
  display: none;
}

.bootstrap-form-builder .popover-body {
  padding: .5rem .75rem;
  color: #212529;
}

.bootstrap-form-builder .carousel {
  position: relative;
}

.bootstrap-form-builder .carousel.pointer-event {
  touch-action: pan-y;
}

.bootstrap-form-builder .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.bootstrap-form-builder .carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.bootstrap-form-builder .carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform .6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .carousel-item {
    transition: none;
  }
}

.bootstrap-form-builder .carousel-item-next, .bootstrap-form-builder .carousel-item-prev, .bootstrap-form-builder .carousel-item.active {
  display: block;
}

.bootstrap-form-builder .active.carousel-item-right, .bootstrap-form-builder .carousel-item-next:not(.carousel-item-left) {
  transform: translateX(100%);
}

.bootstrap-form-builder .active.carousel-item-left, .bootstrap-form-builder .carousel-item-prev:not(.carousel-item-right) {
  transform: translateX(-100%);
}

.bootstrap-form-builder .carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.bootstrap-form-builder .carousel-fade .carousel-item-next.carousel-item-left, .bootstrap-form-builder .carousel-fade .carousel-item-prev.carousel-item-right, .bootstrap-form-builder .carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}

.bootstrap-form-builder .carousel-fade .active.carousel-item-left, .bootstrap-form-builder .carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: 0s .6s opacity;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .carousel-fade .active.carousel-item-left, .bootstrap-form-builder .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.bootstrap-form-builder .carousel-control-next, .bootstrap-form-builder .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: .5;
  transition: opacity .15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .carousel-control-next, .bootstrap-form-builder .carousel-control-prev {
    transition: none;
  }
}

.bootstrap-form-builder .carousel-control-next:focus, .bootstrap-form-builder .carousel-control-next:hover, .bootstrap-form-builder .carousel-control-prev:focus, .bootstrap-form-builder .carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: .9;
}

.bootstrap-form-builder .carousel-control-prev {
  left: 0;
}

.bootstrap-form-builder .carousel-control-next {
  right: 0;
}

.bootstrap-form-builder .carousel-control-next-icon, .bootstrap-form-builder .carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.bootstrap-form-builder .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.bootstrap-form-builder .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

.bootstrap-form-builder .carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.bootstrap-form-builder .carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bootstrap-form-builder .carousel-indicators li {
    transition: none;
  }
}

.bootstrap-form-builder .carousel-indicators .active {
  opacity: 1;
}

.bootstrap-form-builder .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

.bootstrap-form-builder .spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: .25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

.bootstrap-form-builder .spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: .2em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
  }
}

.bootstrap-form-builder .spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: spinner-grow .75s linear infinite;
}

.bootstrap-form-builder .spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.bootstrap-form-builder .align-baseline {
  vertical-align: baseline !important;
}

.bootstrap-form-builder .align-top {
  vertical-align: top !important;
}

.bootstrap-form-builder .align-middle {
  vertical-align: middle !important;
}

.bootstrap-form-builder .align-bottom {
  vertical-align: bottom !important;
}

.bootstrap-form-builder .align-text-bottom {
  vertical-align: text-bottom !important;
}

.bootstrap-form-builder .align-text-top {
  vertical-align: text-top !important;
}

.bootstrap-form-builder .bg-primary {
  background-color: #007bff !important;
}

.bootstrap-form-builder a.bg-primary:focus, .bootstrap-form-builder a.bg-primary:hover, .bootstrap-form-builder button.bg-primary:focus, .bootstrap-form-builder button.bg-primary:hover {
  background-color: #0062cc !important;
}

.bootstrap-form-builder .bg-secondary {
  background-color: #6c757d !important;
}

.bootstrap-form-builder a.bg-secondary:focus, .bootstrap-form-builder a.bg-secondary:hover, .bootstrap-form-builder button.bg-secondary:focus, .bootstrap-form-builder button.bg-secondary:hover {
  background-color: #545b62 !important;
}

.bootstrap-form-builder .bg-success {
  background-color: #28a745 !important;
}

.bootstrap-form-builder a.bg-success:focus, .bootstrap-form-builder a.bg-success:hover, .bootstrap-form-builder button.bg-success:focus, .bootstrap-form-builder button.bg-success:hover {
  background-color: #1e7e34 !important;
}

.bootstrap-form-builder .bg-info {
  background-color: #17a2b8 !important;
}

.bootstrap-form-builder a.bg-info:focus, .bootstrap-form-builder a.bg-info:hover, .bootstrap-form-builder button.bg-info:focus, .bootstrap-form-builder button.bg-info:hover {
  background-color: #117a8b !important;
}

.bootstrap-form-builder .bg-warning {
  background-color: #ffc107 !important;
}

.bootstrap-form-builder a.bg-warning:focus, .bootstrap-form-builder a.bg-warning:hover, .bootstrap-form-builder button.bg-warning:focus, .bootstrap-form-builder button.bg-warning:hover {
  background-color: #d39e00 !important;
}

.bootstrap-form-builder .bg-danger {
  background-color: #dc3545 !important;
}

.bootstrap-form-builder a.bg-danger:focus, .bootstrap-form-builder a.bg-danger:hover, .bootstrap-form-builder button.bg-danger:focus, .bootstrap-form-builder button.bg-danger:hover {
  background-color: #bd2130 !important;
}

.bootstrap-form-builder .bg-light {
  background-color: #f8f9fa !important;
}

.bootstrap-form-builder a.bg-light:focus, .bootstrap-form-builder a.bg-light:hover, .bootstrap-form-builder button.bg-light:focus, .bootstrap-form-builder button.bg-light:hover {
  background-color: #dae0e5 !important;
}

.bootstrap-form-builder .bg-dark {
  background-color: #343a40 !important;
}

.bootstrap-form-builder a.bg-dark:focus, .bootstrap-form-builder a.bg-dark:hover, .bootstrap-form-builder button.bg-dark:focus, .bootstrap-form-builder button.bg-dark:hover {
  background-color: #1d2124 !important;
}

.bootstrap-form-builder .bg-white {
  background-color: #fff !important;
}

.bootstrap-form-builder .bg-transparent {
  background-color: transparent !important;
}

.bootstrap-form-builder .border-top {
  border-top: 1px solid #dee2e6 !important;
}

.bootstrap-form-builder .border-right {
  border-right: 1px solid #dee2e6 !important;
}

.bootstrap-form-builder .border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.bootstrap-form-builder .border-left {
  border-left: 1px solid #dee2e6 !important;
}

.bootstrap-form-builder .border-0 {
  border: 0 !important;
}

.bootstrap-form-builder .border-top-0 {
  border-top: 0 !important;
}

.bootstrap-form-builder .border-right-0 {
  border-right: 0 !important;
}

.bootstrap-form-builder .border-bottom-0 {
  border-bottom: 0 !important;
}

.bootstrap-form-builder .border-left-0 {
  border-left: 0 !important;
}

.bootstrap-form-builder .border-primary {
  border-color: #007bff !important;
}

.bootstrap-form-builder .border-secondary {
  border-color: #6c757d !important;
}

.bootstrap-form-builder .border-success {
  border-color: #28a745 !important;
}

.bootstrap-form-builder .border-info {
  border-color: #17a2b8 !important;
}

.bootstrap-form-builder .border-warning {
  border-color: #ffc107 !important;
}

.bootstrap-form-builder .border-danger {
  border-color: #dc3545 !important;
}

.bootstrap-form-builder .border-light {
  border-color: #f8f9fa !important;
}

.bootstrap-form-builder .border-dark {
  border-color: #343a40 !important;
}

.bootstrap-form-builder .border-white {
  border-color: #fff !important;
}

.bootstrap-form-builder .rounded-sm {
  border-radius: .2rem !important;
}

.bootstrap-form-builder .rounded {
  border-radius: .25rem !important;
}

.bootstrap-form-builder .rounded-top {
  border-top-left-radius: .25rem !important;
  border-top-right-radius: .25rem !important;
}

.bootstrap-form-builder .rounded-right {
  border-top-right-radius: .25rem !important;
  border-bottom-right-radius: .25rem !important;
}

.bootstrap-form-builder .rounded-bottom {
  border-bottom-right-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.bootstrap-form-builder .rounded-left {
  border-top-left-radius: .25rem !important;
  border-bottom-left-radius: .25rem !important;
}

.bootstrap-form-builder .rounded-lg {
  border-radius: .3rem !important;
}

.bootstrap-form-builder .rounded-circle {
  border-radius: 50% !important;
}

.bootstrap-form-builder .rounded-pill {
  border-radius: 50rem !important;
}

.bootstrap-form-builder .rounded-0 {
  border-radius: 0 !important;
}

.bootstrap-form-builder .clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.bootstrap-form-builder .d-none {
  display: none !important;
}

.bootstrap-form-builder .d-inline {
  display: inline !important;
}

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

.bootstrap-form-builder .d-block {
  display: block !important;
}

.bootstrap-form-builder .d-table {
  display: table !important;
}

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

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

.bootstrap-form-builder .d-flex {
  display: flex !important;
}

.bootstrap-form-builder .d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .d-sm-none {
    display: none !important;
  }
  .bootstrap-form-builder .d-sm-inline {
    display: inline !important;
  }
  .bootstrap-form-builder .d-sm-inline-block {
    display: inline-block !important;
  }
  .bootstrap-form-builder .d-sm-block {
    display: block !important;
  }
  .bootstrap-form-builder .d-sm-table {
    display: table !important;
  }
  .bootstrap-form-builder .d-sm-table-row {
    display: table-row !important;
  }
  .bootstrap-form-builder .d-sm-table-cell {
    display: table-cell !important;
  }
  .bootstrap-form-builder .d-sm-flex {
    display: flex !important;
  }
  .bootstrap-form-builder .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .d-md-none {
    display: none !important;
  }
  .bootstrap-form-builder .d-md-inline {
    display: inline !important;
  }
  .bootstrap-form-builder .d-md-inline-block {
    display: inline-block !important;
  }
  .bootstrap-form-builder .d-md-block {
    display: block !important;
  }
  .bootstrap-form-builder .d-md-table {
    display: table !important;
  }
  .bootstrap-form-builder .d-md-table-row {
    display: table-row !important;
  }
  .bootstrap-form-builder .d-md-table-cell {
    display: table-cell !important;
  }
  .bootstrap-form-builder .d-md-flex {
    display: flex !important;
  }
  .bootstrap-form-builder .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .d-lg-none {
    display: none !important;
  }
  .bootstrap-form-builder .d-lg-inline {
    display: inline !important;
  }
  .bootstrap-form-builder .d-lg-inline-block {
    display: inline-block !important;
  }
  .bootstrap-form-builder .d-lg-block {
    display: block !important;
  }
  .bootstrap-form-builder .d-lg-table {
    display: table !important;
  }
  .bootstrap-form-builder .d-lg-table-row {
    display: table-row !important;
  }
  .bootstrap-form-builder .d-lg-table-cell {
    display: table-cell !important;
  }
  .bootstrap-form-builder .d-lg-flex {
    display: flex !important;
  }
  .bootstrap-form-builder .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .d-xl-none {
    display: none !important;
  }
  .bootstrap-form-builder .d-xl-inline {
    display: inline !important;
  }
  .bootstrap-form-builder .d-xl-inline-block {
    display: inline-block !important;
  }
  .bootstrap-form-builder .d-xl-block {
    display: block !important;
  }
  .bootstrap-form-builder .d-xl-table {
    display: table !important;
  }
  .bootstrap-form-builder .d-xl-table-row {
    display: table-row !important;
  }
  .bootstrap-form-builder .d-xl-table-cell {
    display: table-cell !important;
  }
  .bootstrap-form-builder .d-xl-flex {
    display: flex !important;
  }
  .bootstrap-form-builder .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .bootstrap-form-builder .d-print-none {
    display: none !important;
  }
  .bootstrap-form-builder .d-print-inline {
    display: inline !important;
  }
  .bootstrap-form-builder .d-print-inline-block {
    display: inline-block !important;
  }
  .bootstrap-form-builder .d-print-block {
    display: block !important;
  }
  .bootstrap-form-builder .d-print-table {
    display: table !important;
  }
  .bootstrap-form-builder .d-print-table-row {
    display: table-row !important;
  }
  .bootstrap-form-builder .d-print-table-cell {
    display: table-cell !important;
  }
  .bootstrap-form-builder .d-print-flex {
    display: flex !important;
  }
  .bootstrap-form-builder .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.bootstrap-form-builder .embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.bootstrap-form-builder .embed-responsive::before {
  display: block;
  content: "";
}

.bootstrap-form-builder .embed-responsive .embed-responsive-item, .bootstrap-form-builder .embed-responsive embed, .bootstrap-form-builder .embed-responsive iframe, .bootstrap-form-builder .embed-responsive object, .bootstrap-form-builder .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.bootstrap-form-builder .embed-responsive-21by9::before {
  padding-top: 42.857143%;
}

.bootstrap-form-builder .embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.bootstrap-form-builder .embed-responsive-4by3::before {
  padding-top: 75%;
}

.bootstrap-form-builder .embed-responsive-1by1::before {
  padding-top: 100%;
}

.bootstrap-form-builder .flex-row {
  flex-direction: row !important;
}

.bootstrap-form-builder .flex-column {
  flex-direction: column !important;
}

.bootstrap-form-builder .flex-row-reverse {
  flex-direction: row-reverse !important;
}

.bootstrap-form-builder .flex-column-reverse {
  flex-direction: column-reverse !important;
}

.bootstrap-form-builder .flex-wrap {
  flex-wrap: wrap !important;
}

.bootstrap-form-builder .flex-nowrap {
  flex-wrap: nowrap !important;
}

.bootstrap-form-builder .flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.bootstrap-form-builder .flex-fill {
  flex: 1 1 auto !important;
}

.bootstrap-form-builder .flex-grow-0 {
  flex-grow: 0 !important;
}

.bootstrap-form-builder .flex-grow-1 {
  flex-grow: 1 !important;
}

.bootstrap-form-builder .flex-shrink-0 {
  flex-shrink: 0 !important;
}

.bootstrap-form-builder .flex-shrink-1 {
  flex-shrink: 1 !important;
}

.bootstrap-form-builder .justify-content-start {
  justify-content: flex-start !important;
}

.bootstrap-form-builder .justify-content-end {
  justify-content: flex-end !important;
}

.bootstrap-form-builder .justify-content-center {
  justify-content: center !important;
}

.bootstrap-form-builder .justify-content-between {
  justify-content: space-between !important;
}

.bootstrap-form-builder .justify-content-around {
  justify-content: space-around !important;
}

.bootstrap-form-builder .align-items-start {
  align-items: flex-start !important;
}

.bootstrap-form-builder .align-items-end {
  align-items: flex-end !important;
}

.bootstrap-form-builder .align-items-center {
  align-items: center !important;
}

.bootstrap-form-builder .align-items-baseline {
  align-items: baseline !important;
}

.bootstrap-form-builder .align-items-stretch {
  align-items: stretch !important;
}

.bootstrap-form-builder .align-content-start {
  align-content: flex-start !important;
}

.bootstrap-form-builder .align-content-end {
  align-content: flex-end !important;
}

.bootstrap-form-builder .align-content-center {
  align-content: center !important;
}

.bootstrap-form-builder .align-content-between {
  align-content: space-between !important;
}

.bootstrap-form-builder .align-content-around {
  align-content: space-around !important;
}

.bootstrap-form-builder .align-content-stretch {
  align-content: stretch !important;
}

.bootstrap-form-builder .align-self-auto {
  align-self: auto !important;
}

.bootstrap-form-builder .align-self-start {
  align-self: flex-start !important;
}

.bootstrap-form-builder .align-self-end {
  align-self: flex-end !important;
}

.bootstrap-form-builder .align-self-center {
  align-self: center !important;
}

.bootstrap-form-builder .align-self-baseline {
  align-self: baseline !important;
}

.bootstrap-form-builder .align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .flex-sm-row {
    flex-direction: row !important;
  }
  .bootstrap-form-builder .flex-sm-column {
    flex-direction: column !important;
  }
  .bootstrap-form-builder .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-form-builder .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-form-builder .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-form-builder .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-form-builder .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-form-builder .flex-sm-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-form-builder .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-form-builder .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-form-builder .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-form-builder .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-form-builder .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .bootstrap-form-builder .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .bootstrap-form-builder .justify-content-sm-center {
    justify-content: center !important;
  }
  .bootstrap-form-builder .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .bootstrap-form-builder .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .bootstrap-form-builder .align-items-sm-start {
    align-items: flex-start !important;
  }
  .bootstrap-form-builder .align-items-sm-end {
    align-items: flex-end !important;
  }
  .bootstrap-form-builder .align-items-sm-center {
    align-items: center !important;
  }
  .bootstrap-form-builder .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .bootstrap-form-builder .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .bootstrap-form-builder .align-content-sm-start {
    align-content: flex-start !important;
  }
  .bootstrap-form-builder .align-content-sm-end {
    align-content: flex-end !important;
  }
  .bootstrap-form-builder .align-content-sm-center {
    align-content: center !important;
  }
  .bootstrap-form-builder .align-content-sm-between {
    align-content: space-between !important;
  }
  .bootstrap-form-builder .align-content-sm-around {
    align-content: space-around !important;
  }
  .bootstrap-form-builder .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .bootstrap-form-builder .align-self-sm-auto {
    align-self: auto !important;
  }
  .bootstrap-form-builder .align-self-sm-start {
    align-self: flex-start !important;
  }
  .bootstrap-form-builder .align-self-sm-end {
    align-self: flex-end !important;
  }
  .bootstrap-form-builder .align-self-sm-center {
    align-self: center !important;
  }
  .bootstrap-form-builder .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .bootstrap-form-builder .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .flex-md-row {
    flex-direction: row !important;
  }
  .bootstrap-form-builder .flex-md-column {
    flex-direction: column !important;
  }
  .bootstrap-form-builder .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-form-builder .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-form-builder .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-form-builder .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-form-builder .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-form-builder .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-form-builder .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-form-builder .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-form-builder .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-form-builder .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-form-builder .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .bootstrap-form-builder .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .bootstrap-form-builder .justify-content-md-center {
    justify-content: center !important;
  }
  .bootstrap-form-builder .justify-content-md-between {
    justify-content: space-between !important;
  }
  .bootstrap-form-builder .justify-content-md-around {
    justify-content: space-around !important;
  }
  .bootstrap-form-builder .align-items-md-start {
    align-items: flex-start !important;
  }
  .bootstrap-form-builder .align-items-md-end {
    align-items: flex-end !important;
  }
  .bootstrap-form-builder .align-items-md-center {
    align-items: center !important;
  }
  .bootstrap-form-builder .align-items-md-baseline {
    align-items: baseline !important;
  }
  .bootstrap-form-builder .align-items-md-stretch {
    align-items: stretch !important;
  }
  .bootstrap-form-builder .align-content-md-start {
    align-content: flex-start !important;
  }
  .bootstrap-form-builder .align-content-md-end {
    align-content: flex-end !important;
  }
  .bootstrap-form-builder .align-content-md-center {
    align-content: center !important;
  }
  .bootstrap-form-builder .align-content-md-between {
    align-content: space-between !important;
  }
  .bootstrap-form-builder .align-content-md-around {
    align-content: space-around !important;
  }
  .bootstrap-form-builder .align-content-md-stretch {
    align-content: stretch !important;
  }
  .bootstrap-form-builder .align-self-md-auto {
    align-self: auto !important;
  }
  .bootstrap-form-builder .align-self-md-start {
    align-self: flex-start !important;
  }
  .bootstrap-form-builder .align-self-md-end {
    align-self: flex-end !important;
  }
  .bootstrap-form-builder .align-self-md-center {
    align-self: center !important;
  }
  .bootstrap-form-builder .align-self-md-baseline {
    align-self: baseline !important;
  }
  .bootstrap-form-builder .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .flex-lg-row {
    flex-direction: row !important;
  }
  .bootstrap-form-builder .flex-lg-column {
    flex-direction: column !important;
  }
  .bootstrap-form-builder .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-form-builder .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-form-builder .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-form-builder .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-form-builder .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-form-builder .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-form-builder .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-form-builder .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-form-builder .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-form-builder .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-form-builder .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .bootstrap-form-builder .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .bootstrap-form-builder .justify-content-lg-center {
    justify-content: center !important;
  }
  .bootstrap-form-builder .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .bootstrap-form-builder .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .bootstrap-form-builder .align-items-lg-start {
    align-items: flex-start !important;
  }
  .bootstrap-form-builder .align-items-lg-end {
    align-items: flex-end !important;
  }
  .bootstrap-form-builder .align-items-lg-center {
    align-items: center !important;
  }
  .bootstrap-form-builder .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .bootstrap-form-builder .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .bootstrap-form-builder .align-content-lg-start {
    align-content: flex-start !important;
  }
  .bootstrap-form-builder .align-content-lg-end {
    align-content: flex-end !important;
  }
  .bootstrap-form-builder .align-content-lg-center {
    align-content: center !important;
  }
  .bootstrap-form-builder .align-content-lg-between {
    align-content: space-between !important;
  }
  .bootstrap-form-builder .align-content-lg-around {
    align-content: space-around !important;
  }
  .bootstrap-form-builder .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .bootstrap-form-builder .align-self-lg-auto {
    align-self: auto !important;
  }
  .bootstrap-form-builder .align-self-lg-start {
    align-self: flex-start !important;
  }
  .bootstrap-form-builder .align-self-lg-end {
    align-self: flex-end !important;
  }
  .bootstrap-form-builder .align-self-lg-center {
    align-self: center !important;
  }
  .bootstrap-form-builder .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .bootstrap-form-builder .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .flex-xl-row {
    flex-direction: row !important;
  }
  .bootstrap-form-builder .flex-xl-column {
    flex-direction: column !important;
  }
  .bootstrap-form-builder .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .bootstrap-form-builder .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .bootstrap-form-builder .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .bootstrap-form-builder .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .bootstrap-form-builder .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .bootstrap-form-builder .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .bootstrap-form-builder .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .bootstrap-form-builder .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .bootstrap-form-builder .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .bootstrap-form-builder .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .bootstrap-form-builder .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .bootstrap-form-builder .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .bootstrap-form-builder .justify-content-xl-center {
    justify-content: center !important;
  }
  .bootstrap-form-builder .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .bootstrap-form-builder .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .bootstrap-form-builder .align-items-xl-start {
    align-items: flex-start !important;
  }
  .bootstrap-form-builder .align-items-xl-end {
    align-items: flex-end !important;
  }
  .bootstrap-form-builder .align-items-xl-center {
    align-items: center !important;
  }
  .bootstrap-form-builder .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .bootstrap-form-builder .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .bootstrap-form-builder .align-content-xl-start {
    align-content: flex-start !important;
  }
  .bootstrap-form-builder .align-content-xl-end {
    align-content: flex-end !important;
  }
  .bootstrap-form-builder .align-content-xl-center {
    align-content: center !important;
  }
  .bootstrap-form-builder .align-content-xl-between {
    align-content: space-between !important;
  }
  .bootstrap-form-builder .align-content-xl-around {
    align-content: space-around !important;
  }
  .bootstrap-form-builder .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .bootstrap-form-builder .align-self-xl-auto {
    align-self: auto !important;
  }
  .bootstrap-form-builder .align-self-xl-start {
    align-self: flex-start !important;
  }
  .bootstrap-form-builder .align-self-xl-end {
    align-self: flex-end !important;
  }
  .bootstrap-form-builder .align-self-xl-center {
    align-self: center !important;
  }
  .bootstrap-form-builder .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .bootstrap-form-builder .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

.bootstrap-form-builder .float-left {
  float: left !important;
}

.bootstrap-form-builder .float-right {
  float: right !important;
}

.bootstrap-form-builder .float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .float-sm-left {
    float: left !important;
  }
  .bootstrap-form-builder .float-sm-right {
    float: right !important;
  }
  .bootstrap-form-builder .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .float-md-left {
    float: left !important;
  }
  .bootstrap-form-builder .float-md-right {
    float: right !important;
  }
  .bootstrap-form-builder .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .float-lg-left {
    float: left !important;
  }
  .bootstrap-form-builder .float-lg-right {
    float: right !important;
  }
  .bootstrap-form-builder .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .float-xl-left {
    float: left !important;
  }
  .bootstrap-form-builder .float-xl-right {
    float: right !important;
  }
  .bootstrap-form-builder .float-xl-none {
    float: none !important;
  }
}

.bootstrap-form-builder .overflow-auto {
  overflow: auto !important;
}

.bootstrap-form-builder .overflow-hidden {
  overflow: hidden !important;
}

.bootstrap-form-builder .position-static {
  position: static !important;
}

.bootstrap-form-builder .position-relative {
  position: relative !important;
}

.bootstrap-form-builder .position-absolute {
  position: absolute !important;
}

.bootstrap-form-builder .position-fixed {
  position: fixed !important;
}

.bootstrap-form-builder .position-sticky {
  position: sticky !important;
}

.bootstrap-form-builder .fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.bootstrap-form-builder .fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .bootstrap-form-builder .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.bootstrap-form-builder .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bootstrap-form-builder .sr-only-focusable:active, .bootstrap-form-builder .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.bootstrap-form-builder .shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.bootstrap-form-builder .shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.bootstrap-form-builder .shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.bootstrap-form-builder .shadow-none {
  box-shadow: none !important;
}

.bootstrap-form-builder .w-25 {
  width: 25% !important;
}

.bootstrap-form-builder .w-50 {
  width: 50% !important;
}

.bootstrap-form-builder .w-75 {
  width: 75% !important;
}

.bootstrap-form-builder .w-100 {
  width: 100% !important;
}

.bootstrap-form-builder .w-auto {
  width: auto !important;
}

.bootstrap-form-builder .h-25 {
  height: 25% !important;
}

.bootstrap-form-builder .h-50 {
  height: 50% !important;
}

.bootstrap-form-builder .h-75 {
  height: 75% !important;
}

.bootstrap-form-builder .h-100 {
  height: 100% !important;
}

.bootstrap-form-builder .h-auto {
  height: auto !important;
}

.bootstrap-form-builder .mw-100 {
  max-width: 100% !important;
}

.bootstrap-form-builder .mh-100 {
  max-height: 100% !important;
}

.bootstrap-form-builder .min-vw-100 {
  min-width: 100vw !important;
}

.bootstrap-form-builder .min-vh-100 {
  min-height: 100vh !important;
}

.bootstrap-form-builder .vw-100 {
  width: 100vw !important;
}

.bootstrap-form-builder .vh-100 {
  height: 100vh !important;
}

.bootstrap-form-builder .stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.bootstrap-form-builder .m-0 {
  margin: 0 !important;
}

.bootstrap-form-builder .mt-0, .bootstrap-form-builder .my-0 {
  margin-top: 0 !important;
}

.bootstrap-form-builder .mr-0, .bootstrap-form-builder .mx-0 {
  margin-right: 0 !important;
}

.bootstrap-form-builder .mb-0, .bootstrap-form-builder .my-0 {
  margin-bottom: 0 !important;
}

.bootstrap-form-builder .ml-0, .bootstrap-form-builder .mx-0 {
  margin-left: 0 !important;
}

.bootstrap-form-builder .m-1 {
  margin: .25rem !important;
}

.bootstrap-form-builder .mt-1, .bootstrap-form-builder .my-1 {
  margin-top: .25rem !important;
}

.bootstrap-form-builder .mr-1, .bootstrap-form-builder .mx-1 {
  margin-right: .25rem !important;
}

.bootstrap-form-builder .mb-1, .bootstrap-form-builder .my-1 {
  margin-bottom: .25rem !important;
}

.bootstrap-form-builder .ml-1, .bootstrap-form-builder .mx-1 {
  margin-left: .25rem !important;
}

.bootstrap-form-builder .m-2 {
  margin: .5rem !important;
}

.bootstrap-form-builder .mt-2, .bootstrap-form-builder .my-2 {
  margin-top: .5rem !important;
}

.bootstrap-form-builder .mr-2, .bootstrap-form-builder .mx-2 {
  margin-right: .5rem !important;
}

.bootstrap-form-builder .mb-2, .bootstrap-form-builder .my-2 {
  margin-bottom: .5rem !important;
}

.bootstrap-form-builder .ml-2, .bootstrap-form-builder .mx-2 {
  margin-left: .5rem !important;
}

.bootstrap-form-builder .m-3 {
  margin: 1rem !important;
}

.bootstrap-form-builder .mt-3, .bootstrap-form-builder .my-3 {
  margin-top: 1rem !important;
}

.bootstrap-form-builder .mr-3, .bootstrap-form-builder .mx-3 {
  margin-right: 1rem !important;
}

.bootstrap-form-builder .mb-3, .bootstrap-form-builder .my-3 {
  margin-bottom: 1rem !important;
}

.bootstrap-form-builder .ml-3, .bootstrap-form-builder .mx-3 {
  margin-left: 1rem !important;
}

.bootstrap-form-builder .m-4 {
  margin: 1.5rem !important;
}

.bootstrap-form-builder .mt-4, .bootstrap-form-builder .my-4 {
  margin-top: 1.5rem !important;
}

.bootstrap-form-builder .mr-4, .bootstrap-form-builder .mx-4 {
  margin-right: 1.5rem !important;
}

.bootstrap-form-builder .mb-4, .bootstrap-form-builder .my-4 {
  margin-bottom: 1.5rem !important;
}

.bootstrap-form-builder .ml-4, .bootstrap-form-builder .mx-4 {
  margin-left: 1.5rem !important;
}

.bootstrap-form-builder .m-5 {
  margin: 3rem !important;
}

.bootstrap-form-builder .mt-5, .bootstrap-form-builder .my-5 {
  margin-top: 3rem !important;
}

.bootstrap-form-builder .mr-5, .bootstrap-form-builder .mx-5 {
  margin-right: 3rem !important;
}

.bootstrap-form-builder .mb-5, .bootstrap-form-builder .my-5 {
  margin-bottom: 3rem !important;
}

.bootstrap-form-builder .ml-5, .bootstrap-form-builder .mx-5 {
  margin-left: 3rem !important;
}

.bootstrap-form-builder .p-0 {
  padding: 0 !important;
}

.bootstrap-form-builder .pt-0, .bootstrap-form-builder .py-0 {
  padding-top: 0 !important;
}

.bootstrap-form-builder .pr-0, .bootstrap-form-builder .px-0 {
  padding-right: 0 !important;
}

.bootstrap-form-builder .pb-0, .bootstrap-form-builder .py-0 {
  padding-bottom: 0 !important;
}

.bootstrap-form-builder .pl-0, .bootstrap-form-builder .px-0 {
  padding-left: 0 !important;
}

.bootstrap-form-builder .p-1 {
  padding: .25rem !important;
}

.bootstrap-form-builder .pt-1, .bootstrap-form-builder .py-1 {
  padding-top: .25rem !important;
}

.bootstrap-form-builder .pr-1, .bootstrap-form-builder .px-1 {
  padding-right: .25rem !important;
}

.bootstrap-form-builder .pb-1, .bootstrap-form-builder .py-1 {
  padding-bottom: .25rem !important;
}

.bootstrap-form-builder .pl-1, .bootstrap-form-builder .px-1 {
  padding-left: .25rem !important;
}

.bootstrap-form-builder .p-2 {
  padding: .5rem !important;
}

.bootstrap-form-builder .pt-2, .bootstrap-form-builder .py-2 {
  padding-top: .5rem !important;
}

.bootstrap-form-builder .pr-2, .bootstrap-form-builder .px-2 {
  padding-right: .5rem !important;
}

.bootstrap-form-builder .pb-2, .bootstrap-form-builder .py-2 {
  padding-bottom: .5rem !important;
}

.bootstrap-form-builder .pl-2, .bootstrap-form-builder .px-2 {
  padding-left: .5rem !important;
}

.bootstrap-form-builder .p-3 {
  padding: 1rem !important;
}

.bootstrap-form-builder .pt-3, .bootstrap-form-builder .py-3 {
  padding-top: 1rem !important;
}

.bootstrap-form-builder .pr-3, .bootstrap-form-builder .px-3 {
  padding-right: 1rem !important;
}

.bootstrap-form-builder .pb-3, .bootstrap-form-builder .py-3 {
  padding-bottom: 1rem !important;
}

.bootstrap-form-builder .pl-3, .bootstrap-form-builder .px-3 {
  padding-left: 1rem !important;
}

.bootstrap-form-builder .p-4 {
  padding: 1.5rem !important;
}

.bootstrap-form-builder .pt-4, .bootstrap-form-builder .py-4 {
  padding-top: 1.5rem !important;
}

.bootstrap-form-builder .pr-4, .bootstrap-form-builder .px-4 {
  padding-right: 1.5rem !important;
}

.bootstrap-form-builder .pb-4, .bootstrap-form-builder .py-4 {
  padding-bottom: 1.5rem !important;
}

.bootstrap-form-builder .p-5 {
  padding: 3rem !important;
}

.bootstrap-form-builder .pt-5, .bootstrap-form-builder .py-5 {
  padding-top: 3rem !important;
}

.bootstrap-form-builder .pr-5, .bootstrap-form-builder .px-5 {
  padding-right: 3rem !important;
}

.bootstrap-form-builder .pb-5, .bootstrap-form-builder .py-5 {
  padding-bottom: 3rem !important;
}

.bootstrap-form-builder .pl-5, .bootstrap-form-builder .px-5 {
  padding-left: 3rem !important;
}

.bootstrap-form-builder .m-n1 {
  margin: -.25rem !important;
}

.bootstrap-form-builder .mt-n1, .bootstrap-form-builder .my-n1 {
  margin-top: -.25rem !important;
}

.bootstrap-form-builder .mr-n1, .bootstrap-form-builder .mx-n1 {
  margin-right: -.25rem !important;
}

.bootstrap-form-builder .mb-n1, .bootstrap-form-builder .my-n1 {
  margin-bottom: -.25rem !important;
}

.bootstrap-form-builder .ml-n1, .bootstrap-form-builder .mx-n1 {
  margin-left: -.25rem !important;
}

.bootstrap-form-builder .m-n2 {
  margin: -.5rem !important;
}

.bootstrap-form-builder .mt-n2, .bootstrap-form-builder .my-n2 {
  margin-top: -.5rem !important;
}

.bootstrap-form-builder .mr-n2, .bootstrap-form-builder .mx-n2 {
  margin-right: -.5rem !important;
}

.bootstrap-form-builder .mb-n2, .bootstrap-form-builder .my-n2 {
  margin-bottom: -.5rem !important;
}

.bootstrap-form-builder .ml-n2, .bootstrap-form-builder .mx-n2 {
  margin-left: -.5rem !important;
}

.bootstrap-form-builder .m-n3 {
  margin: -1rem !important;
}

.bootstrap-form-builder .mt-n3, .bootstrap-form-builder .my-n3 {
  margin-top: -1rem !important;
}

.bootstrap-form-builder .mr-n3, .bootstrap-form-builder .mx-n3 {
  margin-right: -1rem !important;
}

.bootstrap-form-builder .mb-n3, .bootstrap-form-builder .my-n3 {
  margin-bottom: -1rem !important;
}

.bootstrap-form-builder .ml-n3, .bootstrap-form-builder .mx-n3 {
  margin-left: -1rem !important;
}

.bootstrap-form-builder .m-n4 {
  margin: -1.5rem !important;
}

.bootstrap-form-builder .mt-n4, .bootstrap-form-builder .my-n4 {
  margin-top: -1.5rem !important;
}

.bootstrap-form-builder .mr-n4, .bootstrap-form-builder .mx-n4 {
  margin-right: -1.5rem !important;
}

.bootstrap-form-builder .mb-n4, .bootstrap-form-builder .my-n4 {
  margin-bottom: -1.5rem !important;
}

.bootstrap-form-builder .ml-n4, .bootstrap-form-builder .mx-n4 {
  margin-left: -1.5rem !important;
}

.bootstrap-form-builder .m-n5 {
  margin: -3rem !important;
}

.bootstrap-form-builder .mt-n5, .bootstrap-form-builder .my-n5 {
  margin-top: -3rem !important;
}

.bootstrap-form-builder .mr-n5, .bootstrap-form-builder .mx-n5 {
  margin-right: -3rem !important;
}

.bootstrap-form-builder .mb-n5, .bootstrap-form-builder .my-n5 {
  margin-bottom: -3rem !important;
}

.bootstrap-form-builder .ml-n5, .bootstrap-form-builder .mx-n5 {
  margin-left: -3rem !important;
}

.bootstrap-form-builder .m-auto {
  margin: auto !important;
}

.bootstrap-form-builder .mt-auto, .bootstrap-form-builder .my-auto {
  margin-top: auto !important;
}

.bootstrap-form-builder .mr-auto, .bootstrap-form-builder .mx-auto {
  margin-right: auto !important;
}

.bootstrap-form-builder .mb-auto, .bootstrap-form-builder .my-auto {
  margin-bottom: auto !important;
}

.bootstrap-form-builder .ml-auto, .bootstrap-form-builder .mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .m-sm-0 {
    margin: 0 !important;
  }
  .bootstrap-form-builder .mt-sm-0, .bootstrap-form-builder .my-sm-0 {
    margin-top: 0 !important;
  }
  .bootstrap-form-builder .mr-sm-0, .bootstrap-form-builder .mx-sm-0 {
    margin-right: 0 !important;
  }
  .bootstrap-form-builder .mb-sm-0, .bootstrap-form-builder .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-form-builder .ml-sm-0, .bootstrap-form-builder .mx-sm-0 {
    margin-left: 0 !important;
  }
  .bootstrap-form-builder .m-sm-1 {
    margin: .25rem !important;
  }
  .bootstrap-form-builder .mt-sm-1, .bootstrap-form-builder .my-sm-1 {
    margin-top: .25rem !important;
  }
  .bootstrap-form-builder .mr-sm-1, .bootstrap-form-builder .mx-sm-1 {
    margin-right: .25rem !important;
  }
  .bootstrap-form-builder .mb-sm-1, .bootstrap-form-builder .my-sm-1 {
    margin-bottom: .25rem !important;
  }
  .bootstrap-form-builder .ml-sm-1, .bootstrap-form-builder .mx-sm-1 {
    margin-left: .25rem !important;
  }
  .bootstrap-form-builder .m-sm-2 {
    margin: .5rem !important;
  }
  .bootstrap-form-builder .mt-sm-2, .bootstrap-form-builder .my-sm-2 {
    margin-top: .5rem !important;
  }
  .bootstrap-form-builder .mr-sm-2, .bootstrap-form-builder .mx-sm-2 {
    margin-right: .5rem !important;
  }
  .bootstrap-form-builder .mb-sm-2, .bootstrap-form-builder .my-sm-2 {
    margin-bottom: .5rem !important;
  }
  .bootstrap-form-builder .ml-sm-2, .bootstrap-form-builder .mx-sm-2 {
    margin-left: .5rem !important;
  }
  .bootstrap-form-builder .m-sm-3 {
    margin: 1rem !important;
  }
  .bootstrap-form-builder .mt-sm-3, .bootstrap-form-builder .my-sm-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-form-builder .mr-sm-3, .bootstrap-form-builder .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-form-builder .mb-sm-3, .bootstrap-form-builder .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-form-builder .ml-sm-3, .bootstrap-form-builder .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-form-builder .m-sm-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-form-builder .mt-sm-4, .bootstrap-form-builder .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-form-builder .mr-sm-4, .bootstrap-form-builder .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-form-builder .mb-sm-4, .bootstrap-form-builder .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .ml-sm-4, .bootstrap-form-builder .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-form-builder .m-sm-5 {
    margin: 3rem !important;
  }
  .bootstrap-form-builder .mt-sm-5, .bootstrap-form-builder .my-sm-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-form-builder .mr-sm-5, .bootstrap-form-builder .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-form-builder .mb-sm-5, .bootstrap-form-builder .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-form-builder .ml-sm-5, .bootstrap-form-builder .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-form-builder .p-sm-0 {
    padding: 0 !important;
  }
  .bootstrap-form-builder .pt-sm-0, .bootstrap-form-builder .py-sm-0 {
    padding-top: 0 !important;
  }
  .bootstrap-form-builder .pr-sm-0, .bootstrap-form-builder .px-sm-0 {
    padding-right: 0 !important;
  }
  .bootstrap-form-builder .pb-sm-0, .bootstrap-form-builder .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-form-builder .pl-sm-0, .bootstrap-form-builder .px-sm-0 {
    padding-left: 0 !important;
  }
  .bootstrap-form-builder .p-sm-1 {
    padding: .25rem !important;
  }
  .bootstrap-form-builder .pt-sm-1, .bootstrap-form-builder .py-sm-1 {
    padding-top: .25rem !important;
  }
  .bootstrap-form-builder .pr-sm-1, .bootstrap-form-builder .px-sm-1 {
    padding-right: .25rem !important;
  }
  .bootstrap-form-builder .pb-sm-1, .bootstrap-form-builder .py-sm-1 {
    padding-bottom: .25rem !important;
  }
  .bootstrap-form-builder .pl-sm-1, .bootstrap-form-builder .px-sm-1 {
    padding-left: .25rem !important;
  }
  .bootstrap-form-builder .p-sm-2 {
    padding: .5rem !important;
  }
  .bootstrap-form-builder .pt-sm-2, .bootstrap-form-builder .py-sm-2 {
    padding-top: .5rem !important;
  }
  .bootstrap-form-builder .pr-sm-2, .bootstrap-form-builder .px-sm-2 {
    padding-right: .5rem !important;
  }
  .bootstrap-form-builder .pb-sm-2, .bootstrap-form-builder .py-sm-2 {
    padding-bottom: .5rem !important;
  }
  .bootstrap-form-builder .pl-sm-2, .bootstrap-form-builder .px-sm-2 {
    padding-left: .5rem !important;
  }
  .bootstrap-form-builder .p-sm-3 {
    padding: 1rem !important;
  }
  .bootstrap-form-builder .pt-sm-3, .bootstrap-form-builder .py-sm-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-form-builder .pr-sm-3, .bootstrap-form-builder .px-sm-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-form-builder .pb-sm-3, .bootstrap-form-builder .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-form-builder .pl-sm-3, .bootstrap-form-builder .px-sm-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-form-builder .p-sm-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-form-builder .pt-sm-4, .bootstrap-form-builder .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-form-builder .pr-sm-4, .bootstrap-form-builder .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-form-builder .pb-sm-4, .bootstrap-form-builder .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .pl-sm-4, .bootstrap-form-builder .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-form-builder .p-sm-5 {
    padding: 3rem !important;
  }
  .bootstrap-form-builder .pt-sm-5, .bootstrap-form-builder .py-sm-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-form-builder .pr-sm-5, .bootstrap-form-builder .px-sm-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-form-builder .pb-sm-5, .bootstrap-form-builder .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-form-builder .pl-sm-5, .bootstrap-form-builder .px-sm-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-form-builder .m-sm-n1 {
    margin: -.25rem !important;
  }
  .bootstrap-form-builder .mt-sm-n1, .bootstrap-form-builder .my-sm-n1 {
    margin-top: -.25rem !important;
  }
  .bootstrap-form-builder .mr-sm-n1, .bootstrap-form-builder .mx-sm-n1 {
    margin-right: -.25rem !important;
  }
  .bootstrap-form-builder .mb-sm-n1, .bootstrap-form-builder .my-sm-n1 {
    margin-bottom: -.25rem !important;
  }
  .bootstrap-form-builder .ml-sm-n1, .bootstrap-form-builder .mx-sm-n1 {
    margin-left: -.25rem !important;
  }
  .bootstrap-form-builder .m-sm-n2 {
    margin: -.5rem !important;
  }
  .bootstrap-form-builder .mt-sm-n2, .bootstrap-form-builder .my-sm-n2 {
    margin-top: -.5rem !important;
  }
  .bootstrap-form-builder .mr-sm-n2, .bootstrap-form-builder .mx-sm-n2 {
    margin-right: -.5rem !important;
  }
  .bootstrap-form-builder .mb-sm-n2, .bootstrap-form-builder .my-sm-n2 {
    margin-bottom: -.5rem !important;
  }
  .bootstrap-form-builder .ml-sm-n2, .bootstrap-form-builder .mx-sm-n2 {
    margin-left: -.5rem !important;
  }
  .bootstrap-form-builder .m-sm-n3 {
    margin: -1rem !important;
  }
  .bootstrap-form-builder .mt-sm-n3, .bootstrap-form-builder .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-form-builder .mr-sm-n3, .bootstrap-form-builder .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-form-builder .mb-sm-n3, .bootstrap-form-builder .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-form-builder .ml-sm-n3, .bootstrap-form-builder .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-form-builder .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-form-builder .mt-sm-n4, .bootstrap-form-builder .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-form-builder .mr-sm-n4, .bootstrap-form-builder .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-form-builder .mb-sm-n4, .bootstrap-form-builder .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-form-builder .ml-sm-n4, .bootstrap-form-builder .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-form-builder .m-sm-n5 {
    margin: -3rem !important;
  }
  .bootstrap-form-builder .mt-sm-n5, .bootstrap-form-builder .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-form-builder .mr-sm-n5, .bootstrap-form-builder .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-form-builder .mb-sm-n5, .bootstrap-form-builder .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-form-builder .ml-sm-n5, .bootstrap-form-builder .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-form-builder .m-sm-auto {
    margin: auto !important;
  }
  .bootstrap-form-builder .mt-sm-auto, .bootstrap-form-builder .my-sm-auto {
    margin-top: auto !important;
  }
  .bootstrap-form-builder .mr-sm-auto, .bootstrap-form-builder .mx-sm-auto {
    margin-right: auto !important;
  }
  .bootstrap-form-builder .mb-sm-auto, .bootstrap-form-builder .my-sm-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-form-builder .ml-sm-auto, .bootstrap-form-builder .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .m-md-0 {
    margin: 0 !important;
  }
  .bootstrap-form-builder .mt-md-0, .bootstrap-form-builder .my-md-0 {
    margin-top: 0 !important;
  }
  .bootstrap-form-builder .mr-md-0, .bootstrap-form-builder .mx-md-0 {
    margin-right: 0 !important;
  }
  .bootstrap-form-builder .mb-md-0, .bootstrap-form-builder .my-md-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-form-builder .ml-md-0, .bootstrap-form-builder .mx-md-0 {
    margin-left: 0 !important;
  }
  .bootstrap-form-builder .m-md-1 {
    margin: .25rem !important;
  }
  .bootstrap-form-builder .mt-md-1, .bootstrap-form-builder .my-md-1 {
    margin-top: .25rem !important;
  }
  .bootstrap-form-builder .mr-md-1, .bootstrap-form-builder .mx-md-1 {
    margin-right: .25rem !important;
  }
  .bootstrap-form-builder .mb-md-1, .bootstrap-form-builder .my-md-1 {
    margin-bottom: .25rem !important;
  }
  .bootstrap-form-builder .ml-md-1, .bootstrap-form-builder .mx-md-1 {
    margin-left: .25rem !important;
  }
  .bootstrap-form-builder .m-md-2 {
    margin: .5rem !important;
  }
  .bootstrap-form-builder .mt-md-2, .bootstrap-form-builder .my-md-2 {
    margin-top: .5rem !important;
  }
  .bootstrap-form-builder .mr-md-2, .bootstrap-form-builder .mx-md-2 {
    margin-right: .5rem !important;
  }
  .bootstrap-form-builder .mb-md-2, .bootstrap-form-builder .my-md-2 {
    margin-bottom: .5rem !important;
  }
  .bootstrap-form-builder .ml-md-2, .bootstrap-form-builder .mx-md-2 {
    margin-left: .5rem !important;
  }
  .bootstrap-form-builder .m-md-3 {
    margin: 1rem !important;
  }
  .bootstrap-form-builder .mt-md-3, .bootstrap-form-builder .my-md-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-form-builder .mr-md-3, .bootstrap-form-builder .mx-md-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-form-builder .mb-md-3, .bootstrap-form-builder .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-form-builder .ml-md-3, .bootstrap-form-builder .mx-md-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-form-builder .m-md-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-form-builder .mt-md-4, .bootstrap-form-builder .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-form-builder .mr-md-4, .bootstrap-form-builder .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-form-builder .mb-md-4, .bootstrap-form-builder .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .ml-md-4, .bootstrap-form-builder .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-form-builder .m-md-5 {
    margin: 3rem !important;
  }
  .bootstrap-form-builder .mt-md-5, .bootstrap-form-builder .my-md-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-form-builder .mr-md-5, .bootstrap-form-builder .mx-md-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-form-builder .mb-md-5, .bootstrap-form-builder .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-form-builder .ml-md-5, .bootstrap-form-builder .mx-md-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-form-builder .p-md-0 {
    padding: 0 !important;
  }
  .bootstrap-form-builder .pt-md-0, .bootstrap-form-builder .py-md-0 {
    padding-top: 0 !important;
  }
  .bootstrap-form-builder .pr-md-0, .bootstrap-form-builder .px-md-0 {
    padding-right: 0 !important;
  }
  .bootstrap-form-builder .pb-md-0, .bootstrap-form-builder .py-md-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-form-builder .pl-md-0, .bootstrap-form-builder .px-md-0 {
    padding-left: 0 !important;
  }
  .bootstrap-form-builder .p-md-1 {
    padding: .25rem !important;
  }
  .bootstrap-form-builder .pt-md-1, .bootstrap-form-builder .py-md-1 {
    padding-top: .25rem !important;
  }
  .bootstrap-form-builder .pr-md-1, .bootstrap-form-builder .px-md-1 {
    padding-right: .25rem !important;
  }
  .bootstrap-form-builder .pb-md-1, .bootstrap-form-builder .py-md-1 {
    padding-bottom: .25rem !important;
  }
  .bootstrap-form-builder .pl-md-1, .bootstrap-form-builder .px-md-1 {
    padding-left: .25rem !important;
  }
  .bootstrap-form-builder .p-md-2 {
    padding: .5rem !important;
  }
  .bootstrap-form-builder .pt-md-2, .bootstrap-form-builder .py-md-2 {
    padding-top: .5rem !important;
  }
  .bootstrap-form-builder .pr-md-2, .bootstrap-form-builder .px-md-2 {
    padding-right: .5rem !important;
  }
  .bootstrap-form-builder .pb-md-2, .bootstrap-form-builder .py-md-2 {
    padding-bottom: .5rem !important;
  }
  .bootstrap-form-builder .pl-md-2, .bootstrap-form-builder .px-md-2 {
    padding-left: .5rem !important;
  }
  .bootstrap-form-builder .p-md-3 {
    padding: 1rem !important;
  }
  .bootstrap-form-builder .pt-md-3, .bootstrap-form-builder .py-md-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-form-builder .pr-md-3, .bootstrap-form-builder .px-md-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-form-builder .pb-md-3, .bootstrap-form-builder .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-form-builder .pl-md-3, .bootstrap-form-builder .px-md-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-form-builder .p-md-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-form-builder .pt-md-4, .bootstrap-form-builder .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-form-builder .pr-md-4, .bootstrap-form-builder .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-form-builder .pb-md-4, .bootstrap-form-builder .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .pl-md-4, .bootstrap-form-builder .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-form-builder .p-md-5 {
    padding: 3rem !important;
  }
  .bootstrap-form-builder .pt-md-5, .bootstrap-form-builder .py-md-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-form-builder .pr-md-5, .bootstrap-form-builder .px-md-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-form-builder .pb-md-5, .bootstrap-form-builder .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-form-builder .pl-md-5, .bootstrap-form-builder .px-md-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-form-builder .m-md-n1 {
    margin: -.25rem !important;
  }
  .bootstrap-form-builder .mt-md-n1, .bootstrap-form-builder .my-md-n1 {
    margin-top: -.25rem !important;
  }
  .bootstrap-form-builder .mr-md-n1, .bootstrap-form-builder .mx-md-n1 {
    margin-right: -.25rem !important;
  }
  .bootstrap-form-builder .mb-md-n1, .bootstrap-form-builder .my-md-n1 {
    margin-bottom: -.25rem !important;
  }
  .bootstrap-form-builder .ml-md-n1, .bootstrap-form-builder .mx-md-n1 {
    margin-left: -.25rem !important;
  }
  .bootstrap-form-builder .m-md-n2 {
    margin: -.5rem !important;
  }
  .bootstrap-form-builder .mt-md-n2, .bootstrap-form-builder .my-md-n2 {
    margin-top: -.5rem !important;
  }
  .bootstrap-form-builder .mr-md-n2, .bootstrap-form-builder .mx-md-n2 {
    margin-right: -.5rem !important;
  }
  .bootstrap-form-builder .mb-md-n2, .bootstrap-form-builder .my-md-n2 {
    margin-bottom: -.5rem !important;
  }
  .bootstrap-form-builder .ml-md-n2, .bootstrap-form-builder .mx-md-n2 {
    margin-left: -.5rem !important;
  }
  .bootstrap-form-builder .m-md-n3 {
    margin: -1rem !important;
  }
  .bootstrap-form-builder .mt-md-n3, .bootstrap-form-builder .my-md-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-form-builder .mr-md-n3, .bootstrap-form-builder .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-form-builder .mb-md-n3, .bootstrap-form-builder .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-form-builder .ml-md-n3, .bootstrap-form-builder .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-form-builder .m-md-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-form-builder .mt-md-n4, .bootstrap-form-builder .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-form-builder .mr-md-n4, .bootstrap-form-builder .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-form-builder .mb-md-n4, .bootstrap-form-builder .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-form-builder .ml-md-n4, .bootstrap-form-builder .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-form-builder .m-md-n5 {
    margin: -3rem !important;
  }
  .bootstrap-form-builder .mt-md-n5, .bootstrap-form-builder .my-md-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-form-builder .mr-md-n5, .bootstrap-form-builder .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-form-builder .mb-md-n5, .bootstrap-form-builder .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-form-builder .ml-md-n5, .bootstrap-form-builder .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-form-builder .m-md-auto {
    margin: auto !important;
  }
  .bootstrap-form-builder .mt-md-auto, .bootstrap-form-builder .my-md-auto {
    margin-top: auto !important;
  }
  .bootstrap-form-builder .mr-md-auto, .bootstrap-form-builder .mx-md-auto {
    margin-right: auto !important;
  }
  .bootstrap-form-builder .mb-md-auto, .bootstrap-form-builder .my-md-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-form-builder .ml-md-auto, .bootstrap-form-builder .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .m-lg-0 {
    margin: 0 !important;
  }
  .bootstrap-form-builder .mt-lg-0, .bootstrap-form-builder .my-lg-0 {
    margin-top: 0 !important;
  }
  .bootstrap-form-builder .mr-lg-0, .bootstrap-form-builder .mx-lg-0 {
    margin-right: 0 !important;
  }
  .bootstrap-form-builder .mb-lg-0, .bootstrap-form-builder .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-form-builder .ml-lg-0, .bootstrap-form-builder .mx-lg-0 {
    margin-left: 0 !important;
  }
  .bootstrap-form-builder .m-lg-1 {
    margin: .25rem !important;
  }
  .bootstrap-form-builder .mt-lg-1, .bootstrap-form-builder .my-lg-1 {
    margin-top: .25rem !important;
  }
  .bootstrap-form-builder .mr-lg-1, .bootstrap-form-builder .mx-lg-1 {
    margin-right: .25rem !important;
  }
  .bootstrap-form-builder .mb-lg-1, .bootstrap-form-builder .my-lg-1 {
    margin-bottom: .25rem !important;
  }
  .bootstrap-form-builder .ml-lg-1, .bootstrap-form-builder .mx-lg-1 {
    margin-left: .25rem !important;
  }
  .bootstrap-form-builder .m-lg-2 {
    margin: .5rem !important;
  }
  .bootstrap-form-builder .mt-lg-2, .bootstrap-form-builder .my-lg-2 {
    margin-top: .5rem !important;
  }
  .bootstrap-form-builder .mr-lg-2, .bootstrap-form-builder .mx-lg-2 {
    margin-right: .5rem !important;
  }
  .bootstrap-form-builder .mb-lg-2, .bootstrap-form-builder .my-lg-2 {
    margin-bottom: .5rem !important;
  }
  .bootstrap-form-builder .ml-lg-2, .bootstrap-form-builder .mx-lg-2 {
    margin-left: .5rem !important;
  }
  .bootstrap-form-builder .m-lg-3 {
    margin: 1rem !important;
  }
  .bootstrap-form-builder .mt-lg-3, .bootstrap-form-builder .my-lg-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-form-builder .mr-lg-3, .bootstrap-form-builder .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-form-builder .mb-lg-3, .bootstrap-form-builder .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-form-builder .ml-lg-3, .bootstrap-form-builder .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-form-builder .m-lg-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-form-builder .mt-lg-4, .bootstrap-form-builder .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-form-builder .mr-lg-4, .bootstrap-form-builder .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-form-builder .mb-lg-4, .bootstrap-form-builder .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .ml-lg-4, .bootstrap-form-builder .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-form-builder .m-lg-5 {
    margin: 3rem !important;
  }
  .bootstrap-form-builder .mt-lg-5, .bootstrap-form-builder .my-lg-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-form-builder .mr-lg-5, .bootstrap-form-builder .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-form-builder .mb-lg-5, .bootstrap-form-builder .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-form-builder .ml-lg-5, .bootstrap-form-builder .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-form-builder .p-lg-0 {
    padding: 0 !important;
  }
  .bootstrap-form-builder .pt-lg-0, .bootstrap-form-builder .py-lg-0 {
    padding-top: 0 !important;
  }
  .bootstrap-form-builder .pr-lg-0, .bootstrap-form-builder .px-lg-0 {
    padding-right: 0 !important;
  }
  .bootstrap-form-builder .pb-lg-0, .bootstrap-form-builder .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-form-builder .pl-lg-0, .bootstrap-form-builder .px-lg-0 {
    padding-left: 0 !important;
  }
  .bootstrap-form-builder .p-lg-1 {
    padding: .25rem !important;
  }
  .bootstrap-form-builder .pt-lg-1, .bootstrap-form-builder .py-lg-1 {
    padding-top: .25rem !important;
  }
  .bootstrap-form-builder .pr-lg-1, .bootstrap-form-builder .px-lg-1 {
    padding-right: .25rem !important;
  }
  .bootstrap-form-builder .pb-lg-1, .bootstrap-form-builder .py-lg-1 {
    padding-bottom: .25rem !important;
  }
  .bootstrap-form-builder .pl-lg-1, .bootstrap-form-builder .px-lg-1 {
    padding-left: .25rem !important;
  }
  .bootstrap-form-builder .p-lg-2 {
    padding: .5rem !important;
  }
  .bootstrap-form-builder .pt-lg-2, .bootstrap-form-builder .py-lg-2 {
    padding-top: .5rem !important;
  }
  .bootstrap-form-builder .pr-lg-2, .bootstrap-form-builder .px-lg-2 {
    padding-right: .5rem !important;
  }
  .bootstrap-form-builder .pb-lg-2, .bootstrap-form-builder .py-lg-2 {
    padding-bottom: .5rem !important;
  }
  .bootstrap-form-builder .pl-lg-2, .bootstrap-form-builder .px-lg-2 {
    padding-left: .5rem !important;
  }
  .bootstrap-form-builder .p-lg-3 {
    padding: 1rem !important;
  }
  .bootstrap-form-builder .pt-lg-3, .bootstrap-form-builder .py-lg-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-form-builder .pr-lg-3, .bootstrap-form-builder .px-lg-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-form-builder .pb-lg-3, .bootstrap-form-builder .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-form-builder .pl-lg-3, .bootstrap-form-builder .px-lg-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-form-builder .p-lg-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-form-builder .pt-lg-4, .bootstrap-form-builder .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-form-builder .pr-lg-4, .bootstrap-form-builder .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-form-builder .pb-lg-4, .bootstrap-form-builder .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .pl-lg-4, .bootstrap-form-builder .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-form-builder .p-lg-5 {
    padding: 3rem !important;
  }
  .bootstrap-form-builder .pt-lg-5, .bootstrap-form-builder .py-lg-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-form-builder .pr-lg-5, .bootstrap-form-builder .px-lg-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-form-builder .pb-lg-5, .bootstrap-form-builder .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-form-builder .pl-lg-5, .bootstrap-form-builder .px-lg-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-form-builder .m-lg-n1 {
    margin: -.25rem !important;
  }
  .bootstrap-form-builder .mt-lg-n1, .bootstrap-form-builder .my-lg-n1 {
    margin-top: -.25rem !important;
  }
  .bootstrap-form-builder .mr-lg-n1, .bootstrap-form-builder .mx-lg-n1 {
    margin-right: -.25rem !important;
  }
  .bootstrap-form-builder .mb-lg-n1, .bootstrap-form-builder .my-lg-n1 {
    margin-bottom: -.25rem !important;
  }
  .bootstrap-form-builder .ml-lg-n1, .bootstrap-form-builder .mx-lg-n1 {
    margin-left: -.25rem !important;
  }
  .bootstrap-form-builder .m-lg-n2 {
    margin: -.5rem !important;
  }
  .bootstrap-form-builder .mt-lg-n2, .bootstrap-form-builder .my-lg-n2 {
    margin-top: -.5rem !important;
  }
  .bootstrap-form-builder .mr-lg-n2, .bootstrap-form-builder .mx-lg-n2 {
    margin-right: -.5rem !important;
  }
  .bootstrap-form-builder .mb-lg-n2, .bootstrap-form-builder .my-lg-n2 {
    margin-bottom: -.5rem !important;
  }
  .bootstrap-form-builder .ml-lg-n2, .bootstrap-form-builder .mx-lg-n2 {
    margin-left: -.5rem !important;
  }
  .bootstrap-form-builder .m-lg-n3 {
    margin: -1rem !important;
  }
  .bootstrap-form-builder .mt-lg-n3, .bootstrap-form-builder .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-form-builder .mr-lg-n3, .bootstrap-form-builder .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-form-builder .mb-lg-n3, .bootstrap-form-builder .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-form-builder .ml-lg-n3, .bootstrap-form-builder .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-form-builder .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-form-builder .mt-lg-n4, .bootstrap-form-builder .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-form-builder .mr-lg-n4, .bootstrap-form-builder .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-form-builder .mb-lg-n4, .bootstrap-form-builder .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-form-builder .ml-lg-n4, .bootstrap-form-builder .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-form-builder .m-lg-n5 {
    margin: -3rem !important;
  }
  .bootstrap-form-builder .mt-lg-n5, .bootstrap-form-builder .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-form-builder .mr-lg-n5, .bootstrap-form-builder .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-form-builder .mb-lg-n5, .bootstrap-form-builder .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-form-builder .ml-lg-n5, .bootstrap-form-builder .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-form-builder .m-lg-auto {
    margin: auto !important;
  }
  .bootstrap-form-builder .mt-lg-auto, .bootstrap-form-builder .my-lg-auto {
    margin-top: auto !important;
  }
  .bootstrap-form-builder .mr-lg-auto, .bootstrap-form-builder .mx-lg-auto {
    margin-right: auto !important;
  }
  .bootstrap-form-builder .mb-lg-auto, .bootstrap-form-builder .my-lg-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-form-builder .ml-lg-auto, .bootstrap-form-builder .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .m-xl-0 {
    margin: 0 !important;
  }
  .bootstrap-form-builder .mt-xl-0, .bootstrap-form-builder .my-xl-0 {
    margin-top: 0 !important;
  }
  .bootstrap-form-builder .mr-xl-0, .bootstrap-form-builder .mx-xl-0 {
    margin-right: 0 !important;
  }
  .bootstrap-form-builder .mb-xl-0, .bootstrap-form-builder .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .bootstrap-form-builder .ml-xl-0, .bootstrap-form-builder .mx-xl-0 {
    margin-left: 0 !important;
  }
  .bootstrap-form-builder .m-xl-1 {
    margin: .25rem !important;
  }
  .bootstrap-form-builder .mt-xl-1, .bootstrap-form-builder .my-xl-1 {
    margin-top: .25rem !important;
  }
  .bootstrap-form-builder .mr-xl-1, .bootstrap-form-builder .mx-xl-1 {
    margin-right: .25rem !important;
  }
  .bootstrap-form-builder .mb-xl-1, .bootstrap-form-builder .my-xl-1 {
    margin-bottom: .25rem !important;
  }
  .bootstrap-form-builder .ml-xl-1, .bootstrap-form-builder .mx-xl-1 {
    margin-left: .25rem !important;
  }
  .bootstrap-form-builder .m-xl-2 {
    margin: .5rem !important;
  }
  .bootstrap-form-builder .mt-xl-2, .bootstrap-form-builder .my-xl-2 {
    margin-top: .5rem !important;
  }
  .bootstrap-form-builder .mr-xl-2, .bootstrap-form-builder .mx-xl-2 {
    margin-right: .5rem !important;
  }
  .bootstrap-form-builder .mb-xl-2, .bootstrap-form-builder .my-xl-2 {
    margin-bottom: .5rem !important;
  }
  .bootstrap-form-builder .ml-xl-2, .bootstrap-form-builder .mx-xl-2 {
    margin-left: .5rem !important;
  }
  .bootstrap-form-builder .m-xl-3 {
    margin: 1rem !important;
  }
  .bootstrap-form-builder .mt-xl-3, .bootstrap-form-builder .my-xl-3 {
    margin-top: 1rem !important;
  }
  .bootstrap-form-builder .mr-xl-3, .bootstrap-form-builder .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .bootstrap-form-builder .mb-xl-3, .bootstrap-form-builder .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .bootstrap-form-builder .ml-xl-3, .bootstrap-form-builder .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .bootstrap-form-builder .m-xl-4 {
    margin: 1.5rem !important;
  }
  .bootstrap-form-builder .mt-xl-4, .bootstrap-form-builder .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .bootstrap-form-builder .mr-xl-4, .bootstrap-form-builder .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .bootstrap-form-builder .mb-xl-4, .bootstrap-form-builder .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .ml-xl-4, .bootstrap-form-builder .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .bootstrap-form-builder .m-xl-5 {
    margin: 3rem !important;
  }
  .bootstrap-form-builder .mt-xl-5, .bootstrap-form-builder .my-xl-5 {
    margin-top: 3rem !important;
  }
  .bootstrap-form-builder .mr-xl-5, .bootstrap-form-builder .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .bootstrap-form-builder .mb-xl-5, .bootstrap-form-builder .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .bootstrap-form-builder .ml-xl-5, .bootstrap-form-builder .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .bootstrap-form-builder .p-xl-0 {
    padding: 0 !important;
  }
  .bootstrap-form-builder .pt-xl-0, .bootstrap-form-builder .py-xl-0 {
    padding-top: 0 !important;
  }
  .bootstrap-form-builder .pr-xl-0, .bootstrap-form-builder .px-xl-0 {
    padding-right: 0 !important;
  }
  .bootstrap-form-builder .pb-xl-0, .bootstrap-form-builder .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .bootstrap-form-builder .pl-xl-0, .bootstrap-form-builder .px-xl-0 {
    padding-left: 0 !important;
  }
  .bootstrap-form-builder .p-xl-1 {
    padding: .25rem !important;
  }
  .bootstrap-form-builder .pt-xl-1, .bootstrap-form-builder .py-xl-1 {
    padding-top: .25rem !important;
  }
  .bootstrap-form-builder .pr-xl-1, .bootstrap-form-builder .px-xl-1 {
    padding-right: .25rem !important;
  }
  .bootstrap-form-builder .pb-xl-1, .bootstrap-form-builder .py-xl-1 {
    padding-bottom: .25rem !important;
  }
  .bootstrap-form-builder .pl-xl-1, .bootstrap-form-builder .px-xl-1 {
    padding-left: .25rem !important;
  }
  .bootstrap-form-builder .p-xl-2 {
    padding: .5rem !important;
  }
  .bootstrap-form-builder .pt-xl-2, .bootstrap-form-builder .py-xl-2 {
    padding-top: .5rem !important;
  }
  .bootstrap-form-builder .pr-xl-2, .bootstrap-form-builder .px-xl-2 {
    padding-right: .5rem !important;
  }
  .bootstrap-form-builder .pb-xl-2, .bootstrap-form-builder .py-xl-2 {
    padding-bottom: .5rem !important;
  }
  .bootstrap-form-builder .pl-xl-2, .bootstrap-form-builder .px-xl-2 {
    padding-left: .5rem !important;
  }
  .bootstrap-form-builder .p-xl-3 {
    padding: 1rem !important;
  }
  .bootstrap-form-builder .pt-xl-3, .bootstrap-form-builder .py-xl-3 {
    padding-top: 1rem !important;
  }
  .bootstrap-form-builder .pr-xl-3, .bootstrap-form-builder .px-xl-3 {
    padding-right: 1rem !important;
  }
  .bootstrap-form-builder .pb-xl-3, .bootstrap-form-builder .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .bootstrap-form-builder .pl-xl-3, .bootstrap-form-builder .px-xl-3 {
    padding-left: 1rem !important;
  }
  .bootstrap-form-builder .p-xl-4 {
    padding: 1.5rem !important;
  }
  .bootstrap-form-builder .pt-xl-4, .bootstrap-form-builder .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .bootstrap-form-builder .pr-xl-4, .bootstrap-form-builder .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .bootstrap-form-builder .pb-xl-4, .bootstrap-form-builder .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .bootstrap-form-builder .pl-xl-4, .bootstrap-form-builder .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .bootstrap-form-builder .p-xl-5 {
    padding: 3rem !important;
  }
  .bootstrap-form-builder .pt-xl-5, .bootstrap-form-builder .py-xl-5 {
    padding-top: 3rem !important;
  }
  .bootstrap-form-builder .pr-xl-5, .bootstrap-form-builder .px-xl-5 {
    padding-right: 3rem !important;
  }
  .bootstrap-form-builder .pb-xl-5, .bootstrap-form-builder .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .bootstrap-form-builder .pl-xl-5, .bootstrap-form-builder .px-xl-5 {
    padding-left: 3rem !important;
  }
  .bootstrap-form-builder .m-xl-n1 {
    margin: -.25rem !important;
  }
  .bootstrap-form-builder .mt-xl-n1, .bootstrap-form-builder .my-xl-n1 {
    margin-top: -.25rem !important;
  }
  .bootstrap-form-builder .mr-xl-n1, .bootstrap-form-builder .mx-xl-n1 {
    margin-right: -.25rem !important;
  }
  .bootstrap-form-builder .mb-xl-n1, .bootstrap-form-builder .my-xl-n1 {
    margin-bottom: -.25rem !important;
  }
  .bootstrap-form-builder .ml-xl-n1, .bootstrap-form-builder .mx-xl-n1 {
    margin-left: -.25rem !important;
  }
  .bootstrap-form-builder .m-xl-n2 {
    margin: -.5rem !important;
  }
  .bootstrap-form-builder .mt-xl-n2, .bootstrap-form-builder .my-xl-n2 {
    margin-top: -.5rem !important;
  }
  .bootstrap-form-builder .mr-xl-n2, .bootstrap-form-builder .mx-xl-n2 {
    margin-right: -.5rem !important;
  }
  .bootstrap-form-builder .mb-xl-n2, .bootstrap-form-builder .my-xl-n2 {
    margin-bottom: -.5rem !important;
  }
  .bootstrap-form-builder .ml-xl-n2, .bootstrap-form-builder .mx-xl-n2 {
    margin-left: -.5rem !important;
  }
  .bootstrap-form-builder .m-xl-n3 {
    margin: -1rem !important;
  }
  .bootstrap-form-builder .mt-xl-n3, .bootstrap-form-builder .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .bootstrap-form-builder .mr-xl-n3, .bootstrap-form-builder .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .bootstrap-form-builder .mb-xl-n3, .bootstrap-form-builder .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .bootstrap-form-builder .ml-xl-n3, .bootstrap-form-builder .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .bootstrap-form-builder .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .bootstrap-form-builder .mt-xl-n4, .bootstrap-form-builder .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .bootstrap-form-builder .mr-xl-n4, .bootstrap-form-builder .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .bootstrap-form-builder .mb-xl-n4, .bootstrap-form-builder .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .bootstrap-form-builder .ml-xl-n4, .bootstrap-form-builder .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .bootstrap-form-builder .m-xl-n5 {
    margin: -3rem !important;
  }
  .bootstrap-form-builder .mt-xl-n5, .bootstrap-form-builder .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .bootstrap-form-builder .mr-xl-n5, .bootstrap-form-builder .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .bootstrap-form-builder .mb-xl-n5, .bootstrap-form-builder .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .bootstrap-form-builder .ml-xl-n5, .bootstrap-form-builder .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .bootstrap-form-builder .m-xl-auto {
    margin: auto !important;
  }
  .bootstrap-form-builder .mt-xl-auto, .bootstrap-form-builder .my-xl-auto {
    margin-top: auto !important;
  }
  .bootstrap-form-builder .mr-xl-auto, .bootstrap-form-builder .mx-xl-auto {
    margin-right: auto !important;
  }
  .bootstrap-form-builder .mb-xl-auto, .bootstrap-form-builder .my-xl-auto {
    margin-bottom: auto !important;
  }
  .bootstrap-form-builder .ml-xl-auto, .bootstrap-form-builder .mx-xl-auto {
    margin-left: auto !important;
  }
}

.bootstrap-form-builder .text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.bootstrap-form-builder .text-justify {
  text-align: justify !important;
}

.bootstrap-form-builder .text-wrap {
  white-space: normal !important;
}

.bootstrap-form-builder .text-nowrap {
  white-space: nowrap !important;
}

.bootstrap-form-builder .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bootstrap-form-builder .text-left {
  text-align: left !important;
}

.bootstrap-form-builder .text-right {
  text-align: right !important;
}

.bootstrap-form-builder .text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .bootstrap-form-builder .text-sm-left {
    text-align: left !important;
  }
  .bootstrap-form-builder .text-sm-right {
    text-align: right !important;
  }
  .bootstrap-form-builder .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .bootstrap-form-builder .text-md-left {
    text-align: left !important;
  }
  .bootstrap-form-builder .text-md-right {
    text-align: right !important;
  }
  .bootstrap-form-builder .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .bootstrap-form-builder .text-lg-left {
    text-align: left !important;
  }
  .bootstrap-form-builder .text-lg-right {
    text-align: right !important;
  }
  .bootstrap-form-builder .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .bootstrap-form-builder .text-xl-left {
    text-align: left !important;
  }
  .bootstrap-form-builder .text-xl-right {
    text-align: right !important;
  }
  .bootstrap-form-builder .text-xl-center {
    text-align: center !important;
  }
}

.bootstrap-form-builder .text-lowercase {
  text-transform: lowercase !important;
}

.bootstrap-form-builder .text-uppercase {
  text-transform: uppercase !important;
}

.bootstrap-form-builder .text-capitalize {
  text-transform: capitalize !important;
}

.bootstrap-form-builder .font-weight-light {
  font-weight: 300 !important;
}

.bootstrap-form-builder .font-weight-lighter {
  font-weight: lighter !important;
}

.bootstrap-form-builder .font-weight-normal {
  font-weight: 400 !important;
}

.bootstrap-form-builder .font-weight-bold {
  font-weight: 700 !important;
}

.bootstrap-form-builder .font-weight-bolder {
  font-weight: bolder !important;
}

.bootstrap-form-builder .font-italic {
  font-style: italic !important;
}

.bootstrap-form-builder .text-white {
  color: #fff !important;
}

.bootstrap-form-builder .text-primary {
  color: #007bff !important;
}

.bootstrap-form-builder a.text-primary:focus, .bootstrap-form-builder a.text-primary:hover {
  color: #0056b3 !important;
}

.bootstrap-form-builder .text-secondary {
  color: #6c757d !important;
}

.bootstrap-form-builder a.text-secondary:focus, .bootstrap-form-builder a.text-secondary:hover {
  color: #494f54 !important;
}

.bootstrap-form-builder .text-success {
  color: #28a745 !important;
}

.bootstrap-form-builder a.text-success:focus, .bootstrap-form-builder a.text-success:hover {
  color: #19692c !important;
}

.bootstrap-form-builder .text-info {
  color: #17a2b8 !important;
}

.bootstrap-form-builder a.text-info:focus, .bootstrap-form-builder a.text-info:hover {
  color: #0f6674 !important;
}

.bootstrap-form-builder .text-warning {
  color: #ffc107 !important;
}

.bootstrap-form-builder a.text-warning:focus, .bootstrap-form-builder a.text-warning:hover {
  color: #ba8b00 !important;
}

.bootstrap-form-builder .text-danger {
  color: #dc3545 !important;
}

.bootstrap-form-builder a.text-danger:focus, .bootstrap-form-builder a.text-danger:hover {
  color: #a71d2a !important;
}

.bootstrap-form-builder .text-light {
  color: #f8f9fa !important;
}

.bootstrap-form-builder a.text-light:focus, .bootstrap-form-builder a.text-light:hover {
  color: #cbd3da !important;
}

.bootstrap-form-builder .text-dark {
  color: #343a40 !important;
}

.bootstrap-form-builder a.text-dark:focus, .bootstrap-form-builder a.text-dark:hover {
  color: #121416 !important;
}

.bootstrap-form-builder .text-body {
  color: #212529 !important;
}

.bootstrap-form-builder .text-muted {
  color: #6c757d !important;
}

.bootstrap-form-builder .text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.bootstrap-form-builder .text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.bootstrap-form-builder .text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.bootstrap-form-builder .text-decoration-none {
  text-decoration: none !important;
}

.bootstrap-form-builder .text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.bootstrap-form-builder .text-reset {
  color: inherit !important;
}

.bootstrap-form-builder .visible {
  visibility: visible !important;
}

.bootstrap-form-builder .invisible {
  visibility: hidden !important;
}

@media print {
  .bootstrap-form-builder *, .bootstrap-form-builder ::after, .bootstrap-form-builder ::before {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  .bootstrap-form-builder a:not(.btn) {
    text-decoration: underline;
  }
  .bootstrap-form-builder abbr[title]::after {
    content: " (" attr(title) ")";
  }
  .bootstrap-form-builder pre {
    white-space: pre-wrap !important;
  }
  .bootstrap-form-builder blockquote, .bootstrap-form-builder pre {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  .bootstrap-form-builder thead {
    display: table-header-group;
  }
  .bootstrap-form-builder img, .bootstrap-form-builder tr {
    page-break-inside: avoid;
  }
  .bootstrap-form-builder h2, .bootstrap-form-builder h3, .bootstrap-form-builder p {
    orphans: 3;
    widows: 3;
  }
  .bootstrap-form-builder h2, .bootstrap-form-builder h3 {
    page-break-after: avoid;
  }
  @page {
    .bootstrap-form-builder {
      size: a3;
    }
  }
  .bootstrap-form-builder body {
    min-width: 992px !important;
  }
  .bootstrap-form-builder .container {
    min-width: 992px !important;
  }
  .bootstrap-form-builder .navbar {
    display: none;
  }
  .bootstrap-form-builder .badge {
    border: 1px solid #000;
  }
  .bootstrap-form-builder .table {
    border-collapse: collapse !important;
  }
  .bootstrap-form-builder .table td, .bootstrap-form-builder .table th {
    background-color: #fff !important;
  }
  .bootstrap-form-builder .table-bordered td, .bootstrap-form-builder .table-bordered th {
    border: 1px solid #dee2e6 !important;
  }
  .bootstrap-form-builder .table-dark {
    color: inherit;
  }
  .bootstrap-form-builder .table-dark tbody + tbody, .bootstrap-form-builder .table-dark td, .bootstrap-form-builder .table-dark th, .bootstrap-form-builder .table-dark thead th {
    border-color: #dee2e6;
  }
  .bootstrap-form-builder .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

.bootstrap-form-builder .p5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.bootstrap-form-builder .pbottom-10 {
  padding-bottom: 10px;
}

.bootstrap-form-builder .position-relative {
  position: relative;
}

.bootstrap-form-builder .text-center {
  text-align: center;
}

.bootstrap-form-builder .text-left {
  text-align: left;
}

.bootstrap-form-builder .text-right {
  text-align: right;
}

.bootstrap-form-builder .vue-form-builder .pointer {
  cursor: pointer;
}

.bootstrap-form-builder .vue-form-builder hr {
  margin: 30px 0;
}

.bootstrap-form-builder .vue-form-builder .copyright-text {
  padding-top: 20px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 13px;
  text-align: center;
}

.bootstrap-form-builder .vue-form-builder .add-section-container {
  margin-top: 30px;
  border: 3px rgba(0, 0, 0, 0.4) dotted;
  padding: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 18px;
  position: relative;
  text-align: center;
}

.bootstrap-form-builder .vue-form-builder .add-section-container:hover {
  border-color: #4834d4;
  cursor: pointer;
}

.bootstrap-form-builder .vue-form-builder .add-section-container:hover > p {
  font-weight: 700;
}

.bootstrap-form-builder .vue-form-builder .add-section-container > p {
  margin: 0;
}

.bootstrap-form-builder .vue-form-builder .add-container-list {
  margin-top: 15px;
}

.bootstrap-form-builder .vue-form-builder .type-desc {
  font-size: 14px;
}

.bootstrap-form-builder .vue-form-builder .type-headline {
  font-weight: 700;
}

.bootstrap-form-builder .vue-form-builder .section-container {
  position: relative;
  border: 2px solid transparent;
  transition: all .2s ease-in-out;
}

.bootstrap-form-builder .vue-form-builder .section-container:hover {
  border: 2px solid #0198fa;
  transition: all .2s ease-in-out;
}

.bootstrap-form-builder .vue-form-builder .section-container:hover .section-config {
  display: block;
}

.bootstrap-form-builder .vue-form-builder .section-container .section-config {
  position: absolute;
  top: 5px;
  right: 5px;
  display: none;
}

.bootstrap-form-builder .vue-form-builder .section-container.active {
  border: 2px solid #0198fa;
  transition: all .2s ease-in-out;
}

.bootstrap-form-builder .vue-form-builder .buttons > button {
  margin-right: 5px;
}

.bootstrap-form-builder .vue-form-builder .normal-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bootstrap-form-builder .vue-form-builder .headline-block {
  padding: 0 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.bootstrap-form-builder .vue-form-builder .vue-form-renderer {
  padding: 0 15px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.bootstrap-form-builder .vue-form-builder .sidebar-form-configuration {
  padding: 15px;
}

.bootstrap-form-builder .vue-form-builder .sidebar-form-configuration .headline-block {
  padding: 0;
  margin-bottom: 5px;
}

.bootstrap-form-builder .vue-form-builder .sidebar-form-configuration .headline-block h5 {
  font-size: 16px;
}

.bootstrap-form-builder .vue-form-builder .sidebar-form-configuration .buttons {
  text-align: right;
}

.bootstrap-form-builder .vue-form-builder .row-block {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  padding: 40px 20px;
  margin: 15px;
}

.bootstrap-form-builder .vue-form-builder .add-control-outer {
  margin-top: 15px;
  padding: 0 15px;
}

.bootstrap-form-builder .vue-form-builder .add-row-outer {
  margin-top: 15px;
  padding: 0 15px;
}

.bootstrap-form-builder .vue-form-builder .add-control-container {
  margin-top: 40px;
  border: 3px rgba(0, 0, 0, 0.4) dotted;
  padding: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 18px;
  position: relative;
  text-align: center;
}

.bootstrap-form-builder .vue-form-builder .add-control-container:hover {
  border-color: #badc58;
  cursor: pointer;
  font-weight: 700;
}

.bootstrap-form-builder .vue-form-builder .add-row-container {
  margin-top: 40px;
  border: 3px rgba(0, 0, 0, 0.4) dotted;
  padding: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 18px;
  position: relative;
  text-align: center;
}

.bootstrap-form-builder .vue-form-builder .add-row-container:hover {
  border-color: #badc58;
  cursor: pointer;
  font-weight: 700;
}

.bootstrap-form-builder .vue-form-builder .outer-add-control {
  margin: 0 15px;
}

.bootstrap-form-builder .vue-form-builder .table-section .table-wrapper {
  margin: 10px 15px;
}

.bootstrap-form-builder .vue-form-builder .control-view {
  padding: 10px;
  border: 1px solid transparent;
  transition: all .2s ease-in-out;
}

.bootstrap-form-builder .vue-form-builder .control-view:hover {
  border: 1px solid #bdc3c7;
  transition: all .2s ease-in-out;
}

.bootstrap-form-builder .vue-form-builder .control-view.active {
  border: 1px solid #0198fa;
}

.bootstrap-form-builder .vue-form-builder .control-view.label-selected {
  border: 1px solid #e74c3c;
}

.bootstrap-form-builder .vue-form-builder .control-list-container {
  margin: 20px;
}

.bootstrap-form-builder .vue-form-builder .control-list-container.empty {
  border: 3px dotted #000;
  padding: 50px 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  text-align: center;
}

.bootstrap-form-builder .vue-form-builder .control-list-container.empty p {
  width: 100%;
  margin: 0;
}

.bootstrap-form-builder .vue-form-builder .control-view-wrapper {
  position: relative;
  margin-top: 10px;
  padding-left: 0;
}

.bootstrap-form-builder .vue-form-builder .control-view-wrapper:hover .control-option-container {
  display: block;
  z-index: 2;
}

.bootstrap-form-builder .vue-form-builder .control-option-container {
  position: absolute;
  top: 0;
  left: 97%;
  border: 1px solid #bdc3c7;
  background-color: #fff;
  display: none;
}

.bootstrap-form-builder .vue-form-builder .control-option-container .option-control {
  padding: 2px 5px;
  border-bottom: 1px solid #bdc3c7;
  cursor: pointer;
}

.bootstrap-form-builder .vue-form-builder .control-option-container .option-control:last-child {
  border-bottom: 0;
}

.bootstrap-form-builder .vue-form-builder .control-option-container .option-control.drag-item {
  cursor: grab;
}

.bootstrap-form-builder .vue-form-builder .control-option-container .option-control.drag-item:active {
  cursor: grabbing;
}

.bootstrap-form-builder .vue-form-builder .v-tooltip {
  position: relative;
}

.bootstrap-form-builder .vue-form-builder .v-tooltip .tooltiptext {
  visibility: hidden;
  width: 200px;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -100px;
}

.bootstrap-form-builder .vue-form-builder .v-tooltip:hover .tooltiptext {
  visibility: visible;
}

.bootstrap-form-builder .vue-form-builder .list-selection {
  position: relative;
  padding-top: 15px;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
}

.bootstrap-form-builder .vue-form-builder .list-selection .tool-block {
  position: absolute;
  top: -10px;
  right: 5px;
}

.bootstrap-form-builder .vue-form-builder .sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: 52px;
  transition: .5s;
  border-left: 1px solid rgba(0, 0, 0, 0.3);
}

.bootstrap-form-builder .vue-form-builder .sidebar .close {
  position: absolute;
  top: 5px;
  left: 15px;
  font-size: 36px;
  margin-right: 50px;
  cursor: pointer;
}

.bootstrap-form-builder .vue-form-builder .toggleable-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bootstrap-form-builder .vue-form-builder .toggle-item {
  cursor: pointer;
}

.bootstrap-form-builder .vue-form-builder .radio-checkbox {
  padding: 5px;
}

.bootstrap-form-builder .vue-form-builder .radio-checkbox.line label {
  display: block;
}

.bootstrap-form-builder .vue-form-builder .radio-checkbox.next label {
  display: inline-block;
  margin-right: 5px;
}

.bootstrap-form-builder .vue-form-renderer .normal-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bootstrap-form-builder .vue-form-renderer .control-view-wrapper {
  position: relative;
  margin-top: 10px;
  padding-left: 0;
}

.bootstrap-form-builder .vue-form-renderer .toggleable-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.bootstrap-form-builder .vue-form-renderer .toggle-item {
  cursor: pointer;
}

.bootstrap-form-builder .vue-form-renderer .radio-checkbox {
  padding: 5px;
}

.bootstrap-form-builder .vue-form-renderer .radio-checkbox.line label {
  display: block;
}

.bootstrap-form-builder .vue-form-renderer .radio-checkbox.next label {
  display: inline-block;
  margin-right: 5px;
}

.bootstrap-form-builder .vue-form-renderer .control-list-container {
  padding: 0 15px;
}

.bootstrap-form-builder .vue-form-renderer .control-view div.is-invalid {
  border: 1px solid #dc3545;
}

.bootstrap-form-builder .vue-form-renderer .control-view div.is-invalid ~ .invalid-feedback {
  display: block;
}

.bootstrap-form-builder .toggleable-sub-headline {
  padding-left: 10px;
}

.bootstrap-form-builder .ghost {
  opacity: .5;
  background: #c8ebfb;
}

.bootstrap-form-builder body {
  transition: margin-left .5s;
}

.bootstrap-form-builder .toggleable-section .headline-block {
  border-bottom: 1px solid #000;
}

.bootstrap-form-builder .toggleable-section .headline-block small {
  font-size: 15px;
}

.bootstrap-form-builder .v-form-alert {
  padding: 20px;
  background-color: #dc3545;
  color: #fff;
  position: fixed;
  right: 5px;
  top: 10px;
  z-index: 5;
  border-radius: 5px;
}

.bootstrap-form-builder .control-label-container {
  line-height: 17px;
}

.bootstrap-form-builder .slide-enter-active {
  transition-duration: .3s;
  transition-timing-function: ease-in;
}

.bootstrap-form-builder .slide-leave-active {
  transition-duration: .3s;
  transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
}

.bootstrap-form-builder .slide-enter-to {
  max-height: 100px;
  overflow: hidden;
}

.bootstrap-form-builder .slide-leave {
  max-height: 100px;
  overflow: hidden;
}

.bootstrap-form-builder .slide-enter {
  overflow: hidden;
  max-height: 0;
}

.bootstrap-form-builder .slide-leave-to {
  overflow: hidden;
  max-height: 0;
}

.bootstrap-form-builder:root {
  --litepickerbgcolor: #fff;
  --litepickermonthheadertextcolor: #333;
  --litepickermonthbutton: #9e9e9e;
  --litepickermonthbuttonhover: #2196f3;
  --litepickermonthwidth: calc(var(--litepickerDayWidth) * 7);
  --litepickermonthweekdaycolor: #9e9e9e;
  --litepickerdaycolor: #333;
  --litepickerdaycolorhover: #2196f3;
  --litepickerdayistodaycolor: #f44336;
  --litepickerdayisinrange: #bbdefb;
  --litepickerdayislockedcolor: #9e9e9e;
  --litepickerdayisbookedcolor: #9e9e9e;
  --litepickerdayisstartcolor: #fff;
  --litepickerdayisstartbg: #2196f3;
  --litepickerdayisendcolor: #fff;
  --litepickerdayisendbg: #2196f3;
  --litepickerdaywidth: 38px;
  --litepickerbuttoncancelcolor: #fff;
  --litepickerbuttoncancelbg: #9e9e9e;
  --litepickerbuttonapplycolor: #fff;
  --litepickerbuttonapplybg: #2196f3;
  --litepickerbuttonresetbtn: #909090;
  --litepickerbuttonresetbtnhover: #2196f3;
  --litepickerhighlighteddaycolor: #333;
  --litepickerhighlighteddaybg: #ffeb3b;
}

.bootstrap-form-builder .show-week-numbers {
  --litepickermonthwidth: calc(var(--litepickerDayWidth) * 8);
}

.bootstrap-form-builder .litepicker {
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  font-size: .8em;
  display: none;
}

.bootstrap-form-builder .litepicker .container__main {
  display: flex;
}

.bootstrap-form-builder .litepicker .container__months {
  display: flex;
  flex-wrap: wrap;
  background-color: var(--litepickerBgColor);
  border-radius: 5px;
  box-shadow: 0 0 5px #ddd;
  width: calc(var(--litepickerMonthWidth) + 10px);
  box-sizing: content-box;
}

.bootstrap-form-builder .litepicker .container__months .month-item {
  padding: 5px;
  width: var(--litepickerMonthWidth);
  box-sizing: content-box;
}

.bootstrap-form-builder .litepicker .container__months .month-item:first-child .button-previous-month {
  visibility: visible;
}

.bootstrap-form-builder .litepicker .container__months .month-item:last-child .button-next-month {
  visibility: visible;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  padding: 10px 5px;
  text-align: center;
  align-items: center;
  color: var(--litepickerMonthHeaderTextColor);
}

.bootstrap-form-builder .litepicker .container__months .month-item-header div {
  flex: 1;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header div > .month-item-name {
  margin-right: 5px;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header div > .month-item-year {
  padding: 0;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .reset-button {
  color: var(--litepickerButtonResetBtn);
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .reset-button > img {
  fill: var(--litepickerButtonResetBtn);
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .reset-button > svg {
  fill: var(--litepickerButtonResetBtn);
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .reset-button:hover {
  color: var(--litepickerButtonResetBtnHover);
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .reset-button:hover > svg {
  fill: var(--litepickerButtonResetBtnHover);
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-next-month {
  visibility: hidden;
  text-decoration: none;
  color: var(--litepickerMonthButton);
  padding: 3px 5px;
  border-radius: 3px;
  transition: color .3s,border .3s;
  cursor: default;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-next-month > img {
  fill: var(--litepickerMonthButton);
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-next-month > svg {
  fill: var(--litepickerMonthButton);
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-next-month:hover {
  color: var(--litepickerMonthButtonHover);
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-next-month:hover > svg {
  fill: var(--litepickerMonthButtonHover);
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-previous-month {
  visibility: hidden;
  text-decoration: none;
  color: var(--litepickerMonthButton);
  padding: 3px 5px;
  border-radius: 3px;
  transition: color .3s,border .3s;
  cursor: default;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-previous-month > img {
  fill: var(--litepickerMonthButton);
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-previous-month > svg {
  fill: var(--litepickerMonthButton);
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-previous-month:hover {
  color: var(--litepickerMonthButtonHover);
}

.bootstrap-form-builder .litepicker .container__months .month-item-header .button-previous-month:hover > svg {
  fill: var(--litepickerMonthButtonHover);
}

.bootstrap-form-builder .litepicker .container__months .month-item-weekdays-row {
  display: flex;
  justify-self: center;
  justify-content: flex-start;
  color: var(--litepickerMonthWeekdayColor);
}

.bootstrap-form-builder .litepicker .container__months .month-item-weekdays-row > div {
  padding: 5px 0;
  font-size: 85%;
  flex: 1;
  width: var(--litepickerDayWidth);
  text-align: center;
}

.bootstrap-form-builder .litepicker .container__months .month-item.no-previous-month .button-previous-month {
  visibility: hidden;
}

.bootstrap-form-builder .litepicker .container__months .month-item.no-next-month .button-next-month {
  visibility: hidden;
}

.bootstrap-form-builder .litepicker .container__months.columns-2 {
  width: calc((var(--litepickerMonthWidth) * 2) + 20px);
}

.bootstrap-form-builder .litepicker .container__months.columns-3 {
  width: calc((var(--litepickerMonthWidth) * 3) + 30px);
}

.bootstrap-form-builder .litepicker .container__months.columns-4 {
  width: calc((var(--litepickerMonthWidth) * 4) + 40px);
}

.bootstrap-form-builder .litepicker .container__months.split-view .month-item-header .button-next-month {
  visibility: visible;
}

.bootstrap-form-builder .litepicker .container__months.split-view .month-item-header .button-previous-month {
  visibility: visible;
}

.bootstrap-form-builder .litepicker .container__days {
  display: flex;
  flex-wrap: wrap;
  justify-self: center;
  justify-content: flex-start;
  text-align: center;
  box-sizing: content-box;
}

.bootstrap-form-builder .litepicker .container__days > a {
  padding: 5px 0;
  width: var(--litepickerDayWidth);
}

.bootstrap-form-builder .litepicker .container__days > div {
  padding: 5px 0;
  width: var(--litepickerDayWidth);
}

.bootstrap-form-builder .litepicker .container__days .day-item {
  color: var(--litepickerDayColor);
  text-align: center;
  text-decoration: none;
  border-radius: 3px;
  transition: color .3s,border .3s;
  cursor: default;
}

.bootstrap-form-builder .litepicker .container__days .day-item:hover {
  color: var(--litepickerDayColorHover);
  box-shadow: inset 0 0 0 1px var(--litepickerDayColorHover);
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-today {
  color: var(--litepickerDayIsTodayColor);
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-locked {
  color: var(--litepickerDayIsLockedColor);
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-locked:hover {
  color: var(--litepickerDayIsLockedColor);
  box-shadow: none;
  cursor: default;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-booked {
  color: var(--litepickerDayIsBookedColor);
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-booked:hover {
  color: var(--litepickerDayIsBookedColor);
  box-shadow: none;
  cursor: default;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-in-range {
  background-color: var(--litepickerDayIsInRange);
  border-radius: 0;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-start-date {
  color: var(--litepickerDayIsStartColor);
  background-color: var(--litepickerDayIsStartBg);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-start-date.is-flipped {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-end-date {
  color: var(--litepickerDayIsEndColor);
  background-color: var(--litepickerDayIsEndBg);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-end-date.is-flipped {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-start-date.is-end-date {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bootstrap-form-builder .litepicker .container__days .day-item.is-highlighted {
  color: var(--litepickerHighlightedDayColor);
  background-color: var(--litepickerHighlightedDayBg);
}

.bootstrap-form-builder .litepicker .container__days .week-number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9e9e9e;
  font-size: 85%;
}

.bootstrap-form-builder .litepicker .container__footer {
  text-align: right;
  padding: 10px 5px;
  margin: 0 5px;
  background-color: #fafafa;
  box-shadow: inset 0 3px 3px 0 #ddd;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.bootstrap-form-builder .litepicker .container__footer .preview-date-range {
  margin-right: 10px;
  font-size: 90%;
}

.bootstrap-form-builder .litepicker .container__footer .button-cancel {
  background-color: var(--litepickerButtonCancelBg);
  color: var(--litepickerButtonCancelColor);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
}

.bootstrap-form-builder .litepicker .container__footer .button-cancel > img {
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__footer .button-cancel > svg {
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__footer .button-apply {
  background-color: var(--litepickerButtonApplyBg);
  color: var(--litepickerButtonApplyColor);
  border: 0;
  padding: 3px 7px 4px;
  border-radius: 3px;
  margin-left: 10px;
  margin-right: 10px;
}

.bootstrap-form-builder .litepicker .container__footer .button-apply:disabled {
  opacity: .7;
}

.bootstrap-form-builder .litepicker .container__footer .button-apply > img {
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__footer .button-apply > svg {
  pointer-events: none;
}

.bootstrap-form-builder .litepicker .container__tooltip {
  position: absolute;
  margin-top: -4px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  font-size: 11px;
  pointer-events: none;
  visibility: hidden;
}

.bootstrap-form-builder .litepicker .container__tooltip:before {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  border-top: 5px solid rgba(0, 0, 0, 0.12);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: "";
}

.bootstrap-form-builder .litepicker .container__tooltip:after {
  position: absolute;
  bottom: -4px;
  left: calc(50% - 4px);
  border-top: 4px solid #fff;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}

.bootstrap-form-builder .litepicker-open {
  overflow: hidden;
}

.bootstrap-form-builder .litepicker-backdrop {
  display: none;
  background-color: #000;
  opacity: .3;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bootstrap-form-builder svg {
  display: unset !important;
}

[type="text"] {
  border-color: #dbdbdb;
}

.input[disabled], .textarea[disabled], .select select[disabled], fieldset[disabled] .input, fieldset[disabled] .textarea, fieldset[disabled] .select select, .select fieldset[disabled] select {
  background-color: whitesmoke;
  border-color: whitesmoke;
  box-shadow: none;
  color: #1b1b1b;
  opacity: 1;
}

.router-link-active .icon-active {
  color: #00bc7e;
}

.router-link-active .text-active {
  color: #00bc7e;
}

.group:hover:not(.hover-disabled) .group-hover-text-theme {
  color: #00bc7e !important;
}

.svg-color-theme {
  fill: #00bc7e;
  stroke: #00bc7e;
}

.svg-color-theme-darken {
  fill: #00bc7e;
  stroke: #00bc7e;
  filter: brightness(0.8);
}

.svg-stroke-theme {
  stroke: #00bc7e;
}

.hover-svg-stroke-theme:hover {
  stroke: #00bc7e;
}

.hover-svg-stroke-theme:hover rect {
  stroke: #00bc7e;
}

.hover-svg-stroke-theme:hover line {
  stroke: #00bc7e;
}

.bg-theme {
  background: #00bc7e;
}

.bg-theme-50 {
  background: #00bc7e 5;
}

.bg-theme-100 {
  background: #00bc7e 10;
}

.bg-theme-200 {
  background: #00bc7e 20;
}

.bg-theme-800 {
  background: #00bc7e 80;
}

.hover-bg-theme:hover {
  background: #00bc7e;
}

.hover-bg-theme-100:hover {
  background: #00bc7e 10 !important;
}

.text-theme {
  color: #00bc7e;
}

.text-theme-darken {
  color: #00bc7e;
  filter: brightness(0.75);
}

.hover-text-theme:hover {
  color: #00bc7e;
}

.shadow-theme {
  box-shadow: 0 10px 15px -3px #00bc7e 40;
}

.border-theme {
  border-color: #00bc7e;
}

.border-top-theme {
  border-top-color: #00bc7e !important;
}

.border-left-theme {
  border-left-color: #00bc7e !important;
}

.hover-border-theme:hover {
  border-color: #00bc7e !important;
}

.focus-within-border-theme:focus-within {
  border-color: #00bc7e !important;
}

.focus-border-theme:focus {
  border-color: #00bc7e !important;
}

.focus-border-theme:focus[type="email"] {
  border-color: #00bc7e;
}

.focus-border-theme:focus[type="text"] {
  border-color: #00bc7e;
}

.focus-border-theme:focus[type="password"] {
  border-color: #00bc7e;
}

.focus-border-theme:focus[type="number"] {
  border-color: #00bc7e;
}

.active.active-bg-theme-100 {
  background: #00bc7e 10 !important;
}

.active.active-border-theme {
  border-color: #00bc7e !important;
}

.active .active-text-theme {
  color: #00bc7e;
}

.active-menu.focus-border-theme {
  border-color: #00bc7e !important;
}

.router-link-active.home .button-icon {
  background: #00bc7e 10;
}

.router-link-active .text-theme {
  color: #00bc7e !important;
}

.router-link-active .text-theme svg {
  color: #00bc7e !important;
}

.router-link-active.border-bottom-theme {
  border-bottom-color: #00bc7e !important;
}

.is-active .text-theme {
  color: #00bc7e !important;
}

.is-active .text-theme svg {
  color: #00bc7e !important;
}

.menu-list-item.link:hover {
  color: #00bc7e;
}

.menu-list-item.link:hover .text-theme svg {
  color: #00bc7e;
}

.input-area.is-active {
  border-color: #00bc7e !important;
}

.button-base.theme-solid {
  background: #00bc7e;
}

.button-base.theme-solid polyline, .button-base.theme-solid path {
  color: white;
}

.button-base.theme {
  background: rgba(0, 188, 126, 0.1);
}

.button-base.theme {
  color: #00bc7e;
}

.button-base.theme .content {
  color: #00bc7e;
}

.button-base.theme polyline, .button-base.theme path {
  color: #00bc7e;
}

.switch.active {
  background: #00bc7e !important;
}

.border-theme {
  border-color: #00bc7e !important;
}

.folder-item.is-dragenter {
  border-color: #00bc7e !important;
}

.favourites.is-dragenter .menu-list {
  border-color: #00bc7e !important;
}

.StripeElement--focus {
  border-color: #00bc7e !important;
}

.dark .dark-text-theme {
  color: #00bc7e !important;
}

.dark .text-theme {
  color: #00bc7e;
}

.label {
  font-weight: 500;
}

.sc-enso-platform {
  height: calc(100vh - 52px);
}

.sc-enso-platform .mb-1\.5 {
  margin-bottom: 0.375rem !important;
}

.sc-enso-platform .mb-6 {
  margin-bottom: 1.5rem !important;
}

.sticky {
  position: sticky;
}

.top-10 {
  top: 10px;
}

.top-30 {
  top: 30px;
}

.top-50 {
  top: 50px;
}

.top-65 {
  top: 65px;
}

.top-80 {
  top: 80px;
}

.m-center {
  margin-left: auto;
  margin-right: auto;
}

#viewport {
  display: flex;
  height: 100%;
  width: 100%;
  transition: 200ms all ease;
  flex: 1;
}

.form-fixed-width {
  width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group-label {
  font-size: 1.125em;
  font-weight: 800;
  letter-spacing: 0.3px;
  margin-bottom: 25px;
  display: block;
}

.menu-list-wrapper.vertical {
  margin-bottom: 20px;
}

.menu-list-wrapper.vertical .menu-list-item {
  display: block;
  padding: 12px 15px 12px 25px;
}

.menu-list-wrapper.horizontal {
  display: flex;
  border-bottom: 2px solid #F8F8F8;
  margin-bottom: 30px;
  overflow-x: auto;
  z-index: 9;
  position: sticky;
  background: white;
  top: 40px;
}

.menu-list-wrapper.horizontal::-webkit-scrollbar {
  display: none;
}

.menu-list-wrapper.horizontal .menu-list-item {
  display: inline-block;
  padding: 15px 10px;
  margin: 15px 10px 0;
  border-bottom: 2px solid transparent;
}

.menu-list-wrapper.horizontal .menu-list-item:first-child {
  margin-left: 0;
}

.menu-list-wrapper .menu-list-item {
  text-decoration: none;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.menu-list-wrapper .menu-list-item.link {
  display: flex;
  align-items: center;
}

.menu-list-wrapper .menu-list-item.link.is-active svg path, .menu-list-wrapper .menu-list-item.link.is-active svg line, .menu-list-wrapper .menu-list-item.link.is-active svg polyline, .menu-list-wrapper .menu-list-item.link.is-active svg rect, .menu-list-wrapper .menu-list-item.link.is-active svg circle, .menu-list-wrapper .menu-list-item.link.is-active svg ellipse, .menu-list-wrapper .menu-list-item.link.router-link-exact-active svg path, .menu-list-wrapper .menu-list-item.link.router-link-exact-active svg line, .menu-list-wrapper .menu-list-item.link.router-link-exact-active svg polyline, .menu-list-wrapper .menu-list-item.link.router-link-exact-active svg rect, .menu-list-wrapper .menu-list-item.link.router-link-exact-active svg circle, .menu-list-wrapper .menu-list-item.link.router-link-exact-active svg ellipse, .menu-list-wrapper .menu-list-item.link:hover svg path, .menu-list-wrapper .menu-list-item.link:hover svg line, .menu-list-wrapper .menu-list-item.link:hover svg polyline, .menu-list-wrapper .menu-list-item.link:hover svg rect, .menu-list-wrapper .menu-list-item.link:hover svg circle, .menu-list-wrapper .menu-list-item.link:hover svg ellipse {
  color: inherit;
}

.menu-list-wrapper .menu-list-item.link.is-active .label, .menu-list-wrapper .menu-list-item.link.router-link-exact-active .label, .menu-list-wrapper .menu-list-item.link:hover .label {
  color: inherit;
}

.menu-list-wrapper .menu-list-item.link .icon {
  margin-right: 12px;
  line-height: 0;
}

.menu-list-wrapper .menu-list-item.link .icon path, .menu-list-wrapper .menu-list-item.link .icon line, .menu-list-wrapper .menu-list-item.link .icon polyline, .menu-list-wrapper .menu-list-item.link .icon rect, .menu-list-wrapper .menu-list-item.link .icon circle, .menu-list-wrapper .menu-list-item.link .icon ellipse {
  color: inherit;
}

.menu-list-wrapper .menu-list-item.link .text-label {
  font-size: 1em;
}

.menu-list-wrapper .menu-list-item:hover .delete-icon, .menu-list-wrapper .menu-list-item.is-active .delete-icon {
  display: block;
}

.menu-list-wrapper .menu-list-item .folder-icon {
  line-height: 0;
  width: 15px;
  margin-right: 9px;
  vertical-align: middle;
  margin-top: -1px;
}

.menu-list-wrapper .menu-list-item .folder-icon path {
  color: inherit;
}

.menu-list-wrapper .menu-list-item .delete-icon {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-list-wrapper .menu-list-item .label {
  font-size: .8125em;
  font-weight: 700;
  vertical-align: middle;
  white-space: nowrap;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  color: #1B2539;
  line-height: 1;
  padding-top: 2px;
}

.menu-list-wrapper.favourites.is-dragenter .menu-list {
  border-radius: 8px;
}

.menu-list-wrapper.favourites .menu-list {
  border: 2px dashed transparent;
}

.menu-list-wrapper.favourites .menu-list .menu-list-item {
  padding: 8px 23px;
}

.menu-list-wrapper.favourites .menu-list .menu-list-item .label {
  max-width: 140px;
}

.menu-list-wrapper.favourites .menu-list .menu-list-item .icon {
  margin-right: 5px;
  width: 20px;
}

.menu-list-wrapper.favourites .menu-list .menu-list-item .icon path, .menu-list-wrapper.favourites .menu-list .menu-list-item .icon line, .menu-list-wrapper.favourites .menu-list .menu-list-item .icon polyline, .menu-list-wrapper.favourites .menu-list .menu-list-item .icon rect, .menu-list-wrapper.favourites .menu-list .menu-list-item .icon circle, .menu-list-wrapper.favourites .menu-list .menu-list-item .icon ellipse {
  transition: 150ms all ease;
}

.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon path, .menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon line, .menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon polyline, .menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon rect, .menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon circle, .menu-list-wrapper.favourites .menu-list .menu-list-item:hover .folder-icon ellipse, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon path, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon line, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon polyline, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon rect, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon circle, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .folder-icon ellipse, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon path, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon line, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon polyline, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon rect, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon circle, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .folder-icon ellipse {
  color: inherit;
}

.menu-list-wrapper.favourites .menu-list .menu-list-item:hover .label, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-selected .label, .menu-list-wrapper.favourites .menu-list .menu-list-item.is-current .label {
  color: inherit;
}

.empty-note {
  font-size: .75em;
  color: rgba(27, 37, 57, 0.7);
  display: block;
}

.table .action-icons {
  white-space: nowrap;
}

.table .action-icons a, .table .action-icons .icon, .table .action-icons .icon-wrapper {
  display: inline-block;
  margin-left: 10px;
}

.table .action-icons a:first-child, .table .action-icons .icon:first-child, .table .action-icons .icon-wrapper:first-child {
  margin-left: 0;
}

.table .action-icons .icon {
  cursor: pointer;
}

.table .action-icons .icon circle, .table .action-icons .icon path, .table .action-icons .icon line, .table .action-icons .icon polyline {
  stroke: #1B2539;
}

.table .action-icons .icon.icon-trash circle, .table .action-icons .icon.icon-trash path, .table .action-icons .icon.icon-trash line, .table .action-icons .icon.icon-trash polyline {
  stroke: #FE6057;
}

.table .cell-item {
  white-space: nowrap;
  font-weight: 700;
}

.mt-70 {
  margin-top: 70px;
}

.capitalize {
  text-transform: capitalize;
}

@media only screen and (max-width: 1024px) {
  .menu-list-wrapper .menu-list-item {
    padding: 12px 15px 12px 20px;
  }
  .menu-list-wrapper.favourites .menu-list .menu-list-item {
    padding: 8px 18px;
  }
}

@media only screen and (max-width: 960px) {
  .menu-list-wrapper.horizontal {
    top: 30px;
  }
  .form-fixed-width {
    width: 100%;
  }
}

.dark .empty-note {
  color: #7d858c;
}

.dark .menu-list-wrapper.horizontal {
  border-bottom: 2px solid rgba(255, 255, 255, 0.02);
  background: #151515;
}

.dark .menu-list-wrapper .menu-list-item.link .icon path, .dark .menu-list-wrapper .menu-list-item.link .icon line, .dark .menu-list-wrapper .menu-list-item.link .icon polyline, .dark .menu-list-wrapper .menu-list-item.link .icon rect, .dark .menu-list-wrapper .menu-list-item.link .icon circle, .dark .menu-list-wrapper .menu-list-item.link .icon ellipse {
  color: inherit;
}

.dark .menu-list-wrapper .menu-list-item .label {
  color: #bec6cf;
}

.dark .menu-list-wrapper .menu-list-item .icon path, .dark .menu-list-wrapper .menu-list-item .icon line, .dark .menu-list-wrapper .menu-list-item .icon polyline, .dark .menu-list-wrapper .menu-list-item .icon rect, .dark .menu-list-wrapper .menu-list-item .icon circle, .dark .menu-list-wrapper .menu-list-item .icon ellipse {
  color: inherit;
}

.dark .menu-list-wrapper .menu-list-item:hover .icon path, .dark .menu-list-wrapper .menu-list-item:hover .icon line, .dark .menu-list-wrapper .menu-list-item:hover .icon polyline, .dark .menu-list-wrapper .menu-list-item:hover .icon rect, .dark .menu-list-wrapper .menu-list-item:hover .icon circle, .dark .menu-list-wrapper .menu-list-item:hover .icon ellipse {
  color: inherit;
}

.dark .table .action-icons .icon circle, .dark .table .action-icons .icon path, .dark .table .action-icons .icon line, .dark .table .action-icons .icon polyline {
  stroke: #bec6cf;
}

.info-box-wrapper {
  margin: 0px 20px;
}

.windows #content-sidebar {
  scrollbar-width: none;
}

.windows #content-sidebar::-webkit-scrollbar {
  width: 0px;
}

.windows ::-webkit-scrollbar {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.windows ::-webkit-scrollbar-thumb {
  border: 6px solid transparent;
  background: #7f7f7f;
  border-radius: 25px;
  background-clip: padding-box;
}

.dark .windows ::-webkit-scrollbar-thumb {
  border: 6px solid transparent;
  background: #1e2024 !important;
  background-clip: padding-box !important;
}

[v-cloak] {
  display: none;
}

*:focus {
  outline: 0;
}

.animated {
  animation-duration: 0.5s;
}

button, input, optgroup, select, textarea {
  font-weight: 100;
}

.button.input {
  background-color: white;
}

