@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;
}

/** Light color-scheme **/
:root{
    --cc-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    --cc-font-size: 16px;
    --cc-bg: #fff;
    --cc-z-index: 2147483647;
    --cc-text: #2d4156;
    --cc-border-radius: .45rem;
    --cc-btn-primary-bg: #2d4156;
    --cc-btn-primary-text: var(--cc-bg);
    --cc-btn-primary-hover-bg: #1d2e38;
    --cc-btn-primary-hover-text: var(--cc-btn-primary-text);
    --cc-btn-secondary-bg: #eaeff2;
    --cc-btn-secondary-text: var(--cc-text);
    --cc-btn-secondary-hover-bg: #d8e0e6;
    --cc-btn-secondary-hover-text: var(--cc-btn-secondary-text);
    --cc-btn-border-radius: 0.375rem;
    --cc-toggle-bg-off: #919ea6;
    --cc-toggle-bg-on: var(--cc-btn-primary-bg);
    --cc-toggle-bg-readonly: #d5dee2;
    --cc-toggle-knob-bg: #fff;
    --cc-toggle-knob-icon-color: #ecf2fa;
    --cc-block-text: var(--cc-text);
    --cc-cookie-category-block-bg: #f0f4f7;
    --cc-cookie-category-block-bg-hover: #e9eff4;
    --cc-section-border: #f1f3f5;
    --cc-cookie-table-border: #e9edf2;
    --cc-overlay-bg: rgb(4, 6, 8);
    --cc-overlay-opacity: .85;
    --cc-consent-modal-box-shadow: 0 0.625rem 1.875rem rgba(2, 2, 3, 0.28);
    --cc-webkit-scrollbar-bg: #cfd5db;
    --cc-webkit-scrollbar-bg-hover: #9199a0;
}

/** Dark color-scheme **/
.c_darkmode{
    --cc-bg: #181b1d;
    --cc-text: #d8e5ea;
    --cc-btn-primary-bg: #a6c4dd;
    --cc-btn-primary-text: #000;
    --cc-btn-primary-hover-bg: #c2dff7;
    --cc-btn-primary-hover-text: var(--cc-btn-primary-text);
    --cc-btn-secondary-bg: #33383c;
    --cc-btn-secondary-text: var(--cc-text);
    --cc-btn-secondary-hover-bg: #3e454a;
    --cc-btn-secondary-hover-text: var(--cc-btn-secondary-text);
    --cc-toggle-bg-off: #667481;
    --cc-toggle-bg-on: var(--cc-btn-primary-bg);
    --cc-toggle-bg-readonly: #454c54;
    --cc-toggle-knob-bg: var(--cc-cookie-category-block-bg);
    --cc-toggle-knob-icon-color: var(--cc-bg);
    --cc-block-text: #b3bfc5;
    --cc-cookie-category-block-bg: #23272a;
    --cc-cookie-category-block-bg-hover: #2b3035;
    --cc-section-border: #292d31;
    --cc-cookie-table-border: #2b3035;
    --cc-webkit-scrollbar-bg: #667481;
    --cc-webkit-scrollbar-bg-hover: #9199a0;
}

#cc--main {
    z-index: var(--cc-z-index);
}

.cc_div *,
.cc_div *:hover,
.cc_div :before,
.cc_div :after{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    float: none;
    font-style: inherit;
    font-variant: normal;
    font-weight: inherit;
    font-family: inherit;
	line-height: 1.2;
    font-size: 1em;
    transition: none;
    animation: none;
    margin: 0;
    padding: 0;
    text-transform: none;
    letter-spacing: unset;
    color: inherit;
    background: none;
    border: none;
    border-radius: unset;
    box-shadow: none;
    text-decoration: none;
    text-align: left;
    visibility: unset;
    height: auto;
    vertical-align: baseline;
}

.cc_div {
    font-size: var(--cc-font-size);
    font-weight: 400;
    font-family: var(--cc-font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: var(--cc-text);
}

.cc_div .c-bn,
.cc_div .b-tl,
#s-ttl,
#c-ttl,
#s-bl td:before{
    font-weight: 600;
}

#cm,
#s-inr,
.cc_div .c-bl,
.cc_div .b-tl,
#s-bl .act .b-acc{
    border-radius: var(--cc-border-radius);
}

#s-bl .act .b-acc{
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.cc_div input,
.cc_div button,
.cc_div a{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    overflow: hidden;
}

.cc_div a{
    border-bottom: 1px solid;
}

.cc_div a:hover{
    text-decoration: none;
    border-color: transparent;
}

.cc_div .c-bn > span {
    pointer-events: none
}

/* Make elements "animatable" */
.c--anim #cm,
.c--anim #s-cnt,
.c--anim #s-inr,
#cs-ov,
#cm-ov{
    transition: visibility .25s linear, opacity .25s ease, transform .25s ease!important;
}

.c--anim .c-bn{
    transition: background-color .25s ease!important;
}

/* start transitions */
.c--anim #cm.bar.slide,
.c--anim .bar.slide #s-inr{
    transition: visibility .4s ease, opacity .4s ease, transform .4s ease!important;
}

.c--anim #cm.bar.slide + #cm-ov,
.c--anim .bar.slide + #cs-ov{
    transition: visibility .4s ease, opacity .4s ease, transform .4s ease!important;
}

#cm.bar.slide,
.cc_div .bar.slide #s-inr{
    transform: translateX(100%);
    opacity: 1;
}

#cm.bar.top.slide,
.cc_div .bar.left.slide #s-inr{
    transform: translateX(-100%);
    opacity: 1;
}

#cm.slide,
.cc_div .slide #s-inr{
    transform: translateY(1.6em);
}

#cm.top.slide{
    transform: translateY(-1.6em);
}

#cm.bar.slide{
    transform: translateY(100%);
}

#cm.bar.top.slide{
    transform: translateY(-100%);
}
/* end transitions */

/* Show modals */

.show--consent .c--anim #cm,
.show--consent .c--anim #cm.bar,
.show--settings .c--anim #s-inr,
.show--settings .c--anim .bar.slide #s-inr{
    opacity: 1;
    transform: scale(1);
    visibility: visible!important;
}

.show--consent .c--anim #cm.box.middle,
.show--consent .c--anim #cm.cloud.middle{
    transform: scale(1) translateY(-50%);
}

.show--settings .c--anim #s-cnt{
    visibility: visible!important;
}

/* Show overlays */
.force--consent.show--consent .c--anim #cm-ov,
.show--settings .c--anim #cs-ov{
    visibility: visible!important;
    opacity: var(--cc-overlay-opacity)!important;
}

#cm{
    font-family: inherit;
    padding: 1em 1.4em 1.3em 1.4em;
    position: fixed;
    z-index: 1;
    background: var(--cc-bg);
    max-width: 24.2em;
    width: 100%;
    bottom: 1.250em;
    right: 1.250em;
    box-shadow: 0 0.625em 1.875em #000000;
    box-shadow: var(--cc-consent-modal-box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: scale(.95);
    line-height: initial;
}

/** fix https://github.com/orestbida/cookieconsent/issues/94 **/
#cc_div #cm {
    display: block!important;
}

#c-ttl{
    margin-bottom: .7em;
    font-size: 1.05em;
}

.cloud #c-ttl{
    margin-top: -.15em;
}

#c-txt{
    font-size: 0.9em;
    line-height: 1.5em;
}

.cc_div #c-bns{
    display: flex;
    justify-content: space-between;
    margin-top: 1.4em;
}

.cc_div .c-bn{
    color: var(--cc-btn-secondary-text);
    background: var(--cc-btn-secondary-bg);
    padding: 1em 1.7em;
    display: inline-block;
    cursor: pointer;
    font-size: 0.82em;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    user-select: none;
    text-align: center;
    border-radius: var(--cc-btn-border-radius);
    flex: 1;
}

#c-bns button + button,
#s-cnt button + button,
#s-c-bn{
    float: right;
    margin-left: .5rem;
}

#s-cnt #s-rall-bn{
    float: none;
}

#cm .c_link:hover,
#cm .c_link:active,
#s-cnt button + button:hover,
#s-cnt button + button:active,
#s-c-bn:active,
#s-c-bn:hover{
    background: var(--cc-btn-secondary-hover-bg);
    color: var(--cc-btn-secondary-hover-text);
}

/**
CookieConsent settings modal
**/
#s-cnt{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    display: table;
    height: 100%;
    visibility: hidden;
}

#s-bl{
    outline: none;
    scrollbar-width: thin;
}

#s-bl .title{
    margin-top: 1.4em;
}

#s-bl .title:first-child{
    margin-top: 0;
}

#s-bl .b-bn{
    margin-top: 0;
}

#s-bl .b-acc .p{
    margin-top: 0;
    padding: 1em;
}

#s-cnt .b-bn .b-tl{
    display: block;
    font-family: inherit;
    font-size: .95em;
    width: 100%;
    position: relative;
    padding: 1.3em 6.4em 1.3em 2.7em;
    background: none;
    transition: background-color .25s ease;
}

#s-cnt .b-bn .b-tl.exp{
    cursor: pointer;
}

#s-cnt .act .b-bn .b-tl{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

#s-cnt .b-bn .b-tl:active,
#s-cnt .b-bn .b-tl:hover{
    background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl .b-bn{
    position: relative;
}

#s-bl .c-bl{
    padding: 1em;
    margin-bottom: .4rem;
    border: 1px solid var(--cc-section-border);
    transition: background-color .25s ease;
}

#s-bl .c-bl:hover{
    background: var(--cc-cookie-category-block-bg);
}

#s-bl .c-bl:last-child{
    margin-bottom: .5em;
}

#s-bl .c-bl:first-child{
    transition: none;
    padding: 0;
    margin-top: 0;
    border:none;
    margin-bottom: 2em;
}

#s-bl .c-bl:not(.b-ex):first-child:hover{
    background: transparent;
    background: unset;
}

#s-bl .c-bl.b-ex{
    padding: 0;
    border: none;
    background: var(--cc-cookie-category-block-bg);
    transition: none;
}

#s-bl .c-bl.b-ex + .c-bl{
    margin-top: 2em;
}

#s-bl .c-bl.b-ex + .c-bl.b-ex{
    margin-top: 0;
}

#s-bl .c-bl.b-ex:first-child{
    margin-bottom: 1em;
}

#s-bl .c-bl.b-ex:first-child{
    margin-bottom: .5em;
}

#s-bl .b-acc{
    max-height: 0;
    overflow: hidden;
    padding-top: 0;
    margin-bottom: 0;
    display: none;
}

#s-bl .act .b-acc{
    max-height: 100%;
    display: block;
    overflow: hidden;
}

#s-cnt .p{
    font-size: 0.9em;
    line-height: 1.5em;
    margin-top: .85em;
    color: var(--cc-block-text);
}

.cc_div .b-tg .c-tgl:disabled{
    cursor: not-allowed;
}

#c-vln{
    display: table-cell;
    vertical-align: middle;
    position: relative;
}

#cs{
    padding: 0 1.7em;
    width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
}

#s-inr{
    height: 100%;
    position: relative;
    max-width: 45em;
    margin: 0 auto;
    transform: scale(.96);
    opacity: 0;
    padding-top: 4.75em;
    padding-bottom: 4.75em;
    position: relative;
    height: 100%;
    overflow: hidden;
    visibility: hidden;
    box-shadow: rgba(3, 6, 9, .26) 0px 13px 27px -5px;
}

#s-inr,
#s-hdr,
#s-bns{
    background: var(--cc-bg);
}

#s-bl{
	overflow-y: auto;
    overflow-y: overlay;
    overflow-x: hidden;
    height: 100%;
    padding: 1.3em 1.6em;
    display: block;
    width: 100%;
}

#s-bns{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1em 1.8em;
    border-top: 1px solid var(--cc-section-border);
    height: 4.75em;
}

.cc_div .cc-link{
    color: var(--cc-btn-primary-bg);
    border-bottom: 1px solid var(--cc-btn-primary-bg);
    display: inline;
    padding-bottom: 0;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600;
}

.cc_div .cc-link:hover,
.cc_div .cc-link:active{
    border-color: transparent;
}

#c-bns button:first-child,
#s-bns button:first-child{
    color: var(--cc-btn-primary-text);
    background: var(--cc-btn-primary-bg);
}

#c-bns.swap button:first-child{
    color: var(--cc-btn-secondary-text);
    background: var(--cc-btn-secondary-bg);
}

#c-bns.swap button:last-child{
    color: var(--cc-btn-primary-text);
    background: var(--cc-btn-primary-bg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg{
    background: var(--cc-toggle-bg-on);
}

#c-bns button:first-child:active,
#c-bns button:first-child:hover,
#s-bns button:first-child:active,
#s-bns button:first-child:hover,
#c-bns.swap button:last-child:active,
#c-bns.swap button:last-child:hover{
    background: var(--cc-btn-primary-hover-bg);
    color: var(--cc-btn-primary-hover-text);
}

#c-bns.swap button:first-child:active,
#c-bns.swap button:first-child:hover{
    background: var(--cc-btn-secondary-hover-bg);
    color: var(--cc-btn-secondary-hover-text);
}

#s-hdr{
    position: absolute;
    top: 0;
    width: 100%;
    display: table;
    padding: 0 1.8em;
    height: 4.75em;
    vertical-align: middle;
    z-index: 2;
    border-bottom: 1px solid var(--cc-section-border);
}

#s-ttl{
	display: table-cell;
    vertical-align: middle;
    font-size: 1em;
}

#s-c-bn{
    padding: 0;
    width: 1.7em;
    height: 1.7em;
    font-size: 1.45em;
    margin: 0;
    font-weight: initial;
    position: relative;
    overflow: hidden;
}

#s-c-bnc{
    display: table-cell;
    vertical-align: middle;
}

.cc_div span.t-lb {
    position: absolute;
    top: 0;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

#c_policy__text{
    height: 31.250em;
    overflow-y: auto;
    margin-top: 1.250em;
}

#c-s-in{
    position: relative;
    transform: translateY(-50%);
    top: 50%;
    height: 100%;
    height: calc(100% - 2.5em);
    max-height: 37.5em;
}

@media screen and (min-width: 688px) {
    /** works only on webkit-based browsers **/
    #s-bl::-webkit-scrollbar{
        width: .8em;
        height: 100%;
        background: transparent;
        border-radius: 0 0.250em 0.250em 0;
    }

    #s-bl::-webkit-scrollbar-thumb{
        border: 0.25em solid var(--cc-bg);
        background: var(--cc-webkit-scrollbar-bg);
        border-radius: 100em;
    }

    #s-bl::-webkit-scrollbar-thumb:hover{
        background: var(--cc-webkit-scrollbar-bg-hover);
    }

    #s-bl::-webkit-scrollbar-button {
        width: 10px;
        height: 5px;
    }
}

/** custom checkbox **/
/* The container */
.cc_div .b-tg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: inline-block;
    margin: auto;
    right: 1.2em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
}

/* Hide the browser's default checkbox */
.cc_div .b-tg .c-tgl {
    position: absolute;
    cursor: pointer;
    display: block;
    top: 0;
    left: 0;
    margin: 0;
    border: 0;
}

/* Create a custom checkbox */
.cc_div .b-tg .c-tg {
    position: absolute;
    background: var(--cc-toggle-bg-off);
    transition: background-color .25s ease, box-shadow .25s ease;
    pointer-events: none;
}

.cc_div span.t-lb,
.cc_div .b-tg,
.cc_div .b-tg .c-tg,
.cc_div .b-tg .c-tgl{
    width: 3.4em;
    height: 1.5em;
    border-radius: 4em;
}

.cc_div .b-tg .c-tg.c-ro{
    cursor: not-allowed;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro{
    background: var(--cc-toggle-bg-readonly);
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro:after{
    box-shadow: none;
}

/* Style the checkmark/indicator */
.cc_div .b-tg .c-tg:after {
    content: "";
    position: relative;
    display: block;
    left: 0.125em;
    top: 0.125em;
    width: 1.25em;
    height: 1.25em;
    border: none;
    box-sizing: content-box;
    background: var(--cc-toggle-knob-bg);
    box-shadow: 0 1px 2px rgba(24, 32, 35, .36);
    transition: transform .25s ease;
    border-radius: 100%;
}

/* Show the checkmark when checked */
.cc_div .b-tg .c-tgl:checked ~ .c-tg:after{
    transform: translateX(1.9em);
}

#s-bl table,
#s-bl th,
#s-bl td{
    border: none;
}

#s-bl tbody tr{
    transition: background-color .25s ease;
}

#s-bl tbody tr:hover{
    background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl table {
    text-align: left;
    border-collapse: collapse;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

#s-bl caption {
    padding: 0.5rem 1rem;
    font-size: .9em;
    border-bottom: 1px solid var(--cc-cookie-table-border);
    font-weight: 600;
}

#s-bl td,
#s-bl th {
    padding: 0.8em 0.625em;
    text-align: left;
    vertical-align: top;
    font-size: .8em;
    padding-left: 1.2em;
}

#s-bl th {
	font-family: inherit;
    padding: 1em 1rem;
    font-weight: 600;
}

#s-bl thead tr:first-child{
    border-bottom: 1px solid var(--cc-cookie-table-border);
}

.force--consent #s-cnt,
.force--consent #cs{
    width: 100vw;
}

#cm-ov,
#cs-ov{
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    background: #070707;
    background: var(--cc-overlay-bg);
    display: none;
    transition: none;
}

.show--settings #cs-ov,
.c--anim #cs-ov,
.force--consent .c--anim #cm-ov,
.force--consent.show--consent #cm-ov{
    display: block;
}

#cs-ov{
    z-index: 2;
}

.force--consent .cc_div{
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    width: 100vw;
    visibility: hidden;
    transition: visibility .25s linear;
}

.force--consent.show--consent .c--anim .cc_div,
.force--consent.show--settings .c--anim .cc_div{
    visibility: visible;
}

.force--consent #cm{
    position: absolute;
}

.force--consent #cm.bar{
    width: 100vw;
    max-width: 100vw;
}

html.force--consent.show--consent{
    overflow-y: hidden!important;
}

html.force--consent.show--consent,
html.force--consent.show--consent body{
    height: auto!important;
    overflow-x: hidden!important;
}
/** END BLOCK PAGE SCROLL */

/** BEGIN ICONS **/
.cc_div .b-bn .exp::before,
.cc_div .act .b-bn .exp::before{
    border: solid var(--cc-btn-secondary-text);
    border-width: 0 2px 2px 0;
    padding: .2em;
    display: inline-block;
    position: absolute;
    content: '';
    margin-right: 15px;
    position: absolute;
    transform: translateY(-50%) rotate(45deg);
    left: 1.2em;
    top: 50%;
}

.cc_div .act .b-bn .b-tl::before{
    transform: translateY(-20%) rotate(225deg);
}

.cc_div .on-i::before{
    border: solid var(--cc-toggle-knob-icon-color);
    border-width: 0 2px 2px 0;
    padding: .1em;
    display: inline-block;
    padding-bottom: .45em;
    content: '';
    margin: 0 auto;
    transform: rotate(45deg);
    top: .37em;
    left: .75em;
    position: absolute;
}

#s-c-bn::before,
#s-c-bn::after{
    content: '';
    position: absolute;
    left: .82em;
    top: .58em;
    height: .6em;
    width: 1.5px;
    background: var(--cc-btn-secondary-text);
    transform: rotate(45deg);
    border-radius: 1em;
    margin: 0 auto;
}

#s-c-bn::after{
    transform: rotate(-45deg);
}

.cc_div .off-i,
.cc_div .on-i{
    height: 100%;
    width: 50%;
    position: absolute;
    right: 0;
    display: block;
    text-align: center;
    transition: opacity .15s ease;
}

.cc_div .on-i{
    left: 0;
    opacity: 0;
}

.cc_div .off-i::before,
.cc_div .off-i::after{
    right: .8em;
    top: .42em;
    content: ' ';
    height: .7em;
    width: .09375em;
    display: block;
    background: var(--cc-toggle-knob-icon-color);
    margin: 0 auto;
    position: absolute;
    transform-origin: center;
}

.cc_div .off-i::before {
    transform: rotate(45deg);
}
.cc_div .off-i::after {
    transform: rotate(-45deg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .on-i{
    opacity: 1;
}
.cc_div .b-tg .c-tgl:checked ~ .c-tg .off-i{
    opacity: 0;
}
/** END ICONS **/

#cm.box.middle,
#cm.cloud.middle{
    top: 50%;
    transform: translateY(-37%);
    bottom: auto;
}

#cm.box.middle.zoom,
#cm.cloud.middle.zoom{
    transform: scale(.95) translateY(-50%);
}

#cm.box.center{
    left: 1em;
    right: 1em;
    margin: 0 auto;
}

/* Start cloud layout */
#cm.cloud {
    max-width: 50em;
    margin: 0 auto;
    text-align: center;
    left: 1em;
    right: 1em;
    overflow: hidden;
    padding: 1.2em 1.7em;
    width: unset;
}

.cc_div .cloud #c-inr{
    display: table;
    width: 100%;
}

.cc_div .cloud #c-inr-i{
    width: 70%;
    display: table-cell;
    vertical-align: top;
    padding-right: 2.4em;
}

.cc_div .cloud #c-txt{
    font-size: 0.85em;
}

.cc_div .cloud #c-bns{
    min-width: 170px;
    display: table-cell;
    vertical-align: middle;
}

#cm.cloud .c-bn{
    margin: .5rem 0 0 0;
    width: 100%;
}

#cm.cloud .c-bn:first-child{
    margin: 0;
}

#cm.cloud.left{
    margin-right: 1.25em;
}

#cm.cloud.right{
    margin-left: 1.25em;
}
/* End cloud layout */

/* Start bar layout */
#cm.bar {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 0;
    position: fixed;
    padding: 2em;
}

#cm.bar #c-inr{
    max-width: 32em;
    margin: 0 auto;
}

#cm.bar #c-bns{
    max-width: 33.75em;
}

#cm.bar #cs{
    padding: 0;
}

.cc_div .bar #c-s-in{
    top: 0;
    transform: none;
    height: 100%;
    max-height: 100%;
}

.cc_div .bar #s-hdr,
.cc_div .bar #s-bl,
.cc_div .bar #s-bns {
    padding-left: 1.4em;
    padding-right: 1.4em;
}

.cc_div .bar #cs{
    padding: 0;
}

/* align bar to right by default */
.cc_div .bar #s-inr{
    margin: 0;
    margin-left: auto;
    margin-right: 0;
    border-radius: 0;
    max-width: 32em;
}

.cc_div .bar.left #s-inr{
    margin-left: 0;
    margin-right: auto;
}

/* Force table to not be like tables anymore */
.cc_div .bar #s-bl table,
.cc_div .bar #s-bl thead,
.cc_div .bar #s-bl tbody,
.cc_div .bar #s-bl th,
.cc_div .bar #s-bl td,
.cc_div .bar #s-bl tr,
.cc_div .bar #s-cnt{
    display: block;
}

.cc_div .bar #s-bl caption {
    display: block;
    border-top: 0;
    border-bottom: 1px solid var(--cc-cookie-table-border);
}

/* Hide table headers (but not display: none;, for accessibility) */
.cc_div .bar #s-bl thead tr{
    position: absolute;
    top: -9999px;
    left: -9999px;
}

.cc_div .bar #s-bl tr{
    border-top: 1px solid var(--cc-cookie-table-border);
}

.cc_div .bar #s-bl td {
    /* Behave  like a "row" */
    border: none;
    position: relative;
    padding-left: 35%;
}

.cc_div .bar #s-bl td:before {
    position: absolute;
    left: 1rem;
    padding-right: 0.625em;
    white-space: nowrap;
    content: attr(data-column);
    color: var(--cc-text);
    overflow: hidden;
    text-overflow: ellipsis;
}
/* End bar layout */

/* Positions */
#cm.top {
    bottom: auto;
    top: 1.250em;
}

#cm.left{
    right: auto;
    left: 1.250em;
}

#cm.right{
    left: auto;
    right: 1.250em;
}

#cm.bar.left,
#cm.bar.right{
    left: 0;
    right: 0;
}

#cm.bar.top{
    top: 0;
}
/* end positions */

/* Disable transitions if prefers-reduced-motion detected */
@media (prefers-reduced-motion) {
    #cc--main #cm,
    #cc--main #s-cnt,
    #cc--main #s-inr{
        transition: none!important;
    }
}

@media screen and (max-width: 688px) {

    #cm,
    #cm.cloud,
    #cm.left,
    #cm.right{
        width: auto;
        max-width: 100%;
        margin: 0;
        padding: 1.2em!important;
        right: 1em;
        left: 1em;
        bottom: 1em;
        display: block;
    }

    .force--consent #cm,
    .force--consent #cm.cloud{
        width: auto;
        max-width: 100vw;
    }

    #cm.top{
        top: 1em;
        bottom: auto;
    }

    #cm.bottom{
        bottom: 1em;
        top: auto;
    }

    #cm.bar.bottom{
        bottom: 0;
    }

    #cm.cloud .c-bn{
        font-size: .85em;
    }

    #s-bns,
    .cc_div .bar #s-bns{
        padding: 1em 1.3em;
    }

    .cc_div .bar #s-inr{
        max-width: 100%;
        width: 100%;
    }

    .cc_div .cloud #c-inr-i{
        padding-right: 0;
    }

    #cs{
        border-radius: 0;
        padding: 0;
    }

    #c-s-in{
        max-height: 100%;
        height: 100%;
        top: 0;
        transform: none;
    }

    .cc_div .b-tg{
        transform: scale(1.1);
        right: 1.1em;
    }

    #s-inr{
        margin: 0;
        padding-bottom: 7.9em;
        border-radius: 0;
    }

    #s-bns{
        height: 7.9em;
    }

	#s-bl,
    .cc_div .bar #s-bl{
		padding: 1.2em;
    }

	#s-hdr,
    .cc_div .bar #s-hdr{
        padding: 0 1.2em;
    }

    /** dynamic table layout **/
    #s-bl table {
        width: 100%;
    }

    #s-inr.bns-t{
        padding-bottom: 10.5em;
    }

    .bns-t #s-bns{
        height: 10.5em;
    }

    .cc_div .bns-t .c-bn{
        font-size: 0.83em;
        padding: .9em 1.6em;
    }

    #s-cnt .b-bn .b-tl{
        padding-top: 1.2em;
        padding-bottom: 1.2em;
    }

    /* Force table to not be like tables anymore */
    #s-bl table,
    #s-bl thead,
    #s-bl tbody,
    #s-bl th,
    #s-bl td,
    #s-bl tr,
    #s-cnt{
        display: block;
    }

    #s-bl caption {
        border-bottom: 0;
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    #s-bl thead tr{
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    #s-bl tr{
        border-top: 1px solid var(--cc-cookie-table-border);
    }

    #s-bl td {
        /* Behave  like a "row" */
        border: none;
        position: relative;
        padding-left: 35%;
    }

    #s-bl td:before {
        position: absolute;
        left: 1rem;
        padding-right: 0.625em;
        white-space: nowrap;
        content: attr(data-column);
        color: var(--cc-text);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #cm .c-bn,
    .cc_div .c-bn{
        width: 100%;
        margin-right: 0;
    }

    #s-cnt #s-rall-bn{
        margin-left: 0;
    }

    .cc_div #c-bns{
        flex-direction: column;
    }

    #c-bns button + button,
    #s-cnt button + button{
        margin-top: 0.625em;
        margin-left: 0;
        float: unset;
    }

    #cm.cloud,
    #cm.box{
        left: 1em;
        right: 1em;
        width: auto;
    }

    #cm.cloud.right,
    #cm.cloud.left{
        margin: 0;
    }

    .cc_div .cloud #c-bns,
    .cc_div .cloud #c-inr,
    .cc_div .cloud #c-inr-i{
        display: block;
        width: auto;
        min-width: unset;
    }

    .cc_div .cloud #c-txt{
        font-size: .9em;
    }

    .cc_div .cloud #c-bns{
        margin-top: 1.625em;
    }
}
@font-face{font-family:fontello;src:url(./fontello-34a44d55.eot);src:url(./fontello-34a44d55.eot#iefix) format("embedded-opentype"),url(./fontello-eeaa6471.woff2) format("woff2"),url(./fontello-197592f2.woff) format("woff"),url(./fontello-2fc515b1.ttf) format("truetype"),url(./fontello-358e59d0.svg#fontello) format("svg");font-weight:400;font-style:normal}[class*=" fa-mavon-"]:before,[class^=fa-mavon-]:before{font-family:fontello;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-mavon-bold:before{content:"\E800"}.fa-mavon-italic:before{content:"\E801"}.fa-mavon-thumb-tack:before{content:"\E802"}.fa-mavon-link:before{content:"\E803"}.fa-mavon-picture-o:before{content:"\E804"}.fa-mavon-repeat:before{content:"\E805"}.fa-mavon-undo:before{content:"\E806"}.fa-mavon-trash-o:before{content:"\E807"}.fa-mavon-floppy-o:before{content:"\E808"}.fa-mavon-compress:before{content:"\E809"}.fa-mavon-eye:before{content:"\E80A"}.fa-mavon-eye-slash:before{content:"\E80B"}.fa-mavon-question-circle:before{content:"\E80C"}.fa-mavon-times:before{content:"\E80D"}.fa-mavon-align-left:before{content:"\E80F"}.fa-mavon-align-center:before{content:"\E810"}.fa-mavon-align-right:before{content:"\E811"}.fa-mavon-arrows-alt:before{content:"\F0B2"}.fa-mavon-bars:before{content:"\F0C9"}.fa-mavon-list-ul:before{content:"\F0CA"}.fa-mavon-list-ol:before{content:"\F0CB"}.fa-mavon-strikethrough:before{content:"\F0CC"}.fa-mavon-underline:before{content:"\F0CD"}.fa-mavon-table:before{content:"\F0CE"}.fa-mavon-columns:before{content:"\F0DB"}.fa-mavon-quote-left:before{content:"\F10D"}.fa-mavon-code:before{content:"\F121"}.fa-mavon-superscript:before{content:"\F12B"}.fa-mavon-subscript:before{content:"\F12C"}.fa-mavon-header:before{content:"\F1DC"}.fa-mavon-window-maximize:before{content:"\F2D0"}.markdown-body strong{font-weight:bolder}.markdown-body .hljs-center{text-align:center}.markdown-body .hljs-right{text-align:right}.markdown-body .hljs-left{text-align:left}.markdown-body .hljs{overflow:auto}
.vue-nani-dropzone .dropzone-wrapper{display:table;width:100%;margin-bottom:15px}.vue-nani-dropzone .dropzone-area{cursor:pointer;height:100px;position:relative;border:2px dashed #cbcbcb;display:table-cell;vertical-align:middle}.vue-nani-dropzone .dropzone-area.dropzone-hover,.vue-nani-dropzone .dropzone-area:hover{border:2px dashed #5da2f5}.vue-nani-dropzone .dropzone-area.dropzone-hover .dropzone-title,.vue-nani-dropzone .dropzone-area:hover .dropzone-title{color:#1579f1}.vue-nani-dropzone .dropzone-area input{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;opacity:0}.vue-nani-dropzone .dropzone-text{position:absolute;top:50%;text-align:center;transform:translateY(-50%);width:100%}.vue-nani-dropzone .dropzone-text span{display:block}.vue-nani-dropzone .dropzone-title{font-size:13px;font-size:.8125rem;color:#888;letter-spacing:.4px}.vue-nani-dropzone .dropzone-info{font-size:13px;font-size:.8125rem;color:#a8a8a8;letter-spacing:.4px}
.vue-nani-spinner-spinner{margin:0 auto;border-radius:100%;transition:all .3s linear}.vue-nani-spinner-text{text-align:center}@keyframes vue-nani-spinner-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes vue-nani-spinner-spin-2{0%{transform:rotate(0deg)}to{transform:rotate(-1turn)}}
/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
	background: transparent;
}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
	max-width: none !important;
	max-height: none !important;
	}
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
	max-width: none !important;
	max-height: none !important;
	width: auto;
	padding: 0;
	}

.leaflet-container img.leaflet-tile {
	/* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
	mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
svg.leaflet-zoom-animated {
	will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	cursor:         grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	cursor:         grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline-offset: 1px;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1.5;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover,
.leaflet-bar a:focus {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(./layers-416d9136.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(./layers-2x-8f2c4d11.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	font-size: 13px;
	font-size: 1.08333em;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
	background-image: url(./marker-icon-2b3e1faf.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	line-height: 1.4;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
	text-decoration: underline;
	}
.leaflet-attribution-flag {
	display: inline !important;
	vertical-align: baseline !important;
	width: 1em;
	height: 0.6669em;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	white-space: nowrap;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	background: rgba(255, 255, 255, 0.8);
	text-shadow: 1px 1px #fff;
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 24px 13px 20px;
	line-height: 1.3;
	font-size: 13px;
	font-size: 1.08333em;
	min-height: 1px;
	}
.leaflet-popup-content p {
	margin: 17px 0;
	margin: 1.3em 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-top: -1px;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;
	pointer-events: auto;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	text-align: center;
	width: 24px;
	height: 24px;
	font: 16px/24px Tahoma, Verdana, sans-serif;
	color: #757575;
	text-decoration: none;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
	color: #585858;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	-ms-zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-interactive {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Printing */

@media print {
	/* Prevent printers from removing background-images of controls. */
	.leaflet-control {
		-webkit-print-color-adjust: exact;
		print-color-adjust: exact;
		}
	}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in;
	-moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in;
	transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
	/* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
	-webkit-transition: -webkit-stroke-dashoffset 0.3s ease-out, -webkit-stroke-opacity 0.3s ease-in;
	-moz-transition: -moz-stroke-dashoffset 0.3s ease-out, -moz-stroke-opacity 0.3s ease-in;
	-o-transition: -o-stroke-dashoffset 0.3s ease-out, -o-stroke-opacity 0.3s ease-in;
	transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small {
	background-color: rgba(181, 226, 140, 0.6);
	}
.marker-cluster-small div {
	background-color: rgba(110, 204, 57, 0.6);
	}

.marker-cluster-medium {
	background-color: rgba(241, 211, 87, 0.6);
	}
.marker-cluster-medium div {
	background-color: rgba(240, 194, 12, 0.6);
	}

.marker-cluster-large {
	background-color: rgba(253, 156, 115, 0.6);
	}
.marker-cluster-large div {
	background-color: rgba(241, 128, 23, 0.6);
	}

	/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
	background-color: rgb(181, 226, 140);
	}
.leaflet-oldie .marker-cluster-small div {
	background-color: rgb(110, 204, 57);
	}

.leaflet-oldie .marker-cluster-medium {
	background-color: rgb(241, 211, 87);
	}
.leaflet-oldie .marker-cluster-medium div {
	background-color: rgb(240, 194, 12);
	}

.leaflet-oldie .marker-cluster-large {
	background-color: rgb(253, 156, 115);
	}
.leaflet-oldie .marker-cluster-large div {
	background-color: rgb(241, 128, 23);
}

.marker-cluster {
	background-clip: padding-box;
	border-radius: 20px;
	}
.marker-cluster div {
	width: 30px;
	height: 30px;
	margin-left: 5px;
	margin-top: 5px;

	text-align: center;
	border-radius: 15px;
	font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
	}
.marker-cluster span {
	line-height: 30px;
	}
@font-face{font-family:"Aspekta";src:url(./Aspekta-300-82c4e048.eot);src:url(./Aspekta-300-82c4e048.eot?#iefix) format("embedded-opentype"),url(./Aspekta-300-2327e293.woff2) format("woff2"),url(./Aspekta-300-ebdab0f0.woff) format("woff"),url(./Aspekta-300-dfa3e137.ttf) format("truetype"),url(./Aspekta-300-93601ef3.svg#Aspekta-300) format("svg");font-weight:normal;font-style:normal;font-display:swap}@font-face{font-family:"Aspekta";src:url(./Aspekta-600-786e6cf1.eot);src:url(./Aspekta-600-786e6cf1.eot?#iefix) format("embedded-opentype"),url(./Aspekta-600-96009fa9.woff2) format("woff2"),url(./Aspekta-600-53a2f7fc.woff) format("woff"),url(./Aspekta-600-f3e3c494.ttf) format("truetype"),url(./Aspekta-600-46934b9d.svg#Aspekta-600) format("svg");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:"Aspekta";src:url(./Aspekta-650-521aa0b5.eot);src:url(./Aspekta-650-521aa0b5.eot?#iefix) format("embedded-opentype"),url(./Aspekta-650-d7e08a53.woff2) format("woff2"),url(./Aspekta-650-915f2043.woff) format("woff"),url(./Aspekta-650-fd08533b.ttf) format("truetype"),url(./Aspekta-650-a40a5695.svg#Aspekta-650) format("svg");font-weight:650;font-style:normal;font-display:swap}@font-face{font-family:"Aspekta";src:url(./Aspekta-700-51acb116.eot);src:url(./Aspekta-700-51acb116.eot?#iefix) format("embedded-opentype"),url(./Aspekta-700-4a3cae9b.woff2) format("woff2"),url(./Aspekta-700-fbd6ded3.woff) format("woff"),url(./Aspekta-700-6b142838.ttf) format("truetype"),url(./Aspekta-700-ecaa3ab5.svg#Aspekta-700) format("svg");font-weight:bold;font-style:normal;font-display:swap}@font-face{font-family:"Aspekta 750";src:url(./Aspekta-750-274a5b75.eot);src:url(./Aspekta-750-274a5b75.eot?#iefix) format("embedded-opentype"),url(./Aspekta-750-7f5716da.woff2) format("woff2"),url(./Aspekta-750-091e18be.woff) format("woff"),url(./Aspekta-750-22a46098.ttf) format("truetype"),url(./Aspekta-750-2005f4b9.svg#Aspekta-750) format("svg");font-weight:750;font-style:normal;font-display:swap}.detail-nav-inner ul,.list-how-it-works,.object-types,.page-footer .socials,.page-footer ul,.page-nav .page-nav-links ul,.bull-list,.errors ul,.navbar-special-items,.list-reset{margin:0;padding:0}.detail-nav-inner ul li,.list-how-it-works li,.object-types li,.page-footer .socials li,.page-footer ul li,.page-nav .page-nav-links ul li,.bull-list li,.errors ul li,.navbar-special-items li,.list-reset li{list-style:none;background:transparent;margin:0;padding:0}/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */: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: #FF5A5F;--secondary: #5CE1E6;--success: #28a745;--info: #5363d9;--warning: #ffc107;--danger: #dc3545;--light: #f8f9fa;--dark: #15132d;--soft-4: #f9f7fc;--breakpoint-xs: 0;--breakpoint-sm: 576px;--breakpoint-md: 768px;--breakpoint-lg: 992px;--breakpoint-xl: 1200px;--breakpoint-xxl: 1360px;--breakpoint-full: 1920px;--font-family-sans-serif: "Aspekta", sans-serif;--font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace}*,*::before,*::after{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0)}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:"Aspekta",sans-serif;font-size:1rem;font-weight:400;line-height:1.473684;color:#15132d;text-align:left;background-color:#fff}[tabindex="-1"]:focus:not(:focus-visible){outline:0 !important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:1rem}p{margin-top:0;margin-bottom:1rem}abbr[title],abbr[data-original-title]{text-decoration:underline;text-decoration:underline dotted;cursor:help;border-bottom:0;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul,dl{margin-top:0;margin-bottom:1rem}ol ol,ul ul,ol ul,ul ol{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}a{color:#ff5a5f;text-decoration:underline;background-color:transparent}a:hover{color:#ff0e15;text-decoration:underline}a:not([href]):not([class]){color:inherit;text-decoration:none}a:not([href]):not([class]):hover{color:inherit;text-decoration:none}pre,code,kbd,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto;-ms-overflow-style:scrollbar}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit;text-align:-webkit-match-parent}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus:not(:focus-visible){outline:0}input,button,select,optgroup,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button:not(:disabled),[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled){cursor:pointer}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{padding:0;border-style:none}input[type=radio],input[type=checkbox]{box-sizing:border-box;padding:0}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}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}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none !important}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{margin-bottom:1rem;font-weight:700;line-height:1.2}h1,.h1{font-size:3rem}h2,.h2{font-size:1.75rem}h3,.h3{font-size:1.375rem}h4,.h4{font-size:1.0625rem}h5,.h5{font-size:1.25rem}h6,.h6{font-size:1rem}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:6rem;font-weight:300;line-height:1.2}.display-2{font-size:5.5rem;font-weight:300;line-height:1.2}.display-3{font-size:4.5rem;font-weight:300;line-height:1.2}.display-4{font-size:3.5rem;font-weight:300;line-height:1.2}hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid #939598}small,.small{font-size:0.875em;font-weight:400}mark,.mark{padding:.2em;background-color:#fcf8e3}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:90%;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote-footer{display:block;font-size:0.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:90%;color:#6c757d}code{font-size:87.5%;color:#e83e8c;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:100%;font-weight:700}pre{display:block;font-size:87.5%;color:#212529}pre code{font-size:inherit;color:inherit;word-break:normal}.pre-scrollable{max-height:340px;overflow-y:scroll}.container,.container-fluid,.container-xxl,.container-xl,.container-lg,.container-md,.container-sm{width:100%;padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width: 576px){.container-sm,.container{max-width:540px}}@media(min-width: 768px){.container-md,.container-sm,.container{max-width:720px}}@media(min-width: 992px){.container-lg,.container-md,.container-sm,.container{max-width:960px}}@media(min-width: 1200px){.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1140px}}@media(min-width: 1360px){.container-xxl,.container-xl,.container-lg,.container-md,.container-sm,.container{max-width:1330px}}.row{display:flex;flex-wrap:wrap;margin-right:-15px;margin-left:-15px}.no-gutters,.search-form .row-sf-inner{margin-right:0;margin-left:0}.no-gutters>.col,.search-form .row-sf-inner>.col,.no-gutters>[class*=col-],.search-form .row-sf-inner>[class*=col-]{padding-right:0;padding-left:0}.col-full,.col-full-auto,.col-full-12,.col-full-11,.col-full-10,.col-full-9,.col-full-8,.col-full-7,.col-full-6,.col-full-5,.col-full-4,.col-full-3,.col-full-2,.col-full-1,.col-xxl,.col-xxl-auto,.col-xxl-12,.col-xxl-11,.col-xxl-10,.col-xxl-9,.col-xxl-8,.col-xxl-7,.col-xxl-6,.col-xxl-5,.col-xxl-4,.col-xxl-3,.col-xxl-2,.col-xxl-1,.col-xl,.col-xl-auto,.col-xl-12,.col-xl-11,.col-xl-10,.col-xl-9,.col-xl-8,.col-xl-7,.col-xl-6,.col-xl-5,.col-xl-4,.col-xl-3,.col-xl-2,.col-xl-1,.col-lg,.col-lg-auto,.col-lg-12,.col-lg-11,.col-lg-10,.col-lg-9,.col-lg-8,.col-lg-7,.col-lg-6,.col-lg-5,.col-lg-4,.col-lg-3,.col-lg-2,.col-lg-1,.col-md,.col-md-auto,.col-md-12,.col-md-11,.col-md-10,.col-md-9,.col-md-8,.col-md-7,.col-md-6,.col-md-5,.col-md-4,.col-md-3,.col-md-2,.col-md-1,.col-sm,.col-sm-auto,.col-sm-12,.col-sm-11,.col-sm-10,.col-sm-9,.col-sm-8,.col-sm-7,.col-sm-6,.col-sm-5,.col-sm-4,.col-sm-3,.col-sm-2,.col-sm-1,.col,.col-auto,.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2,.col-1{position:relative;width:100%;padding-right:15px;padding-left:15px}.col{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-1>*{flex:0 0 100%;max-width:100%}.row-cols-2>*{flex:0 0 50%;max-width:50%}.row-cols-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-4>*{flex:0 0 25%;max-width:25%}.row-cols-5>*{flex:0 0 20%;max-width:20%}.row-cols-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto;max-width:100%}.col-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-3{flex:0 0 25%;max-width:25%}.col-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-6{flex:0 0 50%;max-width:50%}.col-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-9{flex:0 0 75%;max-width:75%}.col-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-12{flex:0 0 100%;max-width:100%}.order-first{order:-1}.order-last{order:13}.order-0{order:0}.order-1{order:1}.order-2{order:2}.order-3{order:3}.order-4{order:4}.order-5{order:5}.order-6{order:6}.order-7{order:7}.order-8{order:8}.order-9{order:9}.order-10{order:10}.order-11{order:11}.order-12{order:12}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}@media(min-width: 576px){.col-sm{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-sm-1>*{flex:0 0 100%;max-width:100%}.row-cols-sm-2>*{flex:0 0 50%;max-width:50%}.row-cols-sm-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 25%;max-width:25%}.row-cols-sm-5>*{flex:0 0 20%;max-width:20%}.row-cols-sm-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto;max-width:100%}.col-sm-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-sm-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-sm-3{flex:0 0 25%;max-width:25%}.col-sm-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-sm-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-sm-6{flex:0 0 50%;max-width:50%}.col-sm-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-sm-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-sm-9{flex:0 0 75%;max-width:75%}.col-sm-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-sm-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-sm-12{flex:0 0 100%;max-width:100%}.order-sm-first{order:-1}.order-sm-last{order:13}.order-sm-0{order:0}.order-sm-1{order:1}.order-sm-2{order:2}.order-sm-3{order:3}.order-sm-4{order:4}.order-sm-5{order:5}.order-sm-6{order:6}.order-sm-7{order:7}.order-sm-8{order:8}.order-sm-9{order:9}.order-sm-10{order:10}.order-sm-11{order:11}.order-sm-12{order:12}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}}@media(min-width: 768px){.col-md{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-md-1>*{flex:0 0 100%;max-width:100%}.row-cols-md-2>*{flex:0 0 50%;max-width:50%}.row-cols-md-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-md-4>*{flex:0 0 25%;max-width:25%}.row-cols-md-5>*{flex:0 0 20%;max-width:20%}.row-cols-md-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto;max-width:100%}.col-md-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-md-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-md-3{flex:0 0 25%;max-width:25%}.col-md-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-md-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-md-6{flex:0 0 50%;max-width:50%}.col-md-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-md-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-md-9{flex:0 0 75%;max-width:75%}.col-md-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-md-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-md-12{flex:0 0 100%;max-width:100%}.order-md-first{order:-1}.order-md-last{order:13}.order-md-0{order:0}.order-md-1{order:1}.order-md-2{order:2}.order-md-3{order:3}.order-md-4{order:4}.order-md-5{order:5}.order-md-6{order:6}.order-md-7{order:7}.order-md-8{order:8}.order-md-9{order:9}.order-md-10{order:10}.order-md-11{order:11}.order-md-12{order:12}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}}@media(min-width: 992px){.col-lg{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-lg-1>*{flex:0 0 100%;max-width:100%}.row-cols-lg-2>*{flex:0 0 50%;max-width:50%}.row-cols-lg-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 25%;max-width:25%}.row-cols-lg-5>*{flex:0 0 20%;max-width:20%}.row-cols-lg-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto;max-width:100%}.col-lg-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-lg-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-lg-3{flex:0 0 25%;max-width:25%}.col-lg-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-lg-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-lg-6{flex:0 0 50%;max-width:50%}.col-lg-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-lg-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-lg-9{flex:0 0 75%;max-width:75%}.col-lg-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-lg-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-lg-12{flex:0 0 100%;max-width:100%}.order-lg-first{order:-1}.order-lg-last{order:13}.order-lg-0{order:0}.order-lg-1{order:1}.order-lg-2{order:2}.order-lg-3{order:3}.order-lg-4{order:4}.order-lg-5{order:5}.order-lg-6{order:6}.order-lg-7{order:7}.order-lg-8{order:8}.order-lg-9{order:9}.order-lg-10{order:10}.order-lg-11{order:11}.order-lg-12{order:12}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}}@media(min-width: 1200px){.col-xl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xl-3{flex:0 0 25%;max-width:25%}.col-xl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xl-6{flex:0 0 50%;max-width:50%}.col-xl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xl-9{flex:0 0 75%;max-width:75%}.col-xl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xl-12{flex:0 0 100%;max-width:100%}.order-xl-first{order:-1}.order-xl-last{order:13}.order-xl-0{order:0}.order-xl-1{order:1}.order-xl-2{order:2}.order-xl-3{order:3}.order-xl-4{order:4}.order-xl-5{order:5}.order-xl-6{order:6}.order-xl-7{order:7}.order-xl-8{order:8}.order-xl-9{order:9}.order-xl-10{order:10}.order-xl-11{order:11}.order-xl-12{order:12}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}}@media(min-width: 1360px){.col-xxl{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-xxl-1>*{flex:0 0 100%;max-width:100%}.row-cols-xxl-2>*{flex:0 0 50%;max-width:50%}.row-cols-xxl-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 25%;max-width:25%}.row-cols-xxl-5>*{flex:0 0 20%;max-width:20%}.row-cols-xxl-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto;max-width:100%}.col-xxl-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-xxl-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-xxl-3{flex:0 0 25%;max-width:25%}.col-xxl-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-xxl-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-xxl-6{flex:0 0 50%;max-width:50%}.col-xxl-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-xxl-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-xxl-9{flex:0 0 75%;max-width:75%}.col-xxl-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-xxl-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-xxl-12{flex:0 0 100%;max-width:100%}.order-xxl-first{order:-1}.order-xxl-last{order:13}.order-xxl-0{order:0}.order-xxl-1{order:1}.order-xxl-2{order:2}.order-xxl-3{order:3}.order-xxl-4{order:4}.order-xxl-5{order:5}.order-xxl-6{order:6}.order-xxl-7{order:7}.order-xxl-8{order:8}.order-xxl-9{order:9}.order-xxl-10{order:10}.order-xxl-11{order:11}.order-xxl-12{order:12}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}}@media(min-width: 1920px){.col-full{flex-basis:0;flex-grow:1;max-width:100%}.row-cols-full-1>*{flex:0 0 100%;max-width:100%}.row-cols-full-2>*{flex:0 0 50%;max-width:50%}.row-cols-full-3>*{flex:0 0 33.3333333333%;max-width:33.3333333333%}.row-cols-full-4>*{flex:0 0 25%;max-width:25%}.row-cols-full-5>*{flex:0 0 20%;max-width:20%}.row-cols-full-6>*{flex:0 0 16.6666666667%;max-width:16.6666666667%}.col-full-auto{flex:0 0 auto;width:auto;max-width:100%}.col-full-1{flex:0 0 8.33333333%;max-width:8.33333333%}.col-full-2{flex:0 0 16.66666667%;max-width:16.66666667%}.col-full-3{flex:0 0 25%;max-width:25%}.col-full-4{flex:0 0 33.33333333%;max-width:33.33333333%}.col-full-5{flex:0 0 41.66666667%;max-width:41.66666667%}.col-full-6{flex:0 0 50%;max-width:50%}.col-full-7{flex:0 0 58.33333333%;max-width:58.33333333%}.col-full-8{flex:0 0 66.66666667%;max-width:66.66666667%}.col-full-9{flex:0 0 75%;max-width:75%}.col-full-10{flex:0 0 83.33333333%;max-width:83.33333333%}.col-full-11{flex:0 0 91.66666667%;max-width:91.66666667%}.col-full-12{flex:0 0 100%;max-width:100%}.order-full-first{order:-1}.order-full-last{order:13}.order-full-0{order:0}.order-full-1{order:1}.order-full-2{order:2}.order-full-3{order:3}.order-full-4{order:4}.order-full-5{order:5}.order-full-6{order:6}.order-full-7{order:7}.order-full-8{order:8}.order-full-9{order:9}.order-full-10{order:10}.order-full-11{order:11}.order-full-12{order:12}.offset-full-0{margin-left:0}.offset-full-1{margin-left:8.33333333%}.offset-full-2{margin-left:16.66666667%}.offset-full-3{margin-left:25%}.offset-full-4{margin-left:33.33333333%}.offset-full-5{margin-left:41.66666667%}.offset-full-6{margin-left:50%}.offset-full-7{margin-left:58.33333333%}.offset-full-8{margin-left:66.66666667%}.offset-full-9{margin-left:75%}.offset-full-10{margin-left:83.33333333%}.offset-full-11{margin-left:91.66666667%}}.table{width:100%;margin-bottom:1rem;color:#15132d}.table th,.table td{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6}.table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6}.table tbody+tbody{border-top:2px solid #dee2e6}.table-sm th,.table-sm td{padding:.3rem}.table-bordered{border:1px solid #dee2e6}.table-bordered th,.table-bordered td{border:1px solid #dee2e6}.table-bordered thead th,.table-bordered thead td{border-bottom-width:2px}.table-borderless th,.table-borderless td,.table-borderless thead th,.table-borderless tbody+tbody{border:0}.table-striped tbody tr:nth-of-type(odd){background-color:rgba(0,0,0,.05)}.table-hover tbody tr:hover{color:#15132d;background-color:rgba(0,0,0,.075)}.table-primary,.table-primary>th,.table-primary>td{background-color:#ffd1d2}.table-primary th,.table-primary td,.table-primary thead th,.table-primary tbody+tbody{border-color:#ffa9ac}.table-hover .table-primary:hover{background-color:#ffb8b9}.table-hover .table-primary:hover>td,.table-hover .table-primary:hover>th{background-color:#ffb8b9}.table-secondary,.table-secondary>th,.table-secondary>td{background-color:#d1f7f8}.table-secondary th,.table-secondary td,.table-secondary thead th,.table-secondary tbody+tbody{border-color:#aaeff2}.table-hover .table-secondary:hover{background-color:#bbf3f5}.table-hover .table-secondary:hover>td,.table-hover .table-secondary:hover>th{background-color:#bbf3f5}.table-success,.table-success>th,.table-success>td{background-color:#c3e6cb}.table-success th,.table-success td,.table-success thead th,.table-success tbody+tbody{border-color:#8fd19e}.table-hover .table-success:hover{background-color:#b1dfbb}.table-hover .table-success:hover>td,.table-hover .table-success:hover>th{background-color:#b1dfbb}.table-info,.table-info>th,.table-info>td{background-color:#cfd3f4}.table-info th,.table-info td,.table-info thead th,.table-info tbody+tbody{border-color:#a6aeeb}.table-hover .table-info:hover{background-color:#bac0ef}.table-hover .table-info:hover>td,.table-hover .table-info:hover>th{background-color:#bac0ef}.table-warning,.table-warning>th,.table-warning>td{background-color:#ffeeba}.table-warning th,.table-warning td,.table-warning thead th,.table-warning tbody+tbody{border-color:#ffdf7e}.table-hover .table-warning:hover{background-color:#ffe8a1}.table-hover .table-warning:hover>td,.table-hover .table-warning:hover>th{background-color:#ffe8a1}.table-danger,.table-danger>th,.table-danger>td{background-color:#f5c6cb}.table-danger th,.table-danger td,.table-danger thead th,.table-danger tbody+tbody{border-color:#ed969e}.table-hover .table-danger:hover{background-color:#f1b0b7}.table-hover .table-danger:hover>td,.table-hover .table-danger:hover>th{background-color:#f1b0b7}.table-light,.table-light>th,.table-light>td{background-color:#fdfdfe}.table-light th,.table-light td,.table-light thead th,.table-light tbody+tbody{border-color:#fbfcfc}.table-hover .table-light:hover{background-color:#ececf6}.table-hover .table-light:hover>td,.table-hover .table-light:hover>th{background-color:#ececf6}.table-dark,.table-dark>th,.table-dark>td{background-color:#bdbdc4}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#858492}.table-hover .table-dark:hover{background-color:#b0b0b8}.table-hover .table-dark:hover>td,.table-hover .table-dark:hover>th{background-color:#b0b0b8}.table-soft-4,.table-soft-4>th,.table-soft-4>td{background-color:#fdfdfe}.table-soft-4 th,.table-soft-4 td,.table-soft-4 thead th,.table-soft-4 tbody+tbody{border-color:#fcfbfd}.table-hover .table-soft-4:hover{background-color:#ececf6}.table-hover .table-soft-4:hover>td,.table-hover .table-soft-4:hover>th{background-color:#ececf6}.table-active,.table-active>th,.table-active>td{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover{background-color:rgba(0,0,0,.075)}.table-hover .table-active:hover>td,.table-hover .table-active:hover>th{background-color:rgba(0,0,0,.075)}.table .thead-dark th{color:#fff;background-color:#343a40;border-color:#454d55}.table .thead-light th{color:#495057;background-color:#e9ecef;border-color:#dee2e6}.table-dark{color:#fff;background-color:#343a40}.table-dark th,.table-dark td,.table-dark thead th{border-color:#454d55}.table-dark.table-bordered{border:0}.table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)}.table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)}@media(max-width: 575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-sm>.table-bordered{border:0}}@media(max-width: 767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-md>.table-bordered{border:0}}@media(max-width: 991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-lg>.table-bordered{border:0}}@media(max-width: 1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xl>.table-bordered{border:0}}@media(max-width: 1359.98px){.table-responsive-xxl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-xxl>.table-bordered{border:0}}@media(max-width: 1919.98px){.table-responsive-full{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive-full>.table-bordered{border:0}}.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}.table-responsive>.table-bordered{border:0}.form-control{display:block;width:100%;height:calc(1.184015786em + 1.25rem + 2px);padding:.625rem .875rem;font-size:1.125rem;font-weight:400;line-height:1.184015786;color:#15132d;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:1.2910088796rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control{transition:none}}.form-control::-ms-expand{background-color:transparent;border:0}.form-control:focus{color:#15132d;background-color:#fff;border-color:#ffdadb;outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{appearance:none}select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #15132d}select.form-control:focus::-ms-value{color:#15132d;background-color:#fff}.form-control-file,.form-control-range{display:block;width:100%}.col-form-label{padding-top:calc(0.625rem + 1px);padding-bottom:calc(0.625rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.184015786}.col-form-label-lg{padding-top:calc(0.8125rem + 1px);padding-bottom:calc(0.8125rem + 1px);font-size:1.125rem;line-height:1.184015786}.col-form-label-sm{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1rem;line-height:1.222222}.form-control-plaintext{display:block;width:100%;padding:.625rem 0;margin-bottom:0;font-size:1.125rem;line-height:1.184015786;color:#15132d;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-sm,.form-control-plaintext.form-control-lg{padding-right:0;padding-left:0}.form-control-sm{height:calc(1.222222em + 1rem + 2px);padding:.5rem .75rem;font-size:1rem;line-height:1.222222;border-radius:1.111111rem}.form-control-lg{height:calc(1.184015786em + 1.625rem + 2px);padding:.8125rem 1rem;font-size:1.125rem;line-height:1.184015786;border-radius:1.4785088796rem}select.form-control[size],select.form-control[multiple]{height:auto}textarea.form-control{height:auto}.form-group{margin-bottom:1rem}.form-text{display:block;margin-top:.25rem}.form-row{display:flex;flex-wrap:wrap;margin-right:-5px;margin-left:-5px}.form-row>.col,.form-row>[class*=col-]{padding-right:5px;padding-left:5px}.form-check{position:relative;display:block;padding-left:1.25rem}.form-check-input{position:absolute;margin-top:.3rem;margin-left:-1.25rem}.form-check-input[disabled]~.form-check-label,.form-check-input:disabled~.form-check-label{color:#6c757d}.form-check-label{margin-bottom:0}.form-check-inline{display:inline-flex;align-items:center;padding-left:0;margin-right:.75rem}.form-check-inline .form-check-input{position:static;margin-top:0;margin-right:.3125rem;margin-left:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#28a745}.valid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.473684;color:#fff;background-color:rgba(40,167,69,.9);border-radius:.25rem}.form-row>.col>.valid-tooltip,.form-row>[class*=col-]>.valid-tooltip{left:5px}.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip,.is-valid~.valid-feedback,.is-valid~.valid-tooltip{display:block}.was-validated .form-control:valid,.form-control.is-valid{border-color:#28a745;padding-right:calc(1.184015786em + 1.25rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2328a745%27 d=%27M2.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%27/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.2960039465em + 0.3125rem) center;background-size:calc(0.592007893em + 0.625rem) calc(0.592007893em + 0.625rem)}.was-validated .form-control:valid:focus,.form-control.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated select.form-control:valid,select.form-control.is-valid{padding-right:3.5rem !important;background-position:right 1.75rem center}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.184015786em + 1.25rem);background-position:top calc(0.2960039465em + 0.3125rem) right calc(0.2960039465em + 0.3125rem)}.was-validated .custom-select:valid,.custom-select.is-valid{border-color:#28a745;padding-right:calc(0.75em + 2.8125rem) !important;background:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e") right .875rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%2328a745%27 d=%27M2.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%27/%3e%3c/svg%3e") center right 1.875rem/calc(0.592007893em + 0.625rem) calc(0.592007893em + 0.625rem) no-repeat}.was-validated .custom-select:valid:focus,.custom-select.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated .form-check-input:valid~.form-check-label,.form-check-input.is-valid~.form-check-label{color:#28a745}.was-validated .form-check-input:valid~.valid-feedback,.was-validated .form-check-input:valid~.valid-tooltip,.form-check-input.is-valid~.valid-feedback,.form-check-input.is-valid~.valid-tooltip{display:block}.was-validated .custom-control-input:valid~.custom-control-label,.custom-control-input.is-valid~.custom-control-label{color:#28a745}.was-validated .custom-control-input:valid~.custom-control-label::before,.custom-control-input.is-valid~.custom-control-label::before{border-color:#28a745}.was-validated .custom-control-input:valid:checked~.custom-control-label::before,.custom-control-input.is-valid:checked~.custom-control-label::before{border-color:#34ce57;background-color:#34ce57}.was-validated .custom-control-input:valid:focus~.custom-control-label::before,.custom-control-input.is-valid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before{border-color:#28a745}.was-validated .custom-file-input:valid~.custom-file-label,.custom-file-input.is-valid~.custom-file-label{border-color:#28a745}.was-validated .custom-file-input:valid:focus~.custom-file-label,.custom-file-input.is-valid:focus~.custom-file-label{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:0.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;left:0;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:0.875rem;line-height:1.473684;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.form-row>.col>.invalid-tooltip,.form-row>[class*=col-]>.invalid-tooltip{left:5px}.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip,.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip{display:block}.was-validated .form-control:invalid,.form-control.is-invalid{border-color:#dc3545;padding-right:calc(1.184015786em + 1.25rem) !important;background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(0.2960039465em + 0.3125rem) center;background-size:calc(0.592007893em + 0.625rem) calc(0.592007893em + 0.625rem)}.was-validated .form-control:invalid:focus,.form-control.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated select.form-control:invalid,select.form-control.is-invalid{padding-right:3.5rem !important;background-position:right 1.75rem center}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.184015786em + 1.25rem);background-position:top calc(0.2960039465em + 0.3125rem) right calc(0.2960039465em + 0.3125rem)}.was-validated .custom-select:invalid,.custom-select.is-invalid{border-color:#dc3545;padding-right:calc(0.75em + 2.8125rem) !important;background:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e") right .875rem center/8px 10px no-repeat,#fff url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 fill=%27none%27 stroke=%27%23dc3545%27 viewBox=%270 0 12 12%27%3e%3ccircle cx=%276%27 cy=%276%27 r=%274.5%27/%3e%3cpath stroke-linejoin=%27round%27 d=%27M5.8 3.6h.4L6 6.5z%27/%3e%3ccircle cx=%276%27 cy=%278.2%27 r=%27.6%27 fill=%27%23dc3545%27 stroke=%27none%27/%3e%3c/svg%3e") center right 1.875rem/calc(0.592007893em + 0.625rem) calc(0.592007893em + 0.625rem) no-repeat}.was-validated .custom-select:invalid:focus,.custom-select.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated .form-check-input:invalid~.form-check-label,.form-check-input.is-invalid~.form-check-label{color:#dc3545}.was-validated .form-check-input:invalid~.invalid-feedback,.was-validated .form-check-input:invalid~.invalid-tooltip,.form-check-input.is-invalid~.invalid-feedback,.form-check-input.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-control-input:invalid~.custom-control-label,.custom-control-input.is-invalid~.custom-control-label{color:#dc3545}.was-validated .custom-control-input:invalid~.custom-control-label::before,.custom-control-input.is-invalid~.custom-control-label::before{border-color:#dc3545}.was-validated .custom-control-input:invalid:checked~.custom-control-label::before,.custom-control-input.is-invalid:checked~.custom-control-label::before{border-color:#e4606d;background-color:#e4606d}.was-validated .custom-control-input:invalid:focus~.custom-control-label::before,.custom-control-input.is-invalid:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before,.custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before{border-color:#dc3545}.was-validated .custom-file-input:invalid~.custom-file-label,.custom-file-input.is-invalid~.custom-file-label{border-color:#dc3545}.was-validated .custom-file-input:invalid:focus~.custom-file-label,.custom-file-input.is-invalid:focus~.custom-file-label{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-inline{display:flex;flex-flow:row wrap;align-items:center}.form-inline .form-check{width:100%}@media(min-width: 576px){.form-inline label{display:flex;align-items:center;justify-content:center;margin-bottom:0}.form-inline .form-group{display:flex;flex:0 0 auto;flex-flow:row wrap;align-items:center;margin-bottom:0}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-plaintext{display:inline-block}.form-inline .input-group,.form-inline .custom-select{width:auto}.form-inline .form-check{display:flex;align-items:center;justify-content:center;width:auto;padding-left:0}.form-inline .form-check-input{position:relative;flex-shrink:0;margin-top:0;margin-right:.25rem;margin-left:0}.form-inline .custom-control{align-items:center;justify-content:center}.form-inline .custom-control-label{margin-bottom:0}}.btn{display:inline-block;font-weight:600;color:#15132d;text-align:center;text-decoration:none;vertical-align:middle;user-select:none;background-color:transparent;border:1px solid transparent;padding:.625rem .875rem;font-size:1.125rem;line-height:1.184015786;border-radius:1.2910088796rem;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){.btn{transition:none}}.btn:hover{color:#15132d;text-decoration:none}.btn:focus,.btn.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.btn.disabled,.btn:disabled{opacity:.65}.btn:not(:disabled):not(.disabled){cursor:pointer}a.btn.disabled,fieldset:disabled a.btn{pointer-events:none}.btn-primary{color:#fff;background-color:#ff5a5f;border-color:#ff5a5f}.btn-primary:hover{color:#fff;background-color:#ff343a;border-color:#ff272e}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#ff343a;border-color:#ff272e;box-shadow:0 0 0 .2rem rgba(255,115,119,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#ff5a5f;border-color:#ff5a5f}.btn-primary:not(:disabled):not(.disabled):active,.btn-primary:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-primary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#ff272e;border-color:#ff1a21}.btn-primary:not(:disabled):not(.disabled):active:focus,.btn-primary:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-primary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,115,119,.5)}.btn-secondary{color:#212529;background-color:#5ce1e6;border-color:#5ce1e6}.btn-secondary:hover{color:#212529;background-color:#3bdbe1;border-color:#30d9df}.btn-secondary:focus,.btn-secondary.focus{color:#212529;background-color:#3bdbe1;border-color:#30d9df;box-shadow:0 0 0 .2rem rgba(83,197,202,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#212529;background-color:#5ce1e6;border-color:#5ce1e6}.btn-secondary:not(:disabled):not(.disabled):active,.btn-secondary:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-secondary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-secondary.dropdown-toggle{color:#212529;background-color:#30d9df;border-color:#25d7de}.btn-secondary:not(:disabled):not(.disabled):active:focus,.btn-secondary:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-secondary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(83,197,202,.5)}.btn-success{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#218838;border-color:#1e7e34;box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745}.btn-success:not(:disabled):not(.disabled):active,.btn-success:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-success.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430}.btn-success:not(:disabled):not(.disabled):active:focus,.btn-success:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-success.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(72,180,97,.5)}.btn-info{color:#fff;background-color:#5363d9;border-color:#5363d9}.btn-info:hover{color:#fff;background-color:#3447d2;border-color:#2d40cc}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#3447d2;border-color:#2d40cc;box-shadow:0 0 0 .2rem rgba(109,122,223,.5)}.btn-info.disabled,.btn-info:disabled{color:#fff;background-color:#5363d9;border-color:#5363d9}.btn-info:not(:disabled):not(.disabled):active,.btn-info:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-info.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-info.dropdown-toggle{color:#fff;background-color:#2d40cc;border-color:#2b3dc2}.btn-info:not(:disabled):not(.disabled):active:focus,.btn-info:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-info.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(109,122,223,.5)}.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00}.btn-warning:focus,.btn-warning.focus{color:#212529;background-color:#e0a800;border-color:#d39e00;box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-warning:not(:disabled):not(.disabled):active,.btn-warning:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-warning.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500}.btn-warning:not(:disabled):not(.disabled):active:focus,.btn-warning:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-warning.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(222,170,12,.5)}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c82333;border-color:#bd2130;box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:not(:disabled):not(.disabled):active,.btn-danger:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-danger.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d}.btn-danger:not(:disabled):not(.disabled):active:focus,.btn-danger:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-danger.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(225,83,97,.5)}.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5}.btn-light:focus,.btn-light.focus{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-light.disabled,.btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:not(:disabled):not(.disabled):active,.btn-light:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-light.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df}.btn-light:not(:disabled):not(.disabled):active:focus,.btn-light:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-light.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(216,217,219,.5)}.btn-dark{color:#fff;background-color:#15132d;border-color:#15132d}.btn-dark:hover{color:#fff;background-color:#080812;border-color:#040409}.btn-dark:focus,.btn-dark.focus{color:#fff;background-color:#080812;border-color:#040409;box-shadow:0 0 0 .2rem rgba(56,54,77,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#15132d;border-color:#15132d}.btn-dark:not(:disabled):not(.disabled):active,.btn-dark:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-dark.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#040409;border-color:#000}.btn-dark:not(:disabled):not(.disabled):active:focus,.btn-dark:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-dark.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(56,54,77,.5)}.btn-soft-4{color:#212529;background-color:#f9f7fc;border-color:#f9f7fc}.btn-soft-4:hover{color:#212529;background-color:#e4dbf2;border-color:#ddd2ee}.btn-soft-4:focus,.btn-soft-4.focus{color:#212529;background-color:#e4dbf2;border-color:#ddd2ee;box-shadow:0 0 0 .2rem rgba(217,216,220,.5)}.btn-soft-4.disabled,.btn-soft-4:disabled{color:#212529;background-color:#f9f7fc;border-color:#f9f7fc}.btn-soft-4:not(:disabled):not(.disabled):active,.btn-soft-4:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-soft-4.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-soft-4.dropdown-toggle{color:#212529;background-color:#ddd2ee;border-color:#d6c9eb}.btn-soft-4:not(:disabled):not(.disabled):active:focus,.btn-soft-4:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-soft-4.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-soft-4.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(217,216,220,.5)}.btn-outline-primary{color:#ff5a5f;border-color:#ff5a5f}.btn-outline-primary:hover{color:#fff;background-color:#ff5a5f;border-color:#ff5a5f}.btn-outline-primary:focus,.btn-outline-primary.focus{box-shadow:0 0 0 .2rem rgba(255,90,95,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#ff5a5f;background-color:transparent}.btn-outline-primary:not(:disabled):not(.disabled):active,.btn-outline-primary:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-primary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-primary.dropdown-toggle{color:#fff;background-color:#ff5a5f;border-color:#ff5a5f}.btn-outline-primary:not(:disabled):not(.disabled):active:focus,.btn-outline-primary:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-primary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-primary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,90,95,.5)}.btn-outline-secondary{color:#5ce1e6;border-color:#5ce1e6}.btn-outline-secondary:hover{color:#212529;background-color:#5ce1e6;border-color:#5ce1e6}.btn-outline-secondary:focus,.btn-outline-secondary.focus{box-shadow:0 0 0 .2rem rgba(92,225,230,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#5ce1e6;background-color:transparent}.btn-outline-secondary:not(:disabled):not(.disabled):active,.btn-outline-secondary:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-secondary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-secondary.dropdown-toggle{color:#212529;background-color:#5ce1e6;border-color:#5ce1e6}.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,.btn-outline-secondary:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-secondary.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(92,225,230,.5)}.btn-outline-success{color:#28a745;border-color:#28a745}.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:focus,.btn-outline-success.focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#28a745;background-color:transparent}.btn-outline-success:not(:disabled):not(.disabled):active,.btn-outline-success:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-success.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745}.btn-outline-success:not(:disabled):not(.disabled):active:focus,.btn-outline-success:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-success.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-success.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.btn-outline-info{color:#5363d9;border-color:#5363d9}.btn-outline-info:hover{color:#fff;background-color:#5363d9;border-color:#5363d9}.btn-outline-info:focus,.btn-outline-info.focus{box-shadow:0 0 0 .2rem rgba(83,99,217,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#5363d9;background-color:transparent}.btn-outline-info:not(:disabled):not(.disabled):active,.btn-outline-info:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-info.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-info.dropdown-toggle{color:#fff;background-color:#5363d9;border-color:#5363d9}.btn-outline-info:not(:disabled):not(.disabled):active:focus,.btn-outline-info:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-info.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-info.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(83,99,217,.5)}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:focus,.btn-outline-warning.focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-warning:not(:disabled):not(.disabled):active,.btn-outline-warning:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-warning.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107}.btn-outline-warning:not(:disabled):not(.disabled):active:focus,.btn-outline-warning:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-warning.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-warning.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:focus,.btn-outline-danger.focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-danger:not(:disabled):not(.disabled):active,.btn-outline-danger:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-danger.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-outline-danger:not(:disabled):not(.disabled):active:focus,.btn-outline-danger:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-danger.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-danger.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:focus,.btn-outline-light.focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-light:not(:disabled):not(.disabled):active,.btn-outline-light:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-light.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:not(:disabled):not(.disabled):active:focus,.btn-outline-light:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-light.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-light.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.btn-outline-dark{color:#15132d;border-color:#15132d}.btn-outline-dark:hover{color:#fff;background-color:#15132d;border-color:#15132d}.btn-outline-dark:focus,.btn-outline-dark.focus{box-shadow:0 0 0 .2rem rgba(21,19,45,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#15132d;background-color:transparent}.btn-outline-dark:not(:disabled):not(.disabled):active,.btn-outline-dark:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-dark.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-dark.dropdown-toggle{color:#fff;background-color:#15132d;border-color:#15132d}.btn-outline-dark:not(:disabled):not(.disabled):active:focus,.btn-outline-dark:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-dark.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-dark.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(21,19,45,.5)}.btn-outline-soft-4{color:#f9f7fc;border-color:#f9f7fc}.btn-outline-soft-4:hover{color:#212529;background-color:#f9f7fc;border-color:#f9f7fc}.btn-outline-soft-4:focus,.btn-outline-soft-4.focus{box-shadow:0 0 0 .2rem rgba(249,247,252,.5)}.btn-outline-soft-4.disabled,.btn-outline-soft-4:disabled{color:#f9f7fc;background-color:transparent}.btn-outline-soft-4:not(:disabled):not(.disabled):active,.btn-outline-soft-4:not(:disabled):not(.disabled).active,span.twitter-typeahead .btn-outline-soft-4.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):hover,.show>.btn-outline-soft-4.dropdown-toggle{color:#212529;background-color:#f9f7fc;border-color:#f9f7fc}.btn-outline-soft-4:not(:disabled):not(.disabled):active:focus,.btn-outline-soft-4:not(:disabled):not(.disabled).active:focus,span.twitter-typeahead .btn-outline-soft-4.tt-suggestion.tt-selectable:not(:disabled):not(.disabled):focus:hover,.show>.btn-outline-soft-4.dropdown-toggle:focus{box-shadow:0 0 0 .2rem rgba(249,247,252,.5)}.btn-link{font-weight:400;color:#ff5a5f;text-decoration:underline}.btn-link:hover{color:#ff0e15;text-decoration:underline}.btn-link:focus,.btn-link.focus{text-decoration:underline}.btn-link:disabled,.btn-link.disabled{color:#6c757d;pointer-events:none}.btn-lg,.btn-group-lg>.btn{padding:.8125rem 1rem;font-size:1.125rem;line-height:1.184015786;border-radius:1.4785088796rem}.btn-sm,.btn-group-sm>.btn{padding:.5rem .75rem;font-size:1rem;line-height:1.222222;border-radius:1.111111rem}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:.5rem}input[type=submit].btn-block,input[type=reset].btn-block,input[type=button].btn-block{width:100%}.fade{transition:opacity .15s linear}@media(prefers-reduced-motion: reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{position:relative;height:0;overflow:hidden;transition:height .35s ease}@media(prefers-reduced-motion: reduce){.collapsing{transition:none}}.collapsing.width{width:0;height:auto;transition:width .35s ease}@media(prefers-reduced-motion: reduce){.collapsing.width{transition:none}}.dropup,.dropright,.dropdown,.dropleft{position:relative}.dropdown-toggle{white-space:nowrap}.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}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu,span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .tt-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:#15132d;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu-left{right:auto;left:0}.dropdown-menu-right{right:0;left:auto}@media(min-width: 576px){.dropdown-menu-sm-left{right:auto;left:0}.dropdown-menu-sm-right{right:0;left:auto}}@media(min-width: 768px){.dropdown-menu-md-left{right:auto;left:0}.dropdown-menu-md-right{right:0;left:auto}}@media(min-width: 992px){.dropdown-menu-lg-left{right:auto;left:0}.dropdown-menu-lg-right{right:0;left:auto}}@media(min-width: 1200px){.dropdown-menu-xl-left{right:auto;left:0}.dropdown-menu-xl-right{right:0;left:auto}}@media(min-width: 1360px){.dropdown-menu-xxl-left{right:auto;left:0}.dropdown-menu-xxl-right{right:0;left:auto}}@media(min-width: 1920px){.dropdown-menu-full-left{right:auto;left:0}.dropdown-menu-full-right{right:0;left:auto}}.dropup .dropdown-menu,.dropup span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .dropup .tt-dropdown-menu,.dropup span.twitter-typeahead .tt-menu,span.twitter-typeahead .dropup .tt-menu{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.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}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-menu,.dropright span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .dropright .tt-dropdown-menu,.dropright span.twitter-typeahead .tt-menu,span.twitter-typeahead .dropright .tt-menu{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.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}.dropright .dropdown-toggle:empty::after{margin-left:0}.dropright .dropdown-toggle::after{vertical-align:0}.dropleft .dropdown-menu,.dropleft span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .dropleft .tt-dropdown-menu,.dropleft span.twitter-typeahead .tt-menu,span.twitter-typeahead .dropleft .tt-menu{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropleft .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropleft .dropdown-toggle::after{display:none}.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}.dropleft .dropdown-toggle:empty::after{margin-left:0}.dropleft .dropdown-toggle::before{vertical-align:0}.dropdown-menu[x-placement^=top],span.twitter-typeahead [x-placement^=top].tt-dropdown-menu,span.twitter-typeahead [x-placement^=top].tt-menu,.dropdown-menu[x-placement^=right],span.twitter-typeahead [x-placement^=right].tt-dropdown-menu,span.twitter-typeahead [x-placement^=right].tt-menu,.dropdown-menu[x-placement^=bottom],span.twitter-typeahead [x-placement^=bottom].tt-dropdown-menu,span.twitter-typeahead [x-placement^=bottom].tt-menu,.dropdown-menu[x-placement^=left],span.twitter-typeahead [x-placement^=left].tt-dropdown-menu,span.twitter-typeahead [x-placement^=left].tt-menu{right:auto;bottom:auto}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid #e9ecef}.dropdown-item,span.twitter-typeahead .tt-suggestion{display:block;width:100%;padding:.25rem 1.5rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:hover,span.twitter-typeahead .tt-suggestion:hover,.dropdown-item:focus,span.twitter-typeahead .tt-suggestion:focus{color:#16181b;text-decoration:none;background-color:#e9ecef}.dropdown-item.active,span.twitter-typeahead .active.tt-suggestion,span.twitter-typeahead .tt-suggestion.tt-selectable:hover,.dropdown-item:active,span.twitter-typeahead .tt-suggestion:active{color:#fff;text-decoration:none;background-color:#ff5a5f}.dropdown-item.disabled,span.twitter-typeahead .disabled.tt-suggestion,.dropdown-item:disabled,span.twitter-typeahead .tt-suggestion:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show,span.twitter-typeahead .show.tt-dropdown-menu,span.twitter-typeahead .show.tt-menu{display:block}.dropdown-header{display:block;padding:.5rem 1.5rem;margin-bottom:0;font-size:0.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1.5rem;color:#212529}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;flex:1 1 auto}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover{z-index:1}.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active,span.twitter-typeahead .btn-group>.btn.tt-suggestion.tt-selectable:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn.active,span.twitter-typeahead .btn-group-vertical>.btn.tt-suggestion.tt-selectable:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child){margin-left:-1px}.btn-group>.btn:not(:last-child):not(.dropdown-toggle),.btn-group>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:not(:first-child),.btn-group>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.65625rem;padding-left:.65625rem}.dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after,.dropright .dropdown-toggle-split::after{margin-left:0}.dropleft .dropdown-toggle-split::before{margin-right:0}.btn-sm+.dropdown-toggle-split,.btn-group-sm>.btn+.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.btn-lg+.dropdown-toggle-split,.btn-group-lg>.btn+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle),.btn-group-vertical>.btn-group:not(:last-child)>.btn{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:not(:first-child),.btn-group-vertical>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-top-right-radius:0}.btn-group-toggle>.btn,.btn-group-toggle>.btn-group>.btn{margin-bottom:0}.btn-group-toggle>.btn input[type=radio],.btn-group-toggle>.btn input[type=checkbox],.btn-group-toggle>.btn-group>.btn input[type=radio],.btn-group-toggle>.btn-group>.btn input[type=checkbox]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-control-plaintext,.input-group>.custom-select,.input-group>.custom-file{position:relative;flex:1 1 auto;width:1%;min-width:0;margin-bottom:0}.input-group>.form-control+.form-control,.input-group>.form-control+.custom-select,.input-group>.form-control+.custom-file,.input-group>.form-control-plaintext+.form-control,.input-group>.form-control-plaintext+.custom-select,.input-group>.form-control-plaintext+.custom-file,.input-group>.custom-select+.form-control,.input-group>.custom-select+.custom-select,.input-group>.custom-select+.custom-file,.input-group>.custom-file+.form-control,.input-group>.custom-file+.custom-select,.input-group>.custom-file+.custom-file{margin-left:-1px}.input-group>.form-control:focus,.input-group>.custom-select:focus,.input-group>.custom-file .custom-file-input:focus~.custom-file-label{z-index:3}.input-group>.custom-file .custom-file-input:focus{z-index:4}.input-group>.form-control:not(:first-child),.input-group>.custom-select:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-file{display:flex;align-items:center}.input-group>.custom-file:not(:last-child) .custom-file-label,.input-group>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-file:not(:first-child) .custom-file-label{border-top-left-radius:0;border-bottom-left-radius:0}.input-group:not(.has-validation)>.form-control:not(:last-child),.input-group:not(.has-validation)>.custom-select:not(:last-child),.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label,.input-group:not(.has-validation)>.custom-file:not(:last-child) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.form-control:nth-last-child(n+3),.input-group.has-validation>.custom-select:nth-last-child(n+3),.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label,.input-group.has-validation>.custom-file:nth-last-child(n+3) .custom-file-label::after{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-prepend,.input-group-append{display:flex}.input-group-prepend .btn,.input-group-append .btn{position:relative;z-index:2}.input-group-prepend .btn:focus,.input-group-append .btn:focus{z-index:3}.input-group-prepend .btn+.btn,.input-group-prepend .btn+.input-group-text,.input-group-prepend .input-group-text+.input-group-text,.input-group-prepend .input-group-text+.btn,.input-group-append .btn+.btn,.input-group-append .btn+.input-group-text,.input-group-append .input-group-text+.input-group-text,.input-group-append .input-group-text+.btn{margin-left:-1px}.input-group-prepend{margin-right:-1px}.input-group-append{margin-left:-1px}.input-group-text{display:flex;align-items:center;padding:.625rem .875rem;margin-bottom:0;font-size:1.125rem;font-weight:400;line-height:1.184015786;color:#15132d;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:1.2910088796rem}.input-group-text input[type=radio],.input-group-text input[type=checkbox]{margin-top:0}.input-group-lg>.form-control:not(textarea),.input-group-lg>.custom-select{height:calc(1.184015786em + 1.625rem + 2px)}.input-group-lg>.form-control,.input-group-lg>.custom-select,.input-group-lg>.input-group-prepend>.input-group-text,.input-group-lg>.input-group-append>.input-group-text,.input-group-lg>.input-group-prepend>.btn,.input-group-lg>.input-group-append>.btn{padding:.8125rem 1rem;font-size:1.125rem;line-height:1.184015786;border-radius:1.4785088796rem}.input-group-sm>.form-control:not(textarea),.input-group-sm>.custom-select{height:calc(1.222222em + 1rem + 2px)}.input-group-sm>.form-control,.input-group-sm>.custom-select,.input-group-sm>.input-group-prepend>.input-group-text,.input-group-sm>.input-group-append>.input-group-text,.input-group-sm>.input-group-prepend>.btn,.input-group-sm>.input-group-append>.btn{padding:.5rem .75rem;font-size:1rem;line-height:1.222222;border-radius:1.111111rem}.input-group-lg>.custom-select,.input-group-sm>.custom-select{padding-right:1.875rem}.input-group>.input-group-prepend>.btn,.input-group>.input-group-prepend>.input-group-text,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.btn,.input-group:not(.has-validation)>.input-group-append:not(:last-child)>.input-group-text,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.btn,.input-group.has-validation>.input-group-append:nth-last-child(n+3)>.input-group-text,.input-group>.input-group-append:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group>.input-group-append:last-child>.input-group-text:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn,.input-group>.input-group-append>.input-group-text,.input-group>.input-group-prepend:not(:first-child)>.btn,.input-group>.input-group-prepend:not(:first-child)>.input-group-text,.input-group>.input-group-prepend:first-child>.btn:not(:first-child),.input-group>.input-group-prepend:first-child>.input-group-text:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.custom-control{position:relative;z-index:1;display:block;min-height:1.473684rem;padding-left:1.5rem;print-color-adjust:exact}.custom-control-inline{display:inline-flex;margin-right:1rem}.custom-control-input{position:absolute;left:0;z-index:-1;width:1rem;height:1.236842rem;opacity:0}.custom-control-input:checked~.custom-control-label::before{color:#fff;border-color:#ff5a5f;background-color:#ff5a5f}.custom-control-input:focus~.custom-control-label::before{box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.custom-control-input:focus:not(:checked)~.custom-control-label::before{border-color:#ffdadb}.custom-control-input:not(:disabled):active~.custom-control-label::before{color:#fff;background-color:#fff;border-color:#fff}.custom-control-input[disabled]~.custom-control-label,.custom-control-input:disabled~.custom-control-label{color:#6c757d}.custom-control-input[disabled]~.custom-control-label::before,.custom-control-input:disabled~.custom-control-label::before{background-color:#e9ecef}.custom-control-label{position:relative;margin-bottom:0;vertical-align:top}.custom-control-label::before{position:absolute;top:.236842rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:1px solid #adb5bd}.custom-control-label::after{position:absolute;top:.236842rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:50%/50% 50% no-repeat}.custom-checkbox .custom-control-label::before{border-radius:.25rem}.custom-checkbox .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath fill=%27%23fff%27 d=%27M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z%27/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before{border-color:#ff5a5f;background-color:#ff5a5f}.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%274%27 viewBox=%270 0 4 4%27%3e%3cpath stroke=%27%23fff%27 d=%27M0 2h4%27/%3e%3c/svg%3e")}.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(255,90,95,.5)}.custom-checkbox .custom-control-input:disabled:indeterminate~.custom-control-label::before{background-color:rgba(255,90,95,.5)}.custom-radio .custom-control-label::before{border-radius:50%}.custom-radio .custom-control-input:checked~.custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2712%27 height=%2712%27 viewBox=%27-4 -4 8 8%27%3e%3ccircle r=%273%27 fill=%27%23fff%27/%3e%3c/svg%3e")}.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(255,90,95,.5)}.custom-switch{padding-left:2.25rem}.custom-switch .custom-control-label::before{left:-2.25rem;width:1.75rem;pointer-events:all;border-radius:.5rem}.custom-switch .custom-control-label::after{top:calc(0.236842rem + 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){.custom-switch .custom-control-label::after{transition:none}}.custom-switch .custom-control-input:checked~.custom-control-label::after{background-color:#fff;transform:translateX(0.75rem)}.custom-switch .custom-control-input:disabled:checked~.custom-control-label::before{background-color:rgba(255,90,95,.5)}.custom-select{display:inline-block;width:100%;height:calc(1.184015786em + 1.25rem + 2px);padding:.625rem 1.875rem .625rem .875rem;font-size:1.125rem;font-weight:400;line-height:1.184015786;color:#15132d;vertical-align:middle;background:#fff url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%274%27 height=%275%27 viewBox=%270 0 4 5%27%3e%3cpath fill=%27%23343a40%27 d=%27M2 0L0 2h4zm0 5L0 3h4z%27/%3e%3c/svg%3e") right .875rem center/8px 10px no-repeat;border:1px solid #ced4da;border-radius:.25rem;appearance:none}.custom-select:focus{border-color:#ffdadb;outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.custom-select:focus::-ms-value{color:#15132d;background-color:#fff}.custom-select[multiple],.custom-select[size]:not([size="1"]){height:auto;padding-right:.875rem;background-image:none}.custom-select:disabled{color:#6c757d;background-color:#e9ecef}.custom-select::-ms-expand{display:none}.custom-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #15132d}.custom-select-sm{height:calc(1.222222em + 1rem + 2px);padding-top:.5rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem}.custom-select-lg{height:calc(1.184015786em + 1.625rem + 2px);padding-top:.8125rem;padding-bottom:.8125rem;padding-left:1rem;font-size:1.125rem}.custom-file{position:relative;display:inline-block;width:100%;height:calc(1.184015786em + 1.25rem + 2px);margin-bottom:0}.custom-file-input{position:relative;z-index:2;width:100%;height:calc(1.184015786em + 1.25rem + 2px);margin:0;overflow:hidden;opacity:0}.custom-file-input:focus~.custom-file-label{border-color:#ffdadb;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.custom-file-input[disabled]~.custom-file-label,.custom-file-input:disabled~.custom-file-label{background-color:#e9ecef}.custom-file-input:lang(en)~.custom-file-label::after{content:"Browse"}.custom-file-input~.custom-file-label[data-browse]::after{content:attr(data-browse)}.custom-file-label{position:absolute;top:0;right:0;left:0;z-index:1;height:calc(1.184015786em + 1.25rem + 2px);padding:.625rem .875rem;overflow:hidden;font-weight:400;line-height:1.184015786;color:#15132d;background-color:#fff;border:1px solid #ced4da;border-radius:1.2910088796rem}.custom-file-label::after{position:absolute;top:0;right:0;bottom:0;z-index:3;display:block;height:calc(1.184015786em + 1.25rem);padding:.625rem .875rem;line-height:1.184015786;color:#15132d;content:"Browse";background-color:#e9ecef;border-left:inherit;border-radius:0 1.2910088796rem 1.2910088796rem 0}.custom-range{width:100%;height:1.4rem;padding:0;background-color:transparent;appearance:none}.custom-range:focus{outline:0}.custom-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(255,90,95,.25)}.custom-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(255,90,95,.25)}.custom-range:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem rgba(255,90,95,.25)}.custom-range::-moz-focus-outer{border:0}.custom-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-0.25rem;background-color:#ff5a5f;border:0;border-radius:1rem;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){.custom-range::-webkit-slider-thumb{transition:none}}.custom-range::-webkit-slider-thumb:active{background-color:#fff}.custom-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#ff5a5f;border:0;border-radius:1rem;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){.custom-range::-moz-range-thumb{transition:none}}.custom-range::-moz-range-thumb:active{background-color:#fff}.custom-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.custom-range::-ms-thumb{width:1rem;height:1rem;margin-top:0;margin-right:.2rem;margin-left:.2rem;background-color:#ff5a5f;border:0;border-radius:1rem;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){.custom-range::-ms-thumb{transition:none}}.custom-range::-ms-thumb:active{background-color:#fff}.custom-range::-ms-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:transparent;border-color:transparent;border-width:.5rem}.custom-range::-ms-fill-lower{background-color:#dee2e6;border-radius:1rem}.custom-range::-ms-fill-upper{margin-right:15px;background-color:#dee2e6;border-radius:1rem}.custom-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.custom-range:disabled::-webkit-slider-runnable-track{cursor:default}.custom-range:disabled::-moz-range-thumb{background-color:#adb5bd}.custom-range:disabled::-moz-range-track{cursor:default}.custom-range:disabled::-ms-thumb{background-color:#adb5bd}.custom-control-label::before,.custom-file-label,.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){.custom-control-label::before,.custom-file-label,.custom-select{transition:none}}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;text-decoration:none}.nav-link:hover,.nav-link:focus{text-decoration:none}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background-color:transparent;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:hover,.nav-tabs .nav-link:focus{isolation:isolate;border-color:#e9ecef #e9ecef #dee2e6}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-link.active,.nav-tabs span.twitter-typeahead .nav-link.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .nav-tabs .nav-link.tt-suggestion.tt-selectable:hover,.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu,.nav-tabs span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .nav-tabs .tt-dropdown-menu,.nav-tabs span.twitter-typeahead .tt-menu,span.twitter-typeahead .nav-tabs .tt-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:none;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills span.twitter-typeahead .nav-link.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .nav-pills .nav-link.tt-suggestion.tt-selectable:hover,.nav-pills .show>.nav-link{color:#fff;background-color:#ff5a5f}.nav-fill>.nav-link,.nav-fill .nav-item{flex:1 1 auto;text-align:center}.nav-justified>.nav-link,.nav-justified .nav-item{flex-basis:0;flex-grow:1;text-align:center}.tab-content>.tab-pane{display:none}.tab-content>.active,span.twitter-typeahead .tab-content>.tt-suggestion.tt-selectable:hover{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding:.5rem 1rem}.navbar .container,.navbar .container-fluid,.navbar .container-sm,.navbar .container-md,.navbar .container-lg,.navbar .container-xl,.navbar .container-xxl{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}.navbar-brand{display:inline-block;padding-top:.3157895rem;padding-bottom:.3157895rem;margin-right:1rem;font-size:1.25rem;line-height:inherit;white-space:nowrap}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu,.navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-nav .tt-dropdown-menu,.navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-nav .tt-menu{position:static;float:none}.navbar-text{display:inline-block;padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:1.2910088796rem}.navbar-toggler:hover,.navbar-toggler:focus{text-decoration:none}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;content:"";background:50%/100% 100% no-repeat}.navbar-nav-scroll{max-height:75vh;overflow-y:auto}@media(max-width: 575.98px){.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl,.navbar-expand-sm>.container-xxl{padding-right:0;padding-left:0}}@media(min-width: 576px){.navbar-expand-sm{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu,.navbar-expand-sm .navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-expand-sm .navbar-nav .tt-dropdown-menu,.navbar-expand-sm .navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-expand-sm .navbar-nav .tt-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm>.container,.navbar-expand-sm>.container-fluid,.navbar-expand-sm>.container-sm,.navbar-expand-sm>.container-md,.navbar-expand-sm>.container-lg,.navbar-expand-sm>.container-xl,.navbar-expand-sm>.container-xxl{flex-wrap:nowrap}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}}@media(max-width: 767.98px){.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl,.navbar-expand-md>.container-xxl{padding-right:0;padding-left:0}}@media(min-width: 768px){.navbar-expand-md{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu,.navbar-expand-md .navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-expand-md .navbar-nav .tt-dropdown-menu,.navbar-expand-md .navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-expand-md .navbar-nav .tt-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md>.container,.navbar-expand-md>.container-fluid,.navbar-expand-md>.container-sm,.navbar-expand-md>.container-md,.navbar-expand-md>.container-lg,.navbar-expand-md>.container-xl,.navbar-expand-md>.container-xxl{flex-wrap:nowrap}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}}@media(max-width: 991.98px){.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl,.navbar-expand-lg>.container-xxl{padding-right:0;padding-left:0}}@media(min-width: 992px){.navbar-expand-lg{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu,.navbar-expand-lg .navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-expand-lg .navbar-nav .tt-dropdown-menu,.navbar-expand-lg .navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-expand-lg .navbar-nav .tt-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg>.container,.navbar-expand-lg>.container-fluid,.navbar-expand-lg>.container-sm,.navbar-expand-lg>.container-md,.navbar-expand-lg>.container-lg,.navbar-expand-lg>.container-xl,.navbar-expand-lg>.container-xxl{flex-wrap:nowrap}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}}@media(max-width: 1199.98px){.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl,.navbar-expand-xl>.container-xxl{padding-right:0;padding-left:0}}@media(min-width: 1200px){.navbar-expand-xl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu,.navbar-expand-xl .navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-expand-xl .navbar-nav .tt-dropdown-menu,.navbar-expand-xl .navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-expand-xl .navbar-nav .tt-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl>.container,.navbar-expand-xl>.container-fluid,.navbar-expand-xl>.container-sm,.navbar-expand-xl>.container-md,.navbar-expand-xl>.container-lg,.navbar-expand-xl>.container-xl,.navbar-expand-xl>.container-xxl{flex-wrap:nowrap}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}}@media(max-width: 1359.98px){.navbar-expand-xxl>.container,.navbar-expand-xxl>.container-fluid,.navbar-expand-xxl>.container-sm,.navbar-expand-xxl>.container-md,.navbar-expand-xxl>.container-lg,.navbar-expand-xxl>.container-xl,.navbar-expand-xxl>.container-xxl{padding-right:0;padding-left:0}}@media(min-width: 1360px){.navbar-expand-xxl{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu,.navbar-expand-xxl .navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-expand-xxl .navbar-nav .tt-dropdown-menu,.navbar-expand-xxl .navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-expand-xxl .navbar-nav .tt-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl>.container,.navbar-expand-xxl>.container-fluid,.navbar-expand-xxl>.container-sm,.navbar-expand-xxl>.container-md,.navbar-expand-xxl>.container-lg,.navbar-expand-xxl>.container-xl,.navbar-expand-xxl>.container-xxl{flex-wrap:nowrap}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}}@media(max-width: 1919.98px){.navbar-expand-full>.container,.navbar-expand-full>.container-fluid,.navbar-expand-full>.container-sm,.navbar-expand-full>.container-md,.navbar-expand-full>.container-lg,.navbar-expand-full>.container-xl,.navbar-expand-full>.container-xxl{padding-right:0;padding-left:0}}@media(min-width: 1920px){.navbar-expand-full{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand-full .navbar-nav{flex-direction:row}.navbar-expand-full .navbar-nav .dropdown-menu,.navbar-expand-full .navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-expand-full .navbar-nav .tt-dropdown-menu,.navbar-expand-full .navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-expand-full .navbar-nav .tt-menu{position:absolute}.navbar-expand-full .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-full>.container,.navbar-expand-full>.container-fluid,.navbar-expand-full>.container-sm,.navbar-expand-full>.container-md,.navbar-expand-full>.container-lg,.navbar-expand-full>.container-xl,.navbar-expand-full>.container-xxl{flex-wrap:nowrap}.navbar-expand-full .navbar-nav-scroll{overflow:visible}.navbar-expand-full .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand-full .navbar-toggler{display:none}}.navbar-expand{flex-flow:row nowrap;justify-content:flex-start}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl,.navbar-expand>.container-xxl{padding-right:0;padding-left:0}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu,.navbar-expand .navbar-nav span.twitter-typeahead .tt-dropdown-menu,span.twitter-typeahead .navbar-expand .navbar-nav .tt-dropdown-menu,.navbar-expand .navbar-nav span.twitter-typeahead .tt-menu,span.twitter-typeahead .navbar-expand .navbar-nav .tt-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand>.container,.navbar-expand>.container-fluid,.navbar-expand>.container-sm,.navbar-expand>.container-md,.navbar-expand>.container-lg,.navbar-expand>.container-xl,.navbar-expand>.container-xxl{flex-wrap:nowrap}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex !important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:hover,.navbar-light .navbar-brand:focus{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.5)}.navbar-light .navbar-nav .nav-link:hover,.navbar-light .navbar-nav .nav-link:focus{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .show>.nav-link,.navbar-light .navbar-nav .active>.nav-link,.navbar-light .navbar-nav span.twitter-typeahead .tt-suggestion.tt-selectable:hover>.nav-link,span.twitter-typeahead .navbar-light .navbar-nav .tt-suggestion.tt-selectable:hover>.nav-link,.navbar-light .navbar-nav .nav-link.show,.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav span.twitter-typeahead .nav-link.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .navbar-light .navbar-nav .nav-link.tt-suggestion.tt-selectable:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.5);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%280, 0, 0, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.5)}.navbar-light .navbar-text a{color:rgba(0,0,0,.9)}.navbar-light .navbar-text a:hover,.navbar-light .navbar-text a:focus{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:hover,.navbar-dark .navbar-brand:focus{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.5)}.navbar-dark .navbar-nav .nav-link:hover,.navbar-dark .navbar-nav .nav-link:focus{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .show>.nav-link,.navbar-dark .navbar-nav .active>.nav-link,.navbar-dark .navbar-nav span.twitter-typeahead .tt-suggestion.tt-selectable:hover>.nav-link,span.twitter-typeahead .navbar-dark .navbar-nav .tt-suggestion.tt-selectable:hover>.nav-link,.navbar-dark .navbar-nav .nav-link.show,.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav span.twitter-typeahead .nav-link.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .navbar-dark .navbar-nav .nav-link.tt-suggestion.tt-selectable:hover{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.5);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2730%27 height=%2730%27 viewBox=%270 0 30 30%27%3e%3cpath stroke=%27rgba%28255, 255, 255, 0.5%29%27 stroke-linecap=%27round%27 stroke-miterlimit=%2710%27 stroke-width=%272%27 d=%27M4 7h22M4 15h22M4 23h22%27/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.5)}.navbar-dark .navbar-text a{color:#fff}.navbar-dark .navbar-text a:hover,.navbar-dark .navbar-text a:focus{color:#fff}.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,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;min-height:1px;padding:1.25rem}.card-title{margin-bottom:.75rem}.card-subtitle{margin-top:-0.375rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link:hover{text-decoration:none}.card-link+.card-link{margin-left:1.25rem}.card-header{padding:.75rem 1.25rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0}.card-footer{padding:.75rem 1.25rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(0.25rem - 1px) calc(0.25rem - 1px)}.card-header-tabs{margin-right:-0.625rem;margin-bottom:-0.75rem;margin-left:-0.625rem;border-bottom:0}.card-header-pills{margin-right:-0.625rem;margin-left:-0.625rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1.25rem;border-radius:calc(0.25rem - 1px)}.card-img,.card-img-top,.card-img-bottom{flex-shrink:0;width:100%}.card-img,.card-img-top{border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-deck .card{margin-bottom:15px}@media(min-width: 576px){.card-deck{display:flex;flex-flow:row wrap;margin-right:-15px;margin-left:-15px}.card-deck .card{flex:1 0 0%;margin-right:15px;margin-bottom:0;margin-left:15px}}.card-group>.card{margin-bottom:15px}@media(min-width: 576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-img-top,.card-group>.card:not(:last-child) .card-header{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-img-bottom,.card-group>.card:not(:last-child) .card-footer{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-img-top,.card-group>.card:not(:first-child) .card-header{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-img-bottom,.card-group>.card:not(:first-child) .card-footer{border-bottom-left-radius:0}}.card-columns .card{margin-bottom:.75rem}@media(min-width: 576px){.card-columns{column-count:3;column-gap:1.25rem;orphans:1;widows:1}.card-columns .card{display:inline-block;width:100%}}.accordion{overflow-anchor:none}.accordion>.card{overflow:hidden}.accordion>.card:not(:last-of-type){border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.accordion>.card:not(:first-of-type){border-top-left-radius:0;border-top-right-radius:0}.accordion>.card>.card-header{border-radius:0;margin-bottom:-1px}.breadcrumb{display:flex;flex-wrap:wrap;padding:.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:.25rem}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:"/"}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:underline}.breadcrumb-item+.breadcrumb-item:hover::before{text-decoration:none}.breadcrumb-item.active,span.twitter-typeahead .breadcrumb-item.tt-suggestion.tt-selectable:hover{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none;border-radius:.25rem}.page-link{position:relative;display:block;padding:.5rem .75rem;margin-left:-1px;line-height:1.25;color:#ff5a5f;text-decoration:none;background-color:#fff;border:1px solid #dee2e6}.page-link:hover{z-index:2;color:#ff0e15;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.page-item:first-child .page-link{margin-left:0;border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.page-item.active .page-link,span.twitter-typeahead .page-item.tt-suggestion.tt-selectable:hover .page-link{z-index:3;color:#fff;background-color:#ff5a5f;border-color:#ff5a5f}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem;line-height:1.5}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.75rem;border-bottom-left-radius:.75rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.75rem;border-bottom-right-radius:.75rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:0.875rem;line-height:1.5}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.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){.badge{transition:none}}a.badge:hover,a.badge:focus{text-decoration:none}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.badge-pill{padding-right:.6em;padding-left:.6em;border-radius:10rem}.badge-primary{color:#fff;background-color:#ff5a5f}a.badge-primary:hover,a.badge-primary:focus{color:#fff;background-color:#ff272e}a.badge-primary:focus,a.badge-primary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.5)}.badge-secondary{color:#212529;background-color:#5ce1e6}a.badge-secondary:hover,a.badge-secondary:focus{color:#212529;background-color:#30d9df}a.badge-secondary:focus,a.badge-secondary.focus{outline:0;box-shadow:0 0 0 .2rem rgba(92,225,230,.5)}.badge-success{color:#fff;background-color:#28a745}a.badge-success:hover,a.badge-success:focus{color:#fff;background-color:#1e7e34}a.badge-success:focus,a.badge-success.focus{outline:0;box-shadow:0 0 0 .2rem rgba(40,167,69,.5)}.badge-info{color:#fff;background-color:#5363d9}a.badge-info:hover,a.badge-info:focus{color:#fff;background-color:#2d40cc}a.badge-info:focus,a.badge-info.focus{outline:0;box-shadow:0 0 0 .2rem rgba(83,99,217,.5)}.badge-warning{color:#212529;background-color:#ffc107}a.badge-warning:hover,a.badge-warning:focus{color:#212529;background-color:#d39e00}a.badge-warning:focus,a.badge-warning.focus{outline:0;box-shadow:0 0 0 .2rem rgba(255,193,7,.5)}.badge-danger{color:#fff;background-color:#dc3545}a.badge-danger:hover,a.badge-danger:focus{color:#fff;background-color:#bd2130}a.badge-danger:focus,a.badge-danger.focus{outline:0;box-shadow:0 0 0 .2rem rgba(220,53,69,.5)}.badge-light{color:#212529;background-color:#f8f9fa}a.badge-light:hover,a.badge-light:focus{color:#212529;background-color:#dae0e5}a.badge-light:focus,a.badge-light.focus{outline:0;box-shadow:0 0 0 .2rem rgba(248,249,250,.5)}.badge-dark{color:#fff;background-color:#15132d}a.badge-dark:hover,a.badge-dark:focus{color:#fff;background-color:#040409}a.badge-dark:focus,a.badge-dark.focus{outline:0;box-shadow:0 0 0 .2rem rgba(21,19,45,.5)}.badge-soft-4{color:#212529;background-color:#f9f7fc}a.badge-soft-4:hover,a.badge-soft-4:focus{color:#212529;background-color:#ddd2ee}a.badge-soft-4:focus,a.badge-soft-4.focus{outline:0;box-shadow:0 0 0 .2rem rgba(249,247,252,.5)}.jumbotron{padding:2rem 1rem;margin-bottom:2rem;background-color:#e9ecef;border-radius:.75rem}@media(min-width: 576px){.jumbotron{padding:4rem 2rem}}.jumbotron-fluid{padding-right:0;padding-left:0;border-radius:0}.alert,.errors{position:relative;padding:.75rem 1.25rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:4rem}.alert-dismissible .close{position:absolute;top:0;right:0;z-index:2;padding:.75rem 1.25rem;color:inherit}.alert-primary{color:#852f31;background-color:#ffdedf;border-color:#ffd1d2}.alert-primary hr{border-top-color:#ffb8b9}.alert-primary .alert-link{color:#5f2223}.alert-secondary{color:#307578;background-color:#def9fa;border-color:#d1f7f8}.alert-secondary hr{border-top-color:#bbf3f5}.alert-secondary .alert-link{color:#215154}.alert-success{color:#155724;background-color:#d4edda;border-color:#c3e6cb}.alert-success hr{border-top-color:#b1dfbb}.alert-success .alert-link{color:#0b2e13}.alert-info{color:#2b3371;background-color:#dde0f7;border-color:#cfd3f4}.alert-info hr{border-top-color:#bac0ef}.alert-info .alert-link{color:#1d224c}.alert-warning{color:#856404;background-color:#fff3cd;border-color:#ffeeba}.alert-warning hr{border-top-color:#ffe8a1}.alert-warning .alert-link{color:#533f03}.alert-danger,.errors{color:#721c24;background-color:#f8d7da;border-color:#f5c6cb}.alert-danger hr,.errors hr{border-top-color:#f1b0b7}.alert-danger .alert-link,.errors .alert-link{color:#491217}.alert-light{color:#818182;background-color:#fefefe;border-color:#fdfdfe}.alert-light hr{border-top-color:#ececf6}.alert-light .alert-link{color:#686868}.alert-dark{color:#0b0a17;background-color:#d0d0d5;border-color:#bdbdc4}.alert-dark hr{border-top-color:#b0b0b8}.alert-dark .alert-link{color:#000}.alert-soft-4{color:#818083;background-color:#fefdfe;border-color:#fdfdfe}.alert-soft-4 hr{border-top-color:#ececf6}.alert-soft-4 .alert-link{color:#686769}@keyframes progress-bar-stripes{from{background-position:1rem 0}to{background-position:0 0}}.progress{display:flex;height:1rem;overflow:hidden;line-height:0;font-size:0.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#ff5a5f;transition:width .6s ease}@media(prefers-reduced-motion: reduce){.progress-bar{transition:none}}.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}.progress-bar-animated{animation:1s linear infinite progress-bar-stripes}@media(prefers-reduced-motion: reduce){.progress-bar-animated{animation:none}}.media{display:flex;align-items:flex-start}.media-body{flex:1}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:hover,.list-group-item-action:focus{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#15132d;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.75rem 1.25rem;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active,span.twitter-typeahead .list-group-item.tt-suggestion.tt-selectable:hover{z-index:2;color:#fff;background-color:#ff5a5f;border-color:#ff5a5f}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active,span.twitter-typeahead .list-group-horizontal>.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-horizontal>.list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-left:-1px;border-left-width:1px}@media(min-width: 576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active,span.twitter-typeahead .list-group-horizontal-sm>.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-horizontal-sm>.list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-left:-1px;border-left-width:1px}}@media(min-width: 768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active,span.twitter-typeahead .list-group-horizontal-md>.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-horizontal-md>.list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-left:-1px;border-left-width:1px}}@media(min-width: 992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active,span.twitter-typeahead .list-group-horizontal-lg>.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-horizontal-lg>.list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-left:-1px;border-left-width:1px}}@media(min-width: 1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active,span.twitter-typeahead .list-group-horizontal-xl>.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-horizontal-xl>.list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-left:-1px;border-left-width:1px}}@media(min-width: 1360px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active,span.twitter-typeahead .list-group-horizontal-xxl>.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-horizontal-xxl>.list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-left:-1px;border-left-width:1px}}@media(min-width: 1920px){.list-group-horizontal-full{flex-direction:row}.list-group-horizontal-full>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-full>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-full>.list-group-item.active,span.twitter-typeahead .list-group-horizontal-full>.list-group-item.tt-suggestion.tt-selectable:hover{margin-top:0}.list-group-horizontal-full>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-full>.list-group-item+.list-group-item.active,span.twitter-typeahead .list-group-horizontal-full>.list-group-item+.list-group-item.tt-suggestion.tt-selectable:hover{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#852f31;background-color:#ffd1d2}.list-group-item-primary.list-group-item-action:hover,.list-group-item-primary.list-group-item-action:focus{color:#852f31;background-color:#ffb8b9}.list-group-item-primary.list-group-item-action.active,span.twitter-typeahead .list-group-item-primary.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#852f31;border-color:#852f31}.list-group-item-secondary{color:#307578;background-color:#d1f7f8}.list-group-item-secondary.list-group-item-action:hover,.list-group-item-secondary.list-group-item-action:focus{color:#307578;background-color:#bbf3f5}.list-group-item-secondary.list-group-item-action.active,span.twitter-typeahead .list-group-item-secondary.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#307578;border-color:#307578}.list-group-item-success{color:#155724;background-color:#c3e6cb}.list-group-item-success.list-group-item-action:hover,.list-group-item-success.list-group-item-action:focus{color:#155724;background-color:#b1dfbb}.list-group-item-success.list-group-item-action.active,span.twitter-typeahead .list-group-item-success.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#155724;border-color:#155724}.list-group-item-info{color:#2b3371;background-color:#cfd3f4}.list-group-item-info.list-group-item-action:hover,.list-group-item-info.list-group-item-action:focus{color:#2b3371;background-color:#bac0ef}.list-group-item-info.list-group-item-action.active,span.twitter-typeahead .list-group-item-info.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#2b3371;border-color:#2b3371}.list-group-item-warning{color:#856404;background-color:#ffeeba}.list-group-item-warning.list-group-item-action:hover,.list-group-item-warning.list-group-item-action:focus{color:#856404;background-color:#ffe8a1}.list-group-item-warning.list-group-item-action.active,span.twitter-typeahead .list-group-item-warning.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#856404;border-color:#856404}.list-group-item-danger{color:#721c24;background-color:#f5c6cb}.list-group-item-danger.list-group-item-action:hover,.list-group-item-danger.list-group-item-action:focus{color:#721c24;background-color:#f1b0b7}.list-group-item-danger.list-group-item-action.active,span.twitter-typeahead .list-group-item-danger.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#721c24;border-color:#721c24}.list-group-item-light{color:#818182;background-color:#fdfdfe}.list-group-item-light.list-group-item-action:hover,.list-group-item-light.list-group-item-action:focus{color:#818182;background-color:#ececf6}.list-group-item-light.list-group-item-action.active,span.twitter-typeahead .list-group-item-light.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#818182;border-color:#818182}.list-group-item-dark{color:#0b0a17;background-color:#bdbdc4}.list-group-item-dark.list-group-item-action:hover,.list-group-item-dark.list-group-item-action:focus{color:#0b0a17;background-color:#b0b0b8}.list-group-item-dark.list-group-item-action.active,span.twitter-typeahead .list-group-item-dark.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#0b0a17;border-color:#0b0a17}.list-group-item-soft-4{color:#818083;background-color:#fdfdfe}.list-group-item-soft-4.list-group-item-action:hover,.list-group-item-soft-4.list-group-item-action:focus{color:#818083;background-color:#ececf6}.list-group-item-soft-4.list-group-item-action.active,span.twitter-typeahead .list-group-item-soft-4.list-group-item-action.tt-suggestion.tt-selectable:hover{color:#fff;background-color:#818083;border-color:#818083}.close{float:right;font-size:1.5rem;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.5}.close:hover{color:#000;text-decoration:none}.close:not(:disabled):not(.disabled):hover,.close:not(:disabled):not(.disabled):focus{opacity:.75}button.close{padding:0;background-color:transparent;border:0}a.close.disabled{pointer-events:none}.toast{flex-basis:350px;max-width:350px;font-size:0.875rem;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .25rem .75rem rgba(0,0,0,.1);opacity:0;border-radius:.25rem}.toast:not(:last-child){margin-bottom:.75rem}.toast.showing{opacity:1}.toast.show{display:block;opacity:1}.toast.hide{display:none}.toast-header{display:flex;align-items:center;padding:.25rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(0.25rem - 1px);border-top-right-radius:calc(0.25rem - 1px)}.toast-body{padding:.75rem}.modal-open{overflow:hidden}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0, -50px)}@media(prefers-reduced-motion: reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{display:flex;max-height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden}.modal-dialog-scrollable .modal-header,.modal-dialog-scrollable .modal-footer{flex-shrink:0}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);height:min-content;content:""}.modal-dialog-centered.modal-dialog-scrollable{flex-direction:column;justify-content:center;height:100%}.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none}.modal-dialog-centered.modal-dialog-scrollable::before{content:none}.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,.2);border-radius:.75rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;align-items:flex-start;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(0.75rem - 1px);border-top-right-radius:calc(0.75rem - 1px)}.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto}.modal-title{margin-bottom:0;line-height:1.473684}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(0.75rem - 1px);border-bottom-left-radius:calc(0.75rem - 1px)}.modal-footer>*{margin:.25rem}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width: 576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{max-height:calc(100% - 3.5rem)}.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-dialog-centered::before{height:calc(100vh - 3.5rem);height:min-content}.modal-sm{max-width:300px}}@media(min-width: 992px){.modal-lg,.modal-xl{max-width:800px}}@media(min-width: 1200px){.modal-xl{max-width:1140px}}.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:"Aspekta",sans-serif;font-style:normal;font-weight:400;line-height:1.473684;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-top,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top],.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top],.bs-tooltip-auto[x-placement^=top]{padding:.4rem 0}.bs-tooltip-top .arrow,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow,.bs-tooltip-auto[x-placement^=top] .arrow{bottom:0}.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow::before,.bs-tooltip-auto[x-placement^=top] .arrow::before{top:0;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-right,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right],.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right],.bs-tooltip-auto[x-placement^=right]{padding:0 .4rem}.bs-tooltip-right .arrow,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow,.bs-tooltip-auto[x-placement^=right] .arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before,.bs-tooltip-auto[x-placement^=right] .arrow::before{right:0;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-bottom,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom],.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom],.bs-tooltip-auto[x-placement^=bottom]{padding:.4rem 0}.bs-tooltip-bottom .arrow,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow,.bs-tooltip-auto[x-placement^=bottom] .arrow{top:0}.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before,.bs-tooltip-auto[x-placement^=bottom] .arrow::before{bottom:0;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-left,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left],.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left],.bs-tooltip-auto[x-placement^=left]{padding:0 .4rem}.bs-tooltip-left .arrow,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow,.bs-tooltip-auto[x-placement^=left] .arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before,.bs-tooltip-auto[x-placement^=left] .arrow::before{left:0;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:"Aspekta",sans-serif;font-style:normal;font-weight:400;line-height:1.473684;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;white-space:normal;word-spacing:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.75rem}.popover .arrow{position:absolute;display:block;width:1rem;height:.5rem;margin:0 .75rem}.popover .arrow::before,.popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-top,.b-popover-soft-4.bs-popover-auto[x-placement^=top],.b-popover-dark.bs-popover-auto[x-placement^=top],.b-popover-light.bs-popover-auto[x-placement^=top],.b-popover-danger.bs-popover-auto[x-placement^=top],.b-popover-warning.bs-popover-auto[x-placement^=top],.b-popover-info.bs-popover-auto[x-placement^=top],.b-popover-success.bs-popover-auto[x-placement^=top],.b-popover-secondary.bs-popover-auto[x-placement^=top],.b-popover-primary.bs-popover-auto[x-placement^=top],.bs-popover-auto[x-placement^=top]{margin-bottom:.5rem}.bs-popover-top>.arrow,.bs-popover-auto[x-placement^=top]>.arrow{bottom:calc(-0.5rem - 1px)}.bs-popover-top>.arrow::before,.bs-popover-auto[x-placement^=top]>.arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-top>.arrow::after,.bs-popover-auto[x-placement^=top]>.arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-right,.b-popover-soft-4.bs-popover-auto[x-placement^=right],.b-popover-dark.bs-popover-auto[x-placement^=right],.b-popover-light.bs-popover-auto[x-placement^=right],.b-popover-danger.bs-popover-auto[x-placement^=right],.b-popover-warning.bs-popover-auto[x-placement^=right],.b-popover-info.bs-popover-auto[x-placement^=right],.b-popover-success.bs-popover-auto[x-placement^=right],.b-popover-secondary.bs-popover-auto[x-placement^=right],.b-popover-primary.bs-popover-auto[x-placement^=right],.bs-popover-auto[x-placement^=right]{margin-left:.5rem}.bs-popover-right>.arrow,.bs-popover-auto[x-placement^=right]>.arrow{left:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.75rem 0}.bs-popover-right>.arrow::before,.bs-popover-auto[x-placement^=right]>.arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-right>.arrow::after,.bs-popover-auto[x-placement^=right]>.arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-bottom,.b-popover-soft-4.bs-popover-auto[x-placement^=bottom],.b-popover-dark.bs-popover-auto[x-placement^=bottom],.b-popover-light.bs-popover-auto[x-placement^=bottom],.b-popover-danger.bs-popover-auto[x-placement^=bottom],.b-popover-warning.bs-popover-auto[x-placement^=bottom],.b-popover-info.bs-popover-auto[x-placement^=bottom],.b-popover-success.bs-popover-auto[x-placement^=bottom],.b-popover-secondary.bs-popover-auto[x-placement^=bottom],.b-popover-primary.bs-popover-auto[x-placement^=bottom],.bs-popover-auto[x-placement^=bottom]{margin-top:.5rem}.bs-popover-bottom>.arrow,.bs-popover-auto[x-placement^=bottom]>.arrow{top:calc(-0.5rem - 1px)}.bs-popover-bottom>.arrow::before,.bs-popover-auto[x-placement^=bottom]>.arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-bottom>.arrow::after,.bs-popover-auto[x-placement^=bottom]>.arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-bottom .popover-header::before,.bs-popover-auto[x-placement^=bottom] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7}.bs-popover-left,.b-popover-soft-4.bs-popover-auto[x-placement^=left],.b-popover-dark.bs-popover-auto[x-placement^=left],.b-popover-light.bs-popover-auto[x-placement^=left],.b-popover-danger.bs-popover-auto[x-placement^=left],.b-popover-warning.bs-popover-auto[x-placement^=left],.b-popover-info.bs-popover-auto[x-placement^=left],.b-popover-success.bs-popover-auto[x-placement^=left],.b-popover-secondary.bs-popover-auto[x-placement^=left],.b-popover-primary.bs-popover-auto[x-placement^=left],.bs-popover-auto[x-placement^=left]{margin-right:.5rem}.bs-popover-left>.arrow,.bs-popover-auto[x-placement^=left]>.arrow{right:calc(-0.5rem - 1px);width:.5rem;height:1rem;margin:.75rem 0}.bs-popover-left>.arrow::before,.bs-popover-auto[x-placement^=left]>.arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-left>.arrow::after,.bs-popover-auto[x-placement^=left]>.arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem .75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.75rem - 1px);border-top-right-radius:calc(0.75rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:.5rem .75rem;color:#15132d}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;backface-visibility:hidden;transition:transform .6s ease-in-out}@media(prefers-reduced-motion: reduce){.carousel-item{transition:none}}.carousel-item.active,span.twitter-typeahead .carousel-item.tt-suggestion.tt-selectable:hover,.carousel-item-next,.carousel-item-prev{display:block}.carousel-item-next:not(.carousel-item-left),.active.carousel-item-right,span.twitter-typeahead .carousel-item-right.tt-suggestion.tt-selectable:hover{transform:translateX(100%)}.carousel-item-prev:not(.carousel-item-right),.active.carousel-item-left,span.twitter-typeahead .carousel-item-left.tt-suggestion.tt-selectable:hover{transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item.active,.carousel-fade span.twitter-typeahead .carousel-item.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .carousel-fade .carousel-item.tt-suggestion.tt-selectable:hover,.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1}.carousel-fade .active.carousel-item-left,.carousel-fade span.twitter-typeahead .carousel-item-left.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .carousel-fade .carousel-item-left.tt-suggestion.tt-selectable:hover,.carousel-fade .active.carousel-item-right,.carousel-fade span.twitter-typeahead .carousel-item-right.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .carousel-fade .carousel-item-right.tt-suggestion.tt-selectable:hover{z-index:0;opacity:0;transition:opacity 0s .6s}@media(prefers-reduced-motion: reduce){.carousel-fade .active.carousel-item-left,.carousel-fade span.twitter-typeahead .carousel-item-left.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .carousel-fade .carousel-item-left.tt-suggestion.tt-selectable:hover,.carousel-fade .active.carousel-item-right,.carousel-fade span.twitter-typeahead .carousel-item-right.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .carousel-fade .carousel-item-right.tt-suggestion.tt-selectable:hover{transition:none}}.carousel-control-prev,.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:none;border:0;opacity:.5;transition:opacity .15s ease}@media(prefers-reduced-motion: reduce){.carousel-control-prev,.carousel-control-next{transition:none}}.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-prev-icon,.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:50%/100% 100% no-repeat}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z%27/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 fill=%27%23fff%27 width=%278%27 height=%278%27 viewBox=%270 0 8 8%27%3e%3cpath d=%27M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z%27/%3e%3c/svg%3e")}.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}.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){.carousel-indicators li{transition:none}}.carousel-indicators .active,.carousel-indicators span.twitter-typeahead .tt-suggestion.tt-selectable:hover,span.twitter-typeahead .carousel-indicators .tt-suggestion.tt-selectable:hover{opacity:1}.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)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;border:.25em solid currentcolor;border-right-color:transparent;border-radius:50%;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-0.125em;background-color:currentcolor;border-radius:50%;opacity:0;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media(prefers-reduced-motion: reduce){.spinner-border,.spinner-grow{animation-duration:1.5s}}.align-baseline{vertical-align:baseline !important}.align-top{vertical-align:top !important}.align-middle{vertical-align:middle !important}.align-bottom{vertical-align:bottom !important}.align-text-bottom{vertical-align:text-bottom !important}.align-text-top{vertical-align:text-top !important}.bg-primary{background-color:#ff5a5f !important}a.bg-primary:hover,a.bg-primary:focus,button.bg-primary:hover,button.bg-primary:focus{background-color:#ff272e !important}.bg-secondary{background-color:#5ce1e6 !important}a.bg-secondary:hover,a.bg-secondary:focus,button.bg-secondary:hover,button.bg-secondary:focus{background-color:#30d9df !important}.bg-success{background-color:#28a745 !important}a.bg-success:hover,a.bg-success:focus,button.bg-success:hover,button.bg-success:focus{background-color:#1e7e34 !important}.bg-info{background-color:#5363d9 !important}a.bg-info:hover,a.bg-info:focus,button.bg-info:hover,button.bg-info:focus{background-color:#2d40cc !important}.bg-warning{background-color:#ffc107 !important}a.bg-warning:hover,a.bg-warning:focus,button.bg-warning:hover,button.bg-warning:focus{background-color:#d39e00 !important}.bg-danger{background-color:#dc3545 !important}a.bg-danger:hover,a.bg-danger:focus,button.bg-danger:hover,button.bg-danger:focus{background-color:#bd2130 !important}.bg-light{background-color:#f8f9fa !important}a.bg-light:hover,a.bg-light:focus,button.bg-light:hover,button.bg-light:focus{background-color:#dae0e5 !important}.bg-dark{background-color:#15132d !important}a.bg-dark:hover,a.bg-dark:focus,button.bg-dark:hover,button.bg-dark:focus{background-color:#040409 !important}.bg-soft-4{background-color:#f9f7fc !important}a.bg-soft-4:hover,a.bg-soft-4:focus,button.bg-soft-4:hover,button.bg-soft-4:focus{background-color:#ddd2ee !important}.bg-white{background-color:#fff !important}.bg-transparent{background-color:transparent !important}.border{border:1px solid #dee2e6 !important}.border-top{border-top:1px solid #dee2e6 !important}.border-right{border-right:1px solid #dee2e6 !important}.border-bottom{border-bottom:1px solid #dee2e6 !important}.border-left{border-left:1px solid #dee2e6 !important}.border-0{border:0 !important}.border-top-0{border-top:0 !important}.border-right-0{border-right:0 !important}.border-bottom-0{border-bottom:0 !important}.border-left-0{border-left:0 !important}.border-primary{border-color:#ff5a5f !important}.border-secondary{border-color:#5ce1e6 !important}.border-success{border-color:#28a745 !important}.border-info{border-color:#5363d9 !important}.border-warning{border-color:#ffc107 !important}.border-danger{border-color:#dc3545 !important}.border-light{border-color:#f8f9fa !important}.border-dark{border-color:#15132d !important}.border-soft-4{border-color:#f9f7fc !important}.border-white{border-color:#fff !important}.rounded-sm{border-radius:.2rem !important}.rounded{border-radius:.25rem !important}.rounded-top{border-top-left-radius:.25rem !important;border-top-right-radius:.25rem !important}.rounded-right{border-top-right-radius:.25rem !important;border-bottom-right-radius:.25rem !important}.rounded-bottom{border-bottom-right-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-left{border-top-left-radius:.25rem !important;border-bottom-left-radius:.25rem !important}.rounded-lg{border-radius:.75rem !important}.rounded-circle{border-radius:50% !important}.rounded-pill{border-radius:50rem !important}.rounded-0{border-radius:0 !important}.clearfix::after{display:block;clear:both;content:""}.d-none{display:none !important}.d-inline{display:inline !important}.d-inline-block{display:inline-block !important}.d-block{display:block !important}.d-table{display:table !important}.d-table-row{display:table-row !important}.d-table-cell{display:table-cell !important}.d-flex{display:flex !important}.d-inline-flex{display:inline-flex !important}@media(min-width: 576px){.d-sm-none{display:none !important}.d-sm-inline{display:inline !important}.d-sm-inline-block{display:inline-block !important}.d-sm-block{display:block !important}.d-sm-table{display:table !important}.d-sm-table-row{display:table-row !important}.d-sm-table-cell{display:table-cell !important}.d-sm-flex{display:flex !important}.d-sm-inline-flex{display:inline-flex !important}}@media(min-width: 768px){.d-md-none{display:none !important}.d-md-inline{display:inline !important}.d-md-inline-block{display:inline-block !important}.d-md-block{display:block !important}.d-md-table{display:table !important}.d-md-table-row{display:table-row !important}.d-md-table-cell{display:table-cell !important}.d-md-flex{display:flex !important}.d-md-inline-flex{display:inline-flex !important}}@media(min-width: 992px){.d-lg-none{display:none !important}.d-lg-inline{display:inline !important}.d-lg-inline-block{display:inline-block !important}.d-lg-block{display:block !important}.d-lg-table{display:table !important}.d-lg-table-row{display:table-row !important}.d-lg-table-cell{display:table-cell !important}.d-lg-flex{display:flex !important}.d-lg-inline-flex{display:inline-flex !important}}@media(min-width: 1200px){.d-xl-none{display:none !important}.d-xl-inline{display:inline !important}.d-xl-inline-block{display:inline-block !important}.d-xl-block{display:block !important}.d-xl-table{display:table !important}.d-xl-table-row{display:table-row !important}.d-xl-table-cell{display:table-cell !important}.d-xl-flex{display:flex !important}.d-xl-inline-flex{display:inline-flex !important}}@media(min-width: 1360px){.d-xxl-none{display:none !important}.d-xxl-inline{display:inline !important}.d-xxl-inline-block{display:inline-block !important}.d-xxl-block{display:block !important}.d-xxl-table{display:table !important}.d-xxl-table-row{display:table-row !important}.d-xxl-table-cell{display:table-cell !important}.d-xxl-flex{display:flex !important}.d-xxl-inline-flex{display:inline-flex !important}}@media(min-width: 1920px){.d-full-none{display:none !important}.d-full-inline{display:inline !important}.d-full-inline-block{display:inline-block !important}.d-full-block{display:block !important}.d-full-table{display:table !important}.d-full-table-row{display:table-row !important}.d-full-table-cell{display:table-cell !important}.d-full-flex{display:flex !important}.d-full-inline-flex{display:inline-flex !important}}@media print{.d-print-none{display:none !important}.d-print-inline{display:inline !important}.d-print-inline-block{display:inline-block !important}.d-print-block{display:block !important}.d-print-table{display:table !important}.d-print-table-row{display:table-row !important}.d-print-table-cell{display:table-cell !important}.d-print-flex{display:flex !important}.d-print-inline-flex{display:inline-flex !important}}.embed-responsive{position:relative;display:block;width:100%;padding:0;overflow:hidden}.embed-responsive::before{display:block;content:""}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-21by9::before{padding-top:42.85714286%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.embed-responsive-21by9::before{padding-top:42.85714286%}.embed-responsive-16by9::before{padding-top:56.25%}.embed-responsive-4by3::before{padding-top:75%}.embed-responsive-1by1::before{padding-top:100%}.flex-row{flex-direction:row !important}.flex-column{flex-direction:column !important}.flex-row-reverse{flex-direction:row-reverse !important}.flex-column-reverse{flex-direction:column-reverse !important}.flex-wrap{flex-wrap:wrap !important}.flex-nowrap{flex-wrap:nowrap !important}.flex-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-fill{flex:1 1 auto !important}.flex-grow-0{flex-grow:0 !important}.flex-grow-1{flex-grow:1 !important}.flex-shrink-0{flex-shrink:0 !important}.flex-shrink-1{flex-shrink:1 !important}.justify-content-start{justify-content:flex-start !important}.justify-content-end{justify-content:flex-end !important}.justify-content-center{justify-content:center !important}.justify-content-between{justify-content:space-between !important}.justify-content-around{justify-content:space-around !important}.align-items-start{align-items:flex-start !important}.align-items-end{align-items:flex-end !important}.align-items-center{align-items:center !important}.align-items-baseline{align-items:baseline !important}.align-items-stretch{align-items:stretch !important}.align-content-start{align-content:flex-start !important}.align-content-end{align-content:flex-end !important}.align-content-center{align-content:center !important}.align-content-between{align-content:space-between !important}.align-content-around{align-content:space-around !important}.align-content-stretch{align-content:stretch !important}.align-self-auto{align-self:auto !important}.align-self-start{align-self:flex-start !important}.align-self-end{align-self:flex-end !important}.align-self-center{align-self:center !important}.align-self-baseline{align-self:baseline !important}.align-self-stretch{align-self:stretch !important}@media(min-width: 576px){.flex-sm-row{flex-direction:row !important}.flex-sm-column{flex-direction:column !important}.flex-sm-row-reverse{flex-direction:row-reverse !important}.flex-sm-column-reverse{flex-direction:column-reverse !important}.flex-sm-wrap{flex-wrap:wrap !important}.flex-sm-nowrap{flex-wrap:nowrap !important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-sm-fill{flex:1 1 auto !important}.flex-sm-grow-0{flex-grow:0 !important}.flex-sm-grow-1{flex-grow:1 !important}.flex-sm-shrink-0{flex-shrink:0 !important}.flex-sm-shrink-1{flex-shrink:1 !important}.justify-content-sm-start{justify-content:flex-start !important}.justify-content-sm-end{justify-content:flex-end !important}.justify-content-sm-center{justify-content:center !important}.justify-content-sm-between{justify-content:space-between !important}.justify-content-sm-around{justify-content:space-around !important}.align-items-sm-start{align-items:flex-start !important}.align-items-sm-end{align-items:flex-end !important}.align-items-sm-center{align-items:center !important}.align-items-sm-baseline{align-items:baseline !important}.align-items-sm-stretch{align-items:stretch !important}.align-content-sm-start{align-content:flex-start !important}.align-content-sm-end{align-content:flex-end !important}.align-content-sm-center{align-content:center !important}.align-content-sm-between{align-content:space-between !important}.align-content-sm-around{align-content:space-around !important}.align-content-sm-stretch{align-content:stretch !important}.align-self-sm-auto{align-self:auto !important}.align-self-sm-start{align-self:flex-start !important}.align-self-sm-end{align-self:flex-end !important}.align-self-sm-center{align-self:center !important}.align-self-sm-baseline{align-self:baseline !important}.align-self-sm-stretch{align-self:stretch !important}}@media(min-width: 768px){.flex-md-row{flex-direction:row !important}.flex-md-column{flex-direction:column !important}.flex-md-row-reverse{flex-direction:row-reverse !important}.flex-md-column-reverse{flex-direction:column-reverse !important}.flex-md-wrap{flex-wrap:wrap !important}.flex-md-nowrap{flex-wrap:nowrap !important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-md-fill{flex:1 1 auto !important}.flex-md-grow-0{flex-grow:0 !important}.flex-md-grow-1{flex-grow:1 !important}.flex-md-shrink-0{flex-shrink:0 !important}.flex-md-shrink-1{flex-shrink:1 !important}.justify-content-md-start{justify-content:flex-start !important}.justify-content-md-end{justify-content:flex-end !important}.justify-content-md-center{justify-content:center !important}.justify-content-md-between{justify-content:space-between !important}.justify-content-md-around{justify-content:space-around !important}.align-items-md-start{align-items:flex-start !important}.align-items-md-end{align-items:flex-end !important}.align-items-md-center{align-items:center !important}.align-items-md-baseline{align-items:baseline !important}.align-items-md-stretch{align-items:stretch !important}.align-content-md-start{align-content:flex-start !important}.align-content-md-end{align-content:flex-end !important}.align-content-md-center{align-content:center !important}.align-content-md-between{align-content:space-between !important}.align-content-md-around{align-content:space-around !important}.align-content-md-stretch{align-content:stretch !important}.align-self-md-auto{align-self:auto !important}.align-self-md-start{align-self:flex-start !important}.align-self-md-end{align-self:flex-end !important}.align-self-md-center{align-self:center !important}.align-self-md-baseline{align-self:baseline !important}.align-self-md-stretch{align-self:stretch !important}}@media(min-width: 992px){.flex-lg-row{flex-direction:row !important}.flex-lg-column{flex-direction:column !important}.flex-lg-row-reverse{flex-direction:row-reverse !important}.flex-lg-column-reverse{flex-direction:column-reverse !important}.flex-lg-wrap{flex-wrap:wrap !important}.flex-lg-nowrap{flex-wrap:nowrap !important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-lg-fill{flex:1 1 auto !important}.flex-lg-grow-0{flex-grow:0 !important}.flex-lg-grow-1{flex-grow:1 !important}.flex-lg-shrink-0{flex-shrink:0 !important}.flex-lg-shrink-1{flex-shrink:1 !important}.justify-content-lg-start{justify-content:flex-start !important}.justify-content-lg-end{justify-content:flex-end !important}.justify-content-lg-center{justify-content:center !important}.justify-content-lg-between{justify-content:space-between !important}.justify-content-lg-around{justify-content:space-around !important}.align-items-lg-start{align-items:flex-start !important}.align-items-lg-end{align-items:flex-end !important}.align-items-lg-center{align-items:center !important}.align-items-lg-baseline{align-items:baseline !important}.align-items-lg-stretch{align-items:stretch !important}.align-content-lg-start{align-content:flex-start !important}.align-content-lg-end{align-content:flex-end !important}.align-content-lg-center{align-content:center !important}.align-content-lg-between{align-content:space-between !important}.align-content-lg-around{align-content:space-around !important}.align-content-lg-stretch{align-content:stretch !important}.align-self-lg-auto{align-self:auto !important}.align-self-lg-start{align-self:flex-start !important}.align-self-lg-end{align-self:flex-end !important}.align-self-lg-center{align-self:center !important}.align-self-lg-baseline{align-self:baseline !important}.align-self-lg-stretch{align-self:stretch !important}}@media(min-width: 1200px){.flex-xl-row{flex-direction:row !important}.flex-xl-column{flex-direction:column !important}.flex-xl-row-reverse{flex-direction:row-reverse !important}.flex-xl-column-reverse{flex-direction:column-reverse !important}.flex-xl-wrap{flex-wrap:wrap !important}.flex-xl-nowrap{flex-wrap:nowrap !important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xl-fill{flex:1 1 auto !important}.flex-xl-grow-0{flex-grow:0 !important}.flex-xl-grow-1{flex-grow:1 !important}.flex-xl-shrink-0{flex-shrink:0 !important}.flex-xl-shrink-1{flex-shrink:1 !important}.justify-content-xl-start{justify-content:flex-start !important}.justify-content-xl-end{justify-content:flex-end !important}.justify-content-xl-center{justify-content:center !important}.justify-content-xl-between{justify-content:space-between !important}.justify-content-xl-around{justify-content:space-around !important}.align-items-xl-start{align-items:flex-start !important}.align-items-xl-end{align-items:flex-end !important}.align-items-xl-center{align-items:center !important}.align-items-xl-baseline{align-items:baseline !important}.align-items-xl-stretch{align-items:stretch !important}.align-content-xl-start{align-content:flex-start !important}.align-content-xl-end{align-content:flex-end !important}.align-content-xl-center{align-content:center !important}.align-content-xl-between{align-content:space-between !important}.align-content-xl-around{align-content:space-around !important}.align-content-xl-stretch{align-content:stretch !important}.align-self-xl-auto{align-self:auto !important}.align-self-xl-start{align-self:flex-start !important}.align-self-xl-end{align-self:flex-end !important}.align-self-xl-center{align-self:center !important}.align-self-xl-baseline{align-self:baseline !important}.align-self-xl-stretch{align-self:stretch !important}}@media(min-width: 1360px){.flex-xxl-row{flex-direction:row !important}.flex-xxl-column{flex-direction:column !important}.flex-xxl-row-reverse{flex-direction:row-reverse !important}.flex-xxl-column-reverse{flex-direction:column-reverse !important}.flex-xxl-wrap{flex-wrap:wrap !important}.flex-xxl-nowrap{flex-wrap:nowrap !important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-xxl-fill{flex:1 1 auto !important}.flex-xxl-grow-0{flex-grow:0 !important}.flex-xxl-grow-1{flex-grow:1 !important}.flex-xxl-shrink-0{flex-shrink:0 !important}.flex-xxl-shrink-1{flex-shrink:1 !important}.justify-content-xxl-start{justify-content:flex-start !important}.justify-content-xxl-end{justify-content:flex-end !important}.justify-content-xxl-center{justify-content:center !important}.justify-content-xxl-between{justify-content:space-between !important}.justify-content-xxl-around{justify-content:space-around !important}.align-items-xxl-start{align-items:flex-start !important}.align-items-xxl-end{align-items:flex-end !important}.align-items-xxl-center{align-items:center !important}.align-items-xxl-baseline{align-items:baseline !important}.align-items-xxl-stretch{align-items:stretch !important}.align-content-xxl-start{align-content:flex-start !important}.align-content-xxl-end{align-content:flex-end !important}.align-content-xxl-center{align-content:center !important}.align-content-xxl-between{align-content:space-between !important}.align-content-xxl-around{align-content:space-around !important}.align-content-xxl-stretch{align-content:stretch !important}.align-self-xxl-auto{align-self:auto !important}.align-self-xxl-start{align-self:flex-start !important}.align-self-xxl-end{align-self:flex-end !important}.align-self-xxl-center{align-self:center !important}.align-self-xxl-baseline{align-self:baseline !important}.align-self-xxl-stretch{align-self:stretch !important}}@media(min-width: 1920px){.flex-full-row{flex-direction:row !important}.flex-full-column{flex-direction:column !important}.flex-full-row-reverse{flex-direction:row-reverse !important}.flex-full-column-reverse{flex-direction:column-reverse !important}.flex-full-wrap{flex-wrap:wrap !important}.flex-full-nowrap{flex-wrap:nowrap !important}.flex-full-wrap-reverse{flex-wrap:wrap-reverse !important}.flex-full-fill{flex:1 1 auto !important}.flex-full-grow-0{flex-grow:0 !important}.flex-full-grow-1{flex-grow:1 !important}.flex-full-shrink-0{flex-shrink:0 !important}.flex-full-shrink-1{flex-shrink:1 !important}.justify-content-full-start{justify-content:flex-start !important}.justify-content-full-end{justify-content:flex-end !important}.justify-content-full-center{justify-content:center !important}.justify-content-full-between{justify-content:space-between !important}.justify-content-full-around{justify-content:space-around !important}.align-items-full-start{align-items:flex-start !important}.align-items-full-end{align-items:flex-end !important}.align-items-full-center{align-items:center !important}.align-items-full-baseline{align-items:baseline !important}.align-items-full-stretch{align-items:stretch !important}.align-content-full-start{align-content:flex-start !important}.align-content-full-end{align-content:flex-end !important}.align-content-full-center{align-content:center !important}.align-content-full-between{align-content:space-between !important}.align-content-full-around{align-content:space-around !important}.align-content-full-stretch{align-content:stretch !important}.align-self-full-auto{align-self:auto !important}.align-self-full-start{align-self:flex-start !important}.align-self-full-end{align-self:flex-end !important}.align-self-full-center{align-self:center !important}.align-self-full-baseline{align-self:baseline !important}.align-self-full-stretch{align-self:stretch !important}}.float-left{float:left !important}.float-right{float:right !important}.float-none{float:none !important}@media(min-width: 576px){.float-sm-left{float:left !important}.float-sm-right{float:right !important}.float-sm-none{float:none !important}}@media(min-width: 768px){.float-md-left{float:left !important}.float-md-right{float:right !important}.float-md-none{float:none !important}}@media(min-width: 992px){.float-lg-left{float:left !important}.float-lg-right{float:right !important}.float-lg-none{float:none !important}}@media(min-width: 1200px){.float-xl-left{float:left !important}.float-xl-right{float:right !important}.float-xl-none{float:none !important}}@media(min-width: 1360px){.float-xxl-left{float:left !important}.float-xxl-right{float:right !important}.float-xxl-none{float:none !important}}@media(min-width: 1920px){.float-full-left{float:left !important}.float-full-right{float:right !important}.float-full-none{float:none !important}}.user-select-all{user-select:all !important}.user-select-auto{user-select:auto !important}.user-select-none{user-select:none !important}.overflow-auto{overflow:auto !important}.overflow-hidden{overflow:hidden !important}.position-static{position:static !important}.position-relative{position:relative !important}.position-absolute{position:absolute !important}.position-fixed{position:fixed !important}.position-sticky{position:sticky !important}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}@supports(position: sticky){.sticky-top{position:sticky;top:0;z-index:1020}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;overflow:visible;clip:auto;white-space:normal}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075) !important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15) !important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175) !important}.shadow-none{box-shadow:none !important}.w-25{width:25% !important}.w-50{width:50% !important}.w-75{width:75% !important}.w-100{width:100% !important}.w-auto{width:auto !important}.h-25{height:25% !important}.h-50{height:50% !important}.h-75{height:75% !important}.h-100{height:100% !important}.h-auto{height:auto !important}.mw-100{max-width:100% !important}.mh-100{max-height:100% !important}.min-vw-100{min-width:100vw !important}.min-vh-100{min-height:100vh !important}.vw-100{width:100vw !important}.vh-100{height:100vh !important}.m-0{margin:0 !important}.mt-0,.my-0{margin-top:0 !important}.mr-0,.mx-0{margin-right:0 !important}.mb-0,.my-0{margin-bottom:0 !important}.ml-0,.mx-0{margin-left:0 !important}.m-1{margin:.5rem !important}.mt-1,.my-1{margin-top:.5rem !important}.mr-1,.mx-1{margin-right:.5rem !important}.mb-1,.my-1{margin-bottom:.5rem !important}.ml-1,.mx-1{margin-left:.5rem !important}.m-2{margin:1rem !important}.mt-2,.my-2{margin-top:1rem !important}.mr-2,.mx-2{margin-right:1rem !important}.mb-2,.my-2{margin-bottom:1rem !important}.ml-2,.mx-2{margin-left:1rem !important}.m-3{margin:1.5rem !important}.mt-3,.my-3{margin-top:1.5rem !important}.mr-3,.mx-3{margin-right:1.5rem !important}.mb-3,.my-3{margin-bottom:1.5rem !important}.ml-3,.mx-3{margin-left:1.5rem !important}.m-4{margin:2rem !important}.mt-4,.my-4{margin-top:2rem !important}.mr-4,.mx-4{margin-right:2rem !important}.mb-4,.my-4{margin-bottom:2rem !important}.ml-4,.mx-4{margin-left:2rem !important}.m-5{margin:2.5rem !important}.mt-5,.my-5{margin-top:2.5rem !important}.mr-5,.mx-5{margin-right:2.5rem !important}.mb-5,.my-5{margin-bottom:2.5rem !important}.ml-5,.mx-5{margin-left:2.5rem !important}.m-6{margin:3rem !important}.mt-6,.my-6{margin-top:3rem !important}.mr-6,.mx-6{margin-right:3rem !important}.mb-6,.my-6{margin-bottom:3rem !important}.ml-6,.mx-6{margin-left:3rem !important}.m-7{margin:3.5rem !important}.mt-7,.my-7{margin-top:3.5rem !important}.mr-7,.mx-7{margin-right:3.5rem !important}.mb-7,.my-7{margin-bottom:3.5rem !important}.ml-7,.mx-7{margin-left:3.5rem !important}.m-8{margin:4rem !important}.mt-8,.my-8{margin-top:4rem !important}.mr-8,.mx-8{margin-right:4rem !important}.mb-8,.my-8{margin-bottom:4rem !important}.ml-8,.mx-8{margin-left:4rem !important}.m-9{margin:4.5rem !important}.mt-9,.my-9{margin-top:4.5rem !important}.mr-9,.mx-9{margin-right:4.5rem !important}.mb-9,.my-9{margin-bottom:4.5rem !important}.ml-9,.mx-9{margin-left:4.5rem !important}.m-10{margin:5rem !important}.mt-10,.my-10{margin-top:5rem !important}.mr-10,.mx-10{margin-right:5rem !important}.mb-10,.my-10{margin-bottom:5rem !important}.ml-10,.mx-10{margin-left:5rem !important}.m-11{margin:5.5rem !important}.mt-11,.my-11{margin-top:5.5rem !important}.mr-11,.mx-11{margin-right:5.5rem !important}.mb-11,.my-11{margin-bottom:5.5rem !important}.ml-11,.mx-11{margin-left:5.5rem !important}.m-12{margin:6rem !important}.mt-12,.my-12{margin-top:6rem !important}.mr-12,.mx-12{margin-right:6rem !important}.mb-12,.my-12{margin-bottom:6rem !important}.ml-12,.mx-12{margin-left:6rem !important}.m-13{margin:6.5rem !important}.mt-13,.my-13{margin-top:6.5rem !important}.mr-13,.mx-13{margin-right:6.5rem !important}.mb-13,.my-13{margin-bottom:6.5rem !important}.ml-13,.mx-13{margin-left:6.5rem !important}.m-14{margin:7rem !important}.mt-14,.my-14{margin-top:7rem !important}.mr-14,.mx-14{margin-right:7rem !important}.mb-14,.my-14{margin-bottom:7rem !important}.ml-14,.mx-14{margin-left:7rem !important}.m-15{margin:7.5rem !important}.mt-15,.my-15{margin-top:7.5rem !important}.mr-15,.mx-15{margin-right:7.5rem !important}.mb-15,.my-15{margin-bottom:7.5rem !important}.ml-15,.mx-15{margin-left:7.5rem !important}.m-16{margin:8rem !important}.mt-16,.my-16{margin-top:8rem !important}.mr-16,.mx-16{margin-right:8rem !important}.mb-16,.my-16{margin-bottom:8rem !important}.ml-16,.mx-16{margin-left:8rem !important}.m-17{margin:8.5rem !important}.mt-17,.my-17{margin-top:8.5rem !important}.mr-17,.mx-17{margin-right:8.5rem !important}.mb-17,.my-17{margin-bottom:8.5rem !important}.ml-17,.mx-17{margin-left:8.5rem !important}.m-18{margin:9rem !important}.mt-18,.my-18{margin-top:9rem !important}.mr-18,.mx-18{margin-right:9rem !important}.mb-18,.my-18{margin-bottom:9rem !important}.ml-18,.mx-18{margin-left:9rem !important}.m-19{margin:9.5rem !important}.mt-19,.my-19{margin-top:9.5rem !important}.mr-19,.mx-19{margin-right:9.5rem !important}.mb-19,.my-19{margin-bottom:9.5rem !important}.ml-19,.mx-19{margin-left:9.5rem !important}.m-20{margin:10rem !important}.mt-20,.my-20{margin-top:10rem !important}.mr-20,.mx-20{margin-right:10rem !important}.mb-20,.my-20{margin-bottom:10rem !important}.ml-20,.mx-20{margin-left:10rem !important}.p-0{padding:0 !important}.pt-0,.py-0{padding-top:0 !important}.pr-0,.px-0{padding-right:0 !important}.pb-0,.py-0{padding-bottom:0 !important}.pl-0,.px-0{padding-left:0 !important}.p-1{padding:.5rem !important}.pt-1,.py-1{padding-top:.5rem !important}.pr-1,.px-1{padding-right:.5rem !important}.pb-1,.py-1{padding-bottom:.5rem !important}.pl-1,.px-1{padding-left:.5rem !important}.p-2{padding:1rem !important}.pt-2,.py-2{padding-top:1rem !important}.pr-2,.px-2{padding-right:1rem !important}.pb-2,.py-2{padding-bottom:1rem !important}.pl-2,.px-2{padding-left:1rem !important}.p-3{padding:1.5rem !important}.pt-3,.py-3{padding-top:1.5rem !important}.pr-3,.px-3{padding-right:1.5rem !important}.pb-3,.py-3{padding-bottom:1.5rem !important}.pl-3,.px-3{padding-left:1.5rem !important}.p-4{padding:2rem !important}.pt-4,.py-4{padding-top:2rem !important}.pr-4,.px-4{padding-right:2rem !important}.pb-4,.py-4{padding-bottom:2rem !important}.pl-4,.px-4{padding-left:2rem !important}.p-5{padding:2.5rem !important}.pt-5,.py-5{padding-top:2.5rem !important}.pr-5,.px-5{padding-right:2.5rem !important}.pb-5,.py-5{padding-bottom:2.5rem !important}.pl-5,.px-5{padding-left:2.5rem !important}.p-6{padding:3rem !important}.pt-6,.py-6{padding-top:3rem !important}.pr-6,.px-6{padding-right:3rem !important}.pb-6,.py-6{padding-bottom:3rem !important}.pl-6,.px-6{padding-left:3rem !important}.p-7{padding:3.5rem !important}.pt-7,.py-7{padding-top:3.5rem !important}.pr-7,.px-7{padding-right:3.5rem !important}.pb-7,.py-7{padding-bottom:3.5rem !important}.pl-7,.px-7{padding-left:3.5rem !important}.p-8{padding:4rem !important}.pt-8,.py-8{padding-top:4rem !important}.pr-8,.px-8{padding-right:4rem !important}.pb-8,.py-8{padding-bottom:4rem !important}.pl-8,.px-8{padding-left:4rem !important}.p-9{padding:4.5rem !important}.pt-9,.py-9{padding-top:4.5rem !important}.pr-9,.px-9{padding-right:4.5rem !important}.pb-9,.py-9{padding-bottom:4.5rem !important}.pl-9,.px-9{padding-left:4.5rem !important}.p-10{padding:5rem !important}.pt-10,.py-10{padding-top:5rem !important}.pr-10,.px-10{padding-right:5rem !important}.pb-10,.py-10{padding-bottom:5rem !important}.pl-10,.px-10{padding-left:5rem !important}.p-11{padding:5.5rem !important}.pt-11,.py-11{padding-top:5.5rem !important}.pr-11,.px-11{padding-right:5.5rem !important}.pb-11,.py-11{padding-bottom:5.5rem !important}.pl-11,.px-11{padding-left:5.5rem !important}.p-12{padding:6rem !important}.pt-12,.py-12{padding-top:6rem !important}.pr-12,.px-12{padding-right:6rem !important}.pb-12,.py-12{padding-bottom:6rem !important}.pl-12,.px-12{padding-left:6rem !important}.p-13{padding:6.5rem !important}.pt-13,.py-13{padding-top:6.5rem !important}.pr-13,.px-13{padding-right:6.5rem !important}.pb-13,.py-13{padding-bottom:6.5rem !important}.pl-13,.px-13{padding-left:6.5rem !important}.p-14{padding:7rem !important}.pt-14,.py-14{padding-top:7rem !important}.pr-14,.px-14{padding-right:7rem !important}.pb-14,.py-14{padding-bottom:7rem !important}.pl-14,.px-14{padding-left:7rem !important}.p-15{padding:7.5rem !important}.pt-15,.py-15{padding-top:7.5rem !important}.pr-15,.px-15{padding-right:7.5rem !important}.pb-15,.py-15{padding-bottom:7.5rem !important}.pl-15,.px-15{padding-left:7.5rem !important}.p-16{padding:8rem !important}.pt-16,.py-16{padding-top:8rem !important}.pr-16,.px-16{padding-right:8rem !important}.pb-16,.py-16{padding-bottom:8rem !important}.pl-16,.px-16{padding-left:8rem !important}.p-17{padding:8.5rem !important}.pt-17,.py-17{padding-top:8.5rem !important}.pr-17,.px-17{padding-right:8.5rem !important}.pb-17,.py-17{padding-bottom:8.5rem !important}.pl-17,.px-17{padding-left:8.5rem !important}.p-18{padding:9rem !important}.pt-18,.py-18{padding-top:9rem !important}.pr-18,.px-18{padding-right:9rem !important}.pb-18,.py-18{padding-bottom:9rem !important}.pl-18,.px-18{padding-left:9rem !important}.p-19{padding:9.5rem !important}.pt-19,.py-19{padding-top:9.5rem !important}.pr-19,.px-19{padding-right:9.5rem !important}.pb-19,.py-19{padding-bottom:9.5rem !important}.pl-19,.px-19{padding-left:9.5rem !important}.p-20{padding:10rem !important}.pt-20,.py-20{padding-top:10rem !important}.pr-20,.px-20{padding-right:10rem !important}.pb-20,.py-20{padding-bottom:10rem !important}.pl-20,.px-20{padding-left:10rem !important}.m-n1{margin:-0.5rem !important}.mt-n1,.my-n1{margin-top:-0.5rem !important}.mr-n1,.mx-n1{margin-right:-0.5rem !important}.mb-n1,.my-n1{margin-bottom:-0.5rem !important}.ml-n1,.mx-n1{margin-left:-0.5rem !important}.m-n2{margin:-1rem !important}.mt-n2,.my-n2{margin-top:-1rem !important}.mr-n2,.mx-n2{margin-right:-1rem !important}.mb-n2,.my-n2{margin-bottom:-1rem !important}.ml-n2,.mx-n2{margin-left:-1rem !important}.m-n3{margin:-1.5rem !important}.mt-n3,.my-n3{margin-top:-1.5rem !important}.mr-n3,.mx-n3{margin-right:-1.5rem !important}.mb-n3,.my-n3{margin-bottom:-1.5rem !important}.ml-n3,.mx-n3{margin-left:-1.5rem !important}.m-n4{margin:-2rem !important}.mt-n4,.my-n4{margin-top:-2rem !important}.mr-n4,.mx-n4{margin-right:-2rem !important}.mb-n4,.my-n4{margin-bottom:-2rem !important}.ml-n4,.mx-n4{margin-left:-2rem !important}.m-n5{margin:-2.5rem !important}.mt-n5,.my-n5{margin-top:-2.5rem !important}.mr-n5,.mx-n5{margin-right:-2.5rem !important}.mb-n5,.my-n5{margin-bottom:-2.5rem !important}.ml-n5,.mx-n5{margin-left:-2.5rem !important}.m-n6{margin:-3rem !important}.mt-n6,.my-n6{margin-top:-3rem !important}.mr-n6,.mx-n6{margin-right:-3rem !important}.mb-n6,.my-n6{margin-bottom:-3rem !important}.ml-n6,.mx-n6{margin-left:-3rem !important}.m-n7{margin:-3.5rem !important}.mt-n7,.my-n7{margin-top:-3.5rem !important}.mr-n7,.mx-n7{margin-right:-3.5rem !important}.mb-n7,.my-n7{margin-bottom:-3.5rem !important}.ml-n7,.mx-n7{margin-left:-3.5rem !important}.m-n8{margin:-4rem !important}.mt-n8,.my-n8{margin-top:-4rem !important}.mr-n8,.mx-n8{margin-right:-4rem !important}.mb-n8,.my-n8{margin-bottom:-4rem !important}.ml-n8,.mx-n8{margin-left:-4rem !important}.m-n9{margin:-4.5rem !important}.mt-n9,.my-n9{margin-top:-4.5rem !important}.mr-n9,.mx-n9{margin-right:-4.5rem !important}.mb-n9,.my-n9{margin-bottom:-4.5rem !important}.ml-n9,.mx-n9{margin-left:-4.5rem !important}.m-n10{margin:-5rem !important}.mt-n10,.my-n10{margin-top:-5rem !important}.mr-n10,.mx-n10{margin-right:-5rem !important}.mb-n10,.my-n10{margin-bottom:-5rem !important}.ml-n10,.mx-n10{margin-left:-5rem !important}.m-n11{margin:-5.5rem !important}.mt-n11,.my-n11{margin-top:-5.5rem !important}.mr-n11,.mx-n11{margin-right:-5.5rem !important}.mb-n11,.my-n11{margin-bottom:-5.5rem !important}.ml-n11,.mx-n11{margin-left:-5.5rem !important}.m-n12{margin:-6rem !important}.mt-n12,.my-n12{margin-top:-6rem !important}.mr-n12,.mx-n12{margin-right:-6rem !important}.mb-n12,.my-n12{margin-bottom:-6rem !important}.ml-n12,.mx-n12{margin-left:-6rem !important}.m-n13{margin:-6.5rem !important}.mt-n13,.my-n13{margin-top:-6.5rem !important}.mr-n13,.mx-n13{margin-right:-6.5rem !important}.mb-n13,.my-n13{margin-bottom:-6.5rem !important}.ml-n13,.mx-n13{margin-left:-6.5rem !important}.m-n14{margin:-7rem !important}.mt-n14,.my-n14{margin-top:-7rem !important}.mr-n14,.mx-n14{margin-right:-7rem !important}.mb-n14,.my-n14{margin-bottom:-7rem !important}.ml-n14,.mx-n14{margin-left:-7rem !important}.m-n15{margin:-7.5rem !important}.mt-n15,.my-n15{margin-top:-7.5rem !important}.mr-n15,.mx-n15{margin-right:-7.5rem !important}.mb-n15,.my-n15{margin-bottom:-7.5rem !important}.ml-n15,.mx-n15{margin-left:-7.5rem !important}.m-n16{margin:-8rem !important}.mt-n16,.my-n16{margin-top:-8rem !important}.mr-n16,.mx-n16{margin-right:-8rem !important}.mb-n16,.my-n16{margin-bottom:-8rem !important}.ml-n16,.mx-n16{margin-left:-8rem !important}.m-n17{margin:-8.5rem !important}.mt-n17,.my-n17{margin-top:-8.5rem !important}.mr-n17,.mx-n17{margin-right:-8.5rem !important}.mb-n17,.my-n17{margin-bottom:-8.5rem !important}.ml-n17,.mx-n17{margin-left:-8.5rem !important}.m-n18{margin:-9rem !important}.mt-n18,.my-n18{margin-top:-9rem !important}.mr-n18,.mx-n18{margin-right:-9rem !important}.mb-n18,.my-n18{margin-bottom:-9rem !important}.ml-n18,.mx-n18{margin-left:-9rem !important}.m-n19{margin:-9.5rem !important}.mt-n19,.my-n19{margin-top:-9.5rem !important}.mr-n19,.mx-n19{margin-right:-9.5rem !important}.mb-n19,.my-n19{margin-bottom:-9.5rem !important}.ml-n19,.mx-n19{margin-left:-9.5rem !important}.m-n20{margin:-10rem !important}.mt-n20,.my-n20{margin-top:-10rem !important}.mr-n20,.mx-n20{margin-right:-10rem !important}.mb-n20,.my-n20{margin-bottom:-10rem !important}.ml-n20,.mx-n20{margin-left:-10rem !important}.m-auto{margin:auto !important}.mt-auto,.my-auto{margin-top:auto !important}.mr-auto,.mx-auto{margin-right:auto !important}.mb-auto,.my-auto{margin-bottom:auto !important}.ml-auto,.mx-auto{margin-left:auto !important}@media(min-width: 576px){.m-sm-0{margin:0 !important}.mt-sm-0,.my-sm-0{margin-top:0 !important}.mr-sm-0,.mx-sm-0{margin-right:0 !important}.mb-sm-0,.my-sm-0{margin-bottom:0 !important}.ml-sm-0,.mx-sm-0{margin-left:0 !important}.m-sm-1{margin:.5rem !important}.mt-sm-1,.my-sm-1{margin-top:.5rem !important}.mr-sm-1,.mx-sm-1{margin-right:.5rem !important}.mb-sm-1,.my-sm-1{margin-bottom:.5rem !important}.ml-sm-1,.mx-sm-1{margin-left:.5rem !important}.m-sm-2{margin:1rem !important}.mt-sm-2,.my-sm-2{margin-top:1rem !important}.mr-sm-2,.mx-sm-2{margin-right:1rem !important}.mb-sm-2,.my-sm-2{margin-bottom:1rem !important}.ml-sm-2,.mx-sm-2{margin-left:1rem !important}.m-sm-3{margin:1.5rem !important}.mt-sm-3,.my-sm-3{margin-top:1.5rem !important}.mr-sm-3,.mx-sm-3{margin-right:1.5rem !important}.mb-sm-3,.my-sm-3{margin-bottom:1.5rem !important}.ml-sm-3,.mx-sm-3{margin-left:1.5rem !important}.m-sm-4{margin:2rem !important}.mt-sm-4,.my-sm-4{margin-top:2rem !important}.mr-sm-4,.mx-sm-4{margin-right:2rem !important}.mb-sm-4,.my-sm-4{margin-bottom:2rem !important}.ml-sm-4,.mx-sm-4{margin-left:2rem !important}.m-sm-5{margin:2.5rem !important}.mt-sm-5,.my-sm-5{margin-top:2.5rem !important}.mr-sm-5,.mx-sm-5{margin-right:2.5rem !important}.mb-sm-5,.my-sm-5{margin-bottom:2.5rem !important}.ml-sm-5,.mx-sm-5{margin-left:2.5rem !important}.m-sm-6{margin:3rem !important}.mt-sm-6,.my-sm-6{margin-top:3rem !important}.mr-sm-6,.mx-sm-6{margin-right:3rem !important}.mb-sm-6,.my-sm-6{margin-bottom:3rem !important}.ml-sm-6,.mx-sm-6{margin-left:3rem !important}.m-sm-7{margin:3.5rem !important}.mt-sm-7,.my-sm-7{margin-top:3.5rem !important}.mr-sm-7,.mx-sm-7{margin-right:3.5rem !important}.mb-sm-7,.my-sm-7{margin-bottom:3.5rem !important}.ml-sm-7,.mx-sm-7{margin-left:3.5rem !important}.m-sm-8{margin:4rem !important}.mt-sm-8,.my-sm-8{margin-top:4rem !important}.mr-sm-8,.mx-sm-8{margin-right:4rem !important}.mb-sm-8,.my-sm-8{margin-bottom:4rem !important}.ml-sm-8,.mx-sm-8{margin-left:4rem !important}.m-sm-9{margin:4.5rem !important}.mt-sm-9,.my-sm-9{margin-top:4.5rem !important}.mr-sm-9,.mx-sm-9{margin-right:4.5rem !important}.mb-sm-9,.my-sm-9{margin-bottom:4.5rem !important}.ml-sm-9,.mx-sm-9{margin-left:4.5rem !important}.m-sm-10{margin:5rem !important}.mt-sm-10,.my-sm-10{margin-top:5rem !important}.mr-sm-10,.mx-sm-10{margin-right:5rem !important}.mb-sm-10,.my-sm-10{margin-bottom:5rem !important}.ml-sm-10,.mx-sm-10{margin-left:5rem !important}.m-sm-11{margin:5.5rem !important}.mt-sm-11,.my-sm-11{margin-top:5.5rem !important}.mr-sm-11,.mx-sm-11{margin-right:5.5rem !important}.mb-sm-11,.my-sm-11{margin-bottom:5.5rem !important}.ml-sm-11,.mx-sm-11{margin-left:5.5rem !important}.m-sm-12{margin:6rem !important}.mt-sm-12,.my-sm-12{margin-top:6rem !important}.mr-sm-12,.mx-sm-12{margin-right:6rem !important}.mb-sm-12,.my-sm-12{margin-bottom:6rem !important}.ml-sm-12,.mx-sm-12{margin-left:6rem !important}.m-sm-13{margin:6.5rem !important}.mt-sm-13,.my-sm-13{margin-top:6.5rem !important}.mr-sm-13,.mx-sm-13{margin-right:6.5rem !important}.mb-sm-13,.my-sm-13{margin-bottom:6.5rem !important}.ml-sm-13,.mx-sm-13{margin-left:6.5rem !important}.m-sm-14{margin:7rem !important}.mt-sm-14,.my-sm-14{margin-top:7rem !important}.mr-sm-14,.mx-sm-14{margin-right:7rem !important}.mb-sm-14,.my-sm-14{margin-bottom:7rem !important}.ml-sm-14,.mx-sm-14{margin-left:7rem !important}.m-sm-15{margin:7.5rem !important}.mt-sm-15,.my-sm-15{margin-top:7.5rem !important}.mr-sm-15,.mx-sm-15{margin-right:7.5rem !important}.mb-sm-15,.my-sm-15{margin-bottom:7.5rem !important}.ml-sm-15,.mx-sm-15{margin-left:7.5rem !important}.m-sm-16{margin:8rem !important}.mt-sm-16,.my-sm-16{margin-top:8rem !important}.mr-sm-16,.mx-sm-16{margin-right:8rem !important}.mb-sm-16,.my-sm-16{margin-bottom:8rem !important}.ml-sm-16,.mx-sm-16{margin-left:8rem !important}.m-sm-17{margin:8.5rem !important}.mt-sm-17,.my-sm-17{margin-top:8.5rem !important}.mr-sm-17,.mx-sm-17{margin-right:8.5rem !important}.mb-sm-17,.my-sm-17{margin-bottom:8.5rem !important}.ml-sm-17,.mx-sm-17{margin-left:8.5rem !important}.m-sm-18{margin:9rem !important}.mt-sm-18,.my-sm-18{margin-top:9rem !important}.mr-sm-18,.mx-sm-18{margin-right:9rem !important}.mb-sm-18,.my-sm-18{margin-bottom:9rem !important}.ml-sm-18,.mx-sm-18{margin-left:9rem !important}.m-sm-19{margin:9.5rem !important}.mt-sm-19,.my-sm-19{margin-top:9.5rem !important}.mr-sm-19,.mx-sm-19{margin-right:9.5rem !important}.mb-sm-19,.my-sm-19{margin-bottom:9.5rem !important}.ml-sm-19,.mx-sm-19{margin-left:9.5rem !important}.m-sm-20{margin:10rem !important}.mt-sm-20,.my-sm-20{margin-top:10rem !important}.mr-sm-20,.mx-sm-20{margin-right:10rem !important}.mb-sm-20,.my-sm-20{margin-bottom:10rem !important}.ml-sm-20,.mx-sm-20{margin-left:10rem !important}.p-sm-0{padding:0 !important}.pt-sm-0,.py-sm-0{padding-top:0 !important}.pr-sm-0,.px-sm-0{padding-right:0 !important}.pb-sm-0,.py-sm-0{padding-bottom:0 !important}.pl-sm-0,.px-sm-0{padding-left:0 !important}.p-sm-1{padding:.5rem !important}.pt-sm-1,.py-sm-1{padding-top:.5rem !important}.pr-sm-1,.px-sm-1{padding-right:.5rem !important}.pb-sm-1,.py-sm-1{padding-bottom:.5rem !important}.pl-sm-1,.px-sm-1{padding-left:.5rem !important}.p-sm-2{padding:1rem !important}.pt-sm-2,.py-sm-2{padding-top:1rem !important}.pr-sm-2,.px-sm-2{padding-right:1rem !important}.pb-sm-2,.py-sm-2{padding-bottom:1rem !important}.pl-sm-2,.px-sm-2{padding-left:1rem !important}.p-sm-3{padding:1.5rem !important}.pt-sm-3,.py-sm-3{padding-top:1.5rem !important}.pr-sm-3,.px-sm-3{padding-right:1.5rem !important}.pb-sm-3,.py-sm-3{padding-bottom:1.5rem !important}.pl-sm-3,.px-sm-3{padding-left:1.5rem !important}.p-sm-4{padding:2rem !important}.pt-sm-4,.py-sm-4{padding-top:2rem !important}.pr-sm-4,.px-sm-4{padding-right:2rem !important}.pb-sm-4,.py-sm-4{padding-bottom:2rem !important}.pl-sm-4,.px-sm-4{padding-left:2rem !important}.p-sm-5{padding:2.5rem !important}.pt-sm-5,.py-sm-5{padding-top:2.5rem !important}.pr-sm-5,.px-sm-5{padding-right:2.5rem !important}.pb-sm-5,.py-sm-5{padding-bottom:2.5rem !important}.pl-sm-5,.px-sm-5{padding-left:2.5rem !important}.p-sm-6{padding:3rem !important}.pt-sm-6,.py-sm-6{padding-top:3rem !important}.pr-sm-6,.px-sm-6{padding-right:3rem !important}.pb-sm-6,.py-sm-6{padding-bottom:3rem !important}.pl-sm-6,.px-sm-6{padding-left:3rem !important}.p-sm-7{padding:3.5rem !important}.pt-sm-7,.py-sm-7{padding-top:3.5rem !important}.pr-sm-7,.px-sm-7{padding-right:3.5rem !important}.pb-sm-7,.py-sm-7{padding-bottom:3.5rem !important}.pl-sm-7,.px-sm-7{padding-left:3.5rem !important}.p-sm-8{padding:4rem !important}.pt-sm-8,.py-sm-8{padding-top:4rem !important}.pr-sm-8,.px-sm-8{padding-right:4rem !important}.pb-sm-8,.py-sm-8{padding-bottom:4rem !important}.pl-sm-8,.px-sm-8{padding-left:4rem !important}.p-sm-9{padding:4.5rem !important}.pt-sm-9,.py-sm-9{padding-top:4.5rem !important}.pr-sm-9,.px-sm-9{padding-right:4.5rem !important}.pb-sm-9,.py-sm-9{padding-bottom:4.5rem !important}.pl-sm-9,.px-sm-9{padding-left:4.5rem !important}.p-sm-10{padding:5rem !important}.pt-sm-10,.py-sm-10{padding-top:5rem !important}.pr-sm-10,.px-sm-10{padding-right:5rem !important}.pb-sm-10,.py-sm-10{padding-bottom:5rem !important}.pl-sm-10,.px-sm-10{padding-left:5rem !important}.p-sm-11{padding:5.5rem !important}.pt-sm-11,.py-sm-11{padding-top:5.5rem !important}.pr-sm-11,.px-sm-11{padding-right:5.5rem !important}.pb-sm-11,.py-sm-11{padding-bottom:5.5rem !important}.pl-sm-11,.px-sm-11{padding-left:5.5rem !important}.p-sm-12{padding:6rem !important}.pt-sm-12,.py-sm-12{padding-top:6rem !important}.pr-sm-12,.px-sm-12{padding-right:6rem !important}.pb-sm-12,.py-sm-12{padding-bottom:6rem !important}.pl-sm-12,.px-sm-12{padding-left:6rem !important}.p-sm-13{padding:6.5rem !important}.pt-sm-13,.py-sm-13{padding-top:6.5rem !important}.pr-sm-13,.px-sm-13{padding-right:6.5rem !important}.pb-sm-13,.py-sm-13{padding-bottom:6.5rem !important}.pl-sm-13,.px-sm-13{padding-left:6.5rem !important}.p-sm-14{padding:7rem !important}.pt-sm-14,.py-sm-14{padding-top:7rem !important}.pr-sm-14,.px-sm-14{padding-right:7rem !important}.pb-sm-14,.py-sm-14{padding-bottom:7rem !important}.pl-sm-14,.px-sm-14{padding-left:7rem !important}.p-sm-15{padding:7.5rem !important}.pt-sm-15,.py-sm-15{padding-top:7.5rem !important}.pr-sm-15,.px-sm-15{padding-right:7.5rem !important}.pb-sm-15,.py-sm-15{padding-bottom:7.5rem !important}.pl-sm-15,.px-sm-15{padding-left:7.5rem !important}.p-sm-16{padding:8rem !important}.pt-sm-16,.py-sm-16{padding-top:8rem !important}.pr-sm-16,.px-sm-16{padding-right:8rem !important}.pb-sm-16,.py-sm-16{padding-bottom:8rem !important}.pl-sm-16,.px-sm-16{padding-left:8rem !important}.p-sm-17{padding:8.5rem !important}.pt-sm-17,.py-sm-17{padding-top:8.5rem !important}.pr-sm-17,.px-sm-17{padding-right:8.5rem !important}.pb-sm-17,.py-sm-17{padding-bottom:8.5rem !important}.pl-sm-17,.px-sm-17{padding-left:8.5rem !important}.p-sm-18{padding:9rem !important}.pt-sm-18,.py-sm-18{padding-top:9rem !important}.pr-sm-18,.px-sm-18{padding-right:9rem !important}.pb-sm-18,.py-sm-18{padding-bottom:9rem !important}.pl-sm-18,.px-sm-18{padding-left:9rem !important}.p-sm-19{padding:9.5rem !important}.pt-sm-19,.py-sm-19{padding-top:9.5rem !important}.pr-sm-19,.px-sm-19{padding-right:9.5rem !important}.pb-sm-19,.py-sm-19{padding-bottom:9.5rem !important}.pl-sm-19,.px-sm-19{padding-left:9.5rem !important}.p-sm-20{padding:10rem !important}.pt-sm-20,.py-sm-20{padding-top:10rem !important}.pr-sm-20,.px-sm-20{padding-right:10rem !important}.pb-sm-20,.py-sm-20{padding-bottom:10rem !important}.pl-sm-20,.px-sm-20{padding-left:10rem !important}.m-sm-n1{margin:-0.5rem !important}.mt-sm-n1,.my-sm-n1{margin-top:-0.5rem !important}.mr-sm-n1,.mx-sm-n1{margin-right:-0.5rem !important}.mb-sm-n1,.my-sm-n1{margin-bottom:-0.5rem !important}.ml-sm-n1,.mx-sm-n1{margin-left:-0.5rem !important}.m-sm-n2{margin:-1rem !important}.mt-sm-n2,.my-sm-n2{margin-top:-1rem !important}.mr-sm-n2,.mx-sm-n2{margin-right:-1rem !important}.mb-sm-n2,.my-sm-n2{margin-bottom:-1rem !important}.ml-sm-n2,.mx-sm-n2{margin-left:-1rem !important}.m-sm-n3{margin:-1.5rem !important}.mt-sm-n3,.my-sm-n3{margin-top:-1.5rem !important}.mr-sm-n3,.mx-sm-n3{margin-right:-1.5rem !important}.mb-sm-n3,.my-sm-n3{margin-bottom:-1.5rem !important}.ml-sm-n3,.mx-sm-n3{margin-left:-1.5rem !important}.m-sm-n4{margin:-2rem !important}.mt-sm-n4,.my-sm-n4{margin-top:-2rem !important}.mr-sm-n4,.mx-sm-n4{margin-right:-2rem !important}.mb-sm-n4,.my-sm-n4{margin-bottom:-2rem !important}.ml-sm-n4,.mx-sm-n4{margin-left:-2rem !important}.m-sm-n5{margin:-2.5rem !important}.mt-sm-n5,.my-sm-n5{margin-top:-2.5rem !important}.mr-sm-n5,.mx-sm-n5{margin-right:-2.5rem !important}.mb-sm-n5,.my-sm-n5{margin-bottom:-2.5rem !important}.ml-sm-n5,.mx-sm-n5{margin-left:-2.5rem !important}.m-sm-n6{margin:-3rem !important}.mt-sm-n6,.my-sm-n6{margin-top:-3rem !important}.mr-sm-n6,.mx-sm-n6{margin-right:-3rem !important}.mb-sm-n6,.my-sm-n6{margin-bottom:-3rem !important}.ml-sm-n6,.mx-sm-n6{margin-left:-3rem !important}.m-sm-n7{margin:-3.5rem !important}.mt-sm-n7,.my-sm-n7{margin-top:-3.5rem !important}.mr-sm-n7,.mx-sm-n7{margin-right:-3.5rem !important}.mb-sm-n7,.my-sm-n7{margin-bottom:-3.5rem !important}.ml-sm-n7,.mx-sm-n7{margin-left:-3.5rem !important}.m-sm-n8{margin:-4rem !important}.mt-sm-n8,.my-sm-n8{margin-top:-4rem !important}.mr-sm-n8,.mx-sm-n8{margin-right:-4rem !important}.mb-sm-n8,.my-sm-n8{margin-bottom:-4rem !important}.ml-sm-n8,.mx-sm-n8{margin-left:-4rem !important}.m-sm-n9{margin:-4.5rem !important}.mt-sm-n9,.my-sm-n9{margin-top:-4.5rem !important}.mr-sm-n9,.mx-sm-n9{margin-right:-4.5rem !important}.mb-sm-n9,.my-sm-n9{margin-bottom:-4.5rem !important}.ml-sm-n9,.mx-sm-n9{margin-left:-4.5rem !important}.m-sm-n10{margin:-5rem !important}.mt-sm-n10,.my-sm-n10{margin-top:-5rem !important}.mr-sm-n10,.mx-sm-n10{margin-right:-5rem !important}.mb-sm-n10,.my-sm-n10{margin-bottom:-5rem !important}.ml-sm-n10,.mx-sm-n10{margin-left:-5rem !important}.m-sm-n11{margin:-5.5rem !important}.mt-sm-n11,.my-sm-n11{margin-top:-5.5rem !important}.mr-sm-n11,.mx-sm-n11{margin-right:-5.5rem !important}.mb-sm-n11,.my-sm-n11{margin-bottom:-5.5rem !important}.ml-sm-n11,.mx-sm-n11{margin-left:-5.5rem !important}.m-sm-n12{margin:-6rem !important}.mt-sm-n12,.my-sm-n12{margin-top:-6rem !important}.mr-sm-n12,.mx-sm-n12{margin-right:-6rem !important}.mb-sm-n12,.my-sm-n12{margin-bottom:-6rem !important}.ml-sm-n12,.mx-sm-n12{margin-left:-6rem !important}.m-sm-n13{margin:-6.5rem !important}.mt-sm-n13,.my-sm-n13{margin-top:-6.5rem !important}.mr-sm-n13,.mx-sm-n13{margin-right:-6.5rem !important}.mb-sm-n13,.my-sm-n13{margin-bottom:-6.5rem !important}.ml-sm-n13,.mx-sm-n13{margin-left:-6.5rem !important}.m-sm-n14{margin:-7rem !important}.mt-sm-n14,.my-sm-n14{margin-top:-7rem !important}.mr-sm-n14,.mx-sm-n14{margin-right:-7rem !important}.mb-sm-n14,.my-sm-n14{margin-bottom:-7rem !important}.ml-sm-n14,.mx-sm-n14{margin-left:-7rem !important}.m-sm-n15{margin:-7.5rem !important}.mt-sm-n15,.my-sm-n15{margin-top:-7.5rem !important}.mr-sm-n15,.mx-sm-n15{margin-right:-7.5rem !important}.mb-sm-n15,.my-sm-n15{margin-bottom:-7.5rem !important}.ml-sm-n15,.mx-sm-n15{margin-left:-7.5rem !important}.m-sm-n16{margin:-8rem !important}.mt-sm-n16,.my-sm-n16{margin-top:-8rem !important}.mr-sm-n16,.mx-sm-n16{margin-right:-8rem !important}.mb-sm-n16,.my-sm-n16{margin-bottom:-8rem !important}.ml-sm-n16,.mx-sm-n16{margin-left:-8rem !important}.m-sm-n17{margin:-8.5rem !important}.mt-sm-n17,.my-sm-n17{margin-top:-8.5rem !important}.mr-sm-n17,.mx-sm-n17{margin-right:-8.5rem !important}.mb-sm-n17,.my-sm-n17{margin-bottom:-8.5rem !important}.ml-sm-n17,.mx-sm-n17{margin-left:-8.5rem !important}.m-sm-n18{margin:-9rem !important}.mt-sm-n18,.my-sm-n18{margin-top:-9rem !important}.mr-sm-n18,.mx-sm-n18{margin-right:-9rem !important}.mb-sm-n18,.my-sm-n18{margin-bottom:-9rem !important}.ml-sm-n18,.mx-sm-n18{margin-left:-9rem !important}.m-sm-n19{margin:-9.5rem !important}.mt-sm-n19,.my-sm-n19{margin-top:-9.5rem !important}.mr-sm-n19,.mx-sm-n19{margin-right:-9.5rem !important}.mb-sm-n19,.my-sm-n19{margin-bottom:-9.5rem !important}.ml-sm-n19,.mx-sm-n19{margin-left:-9.5rem !important}.m-sm-n20{margin:-10rem !important}.mt-sm-n20,.my-sm-n20{margin-top:-10rem !important}.mr-sm-n20,.mx-sm-n20{margin-right:-10rem !important}.mb-sm-n20,.my-sm-n20{margin-bottom:-10rem !important}.ml-sm-n20,.mx-sm-n20{margin-left:-10rem !important}.m-sm-auto{margin:auto !important}.mt-sm-auto,.my-sm-auto{margin-top:auto !important}.mr-sm-auto,.mx-sm-auto{margin-right:auto !important}.mb-sm-auto,.my-sm-auto{margin-bottom:auto !important}.ml-sm-auto,.mx-sm-auto{margin-left:auto !important}}@media(min-width: 768px){.m-md-0{margin:0 !important}.mt-md-0,.my-md-0{margin-top:0 !important}.mr-md-0,.mx-md-0{margin-right:0 !important}.mb-md-0,.my-md-0{margin-bottom:0 !important}.ml-md-0,.mx-md-0{margin-left:0 !important}.m-md-1{margin:.5rem !important}.mt-md-1,.my-md-1{margin-top:.5rem !important}.mr-md-1,.mx-md-1{margin-right:.5rem !important}.mb-md-1,.my-md-1{margin-bottom:.5rem !important}.ml-md-1,.mx-md-1{margin-left:.5rem !important}.m-md-2{margin:1rem !important}.mt-md-2,.my-md-2{margin-top:1rem !important}.mr-md-2,.mx-md-2{margin-right:1rem !important}.mb-md-2,.my-md-2{margin-bottom:1rem !important}.ml-md-2,.mx-md-2{margin-left:1rem !important}.m-md-3{margin:1.5rem !important}.mt-md-3,.my-md-3{margin-top:1.5rem !important}.mr-md-3,.mx-md-3{margin-right:1.5rem !important}.mb-md-3,.my-md-3{margin-bottom:1.5rem !important}.ml-md-3,.mx-md-3{margin-left:1.5rem !important}.m-md-4{margin:2rem !important}.mt-md-4,.my-md-4{margin-top:2rem !important}.mr-md-4,.mx-md-4{margin-right:2rem !important}.mb-md-4,.my-md-4{margin-bottom:2rem !important}.ml-md-4,.mx-md-4{margin-left:2rem !important}.m-md-5{margin:2.5rem !important}.mt-md-5,.my-md-5{margin-top:2.5rem !important}.mr-md-5,.mx-md-5{margin-right:2.5rem !important}.mb-md-5,.my-md-5{margin-bottom:2.5rem !important}.ml-md-5,.mx-md-5{margin-left:2.5rem !important}.m-md-6{margin:3rem !important}.mt-md-6,.my-md-6{margin-top:3rem !important}.mr-md-6,.mx-md-6{margin-right:3rem !important}.mb-md-6,.my-md-6{margin-bottom:3rem !important}.ml-md-6,.mx-md-6{margin-left:3rem !important}.m-md-7{margin:3.5rem !important}.mt-md-7,.my-md-7{margin-top:3.5rem !important}.mr-md-7,.mx-md-7{margin-right:3.5rem !important}.mb-md-7,.my-md-7{margin-bottom:3.5rem !important}.ml-md-7,.mx-md-7{margin-left:3.5rem !important}.m-md-8{margin:4rem !important}.mt-md-8,.my-md-8{margin-top:4rem !important}.mr-md-8,.mx-md-8{margin-right:4rem !important}.mb-md-8,.my-md-8{margin-bottom:4rem !important}.ml-md-8,.mx-md-8{margin-left:4rem !important}.m-md-9{margin:4.5rem !important}.mt-md-9,.my-md-9{margin-top:4.5rem !important}.mr-md-9,.mx-md-9{margin-right:4.5rem !important}.mb-md-9,.my-md-9{margin-bottom:4.5rem !important}.ml-md-9,.mx-md-9{margin-left:4.5rem !important}.m-md-10{margin:5rem !important}.mt-md-10,.my-md-10{margin-top:5rem !important}.mr-md-10,.mx-md-10{margin-right:5rem !important}.mb-md-10,.my-md-10{margin-bottom:5rem !important}.ml-md-10,.mx-md-10{margin-left:5rem !important}.m-md-11{margin:5.5rem !important}.mt-md-11,.my-md-11{margin-top:5.5rem !important}.mr-md-11,.mx-md-11{margin-right:5.5rem !important}.mb-md-11,.my-md-11{margin-bottom:5.5rem !important}.ml-md-11,.mx-md-11{margin-left:5.5rem !important}.m-md-12{margin:6rem !important}.mt-md-12,.my-md-12{margin-top:6rem !important}.mr-md-12,.mx-md-12{margin-right:6rem !important}.mb-md-12,.my-md-12{margin-bottom:6rem !important}.ml-md-12,.mx-md-12{margin-left:6rem !important}.m-md-13{margin:6.5rem !important}.mt-md-13,.my-md-13{margin-top:6.5rem !important}.mr-md-13,.mx-md-13{margin-right:6.5rem !important}.mb-md-13,.my-md-13{margin-bottom:6.5rem !important}.ml-md-13,.mx-md-13{margin-left:6.5rem !important}.m-md-14{margin:7rem !important}.mt-md-14,.my-md-14{margin-top:7rem !important}.mr-md-14,.mx-md-14{margin-right:7rem !important}.mb-md-14,.my-md-14{margin-bottom:7rem !important}.ml-md-14,.mx-md-14{margin-left:7rem !important}.m-md-15{margin:7.5rem !important}.mt-md-15,.my-md-15{margin-top:7.5rem !important}.mr-md-15,.mx-md-15{margin-right:7.5rem !important}.mb-md-15,.my-md-15{margin-bottom:7.5rem !important}.ml-md-15,.mx-md-15{margin-left:7.5rem !important}.m-md-16{margin:8rem !important}.mt-md-16,.my-md-16{margin-top:8rem !important}.mr-md-16,.mx-md-16{margin-right:8rem !important}.mb-md-16,.my-md-16{margin-bottom:8rem !important}.ml-md-16,.mx-md-16{margin-left:8rem !important}.m-md-17{margin:8.5rem !important}.mt-md-17,.my-md-17{margin-top:8.5rem !important}.mr-md-17,.mx-md-17{margin-right:8.5rem !important}.mb-md-17,.my-md-17{margin-bottom:8.5rem !important}.ml-md-17,.mx-md-17{margin-left:8.5rem !important}.m-md-18{margin:9rem !important}.mt-md-18,.my-md-18{margin-top:9rem !important}.mr-md-18,.mx-md-18{margin-right:9rem !important}.mb-md-18,.my-md-18{margin-bottom:9rem !important}.ml-md-18,.mx-md-18{margin-left:9rem !important}.m-md-19{margin:9.5rem !important}.mt-md-19,.my-md-19{margin-top:9.5rem !important}.mr-md-19,.mx-md-19{margin-right:9.5rem !important}.mb-md-19,.my-md-19{margin-bottom:9.5rem !important}.ml-md-19,.mx-md-19{margin-left:9.5rem !important}.m-md-20{margin:10rem !important}.mt-md-20,.my-md-20{margin-top:10rem !important}.mr-md-20,.mx-md-20{margin-right:10rem !important}.mb-md-20,.my-md-20{margin-bottom:10rem !important}.ml-md-20,.mx-md-20{margin-left:10rem !important}.p-md-0{padding:0 !important}.pt-md-0,.py-md-0{padding-top:0 !important}.pr-md-0,.px-md-0{padding-right:0 !important}.pb-md-0,.py-md-0{padding-bottom:0 !important}.pl-md-0,.px-md-0{padding-left:0 !important}.p-md-1{padding:.5rem !important}.pt-md-1,.py-md-1{padding-top:.5rem !important}.pr-md-1,.px-md-1{padding-right:.5rem !important}.pb-md-1,.py-md-1{padding-bottom:.5rem !important}.pl-md-1,.px-md-1{padding-left:.5rem !important}.p-md-2{padding:1rem !important}.pt-md-2,.py-md-2{padding-top:1rem !important}.pr-md-2,.px-md-2{padding-right:1rem !important}.pb-md-2,.py-md-2{padding-bottom:1rem !important}.pl-md-2,.px-md-2{padding-left:1rem !important}.p-md-3{padding:1.5rem !important}.pt-md-3,.py-md-3{padding-top:1.5rem !important}.pr-md-3,.px-md-3{padding-right:1.5rem !important}.pb-md-3,.py-md-3{padding-bottom:1.5rem !important}.pl-md-3,.px-md-3{padding-left:1.5rem !important}.p-md-4{padding:2rem !important}.pt-md-4,.py-md-4{padding-top:2rem !important}.pr-md-4,.px-md-4{padding-right:2rem !important}.pb-md-4,.py-md-4{padding-bottom:2rem !important}.pl-md-4,.px-md-4{padding-left:2rem !important}.p-md-5{padding:2.5rem !important}.pt-md-5,.py-md-5{padding-top:2.5rem !important}.pr-md-5,.px-md-5{padding-right:2.5rem !important}.pb-md-5,.py-md-5{padding-bottom:2.5rem !important}.pl-md-5,.px-md-5{padding-left:2.5rem !important}.p-md-6{padding:3rem !important}.pt-md-6,.py-md-6{padding-top:3rem !important}.pr-md-6,.px-md-6{padding-right:3rem !important}.pb-md-6,.py-md-6{padding-bottom:3rem !important}.pl-md-6,.px-md-6{padding-left:3rem !important}.p-md-7{padding:3.5rem !important}.pt-md-7,.py-md-7{padding-top:3.5rem !important}.pr-md-7,.px-md-7{padding-right:3.5rem !important}.pb-md-7,.py-md-7{padding-bottom:3.5rem !important}.pl-md-7,.px-md-7{padding-left:3.5rem !important}.p-md-8{padding:4rem !important}.pt-md-8,.py-md-8{padding-top:4rem !important}.pr-md-8,.px-md-8{padding-right:4rem !important}.pb-md-8,.py-md-8{padding-bottom:4rem !important}.pl-md-8,.px-md-8{padding-left:4rem !important}.p-md-9{padding:4.5rem !important}.pt-md-9,.py-md-9{padding-top:4.5rem !important}.pr-md-9,.px-md-9{padding-right:4.5rem !important}.pb-md-9,.py-md-9{padding-bottom:4.5rem !important}.pl-md-9,.px-md-9{padding-left:4.5rem !important}.p-md-10{padding:5rem !important}.pt-md-10,.py-md-10{padding-top:5rem !important}.pr-md-10,.px-md-10{padding-right:5rem !important}.pb-md-10,.py-md-10{padding-bottom:5rem !important}.pl-md-10,.px-md-10{padding-left:5rem !important}.p-md-11{padding:5.5rem !important}.pt-md-11,.py-md-11{padding-top:5.5rem !important}.pr-md-11,.px-md-11{padding-right:5.5rem !important}.pb-md-11,.py-md-11{padding-bottom:5.5rem !important}.pl-md-11,.px-md-11{padding-left:5.5rem !important}.p-md-12{padding:6rem !important}.pt-md-12,.py-md-12{padding-top:6rem !important}.pr-md-12,.px-md-12{padding-right:6rem !important}.pb-md-12,.py-md-12{padding-bottom:6rem !important}.pl-md-12,.px-md-12{padding-left:6rem !important}.p-md-13{padding:6.5rem !important}.pt-md-13,.py-md-13{padding-top:6.5rem !important}.pr-md-13,.px-md-13{padding-right:6.5rem !important}.pb-md-13,.py-md-13{padding-bottom:6.5rem !important}.pl-md-13,.px-md-13{padding-left:6.5rem !important}.p-md-14{padding:7rem !important}.pt-md-14,.py-md-14{padding-top:7rem !important}.pr-md-14,.px-md-14{padding-right:7rem !important}.pb-md-14,.py-md-14{padding-bottom:7rem !important}.pl-md-14,.px-md-14{padding-left:7rem !important}.p-md-15{padding:7.5rem !important}.pt-md-15,.py-md-15{padding-top:7.5rem !important}.pr-md-15,.px-md-15{padding-right:7.5rem !important}.pb-md-15,.py-md-15{padding-bottom:7.5rem !important}.pl-md-15,.px-md-15{padding-left:7.5rem !important}.p-md-16{padding:8rem !important}.pt-md-16,.py-md-16{padding-top:8rem !important}.pr-md-16,.px-md-16{padding-right:8rem !important}.pb-md-16,.py-md-16{padding-bottom:8rem !important}.pl-md-16,.px-md-16{padding-left:8rem !important}.p-md-17{padding:8.5rem !important}.pt-md-17,.py-md-17{padding-top:8.5rem !important}.pr-md-17,.px-md-17{padding-right:8.5rem !important}.pb-md-17,.py-md-17{padding-bottom:8.5rem !important}.pl-md-17,.px-md-17{padding-left:8.5rem !important}.p-md-18{padding:9rem !important}.pt-md-18,.py-md-18{padding-top:9rem !important}.pr-md-18,.px-md-18{padding-right:9rem !important}.pb-md-18,.py-md-18{padding-bottom:9rem !important}.pl-md-18,.px-md-18{padding-left:9rem !important}.p-md-19{padding:9.5rem !important}.pt-md-19,.py-md-19{padding-top:9.5rem !important}.pr-md-19,.px-md-19{padding-right:9.5rem !important}.pb-md-19,.py-md-19{padding-bottom:9.5rem !important}.pl-md-19,.px-md-19{padding-left:9.5rem !important}.p-md-20{padding:10rem !important}.pt-md-20,.py-md-20{padding-top:10rem !important}.pr-md-20,.px-md-20{padding-right:10rem !important}.pb-md-20,.py-md-20{padding-bottom:10rem !important}.pl-md-20,.px-md-20{padding-left:10rem !important}.m-md-n1{margin:-0.5rem !important}.mt-md-n1,.my-md-n1{margin-top:-0.5rem !important}.mr-md-n1,.mx-md-n1{margin-right:-0.5rem !important}.mb-md-n1,.my-md-n1{margin-bottom:-0.5rem !important}.ml-md-n1,.mx-md-n1{margin-left:-0.5rem !important}.m-md-n2{margin:-1rem !important}.mt-md-n2,.my-md-n2{margin-top:-1rem !important}.mr-md-n2,.mx-md-n2{margin-right:-1rem !important}.mb-md-n2,.my-md-n2{margin-bottom:-1rem !important}.ml-md-n2,.mx-md-n2{margin-left:-1rem !important}.m-md-n3{margin:-1.5rem !important}.mt-md-n3,.my-md-n3{margin-top:-1.5rem !important}.mr-md-n3,.mx-md-n3{margin-right:-1.5rem !important}.mb-md-n3,.my-md-n3{margin-bottom:-1.5rem !important}.ml-md-n3,.mx-md-n3{margin-left:-1.5rem !important}.m-md-n4{margin:-2rem !important}.mt-md-n4,.my-md-n4{margin-top:-2rem !important}.mr-md-n4,.mx-md-n4{margin-right:-2rem !important}.mb-md-n4,.my-md-n4{margin-bottom:-2rem !important}.ml-md-n4,.mx-md-n4{margin-left:-2rem !important}.m-md-n5{margin:-2.5rem !important}.mt-md-n5,.my-md-n5{margin-top:-2.5rem !important}.mr-md-n5,.mx-md-n5{margin-right:-2.5rem !important}.mb-md-n5,.my-md-n5{margin-bottom:-2.5rem !important}.ml-md-n5,.mx-md-n5{margin-left:-2.5rem !important}.m-md-n6{margin:-3rem !important}.mt-md-n6,.my-md-n6{margin-top:-3rem !important}.mr-md-n6,.mx-md-n6{margin-right:-3rem !important}.mb-md-n6,.my-md-n6{margin-bottom:-3rem !important}.ml-md-n6,.mx-md-n6{margin-left:-3rem !important}.m-md-n7{margin:-3.5rem !important}.mt-md-n7,.my-md-n7{margin-top:-3.5rem !important}.mr-md-n7,.mx-md-n7{margin-right:-3.5rem !important}.mb-md-n7,.my-md-n7{margin-bottom:-3.5rem !important}.ml-md-n7,.mx-md-n7{margin-left:-3.5rem !important}.m-md-n8{margin:-4rem !important}.mt-md-n8,.my-md-n8{margin-top:-4rem !important}.mr-md-n8,.mx-md-n8{margin-right:-4rem !important}.mb-md-n8,.my-md-n8{margin-bottom:-4rem !important}.ml-md-n8,.mx-md-n8{margin-left:-4rem !important}.m-md-n9{margin:-4.5rem !important}.mt-md-n9,.my-md-n9{margin-top:-4.5rem !important}.mr-md-n9,.mx-md-n9{margin-right:-4.5rem !important}.mb-md-n9,.my-md-n9{margin-bottom:-4.5rem !important}.ml-md-n9,.mx-md-n9{margin-left:-4.5rem !important}.m-md-n10{margin:-5rem !important}.mt-md-n10,.my-md-n10{margin-top:-5rem !important}.mr-md-n10,.mx-md-n10{margin-right:-5rem !important}.mb-md-n10,.my-md-n10{margin-bottom:-5rem !important}.ml-md-n10,.mx-md-n10{margin-left:-5rem !important}.m-md-n11{margin:-5.5rem !important}.mt-md-n11,.my-md-n11{margin-top:-5.5rem !important}.mr-md-n11,.mx-md-n11{margin-right:-5.5rem !important}.mb-md-n11,.my-md-n11{margin-bottom:-5.5rem !important}.ml-md-n11,.mx-md-n11{margin-left:-5.5rem !important}.m-md-n12{margin:-6rem !important}.mt-md-n12,.my-md-n12{margin-top:-6rem !important}.mr-md-n12,.mx-md-n12{margin-right:-6rem !important}.mb-md-n12,.my-md-n12{margin-bottom:-6rem !important}.ml-md-n12,.mx-md-n12{margin-left:-6rem !important}.m-md-n13{margin:-6.5rem !important}.mt-md-n13,.my-md-n13{margin-top:-6.5rem !important}.mr-md-n13,.mx-md-n13{margin-right:-6.5rem !important}.mb-md-n13,.my-md-n13{margin-bottom:-6.5rem !important}.ml-md-n13,.mx-md-n13{margin-left:-6.5rem !important}.m-md-n14{margin:-7rem !important}.mt-md-n14,.my-md-n14{margin-top:-7rem !important}.mr-md-n14,.mx-md-n14{margin-right:-7rem !important}.mb-md-n14,.my-md-n14{margin-bottom:-7rem !important}.ml-md-n14,.mx-md-n14{margin-left:-7rem !important}.m-md-n15{margin:-7.5rem !important}.mt-md-n15,.my-md-n15{margin-top:-7.5rem !important}.mr-md-n15,.mx-md-n15{margin-right:-7.5rem !important}.mb-md-n15,.my-md-n15{margin-bottom:-7.5rem !important}.ml-md-n15,.mx-md-n15{margin-left:-7.5rem !important}.m-md-n16{margin:-8rem !important}.mt-md-n16,.my-md-n16{margin-top:-8rem !important}.mr-md-n16,.mx-md-n16{margin-right:-8rem !important}.mb-md-n16,.my-md-n16{margin-bottom:-8rem !important}.ml-md-n16,.mx-md-n16{margin-left:-8rem !important}.m-md-n17{margin:-8.5rem !important}.mt-md-n17,.my-md-n17{margin-top:-8.5rem !important}.mr-md-n17,.mx-md-n17{margin-right:-8.5rem !important}.mb-md-n17,.my-md-n17{margin-bottom:-8.5rem !important}.ml-md-n17,.mx-md-n17{margin-left:-8.5rem !important}.m-md-n18{margin:-9rem !important}.mt-md-n18,.my-md-n18{margin-top:-9rem !important}.mr-md-n18,.mx-md-n18{margin-right:-9rem !important}.mb-md-n18,.my-md-n18{margin-bottom:-9rem !important}.ml-md-n18,.mx-md-n18{margin-left:-9rem !important}.m-md-n19{margin:-9.5rem !important}.mt-md-n19,.my-md-n19{margin-top:-9.5rem !important}.mr-md-n19,.mx-md-n19{margin-right:-9.5rem !important}.mb-md-n19,.my-md-n19{margin-bottom:-9.5rem !important}.ml-md-n19,.mx-md-n19{margin-left:-9.5rem !important}.m-md-n20{margin:-10rem !important}.mt-md-n20,.my-md-n20{margin-top:-10rem !important}.mr-md-n20,.mx-md-n20{margin-right:-10rem !important}.mb-md-n20,.my-md-n20{margin-bottom:-10rem !important}.ml-md-n20,.mx-md-n20{margin-left:-10rem !important}.m-md-auto{margin:auto !important}.mt-md-auto,.my-md-auto{margin-top:auto !important}.mr-md-auto,.mx-md-auto{margin-right:auto !important}.mb-md-auto,.my-md-auto{margin-bottom:auto !important}.ml-md-auto,.mx-md-auto{margin-left:auto !important}}@media(min-width: 992px){.m-lg-0{margin:0 !important}.mt-lg-0,.my-lg-0{margin-top:0 !important}.mr-lg-0,.mx-lg-0{margin-right:0 !important}.mb-lg-0,.my-lg-0{margin-bottom:0 !important}.ml-lg-0,.mx-lg-0{margin-left:0 !important}.m-lg-1{margin:.5rem !important}.mt-lg-1,.my-lg-1{margin-top:.5rem !important}.mr-lg-1,.mx-lg-1{margin-right:.5rem !important}.mb-lg-1,.my-lg-1{margin-bottom:.5rem !important}.ml-lg-1,.mx-lg-1{margin-left:.5rem !important}.m-lg-2{margin:1rem !important}.mt-lg-2,.my-lg-2{margin-top:1rem !important}.mr-lg-2,.mx-lg-2{margin-right:1rem !important}.mb-lg-2,.my-lg-2{margin-bottom:1rem !important}.ml-lg-2,.mx-lg-2{margin-left:1rem !important}.m-lg-3{margin:1.5rem !important}.mt-lg-3,.my-lg-3{margin-top:1.5rem !important}.mr-lg-3,.mx-lg-3{margin-right:1.5rem !important}.mb-lg-3,.my-lg-3{margin-bottom:1.5rem !important}.ml-lg-3,.mx-lg-3{margin-left:1.5rem !important}.m-lg-4{margin:2rem !important}.mt-lg-4,.my-lg-4{margin-top:2rem !important}.mr-lg-4,.mx-lg-4{margin-right:2rem !important}.mb-lg-4,.my-lg-4{margin-bottom:2rem !important}.ml-lg-4,.mx-lg-4{margin-left:2rem !important}.m-lg-5{margin:2.5rem !important}.mt-lg-5,.my-lg-5{margin-top:2.5rem !important}.mr-lg-5,.mx-lg-5{margin-right:2.5rem !important}.mb-lg-5,.my-lg-5{margin-bottom:2.5rem !important}.ml-lg-5,.mx-lg-5{margin-left:2.5rem !important}.m-lg-6{margin:3rem !important}.mt-lg-6,.my-lg-6{margin-top:3rem !important}.mr-lg-6,.mx-lg-6{margin-right:3rem !important}.mb-lg-6,.my-lg-6{margin-bottom:3rem !important}.ml-lg-6,.mx-lg-6{margin-left:3rem !important}.m-lg-7{margin:3.5rem !important}.mt-lg-7,.my-lg-7{margin-top:3.5rem !important}.mr-lg-7,.mx-lg-7{margin-right:3.5rem !important}.mb-lg-7,.my-lg-7{margin-bottom:3.5rem !important}.ml-lg-7,.mx-lg-7{margin-left:3.5rem !important}.m-lg-8{margin:4rem !important}.mt-lg-8,.my-lg-8{margin-top:4rem !important}.mr-lg-8,.mx-lg-8{margin-right:4rem !important}.mb-lg-8,.my-lg-8{margin-bottom:4rem !important}.ml-lg-8,.mx-lg-8{margin-left:4rem !important}.m-lg-9{margin:4.5rem !important}.mt-lg-9,.my-lg-9{margin-top:4.5rem !important}.mr-lg-9,.mx-lg-9{margin-right:4.5rem !important}.mb-lg-9,.my-lg-9{margin-bottom:4.5rem !important}.ml-lg-9,.mx-lg-9{margin-left:4.5rem !important}.m-lg-10{margin:5rem !important}.mt-lg-10,.my-lg-10{margin-top:5rem !important}.mr-lg-10,.mx-lg-10{margin-right:5rem !important}.mb-lg-10,.my-lg-10{margin-bottom:5rem !important}.ml-lg-10,.mx-lg-10{margin-left:5rem !important}.m-lg-11{margin:5.5rem !important}.mt-lg-11,.my-lg-11{margin-top:5.5rem !important}.mr-lg-11,.mx-lg-11{margin-right:5.5rem !important}.mb-lg-11,.my-lg-11{margin-bottom:5.5rem !important}.ml-lg-11,.mx-lg-11{margin-left:5.5rem !important}.m-lg-12{margin:6rem !important}.mt-lg-12,.my-lg-12{margin-top:6rem !important}.mr-lg-12,.mx-lg-12{margin-right:6rem !important}.mb-lg-12,.my-lg-12{margin-bottom:6rem !important}.ml-lg-12,.mx-lg-12{margin-left:6rem !important}.m-lg-13{margin:6.5rem !important}.mt-lg-13,.my-lg-13{margin-top:6.5rem !important}.mr-lg-13,.mx-lg-13{margin-right:6.5rem !important}.mb-lg-13,.my-lg-13{margin-bottom:6.5rem !important}.ml-lg-13,.mx-lg-13{margin-left:6.5rem !important}.m-lg-14{margin:7rem !important}.mt-lg-14,.my-lg-14{margin-top:7rem !important}.mr-lg-14,.mx-lg-14{margin-right:7rem !important}.mb-lg-14,.my-lg-14{margin-bottom:7rem !important}.ml-lg-14,.mx-lg-14{margin-left:7rem !important}.m-lg-15{margin:7.5rem !important}.mt-lg-15,.my-lg-15{margin-top:7.5rem !important}.mr-lg-15,.mx-lg-15{margin-right:7.5rem !important}.mb-lg-15,.my-lg-15{margin-bottom:7.5rem !important}.ml-lg-15,.mx-lg-15{margin-left:7.5rem !important}.m-lg-16{margin:8rem !important}.mt-lg-16,.my-lg-16{margin-top:8rem !important}.mr-lg-16,.mx-lg-16{margin-right:8rem !important}.mb-lg-16,.my-lg-16{margin-bottom:8rem !important}.ml-lg-16,.mx-lg-16{margin-left:8rem !important}.m-lg-17{margin:8.5rem !important}.mt-lg-17,.my-lg-17{margin-top:8.5rem !important}.mr-lg-17,.mx-lg-17{margin-right:8.5rem !important}.mb-lg-17,.my-lg-17{margin-bottom:8.5rem !important}.ml-lg-17,.mx-lg-17{margin-left:8.5rem !important}.m-lg-18{margin:9rem !important}.mt-lg-18,.my-lg-18{margin-top:9rem !important}.mr-lg-18,.mx-lg-18{margin-right:9rem !important}.mb-lg-18,.my-lg-18{margin-bottom:9rem !important}.ml-lg-18,.mx-lg-18{margin-left:9rem !important}.m-lg-19{margin:9.5rem !important}.mt-lg-19,.my-lg-19{margin-top:9.5rem !important}.mr-lg-19,.mx-lg-19{margin-right:9.5rem !important}.mb-lg-19,.my-lg-19{margin-bottom:9.5rem !important}.ml-lg-19,.mx-lg-19{margin-left:9.5rem !important}.m-lg-20{margin:10rem !important}.mt-lg-20,.my-lg-20{margin-top:10rem !important}.mr-lg-20,.mx-lg-20{margin-right:10rem !important}.mb-lg-20,.my-lg-20{margin-bottom:10rem !important}.ml-lg-20,.mx-lg-20{margin-left:10rem !important}.p-lg-0{padding:0 !important}.pt-lg-0,.py-lg-0{padding-top:0 !important}.pr-lg-0,.px-lg-0{padding-right:0 !important}.pb-lg-0,.py-lg-0{padding-bottom:0 !important}.pl-lg-0,.px-lg-0{padding-left:0 !important}.p-lg-1{padding:.5rem !important}.pt-lg-1,.py-lg-1{padding-top:.5rem !important}.pr-lg-1,.px-lg-1{padding-right:.5rem !important}.pb-lg-1,.py-lg-1{padding-bottom:.5rem !important}.pl-lg-1,.px-lg-1{padding-left:.5rem !important}.p-lg-2{padding:1rem !important}.pt-lg-2,.py-lg-2{padding-top:1rem !important}.pr-lg-2,.px-lg-2{padding-right:1rem !important}.pb-lg-2,.py-lg-2{padding-bottom:1rem !important}.pl-lg-2,.px-lg-2{padding-left:1rem !important}.p-lg-3{padding:1.5rem !important}.pt-lg-3,.py-lg-3{padding-top:1.5rem !important}.pr-lg-3,.px-lg-3{padding-right:1.5rem !important}.pb-lg-3,.py-lg-3{padding-bottom:1.5rem !important}.pl-lg-3,.px-lg-3{padding-left:1.5rem !important}.p-lg-4{padding:2rem !important}.pt-lg-4,.py-lg-4{padding-top:2rem !important}.pr-lg-4,.px-lg-4{padding-right:2rem !important}.pb-lg-4,.py-lg-4{padding-bottom:2rem !important}.pl-lg-4,.px-lg-4{padding-left:2rem !important}.p-lg-5{padding:2.5rem !important}.pt-lg-5,.py-lg-5{padding-top:2.5rem !important}.pr-lg-5,.px-lg-5{padding-right:2.5rem !important}.pb-lg-5,.py-lg-5{padding-bottom:2.5rem !important}.pl-lg-5,.px-lg-5{padding-left:2.5rem !important}.p-lg-6{padding:3rem !important}.pt-lg-6,.py-lg-6{padding-top:3rem !important}.pr-lg-6,.px-lg-6{padding-right:3rem !important}.pb-lg-6,.py-lg-6{padding-bottom:3rem !important}.pl-lg-6,.px-lg-6{padding-left:3rem !important}.p-lg-7{padding:3.5rem !important}.pt-lg-7,.py-lg-7{padding-top:3.5rem !important}.pr-lg-7,.px-lg-7{padding-right:3.5rem !important}.pb-lg-7,.py-lg-7{padding-bottom:3.5rem !important}.pl-lg-7,.px-lg-7{padding-left:3.5rem !important}.p-lg-8{padding:4rem !important}.pt-lg-8,.py-lg-8{padding-top:4rem !important}.pr-lg-8,.px-lg-8{padding-right:4rem !important}.pb-lg-8,.py-lg-8{padding-bottom:4rem !important}.pl-lg-8,.px-lg-8{padding-left:4rem !important}.p-lg-9{padding:4.5rem !important}.pt-lg-9,.py-lg-9{padding-top:4.5rem !important}.pr-lg-9,.px-lg-9{padding-right:4.5rem !important}.pb-lg-9,.py-lg-9{padding-bottom:4.5rem !important}.pl-lg-9,.px-lg-9{padding-left:4.5rem !important}.p-lg-10{padding:5rem !important}.pt-lg-10,.py-lg-10{padding-top:5rem !important}.pr-lg-10,.px-lg-10{padding-right:5rem !important}.pb-lg-10,.py-lg-10{padding-bottom:5rem !important}.pl-lg-10,.px-lg-10{padding-left:5rem !important}.p-lg-11{padding:5.5rem !important}.pt-lg-11,.py-lg-11{padding-top:5.5rem !important}.pr-lg-11,.px-lg-11{padding-right:5.5rem !important}.pb-lg-11,.py-lg-11{padding-bottom:5.5rem !important}.pl-lg-11,.px-lg-11{padding-left:5.5rem !important}.p-lg-12{padding:6rem !important}.pt-lg-12,.py-lg-12{padding-top:6rem !important}.pr-lg-12,.px-lg-12{padding-right:6rem !important}.pb-lg-12,.py-lg-12{padding-bottom:6rem !important}.pl-lg-12,.px-lg-12{padding-left:6rem !important}.p-lg-13{padding:6.5rem !important}.pt-lg-13,.py-lg-13{padding-top:6.5rem !important}.pr-lg-13,.px-lg-13{padding-right:6.5rem !important}.pb-lg-13,.py-lg-13{padding-bottom:6.5rem !important}.pl-lg-13,.px-lg-13{padding-left:6.5rem !important}.p-lg-14{padding:7rem !important}.pt-lg-14,.py-lg-14{padding-top:7rem !important}.pr-lg-14,.px-lg-14{padding-right:7rem !important}.pb-lg-14,.py-lg-14{padding-bottom:7rem !important}.pl-lg-14,.px-lg-14{padding-left:7rem !important}.p-lg-15{padding:7.5rem !important}.pt-lg-15,.py-lg-15{padding-top:7.5rem !important}.pr-lg-15,.px-lg-15{padding-right:7.5rem !important}.pb-lg-15,.py-lg-15{padding-bottom:7.5rem !important}.pl-lg-15,.px-lg-15{padding-left:7.5rem !important}.p-lg-16{padding:8rem !important}.pt-lg-16,.py-lg-16{padding-top:8rem !important}.pr-lg-16,.px-lg-16{padding-right:8rem !important}.pb-lg-16,.py-lg-16{padding-bottom:8rem !important}.pl-lg-16,.px-lg-16{padding-left:8rem !important}.p-lg-17{padding:8.5rem !important}.pt-lg-17,.py-lg-17{padding-top:8.5rem !important}.pr-lg-17,.px-lg-17{padding-right:8.5rem !important}.pb-lg-17,.py-lg-17{padding-bottom:8.5rem !important}.pl-lg-17,.px-lg-17{padding-left:8.5rem !important}.p-lg-18{padding:9rem !important}.pt-lg-18,.py-lg-18{padding-top:9rem !important}.pr-lg-18,.px-lg-18{padding-right:9rem !important}.pb-lg-18,.py-lg-18{padding-bottom:9rem !important}.pl-lg-18,.px-lg-18{padding-left:9rem !important}.p-lg-19{padding:9.5rem !important}.pt-lg-19,.py-lg-19{padding-top:9.5rem !important}.pr-lg-19,.px-lg-19{padding-right:9.5rem !important}.pb-lg-19,.py-lg-19{padding-bottom:9.5rem !important}.pl-lg-19,.px-lg-19{padding-left:9.5rem !important}.p-lg-20{padding:10rem !important}.pt-lg-20,.py-lg-20{padding-top:10rem !important}.pr-lg-20,.px-lg-20{padding-right:10rem !important}.pb-lg-20,.py-lg-20{padding-bottom:10rem !important}.pl-lg-20,.px-lg-20{padding-left:10rem !important}.m-lg-n1{margin:-0.5rem !important}.mt-lg-n1,.my-lg-n1{margin-top:-0.5rem !important}.mr-lg-n1,.mx-lg-n1{margin-right:-0.5rem !important}.mb-lg-n1,.my-lg-n1{margin-bottom:-0.5rem !important}.ml-lg-n1,.mx-lg-n1{margin-left:-0.5rem !important}.m-lg-n2{margin:-1rem !important}.mt-lg-n2,.my-lg-n2{margin-top:-1rem !important}.mr-lg-n2,.mx-lg-n2{margin-right:-1rem !important}.mb-lg-n2,.my-lg-n2{margin-bottom:-1rem !important}.ml-lg-n2,.mx-lg-n2{margin-left:-1rem !important}.m-lg-n3{margin:-1.5rem !important}.mt-lg-n3,.my-lg-n3{margin-top:-1.5rem !important}.mr-lg-n3,.mx-lg-n3{margin-right:-1.5rem !important}.mb-lg-n3,.my-lg-n3{margin-bottom:-1.5rem !important}.ml-lg-n3,.mx-lg-n3{margin-left:-1.5rem !important}.m-lg-n4{margin:-2rem !important}.mt-lg-n4,.my-lg-n4{margin-top:-2rem !important}.mr-lg-n4,.mx-lg-n4{margin-right:-2rem !important}.mb-lg-n4,.my-lg-n4{margin-bottom:-2rem !important}.ml-lg-n4,.mx-lg-n4{margin-left:-2rem !important}.m-lg-n5{margin:-2.5rem !important}.mt-lg-n5,.my-lg-n5{margin-top:-2.5rem !important}.mr-lg-n5,.mx-lg-n5{margin-right:-2.5rem !important}.mb-lg-n5,.my-lg-n5{margin-bottom:-2.5rem !important}.ml-lg-n5,.mx-lg-n5{margin-left:-2.5rem !important}.m-lg-n6{margin:-3rem !important}.mt-lg-n6,.my-lg-n6{margin-top:-3rem !important}.mr-lg-n6,.mx-lg-n6{margin-right:-3rem !important}.mb-lg-n6,.my-lg-n6{margin-bottom:-3rem !important}.ml-lg-n6,.mx-lg-n6{margin-left:-3rem !important}.m-lg-n7{margin:-3.5rem !important}.mt-lg-n7,.my-lg-n7{margin-top:-3.5rem !important}.mr-lg-n7,.mx-lg-n7{margin-right:-3.5rem !important}.mb-lg-n7,.my-lg-n7{margin-bottom:-3.5rem !important}.ml-lg-n7,.mx-lg-n7{margin-left:-3.5rem !important}.m-lg-n8{margin:-4rem !important}.mt-lg-n8,.my-lg-n8{margin-top:-4rem !important}.mr-lg-n8,.mx-lg-n8{margin-right:-4rem !important}.mb-lg-n8,.my-lg-n8{margin-bottom:-4rem !important}.ml-lg-n8,.mx-lg-n8{margin-left:-4rem !important}.m-lg-n9{margin:-4.5rem !important}.mt-lg-n9,.my-lg-n9{margin-top:-4.5rem !important}.mr-lg-n9,.mx-lg-n9{margin-right:-4.5rem !important}.mb-lg-n9,.my-lg-n9{margin-bottom:-4.5rem !important}.ml-lg-n9,.mx-lg-n9{margin-left:-4.5rem !important}.m-lg-n10{margin:-5rem !important}.mt-lg-n10,.my-lg-n10{margin-top:-5rem !important}.mr-lg-n10,.mx-lg-n10{margin-right:-5rem !important}.mb-lg-n10,.my-lg-n10{margin-bottom:-5rem !important}.ml-lg-n10,.mx-lg-n10{margin-left:-5rem !important}.m-lg-n11{margin:-5.5rem !important}.mt-lg-n11,.my-lg-n11{margin-top:-5.5rem !important}.mr-lg-n11,.mx-lg-n11{margin-right:-5.5rem !important}.mb-lg-n11,.my-lg-n11{margin-bottom:-5.5rem !important}.ml-lg-n11,.mx-lg-n11{margin-left:-5.5rem !important}.m-lg-n12{margin:-6rem !important}.mt-lg-n12,.my-lg-n12{margin-top:-6rem !important}.mr-lg-n12,.mx-lg-n12{margin-right:-6rem !important}.mb-lg-n12,.my-lg-n12{margin-bottom:-6rem !important}.ml-lg-n12,.mx-lg-n12{margin-left:-6rem !important}.m-lg-n13{margin:-6.5rem !important}.mt-lg-n13,.my-lg-n13{margin-top:-6.5rem !important}.mr-lg-n13,.mx-lg-n13{margin-right:-6.5rem !important}.mb-lg-n13,.my-lg-n13{margin-bottom:-6.5rem !important}.ml-lg-n13,.mx-lg-n13{margin-left:-6.5rem !important}.m-lg-n14{margin:-7rem !important}.mt-lg-n14,.my-lg-n14{margin-top:-7rem !important}.mr-lg-n14,.mx-lg-n14{margin-right:-7rem !important}.mb-lg-n14,.my-lg-n14{margin-bottom:-7rem !important}.ml-lg-n14,.mx-lg-n14{margin-left:-7rem !important}.m-lg-n15{margin:-7.5rem !important}.mt-lg-n15,.my-lg-n15{margin-top:-7.5rem !important}.mr-lg-n15,.mx-lg-n15{margin-right:-7.5rem !important}.mb-lg-n15,.my-lg-n15{margin-bottom:-7.5rem !important}.ml-lg-n15,.mx-lg-n15{margin-left:-7.5rem !important}.m-lg-n16{margin:-8rem !important}.mt-lg-n16,.my-lg-n16{margin-top:-8rem !important}.mr-lg-n16,.mx-lg-n16{margin-right:-8rem !important}.mb-lg-n16,.my-lg-n16{margin-bottom:-8rem !important}.ml-lg-n16,.mx-lg-n16{margin-left:-8rem !important}.m-lg-n17{margin:-8.5rem !important}.mt-lg-n17,.my-lg-n17{margin-top:-8.5rem !important}.mr-lg-n17,.mx-lg-n17{margin-right:-8.5rem !important}.mb-lg-n17,.my-lg-n17{margin-bottom:-8.5rem !important}.ml-lg-n17,.mx-lg-n17{margin-left:-8.5rem !important}.m-lg-n18{margin:-9rem !important}.mt-lg-n18,.my-lg-n18{margin-top:-9rem !important}.mr-lg-n18,.mx-lg-n18{margin-right:-9rem !important}.mb-lg-n18,.my-lg-n18{margin-bottom:-9rem !important}.ml-lg-n18,.mx-lg-n18{margin-left:-9rem !important}.m-lg-n19{margin:-9.5rem !important}.mt-lg-n19,.my-lg-n19{margin-top:-9.5rem !important}.mr-lg-n19,.mx-lg-n19{margin-right:-9.5rem !important}.mb-lg-n19,.my-lg-n19{margin-bottom:-9.5rem !important}.ml-lg-n19,.mx-lg-n19{margin-left:-9.5rem !important}.m-lg-n20{margin:-10rem !important}.mt-lg-n20,.my-lg-n20{margin-top:-10rem !important}.mr-lg-n20,.mx-lg-n20{margin-right:-10rem !important}.mb-lg-n20,.my-lg-n20{margin-bottom:-10rem !important}.ml-lg-n20,.mx-lg-n20{margin-left:-10rem !important}.m-lg-auto{margin:auto !important}.mt-lg-auto,.my-lg-auto{margin-top:auto !important}.mr-lg-auto,.mx-lg-auto{margin-right:auto !important}.mb-lg-auto,.my-lg-auto{margin-bottom:auto !important}.ml-lg-auto,.mx-lg-auto{margin-left:auto !important}}@media(min-width: 1200px){.m-xl-0{margin:0 !important}.mt-xl-0,.my-xl-0{margin-top:0 !important}.mr-xl-0,.mx-xl-0{margin-right:0 !important}.mb-xl-0,.my-xl-0{margin-bottom:0 !important}.ml-xl-0,.mx-xl-0{margin-left:0 !important}.m-xl-1{margin:.5rem !important}.mt-xl-1,.my-xl-1{margin-top:.5rem !important}.mr-xl-1,.mx-xl-1{margin-right:.5rem !important}.mb-xl-1,.my-xl-1{margin-bottom:.5rem !important}.ml-xl-1,.mx-xl-1{margin-left:.5rem !important}.m-xl-2{margin:1rem !important}.mt-xl-2,.my-xl-2{margin-top:1rem !important}.mr-xl-2,.mx-xl-2{margin-right:1rem !important}.mb-xl-2,.my-xl-2{margin-bottom:1rem !important}.ml-xl-2,.mx-xl-2{margin-left:1rem !important}.m-xl-3{margin:1.5rem !important}.mt-xl-3,.my-xl-3{margin-top:1.5rem !important}.mr-xl-3,.mx-xl-3{margin-right:1.5rem !important}.mb-xl-3,.my-xl-3{margin-bottom:1.5rem !important}.ml-xl-3,.mx-xl-3{margin-left:1.5rem !important}.m-xl-4{margin:2rem !important}.mt-xl-4,.my-xl-4{margin-top:2rem !important}.mr-xl-4,.mx-xl-4{margin-right:2rem !important}.mb-xl-4,.my-xl-4{margin-bottom:2rem !important}.ml-xl-4,.mx-xl-4{margin-left:2rem !important}.m-xl-5{margin:2.5rem !important}.mt-xl-5,.my-xl-5{margin-top:2.5rem !important}.mr-xl-5,.mx-xl-5{margin-right:2.5rem !important}.mb-xl-5,.my-xl-5{margin-bottom:2.5rem !important}.ml-xl-5,.mx-xl-5{margin-left:2.5rem !important}.m-xl-6{margin:3rem !important}.mt-xl-6,.my-xl-6{margin-top:3rem !important}.mr-xl-6,.mx-xl-6{margin-right:3rem !important}.mb-xl-6,.my-xl-6{margin-bottom:3rem !important}.ml-xl-6,.mx-xl-6{margin-left:3rem !important}.m-xl-7{margin:3.5rem !important}.mt-xl-7,.my-xl-7{margin-top:3.5rem !important}.mr-xl-7,.mx-xl-7{margin-right:3.5rem !important}.mb-xl-7,.my-xl-7{margin-bottom:3.5rem !important}.ml-xl-7,.mx-xl-7{margin-left:3.5rem !important}.m-xl-8{margin:4rem !important}.mt-xl-8,.my-xl-8{margin-top:4rem !important}.mr-xl-8,.mx-xl-8{margin-right:4rem !important}.mb-xl-8,.my-xl-8{margin-bottom:4rem !important}.ml-xl-8,.mx-xl-8{margin-left:4rem !important}.m-xl-9{margin:4.5rem !important}.mt-xl-9,.my-xl-9{margin-top:4.5rem !important}.mr-xl-9,.mx-xl-9{margin-right:4.5rem !important}.mb-xl-9,.my-xl-9{margin-bottom:4.5rem !important}.ml-xl-9,.mx-xl-9{margin-left:4.5rem !important}.m-xl-10{margin:5rem !important}.mt-xl-10,.my-xl-10{margin-top:5rem !important}.mr-xl-10,.mx-xl-10{margin-right:5rem !important}.mb-xl-10,.my-xl-10{margin-bottom:5rem !important}.ml-xl-10,.mx-xl-10{margin-left:5rem !important}.m-xl-11{margin:5.5rem !important}.mt-xl-11,.my-xl-11{margin-top:5.5rem !important}.mr-xl-11,.mx-xl-11{margin-right:5.5rem !important}.mb-xl-11,.my-xl-11{margin-bottom:5.5rem !important}.ml-xl-11,.mx-xl-11{margin-left:5.5rem !important}.m-xl-12{margin:6rem !important}.mt-xl-12,.my-xl-12{margin-top:6rem !important}.mr-xl-12,.mx-xl-12{margin-right:6rem !important}.mb-xl-12,.my-xl-12{margin-bottom:6rem !important}.ml-xl-12,.mx-xl-12{margin-left:6rem !important}.m-xl-13{margin:6.5rem !important}.mt-xl-13,.my-xl-13{margin-top:6.5rem !important}.mr-xl-13,.mx-xl-13{margin-right:6.5rem !important}.mb-xl-13,.my-xl-13{margin-bottom:6.5rem !important}.ml-xl-13,.mx-xl-13{margin-left:6.5rem !important}.m-xl-14{margin:7rem !important}.mt-xl-14,.my-xl-14{margin-top:7rem !important}.mr-xl-14,.mx-xl-14{margin-right:7rem !important}.mb-xl-14,.my-xl-14{margin-bottom:7rem !important}.ml-xl-14,.mx-xl-14{margin-left:7rem !important}.m-xl-15{margin:7.5rem !important}.mt-xl-15,.my-xl-15{margin-top:7.5rem !important}.mr-xl-15,.mx-xl-15{margin-right:7.5rem !important}.mb-xl-15,.my-xl-15{margin-bottom:7.5rem !important}.ml-xl-15,.mx-xl-15{margin-left:7.5rem !important}.m-xl-16{margin:8rem !important}.mt-xl-16,.my-xl-16{margin-top:8rem !important}.mr-xl-16,.mx-xl-16{margin-right:8rem !important}.mb-xl-16,.my-xl-16{margin-bottom:8rem !important}.ml-xl-16,.mx-xl-16{margin-left:8rem !important}.m-xl-17{margin:8.5rem !important}.mt-xl-17,.my-xl-17{margin-top:8.5rem !important}.mr-xl-17,.mx-xl-17{margin-right:8.5rem !important}.mb-xl-17,.my-xl-17{margin-bottom:8.5rem !important}.ml-xl-17,.mx-xl-17{margin-left:8.5rem !important}.m-xl-18{margin:9rem !important}.mt-xl-18,.my-xl-18{margin-top:9rem !important}.mr-xl-18,.mx-xl-18{margin-right:9rem !important}.mb-xl-18,.my-xl-18{margin-bottom:9rem !important}.ml-xl-18,.mx-xl-18{margin-left:9rem !important}.m-xl-19{margin:9.5rem !important}.mt-xl-19,.my-xl-19{margin-top:9.5rem !important}.mr-xl-19,.mx-xl-19{margin-right:9.5rem !important}.mb-xl-19,.my-xl-19{margin-bottom:9.5rem !important}.ml-xl-19,.mx-xl-19{margin-left:9.5rem !important}.m-xl-20{margin:10rem !important}.mt-xl-20,.my-xl-20{margin-top:10rem !important}.mr-xl-20,.mx-xl-20{margin-right:10rem !important}.mb-xl-20,.my-xl-20{margin-bottom:10rem !important}.ml-xl-20,.mx-xl-20{margin-left:10rem !important}.p-xl-0{padding:0 !important}.pt-xl-0,.py-xl-0{padding-top:0 !important}.pr-xl-0,.px-xl-0{padding-right:0 !important}.pb-xl-0,.py-xl-0{padding-bottom:0 !important}.pl-xl-0,.px-xl-0{padding-left:0 !important}.p-xl-1{padding:.5rem !important}.pt-xl-1,.py-xl-1{padding-top:.5rem !important}.pr-xl-1,.px-xl-1{padding-right:.5rem !important}.pb-xl-1,.py-xl-1{padding-bottom:.5rem !important}.pl-xl-1,.px-xl-1{padding-left:.5rem !important}.p-xl-2{padding:1rem !important}.pt-xl-2,.py-xl-2{padding-top:1rem !important}.pr-xl-2,.px-xl-2{padding-right:1rem !important}.pb-xl-2,.py-xl-2{padding-bottom:1rem !important}.pl-xl-2,.px-xl-2{padding-left:1rem !important}.p-xl-3{padding:1.5rem !important}.pt-xl-3,.py-xl-3{padding-top:1.5rem !important}.pr-xl-3,.px-xl-3{padding-right:1.5rem !important}.pb-xl-3,.py-xl-3{padding-bottom:1.5rem !important}.pl-xl-3,.px-xl-3{padding-left:1.5rem !important}.p-xl-4{padding:2rem !important}.pt-xl-4,.py-xl-4{padding-top:2rem !important}.pr-xl-4,.px-xl-4{padding-right:2rem !important}.pb-xl-4,.py-xl-4{padding-bottom:2rem !important}.pl-xl-4,.px-xl-4{padding-left:2rem !important}.p-xl-5{padding:2.5rem !important}.pt-xl-5,.py-xl-5{padding-top:2.5rem !important}.pr-xl-5,.px-xl-5{padding-right:2.5rem !important}.pb-xl-5,.py-xl-5{padding-bottom:2.5rem !important}.pl-xl-5,.px-xl-5{padding-left:2.5rem !important}.p-xl-6{padding:3rem !important}.pt-xl-6,.py-xl-6{padding-top:3rem !important}.pr-xl-6,.px-xl-6{padding-right:3rem !important}.pb-xl-6,.py-xl-6{padding-bottom:3rem !important}.pl-xl-6,.px-xl-6{padding-left:3rem !important}.p-xl-7{padding:3.5rem !important}.pt-xl-7,.py-xl-7{padding-top:3.5rem !important}.pr-xl-7,.px-xl-7{padding-right:3.5rem !important}.pb-xl-7,.py-xl-7{padding-bottom:3.5rem !important}.pl-xl-7,.px-xl-7{padding-left:3.5rem !important}.p-xl-8{padding:4rem !important}.pt-xl-8,.py-xl-8{padding-top:4rem !important}.pr-xl-8,.px-xl-8{padding-right:4rem !important}.pb-xl-8,.py-xl-8{padding-bottom:4rem !important}.pl-xl-8,.px-xl-8{padding-left:4rem !important}.p-xl-9{padding:4.5rem !important}.pt-xl-9,.py-xl-9{padding-top:4.5rem !important}.pr-xl-9,.px-xl-9{padding-right:4.5rem !important}.pb-xl-9,.py-xl-9{padding-bottom:4.5rem !important}.pl-xl-9,.px-xl-9{padding-left:4.5rem !important}.p-xl-10{padding:5rem !important}.pt-xl-10,.py-xl-10{padding-top:5rem !important}.pr-xl-10,.px-xl-10{padding-right:5rem !important}.pb-xl-10,.py-xl-10{padding-bottom:5rem !important}.pl-xl-10,.px-xl-10{padding-left:5rem !important}.p-xl-11{padding:5.5rem !important}.pt-xl-11,.py-xl-11{padding-top:5.5rem !important}.pr-xl-11,.px-xl-11{padding-right:5.5rem !important}.pb-xl-11,.py-xl-11{padding-bottom:5.5rem !important}.pl-xl-11,.px-xl-11{padding-left:5.5rem !important}.p-xl-12{padding:6rem !important}.pt-xl-12,.py-xl-12{padding-top:6rem !important}.pr-xl-12,.px-xl-12{padding-right:6rem !important}.pb-xl-12,.py-xl-12{padding-bottom:6rem !important}.pl-xl-12,.px-xl-12{padding-left:6rem !important}.p-xl-13{padding:6.5rem !important}.pt-xl-13,.py-xl-13{padding-top:6.5rem !important}.pr-xl-13,.px-xl-13{padding-right:6.5rem !important}.pb-xl-13,.py-xl-13{padding-bottom:6.5rem !important}.pl-xl-13,.px-xl-13{padding-left:6.5rem !important}.p-xl-14{padding:7rem !important}.pt-xl-14,.py-xl-14{padding-top:7rem !important}.pr-xl-14,.px-xl-14{padding-right:7rem !important}.pb-xl-14,.py-xl-14{padding-bottom:7rem !important}.pl-xl-14,.px-xl-14{padding-left:7rem !important}.p-xl-15{padding:7.5rem !important}.pt-xl-15,.py-xl-15{padding-top:7.5rem !important}.pr-xl-15,.px-xl-15{padding-right:7.5rem !important}.pb-xl-15,.py-xl-15{padding-bottom:7.5rem !important}.pl-xl-15,.px-xl-15{padding-left:7.5rem !important}.p-xl-16{padding:8rem !important}.pt-xl-16,.py-xl-16{padding-top:8rem !important}.pr-xl-16,.px-xl-16{padding-right:8rem !important}.pb-xl-16,.py-xl-16{padding-bottom:8rem !important}.pl-xl-16,.px-xl-16{padding-left:8rem !important}.p-xl-17{padding:8.5rem !important}.pt-xl-17,.py-xl-17{padding-top:8.5rem !important}.pr-xl-17,.px-xl-17{padding-right:8.5rem !important}.pb-xl-17,.py-xl-17{padding-bottom:8.5rem !important}.pl-xl-17,.px-xl-17{padding-left:8.5rem !important}.p-xl-18{padding:9rem !important}.pt-xl-18,.py-xl-18{padding-top:9rem !important}.pr-xl-18,.px-xl-18{padding-right:9rem !important}.pb-xl-18,.py-xl-18{padding-bottom:9rem !important}.pl-xl-18,.px-xl-18{padding-left:9rem !important}.p-xl-19{padding:9.5rem !important}.pt-xl-19,.py-xl-19{padding-top:9.5rem !important}.pr-xl-19,.px-xl-19{padding-right:9.5rem !important}.pb-xl-19,.py-xl-19{padding-bottom:9.5rem !important}.pl-xl-19,.px-xl-19{padding-left:9.5rem !important}.p-xl-20{padding:10rem !important}.pt-xl-20,.py-xl-20{padding-top:10rem !important}.pr-xl-20,.px-xl-20{padding-right:10rem !important}.pb-xl-20,.py-xl-20{padding-bottom:10rem !important}.pl-xl-20,.px-xl-20{padding-left:10rem !important}.m-xl-n1{margin:-0.5rem !important}.mt-xl-n1,.my-xl-n1{margin-top:-0.5rem !important}.mr-xl-n1,.mx-xl-n1{margin-right:-0.5rem !important}.mb-xl-n1,.my-xl-n1{margin-bottom:-0.5rem !important}.ml-xl-n1,.mx-xl-n1{margin-left:-0.5rem !important}.m-xl-n2{margin:-1rem !important}.mt-xl-n2,.my-xl-n2{margin-top:-1rem !important}.mr-xl-n2,.mx-xl-n2{margin-right:-1rem !important}.mb-xl-n2,.my-xl-n2{margin-bottom:-1rem !important}.ml-xl-n2,.mx-xl-n2{margin-left:-1rem !important}.m-xl-n3{margin:-1.5rem !important}.mt-xl-n3,.my-xl-n3{margin-top:-1.5rem !important}.mr-xl-n3,.mx-xl-n3{margin-right:-1.5rem !important}.mb-xl-n3,.my-xl-n3{margin-bottom:-1.5rem !important}.ml-xl-n3,.mx-xl-n3{margin-left:-1.5rem !important}.m-xl-n4{margin:-2rem !important}.mt-xl-n4,.my-xl-n4{margin-top:-2rem !important}.mr-xl-n4,.mx-xl-n4{margin-right:-2rem !important}.mb-xl-n4,.my-xl-n4{margin-bottom:-2rem !important}.ml-xl-n4,.mx-xl-n4{margin-left:-2rem !important}.m-xl-n5{margin:-2.5rem !important}.mt-xl-n5,.my-xl-n5{margin-top:-2.5rem !important}.mr-xl-n5,.mx-xl-n5{margin-right:-2.5rem !important}.mb-xl-n5,.my-xl-n5{margin-bottom:-2.5rem !important}.ml-xl-n5,.mx-xl-n5{margin-left:-2.5rem !important}.m-xl-n6{margin:-3rem !important}.mt-xl-n6,.my-xl-n6{margin-top:-3rem !important}.mr-xl-n6,.mx-xl-n6{margin-right:-3rem !important}.mb-xl-n6,.my-xl-n6{margin-bottom:-3rem !important}.ml-xl-n6,.mx-xl-n6{margin-left:-3rem !important}.m-xl-n7{margin:-3.5rem !important}.mt-xl-n7,.my-xl-n7{margin-top:-3.5rem !important}.mr-xl-n7,.mx-xl-n7{margin-right:-3.5rem !important}.mb-xl-n7,.my-xl-n7{margin-bottom:-3.5rem !important}.ml-xl-n7,.mx-xl-n7{margin-left:-3.5rem !important}.m-xl-n8{margin:-4rem !important}.mt-xl-n8,.my-xl-n8{margin-top:-4rem !important}.mr-xl-n8,.mx-xl-n8{margin-right:-4rem !important}.mb-xl-n8,.my-xl-n8{margin-bottom:-4rem !important}.ml-xl-n8,.mx-xl-n8{margin-left:-4rem !important}.m-xl-n9{margin:-4.5rem !important}.mt-xl-n9,.my-xl-n9{margin-top:-4.5rem !important}.mr-xl-n9,.mx-xl-n9{margin-right:-4.5rem !important}.mb-xl-n9,.my-xl-n9{margin-bottom:-4.5rem !important}.ml-xl-n9,.mx-xl-n9{margin-left:-4.5rem !important}.m-xl-n10{margin:-5rem !important}.mt-xl-n10,.my-xl-n10{margin-top:-5rem !important}.mr-xl-n10,.mx-xl-n10{margin-right:-5rem !important}.mb-xl-n10,.my-xl-n10{margin-bottom:-5rem !important}.ml-xl-n10,.mx-xl-n10{margin-left:-5rem !important}.m-xl-n11{margin:-5.5rem !important}.mt-xl-n11,.my-xl-n11{margin-top:-5.5rem !important}.mr-xl-n11,.mx-xl-n11{margin-right:-5.5rem !important}.mb-xl-n11,.my-xl-n11{margin-bottom:-5.5rem !important}.ml-xl-n11,.mx-xl-n11{margin-left:-5.5rem !important}.m-xl-n12{margin:-6rem !important}.mt-xl-n12,.my-xl-n12{margin-top:-6rem !important}.mr-xl-n12,.mx-xl-n12{margin-right:-6rem !important}.mb-xl-n12,.my-xl-n12{margin-bottom:-6rem !important}.ml-xl-n12,.mx-xl-n12{margin-left:-6rem !important}.m-xl-n13{margin:-6.5rem !important}.mt-xl-n13,.my-xl-n13{margin-top:-6.5rem !important}.mr-xl-n13,.mx-xl-n13{margin-right:-6.5rem !important}.mb-xl-n13,.my-xl-n13{margin-bottom:-6.5rem !important}.ml-xl-n13,.mx-xl-n13{margin-left:-6.5rem !important}.m-xl-n14{margin:-7rem !important}.mt-xl-n14,.my-xl-n14{margin-top:-7rem !important}.mr-xl-n14,.mx-xl-n14{margin-right:-7rem !important}.mb-xl-n14,.my-xl-n14{margin-bottom:-7rem !important}.ml-xl-n14,.mx-xl-n14{margin-left:-7rem !important}.m-xl-n15{margin:-7.5rem !important}.mt-xl-n15,.my-xl-n15{margin-top:-7.5rem !important}.mr-xl-n15,.mx-xl-n15{margin-right:-7.5rem !important}.mb-xl-n15,.my-xl-n15{margin-bottom:-7.5rem !important}.ml-xl-n15,.mx-xl-n15{margin-left:-7.5rem !important}.m-xl-n16{margin:-8rem !important}.mt-xl-n16,.my-xl-n16{margin-top:-8rem !important}.mr-xl-n16,.mx-xl-n16{margin-right:-8rem !important}.mb-xl-n16,.my-xl-n16{margin-bottom:-8rem !important}.ml-xl-n16,.mx-xl-n16{margin-left:-8rem !important}.m-xl-n17{margin:-8.5rem !important}.mt-xl-n17,.my-xl-n17{margin-top:-8.5rem !important}.mr-xl-n17,.mx-xl-n17{margin-right:-8.5rem !important}.mb-xl-n17,.my-xl-n17{margin-bottom:-8.5rem !important}.ml-xl-n17,.mx-xl-n17{margin-left:-8.5rem !important}.m-xl-n18{margin:-9rem !important}.mt-xl-n18,.my-xl-n18{margin-top:-9rem !important}.mr-xl-n18,.mx-xl-n18{margin-right:-9rem !important}.mb-xl-n18,.my-xl-n18{margin-bottom:-9rem !important}.ml-xl-n18,.mx-xl-n18{margin-left:-9rem !important}.m-xl-n19{margin:-9.5rem !important}.mt-xl-n19,.my-xl-n19{margin-top:-9.5rem !important}.mr-xl-n19,.mx-xl-n19{margin-right:-9.5rem !important}.mb-xl-n19,.my-xl-n19{margin-bottom:-9.5rem !important}.ml-xl-n19,.mx-xl-n19{margin-left:-9.5rem !important}.m-xl-n20{margin:-10rem !important}.mt-xl-n20,.my-xl-n20{margin-top:-10rem !important}.mr-xl-n20,.mx-xl-n20{margin-right:-10rem !important}.mb-xl-n20,.my-xl-n20{margin-bottom:-10rem !important}.ml-xl-n20,.mx-xl-n20{margin-left:-10rem !important}.m-xl-auto{margin:auto !important}.mt-xl-auto,.my-xl-auto{margin-top:auto !important}.mr-xl-auto,.mx-xl-auto{margin-right:auto !important}.mb-xl-auto,.my-xl-auto{margin-bottom:auto !important}.ml-xl-auto,.mx-xl-auto{margin-left:auto !important}}@media(min-width: 1360px){.m-xxl-0{margin:0 !important}.mt-xxl-0,.my-xxl-0{margin-top:0 !important}.mr-xxl-0,.mx-xxl-0{margin-right:0 !important}.mb-xxl-0,.my-xxl-0{margin-bottom:0 !important}.ml-xxl-0,.mx-xxl-0{margin-left:0 !important}.m-xxl-1{margin:.5rem !important}.mt-xxl-1,.my-xxl-1{margin-top:.5rem !important}.mr-xxl-1,.mx-xxl-1{margin-right:.5rem !important}.mb-xxl-1,.my-xxl-1{margin-bottom:.5rem !important}.ml-xxl-1,.mx-xxl-1{margin-left:.5rem !important}.m-xxl-2{margin:1rem !important}.mt-xxl-2,.my-xxl-2{margin-top:1rem !important}.mr-xxl-2,.mx-xxl-2{margin-right:1rem !important}.mb-xxl-2,.my-xxl-2{margin-bottom:1rem !important}.ml-xxl-2,.mx-xxl-2{margin-left:1rem !important}.m-xxl-3{margin:1.5rem !important}.mt-xxl-3,.my-xxl-3{margin-top:1.5rem !important}.mr-xxl-3,.mx-xxl-3{margin-right:1.5rem !important}.mb-xxl-3,.my-xxl-3{margin-bottom:1.5rem !important}.ml-xxl-3,.mx-xxl-3{margin-left:1.5rem !important}.m-xxl-4{margin:2rem !important}.mt-xxl-4,.my-xxl-4{margin-top:2rem !important}.mr-xxl-4,.mx-xxl-4{margin-right:2rem !important}.mb-xxl-4,.my-xxl-4{margin-bottom:2rem !important}.ml-xxl-4,.mx-xxl-4{margin-left:2rem !important}.m-xxl-5{margin:2.5rem !important}.mt-xxl-5,.my-xxl-5{margin-top:2.5rem !important}.mr-xxl-5,.mx-xxl-5{margin-right:2.5rem !important}.mb-xxl-5,.my-xxl-5{margin-bottom:2.5rem !important}.ml-xxl-5,.mx-xxl-5{margin-left:2.5rem !important}.m-xxl-6{margin:3rem !important}.mt-xxl-6,.my-xxl-6{margin-top:3rem !important}.mr-xxl-6,.mx-xxl-6{margin-right:3rem !important}.mb-xxl-6,.my-xxl-6{margin-bottom:3rem !important}.ml-xxl-6,.mx-xxl-6{margin-left:3rem !important}.m-xxl-7{margin:3.5rem !important}.mt-xxl-7,.my-xxl-7{margin-top:3.5rem !important}.mr-xxl-7,.mx-xxl-7{margin-right:3.5rem !important}.mb-xxl-7,.my-xxl-7{margin-bottom:3.5rem !important}.ml-xxl-7,.mx-xxl-7{margin-left:3.5rem !important}.m-xxl-8{margin:4rem !important}.mt-xxl-8,.my-xxl-8{margin-top:4rem !important}.mr-xxl-8,.mx-xxl-8{margin-right:4rem !important}.mb-xxl-8,.my-xxl-8{margin-bottom:4rem !important}.ml-xxl-8,.mx-xxl-8{margin-left:4rem !important}.m-xxl-9{margin:4.5rem !important}.mt-xxl-9,.my-xxl-9{margin-top:4.5rem !important}.mr-xxl-9,.mx-xxl-9{margin-right:4.5rem !important}.mb-xxl-9,.my-xxl-9{margin-bottom:4.5rem !important}.ml-xxl-9,.mx-xxl-9{margin-left:4.5rem !important}.m-xxl-10{margin:5rem !important}.mt-xxl-10,.my-xxl-10{margin-top:5rem !important}.mr-xxl-10,.mx-xxl-10{margin-right:5rem !important}.mb-xxl-10,.my-xxl-10{margin-bottom:5rem !important}.ml-xxl-10,.mx-xxl-10{margin-left:5rem !important}.m-xxl-11{margin:5.5rem !important}.mt-xxl-11,.my-xxl-11{margin-top:5.5rem !important}.mr-xxl-11,.mx-xxl-11{margin-right:5.5rem !important}.mb-xxl-11,.my-xxl-11{margin-bottom:5.5rem !important}.ml-xxl-11,.mx-xxl-11{margin-left:5.5rem !important}.m-xxl-12{margin:6rem !important}.mt-xxl-12,.my-xxl-12{margin-top:6rem !important}.mr-xxl-12,.mx-xxl-12{margin-right:6rem !important}.mb-xxl-12,.my-xxl-12{margin-bottom:6rem !important}.ml-xxl-12,.mx-xxl-12{margin-left:6rem !important}.m-xxl-13{margin:6.5rem !important}.mt-xxl-13,.my-xxl-13{margin-top:6.5rem !important}.mr-xxl-13,.mx-xxl-13{margin-right:6.5rem !important}.mb-xxl-13,.my-xxl-13{margin-bottom:6.5rem !important}.ml-xxl-13,.mx-xxl-13{margin-left:6.5rem !important}.m-xxl-14{margin:7rem !important}.mt-xxl-14,.my-xxl-14{margin-top:7rem !important}.mr-xxl-14,.mx-xxl-14{margin-right:7rem !important}.mb-xxl-14,.my-xxl-14{margin-bottom:7rem !important}.ml-xxl-14,.mx-xxl-14{margin-left:7rem !important}.m-xxl-15{margin:7.5rem !important}.mt-xxl-15,.my-xxl-15{margin-top:7.5rem !important}.mr-xxl-15,.mx-xxl-15{margin-right:7.5rem !important}.mb-xxl-15,.my-xxl-15{margin-bottom:7.5rem !important}.ml-xxl-15,.mx-xxl-15{margin-left:7.5rem !important}.m-xxl-16{margin:8rem !important}.mt-xxl-16,.my-xxl-16{margin-top:8rem !important}.mr-xxl-16,.mx-xxl-16{margin-right:8rem !important}.mb-xxl-16,.my-xxl-16{margin-bottom:8rem !important}.ml-xxl-16,.mx-xxl-16{margin-left:8rem !important}.m-xxl-17{margin:8.5rem !important}.mt-xxl-17,.my-xxl-17{margin-top:8.5rem !important}.mr-xxl-17,.mx-xxl-17{margin-right:8.5rem !important}.mb-xxl-17,.my-xxl-17{margin-bottom:8.5rem !important}.ml-xxl-17,.mx-xxl-17{margin-left:8.5rem !important}.m-xxl-18{margin:9rem !important}.mt-xxl-18,.my-xxl-18{margin-top:9rem !important}.mr-xxl-18,.mx-xxl-18{margin-right:9rem !important}.mb-xxl-18,.my-xxl-18{margin-bottom:9rem !important}.ml-xxl-18,.mx-xxl-18{margin-left:9rem !important}.m-xxl-19{margin:9.5rem !important}.mt-xxl-19,.my-xxl-19{margin-top:9.5rem !important}.mr-xxl-19,.mx-xxl-19{margin-right:9.5rem !important}.mb-xxl-19,.my-xxl-19{margin-bottom:9.5rem !important}.ml-xxl-19,.mx-xxl-19{margin-left:9.5rem !important}.m-xxl-20{margin:10rem !important}.mt-xxl-20,.my-xxl-20{margin-top:10rem !important}.mr-xxl-20,.mx-xxl-20{margin-right:10rem !important}.mb-xxl-20,.my-xxl-20{margin-bottom:10rem !important}.ml-xxl-20,.mx-xxl-20{margin-left:10rem !important}.p-xxl-0{padding:0 !important}.pt-xxl-0,.py-xxl-0{padding-top:0 !important}.pr-xxl-0,.px-xxl-0{padding-right:0 !important}.pb-xxl-0,.py-xxl-0{padding-bottom:0 !important}.pl-xxl-0,.px-xxl-0{padding-left:0 !important}.p-xxl-1{padding:.5rem !important}.pt-xxl-1,.py-xxl-1{padding-top:.5rem !important}.pr-xxl-1,.px-xxl-1{padding-right:.5rem !important}.pb-xxl-1,.py-xxl-1{padding-bottom:.5rem !important}.pl-xxl-1,.px-xxl-1{padding-left:.5rem !important}.p-xxl-2{padding:1rem !important}.pt-xxl-2,.py-xxl-2{padding-top:1rem !important}.pr-xxl-2,.px-xxl-2{padding-right:1rem !important}.pb-xxl-2,.py-xxl-2{padding-bottom:1rem !important}.pl-xxl-2,.px-xxl-2{padding-left:1rem !important}.p-xxl-3{padding:1.5rem !important}.pt-xxl-3,.py-xxl-3{padding-top:1.5rem !important}.pr-xxl-3,.px-xxl-3{padding-right:1.5rem !important}.pb-xxl-3,.py-xxl-3{padding-bottom:1.5rem !important}.pl-xxl-3,.px-xxl-3{padding-left:1.5rem !important}.p-xxl-4{padding:2rem !important}.pt-xxl-4,.py-xxl-4{padding-top:2rem !important}.pr-xxl-4,.px-xxl-4{padding-right:2rem !important}.pb-xxl-4,.py-xxl-4{padding-bottom:2rem !important}.pl-xxl-4,.px-xxl-4{padding-left:2rem !important}.p-xxl-5{padding:2.5rem !important}.pt-xxl-5,.py-xxl-5{padding-top:2.5rem !important}.pr-xxl-5,.px-xxl-5{padding-right:2.5rem !important}.pb-xxl-5,.py-xxl-5{padding-bottom:2.5rem !important}.pl-xxl-5,.px-xxl-5{padding-left:2.5rem !important}.p-xxl-6{padding:3rem !important}.pt-xxl-6,.py-xxl-6{padding-top:3rem !important}.pr-xxl-6,.px-xxl-6{padding-right:3rem !important}.pb-xxl-6,.py-xxl-6{padding-bottom:3rem !important}.pl-xxl-6,.px-xxl-6{padding-left:3rem !important}.p-xxl-7{padding:3.5rem !important}.pt-xxl-7,.py-xxl-7{padding-top:3.5rem !important}.pr-xxl-7,.px-xxl-7{padding-right:3.5rem !important}.pb-xxl-7,.py-xxl-7{padding-bottom:3.5rem !important}.pl-xxl-7,.px-xxl-7{padding-left:3.5rem !important}.p-xxl-8{padding:4rem !important}.pt-xxl-8,.py-xxl-8{padding-top:4rem !important}.pr-xxl-8,.px-xxl-8{padding-right:4rem !important}.pb-xxl-8,.py-xxl-8{padding-bottom:4rem !important}.pl-xxl-8,.px-xxl-8{padding-left:4rem !important}.p-xxl-9{padding:4.5rem !important}.pt-xxl-9,.py-xxl-9{padding-top:4.5rem !important}.pr-xxl-9,.px-xxl-9{padding-right:4.5rem !important}.pb-xxl-9,.py-xxl-9{padding-bottom:4.5rem !important}.pl-xxl-9,.px-xxl-9{padding-left:4.5rem !important}.p-xxl-10{padding:5rem !important}.pt-xxl-10,.py-xxl-10{padding-top:5rem !important}.pr-xxl-10,.px-xxl-10{padding-right:5rem !important}.pb-xxl-10,.py-xxl-10{padding-bottom:5rem !important}.pl-xxl-10,.px-xxl-10{padding-left:5rem !important}.p-xxl-11{padding:5.5rem !important}.pt-xxl-11,.py-xxl-11{padding-top:5.5rem !important}.pr-xxl-11,.px-xxl-11{padding-right:5.5rem !important}.pb-xxl-11,.py-xxl-11{padding-bottom:5.5rem !important}.pl-xxl-11,.px-xxl-11{padding-left:5.5rem !important}.p-xxl-12{padding:6rem !important}.pt-xxl-12,.py-xxl-12{padding-top:6rem !important}.pr-xxl-12,.px-xxl-12{padding-right:6rem !important}.pb-xxl-12,.py-xxl-12{padding-bottom:6rem !important}.pl-xxl-12,.px-xxl-12{padding-left:6rem !important}.p-xxl-13{padding:6.5rem !important}.pt-xxl-13,.py-xxl-13{padding-top:6.5rem !important}.pr-xxl-13,.px-xxl-13{padding-right:6.5rem !important}.pb-xxl-13,.py-xxl-13{padding-bottom:6.5rem !important}.pl-xxl-13,.px-xxl-13{padding-left:6.5rem !important}.p-xxl-14{padding:7rem !important}.pt-xxl-14,.py-xxl-14{padding-top:7rem !important}.pr-xxl-14,.px-xxl-14{padding-right:7rem !important}.pb-xxl-14,.py-xxl-14{padding-bottom:7rem !important}.pl-xxl-14,.px-xxl-14{padding-left:7rem !important}.p-xxl-15{padding:7.5rem !important}.pt-xxl-15,.py-xxl-15{padding-top:7.5rem !important}.pr-xxl-15,.px-xxl-15{padding-right:7.5rem !important}.pb-xxl-15,.py-xxl-15{padding-bottom:7.5rem !important}.pl-xxl-15,.px-xxl-15{padding-left:7.5rem !important}.p-xxl-16{padding:8rem !important}.pt-xxl-16,.py-xxl-16{padding-top:8rem !important}.pr-xxl-16,.px-xxl-16{padding-right:8rem !important}.pb-xxl-16,.py-xxl-16{padding-bottom:8rem !important}.pl-xxl-16,.px-xxl-16{padding-left:8rem !important}.p-xxl-17{padding:8.5rem !important}.pt-xxl-17,.py-xxl-17{padding-top:8.5rem !important}.pr-xxl-17,.px-xxl-17{padding-right:8.5rem !important}.pb-xxl-17,.py-xxl-17{padding-bottom:8.5rem !important}.pl-xxl-17,.px-xxl-17{padding-left:8.5rem !important}.p-xxl-18{padding:9rem !important}.pt-xxl-18,.py-xxl-18{padding-top:9rem !important}.pr-xxl-18,.px-xxl-18{padding-right:9rem !important}.pb-xxl-18,.py-xxl-18{padding-bottom:9rem !important}.pl-xxl-18,.px-xxl-18{padding-left:9rem !important}.p-xxl-19{padding:9.5rem !important}.pt-xxl-19,.py-xxl-19{padding-top:9.5rem !important}.pr-xxl-19,.px-xxl-19{padding-right:9.5rem !important}.pb-xxl-19,.py-xxl-19{padding-bottom:9.5rem !important}.pl-xxl-19,.px-xxl-19{padding-left:9.5rem !important}.p-xxl-20{padding:10rem !important}.pt-xxl-20,.py-xxl-20{padding-top:10rem !important}.pr-xxl-20,.px-xxl-20{padding-right:10rem !important}.pb-xxl-20,.py-xxl-20{padding-bottom:10rem !important}.pl-xxl-20,.px-xxl-20{padding-left:10rem !important}.m-xxl-n1{margin:-0.5rem !important}.mt-xxl-n1,.my-xxl-n1{margin-top:-0.5rem !important}.mr-xxl-n1,.mx-xxl-n1{margin-right:-0.5rem !important}.mb-xxl-n1,.my-xxl-n1{margin-bottom:-0.5rem !important}.ml-xxl-n1,.mx-xxl-n1{margin-left:-0.5rem !important}.m-xxl-n2{margin:-1rem !important}.mt-xxl-n2,.my-xxl-n2{margin-top:-1rem !important}.mr-xxl-n2,.mx-xxl-n2{margin-right:-1rem !important}.mb-xxl-n2,.my-xxl-n2{margin-bottom:-1rem !important}.ml-xxl-n2,.mx-xxl-n2{margin-left:-1rem !important}.m-xxl-n3{margin:-1.5rem !important}.mt-xxl-n3,.my-xxl-n3{margin-top:-1.5rem !important}.mr-xxl-n3,.mx-xxl-n3{margin-right:-1.5rem !important}.mb-xxl-n3,.my-xxl-n3{margin-bottom:-1.5rem !important}.ml-xxl-n3,.mx-xxl-n3{margin-left:-1.5rem !important}.m-xxl-n4{margin:-2rem !important}.mt-xxl-n4,.my-xxl-n4{margin-top:-2rem !important}.mr-xxl-n4,.mx-xxl-n4{margin-right:-2rem !important}.mb-xxl-n4,.my-xxl-n4{margin-bottom:-2rem !important}.ml-xxl-n4,.mx-xxl-n4{margin-left:-2rem !important}.m-xxl-n5{margin:-2.5rem !important}.mt-xxl-n5,.my-xxl-n5{margin-top:-2.5rem !important}.mr-xxl-n5,.mx-xxl-n5{margin-right:-2.5rem !important}.mb-xxl-n5,.my-xxl-n5{margin-bottom:-2.5rem !important}.ml-xxl-n5,.mx-xxl-n5{margin-left:-2.5rem !important}.m-xxl-n6{margin:-3rem !important}.mt-xxl-n6,.my-xxl-n6{margin-top:-3rem !important}.mr-xxl-n6,.mx-xxl-n6{margin-right:-3rem !important}.mb-xxl-n6,.my-xxl-n6{margin-bottom:-3rem !important}.ml-xxl-n6,.mx-xxl-n6{margin-left:-3rem !important}.m-xxl-n7{margin:-3.5rem !important}.mt-xxl-n7,.my-xxl-n7{margin-top:-3.5rem !important}.mr-xxl-n7,.mx-xxl-n7{margin-right:-3.5rem !important}.mb-xxl-n7,.my-xxl-n7{margin-bottom:-3.5rem !important}.ml-xxl-n7,.mx-xxl-n7{margin-left:-3.5rem !important}.m-xxl-n8{margin:-4rem !important}.mt-xxl-n8,.my-xxl-n8{margin-top:-4rem !important}.mr-xxl-n8,.mx-xxl-n8{margin-right:-4rem !important}.mb-xxl-n8,.my-xxl-n8{margin-bottom:-4rem !important}.ml-xxl-n8,.mx-xxl-n8{margin-left:-4rem !important}.m-xxl-n9{margin:-4.5rem !important}.mt-xxl-n9,.my-xxl-n9{margin-top:-4.5rem !important}.mr-xxl-n9,.mx-xxl-n9{margin-right:-4.5rem !important}.mb-xxl-n9,.my-xxl-n9{margin-bottom:-4.5rem !important}.ml-xxl-n9,.mx-xxl-n9{margin-left:-4.5rem !important}.m-xxl-n10{margin:-5rem !important}.mt-xxl-n10,.my-xxl-n10{margin-top:-5rem !important}.mr-xxl-n10,.mx-xxl-n10{margin-right:-5rem !important}.mb-xxl-n10,.my-xxl-n10{margin-bottom:-5rem !important}.ml-xxl-n10,.mx-xxl-n10{margin-left:-5rem !important}.m-xxl-n11{margin:-5.5rem !important}.mt-xxl-n11,.my-xxl-n11{margin-top:-5.5rem !important}.mr-xxl-n11,.mx-xxl-n11{margin-right:-5.5rem !important}.mb-xxl-n11,.my-xxl-n11{margin-bottom:-5.5rem !important}.ml-xxl-n11,.mx-xxl-n11{margin-left:-5.5rem !important}.m-xxl-n12{margin:-6rem !important}.mt-xxl-n12,.my-xxl-n12{margin-top:-6rem !important}.mr-xxl-n12,.mx-xxl-n12{margin-right:-6rem !important}.mb-xxl-n12,.my-xxl-n12{margin-bottom:-6rem !important}.ml-xxl-n12,.mx-xxl-n12{margin-left:-6rem !important}.m-xxl-n13{margin:-6.5rem !important}.mt-xxl-n13,.my-xxl-n13{margin-top:-6.5rem !important}.mr-xxl-n13,.mx-xxl-n13{margin-right:-6.5rem !important}.mb-xxl-n13,.my-xxl-n13{margin-bottom:-6.5rem !important}.ml-xxl-n13,.mx-xxl-n13{margin-left:-6.5rem !important}.m-xxl-n14{margin:-7rem !important}.mt-xxl-n14,.my-xxl-n14{margin-top:-7rem !important}.mr-xxl-n14,.mx-xxl-n14{margin-right:-7rem !important}.mb-xxl-n14,.my-xxl-n14{margin-bottom:-7rem !important}.ml-xxl-n14,.mx-xxl-n14{margin-left:-7rem !important}.m-xxl-n15{margin:-7.5rem !important}.mt-xxl-n15,.my-xxl-n15{margin-top:-7.5rem !important}.mr-xxl-n15,.mx-xxl-n15{margin-right:-7.5rem !important}.mb-xxl-n15,.my-xxl-n15{margin-bottom:-7.5rem !important}.ml-xxl-n15,.mx-xxl-n15{margin-left:-7.5rem !important}.m-xxl-n16{margin:-8rem !important}.mt-xxl-n16,.my-xxl-n16{margin-top:-8rem !important}.mr-xxl-n16,.mx-xxl-n16{margin-right:-8rem !important}.mb-xxl-n16,.my-xxl-n16{margin-bottom:-8rem !important}.ml-xxl-n16,.mx-xxl-n16{margin-left:-8rem !important}.m-xxl-n17{margin:-8.5rem !important}.mt-xxl-n17,.my-xxl-n17{margin-top:-8.5rem !important}.mr-xxl-n17,.mx-xxl-n17{margin-right:-8.5rem !important}.mb-xxl-n17,.my-xxl-n17{margin-bottom:-8.5rem !important}.ml-xxl-n17,.mx-xxl-n17{margin-left:-8.5rem !important}.m-xxl-n18{margin:-9rem !important}.mt-xxl-n18,.my-xxl-n18{margin-top:-9rem !important}.mr-xxl-n18,.mx-xxl-n18{margin-right:-9rem !important}.mb-xxl-n18,.my-xxl-n18{margin-bottom:-9rem !important}.ml-xxl-n18,.mx-xxl-n18{margin-left:-9rem !important}.m-xxl-n19{margin:-9.5rem !important}.mt-xxl-n19,.my-xxl-n19{margin-top:-9.5rem !important}.mr-xxl-n19,.mx-xxl-n19{margin-right:-9.5rem !important}.mb-xxl-n19,.my-xxl-n19{margin-bottom:-9.5rem !important}.ml-xxl-n19,.mx-xxl-n19{margin-left:-9.5rem !important}.m-xxl-n20{margin:-10rem !important}.mt-xxl-n20,.my-xxl-n20{margin-top:-10rem !important}.mr-xxl-n20,.mx-xxl-n20{margin-right:-10rem !important}.mb-xxl-n20,.my-xxl-n20{margin-bottom:-10rem !important}.ml-xxl-n20,.mx-xxl-n20{margin-left:-10rem !important}.m-xxl-auto{margin:auto !important}.mt-xxl-auto,.my-xxl-auto{margin-top:auto !important}.mr-xxl-auto,.mx-xxl-auto{margin-right:auto !important}.mb-xxl-auto,.my-xxl-auto{margin-bottom:auto !important}.ml-xxl-auto,.mx-xxl-auto{margin-left:auto !important}}@media(min-width: 1920px){.m-full-0{margin:0 !important}.mt-full-0,.my-full-0{margin-top:0 !important}.mr-full-0,.mx-full-0{margin-right:0 !important}.mb-full-0,.my-full-0{margin-bottom:0 !important}.ml-full-0,.mx-full-0{margin-left:0 !important}.m-full-1{margin:.5rem !important}.mt-full-1,.my-full-1{margin-top:.5rem !important}.mr-full-1,.mx-full-1{margin-right:.5rem !important}.mb-full-1,.my-full-1{margin-bottom:.5rem !important}.ml-full-1,.mx-full-1{margin-left:.5rem !important}.m-full-2{margin:1rem !important}.mt-full-2,.my-full-2{margin-top:1rem !important}.mr-full-2,.mx-full-2{margin-right:1rem !important}.mb-full-2,.my-full-2{margin-bottom:1rem !important}.ml-full-2,.mx-full-2{margin-left:1rem !important}.m-full-3{margin:1.5rem !important}.mt-full-3,.my-full-3{margin-top:1.5rem !important}.mr-full-3,.mx-full-3{margin-right:1.5rem !important}.mb-full-3,.my-full-3{margin-bottom:1.5rem !important}.ml-full-3,.mx-full-3{margin-left:1.5rem !important}.m-full-4{margin:2rem !important}.mt-full-4,.my-full-4{margin-top:2rem !important}.mr-full-4,.mx-full-4{margin-right:2rem !important}.mb-full-4,.my-full-4{margin-bottom:2rem !important}.ml-full-4,.mx-full-4{margin-left:2rem !important}.m-full-5{margin:2.5rem !important}.mt-full-5,.my-full-5{margin-top:2.5rem !important}.mr-full-5,.mx-full-5{margin-right:2.5rem !important}.mb-full-5,.my-full-5{margin-bottom:2.5rem !important}.ml-full-5,.mx-full-5{margin-left:2.5rem !important}.m-full-6{margin:3rem !important}.mt-full-6,.my-full-6{margin-top:3rem !important}.mr-full-6,.mx-full-6{margin-right:3rem !important}.mb-full-6,.my-full-6{margin-bottom:3rem !important}.ml-full-6,.mx-full-6{margin-left:3rem !important}.m-full-7{margin:3.5rem !important}.mt-full-7,.my-full-7{margin-top:3.5rem !important}.mr-full-7,.mx-full-7{margin-right:3.5rem !important}.mb-full-7,.my-full-7{margin-bottom:3.5rem !important}.ml-full-7,.mx-full-7{margin-left:3.5rem !important}.m-full-8{margin:4rem !important}.mt-full-8,.my-full-8{margin-top:4rem !important}.mr-full-8,.mx-full-8{margin-right:4rem !important}.mb-full-8,.my-full-8{margin-bottom:4rem !important}.ml-full-8,.mx-full-8{margin-left:4rem !important}.m-full-9{margin:4.5rem !important}.mt-full-9,.my-full-9{margin-top:4.5rem !important}.mr-full-9,.mx-full-9{margin-right:4.5rem !important}.mb-full-9,.my-full-9{margin-bottom:4.5rem !important}.ml-full-9,.mx-full-9{margin-left:4.5rem !important}.m-full-10{margin:5rem !important}.mt-full-10,.my-full-10{margin-top:5rem !important}.mr-full-10,.mx-full-10{margin-right:5rem !important}.mb-full-10,.my-full-10{margin-bottom:5rem !important}.ml-full-10,.mx-full-10{margin-left:5rem !important}.m-full-11{margin:5.5rem !important}.mt-full-11,.my-full-11{margin-top:5.5rem !important}.mr-full-11,.mx-full-11{margin-right:5.5rem !important}.mb-full-11,.my-full-11{margin-bottom:5.5rem !important}.ml-full-11,.mx-full-11{margin-left:5.5rem !important}.m-full-12{margin:6rem !important}.mt-full-12,.my-full-12{margin-top:6rem !important}.mr-full-12,.mx-full-12{margin-right:6rem !important}.mb-full-12,.my-full-12{margin-bottom:6rem !important}.ml-full-12,.mx-full-12{margin-left:6rem !important}.m-full-13{margin:6.5rem !important}.mt-full-13,.my-full-13{margin-top:6.5rem !important}.mr-full-13,.mx-full-13{margin-right:6.5rem !important}.mb-full-13,.my-full-13{margin-bottom:6.5rem !important}.ml-full-13,.mx-full-13{margin-left:6.5rem !important}.m-full-14{margin:7rem !important}.mt-full-14,.my-full-14{margin-top:7rem !important}.mr-full-14,.mx-full-14{margin-right:7rem !important}.mb-full-14,.my-full-14{margin-bottom:7rem !important}.ml-full-14,.mx-full-14{margin-left:7rem !important}.m-full-15{margin:7.5rem !important}.mt-full-15,.my-full-15{margin-top:7.5rem !important}.mr-full-15,.mx-full-15{margin-right:7.5rem !important}.mb-full-15,.my-full-15{margin-bottom:7.5rem !important}.ml-full-15,.mx-full-15{margin-left:7.5rem !important}.m-full-16{margin:8rem !important}.mt-full-16,.my-full-16{margin-top:8rem !important}.mr-full-16,.mx-full-16{margin-right:8rem !important}.mb-full-16,.my-full-16{margin-bottom:8rem !important}.ml-full-16,.mx-full-16{margin-left:8rem !important}.m-full-17{margin:8.5rem !important}.mt-full-17,.my-full-17{margin-top:8.5rem !important}.mr-full-17,.mx-full-17{margin-right:8.5rem !important}.mb-full-17,.my-full-17{margin-bottom:8.5rem !important}.ml-full-17,.mx-full-17{margin-left:8.5rem !important}.m-full-18{margin:9rem !important}.mt-full-18,.my-full-18{margin-top:9rem !important}.mr-full-18,.mx-full-18{margin-right:9rem !important}.mb-full-18,.my-full-18{margin-bottom:9rem !important}.ml-full-18,.mx-full-18{margin-left:9rem !important}.m-full-19{margin:9.5rem !important}.mt-full-19,.my-full-19{margin-top:9.5rem !important}.mr-full-19,.mx-full-19{margin-right:9.5rem !important}.mb-full-19,.my-full-19{margin-bottom:9.5rem !important}.ml-full-19,.mx-full-19{margin-left:9.5rem !important}.m-full-20{margin:10rem !important}.mt-full-20,.my-full-20{margin-top:10rem !important}.mr-full-20,.mx-full-20{margin-right:10rem !important}.mb-full-20,.my-full-20{margin-bottom:10rem !important}.ml-full-20,.mx-full-20{margin-left:10rem !important}.p-full-0{padding:0 !important}.pt-full-0,.py-full-0{padding-top:0 !important}.pr-full-0,.px-full-0{padding-right:0 !important}.pb-full-0,.py-full-0{padding-bottom:0 !important}.pl-full-0,.px-full-0{padding-left:0 !important}.p-full-1{padding:.5rem !important}.pt-full-1,.py-full-1{padding-top:.5rem !important}.pr-full-1,.px-full-1{padding-right:.5rem !important}.pb-full-1,.py-full-1{padding-bottom:.5rem !important}.pl-full-1,.px-full-1{padding-left:.5rem !important}.p-full-2{padding:1rem !important}.pt-full-2,.py-full-2{padding-top:1rem !important}.pr-full-2,.px-full-2{padding-right:1rem !important}.pb-full-2,.py-full-2{padding-bottom:1rem !important}.pl-full-2,.px-full-2{padding-left:1rem !important}.p-full-3{padding:1.5rem !important}.pt-full-3,.py-full-3{padding-top:1.5rem !important}.pr-full-3,.px-full-3{padding-right:1.5rem !important}.pb-full-3,.py-full-3{padding-bottom:1.5rem !important}.pl-full-3,.px-full-3{padding-left:1.5rem !important}.p-full-4{padding:2rem !important}.pt-full-4,.py-full-4{padding-top:2rem !important}.pr-full-4,.px-full-4{padding-right:2rem !important}.pb-full-4,.py-full-4{padding-bottom:2rem !important}.pl-full-4,.px-full-4{padding-left:2rem !important}.p-full-5{padding:2.5rem !important}.pt-full-5,.py-full-5{padding-top:2.5rem !important}.pr-full-5,.px-full-5{padding-right:2.5rem !important}.pb-full-5,.py-full-5{padding-bottom:2.5rem !important}.pl-full-5,.px-full-5{padding-left:2.5rem !important}.p-full-6{padding:3rem !important}.pt-full-6,.py-full-6{padding-top:3rem !important}.pr-full-6,.px-full-6{padding-right:3rem !important}.pb-full-6,.py-full-6{padding-bottom:3rem !important}.pl-full-6,.px-full-6{padding-left:3rem !important}.p-full-7{padding:3.5rem !important}.pt-full-7,.py-full-7{padding-top:3.5rem !important}.pr-full-7,.px-full-7{padding-right:3.5rem !important}.pb-full-7,.py-full-7{padding-bottom:3.5rem !important}.pl-full-7,.px-full-7{padding-left:3.5rem !important}.p-full-8{padding:4rem !important}.pt-full-8,.py-full-8{padding-top:4rem !important}.pr-full-8,.px-full-8{padding-right:4rem !important}.pb-full-8,.py-full-8{padding-bottom:4rem !important}.pl-full-8,.px-full-8{padding-left:4rem !important}.p-full-9{padding:4.5rem !important}.pt-full-9,.py-full-9{padding-top:4.5rem !important}.pr-full-9,.px-full-9{padding-right:4.5rem !important}.pb-full-9,.py-full-9{padding-bottom:4.5rem !important}.pl-full-9,.px-full-9{padding-left:4.5rem !important}.p-full-10{padding:5rem !important}.pt-full-10,.py-full-10{padding-top:5rem !important}.pr-full-10,.px-full-10{padding-right:5rem !important}.pb-full-10,.py-full-10{padding-bottom:5rem !important}.pl-full-10,.px-full-10{padding-left:5rem !important}.p-full-11{padding:5.5rem !important}.pt-full-11,.py-full-11{padding-top:5.5rem !important}.pr-full-11,.px-full-11{padding-right:5.5rem !important}.pb-full-11,.py-full-11{padding-bottom:5.5rem !important}.pl-full-11,.px-full-11{padding-left:5.5rem !important}.p-full-12{padding:6rem !important}.pt-full-12,.py-full-12{padding-top:6rem !important}.pr-full-12,.px-full-12{padding-right:6rem !important}.pb-full-12,.py-full-12{padding-bottom:6rem !important}.pl-full-12,.px-full-12{padding-left:6rem !important}.p-full-13{padding:6.5rem !important}.pt-full-13,.py-full-13{padding-top:6.5rem !important}.pr-full-13,.px-full-13{padding-right:6.5rem !important}.pb-full-13,.py-full-13{padding-bottom:6.5rem !important}.pl-full-13,.px-full-13{padding-left:6.5rem !important}.p-full-14{padding:7rem !important}.pt-full-14,.py-full-14{padding-top:7rem !important}.pr-full-14,.px-full-14{padding-right:7rem !important}.pb-full-14,.py-full-14{padding-bottom:7rem !important}.pl-full-14,.px-full-14{padding-left:7rem !important}.p-full-15{padding:7.5rem !important}.pt-full-15,.py-full-15{padding-top:7.5rem !important}.pr-full-15,.px-full-15{padding-right:7.5rem !important}.pb-full-15,.py-full-15{padding-bottom:7.5rem !important}.pl-full-15,.px-full-15{padding-left:7.5rem !important}.p-full-16{padding:8rem !important}.pt-full-16,.py-full-16{padding-top:8rem !important}.pr-full-16,.px-full-16{padding-right:8rem !important}.pb-full-16,.py-full-16{padding-bottom:8rem !important}.pl-full-16,.px-full-16{padding-left:8rem !important}.p-full-17{padding:8.5rem !important}.pt-full-17,.py-full-17{padding-top:8.5rem !important}.pr-full-17,.px-full-17{padding-right:8.5rem !important}.pb-full-17,.py-full-17{padding-bottom:8.5rem !important}.pl-full-17,.px-full-17{padding-left:8.5rem !important}.p-full-18{padding:9rem !important}.pt-full-18,.py-full-18{padding-top:9rem !important}.pr-full-18,.px-full-18{padding-right:9rem !important}.pb-full-18,.py-full-18{padding-bottom:9rem !important}.pl-full-18,.px-full-18{padding-left:9rem !important}.p-full-19{padding:9.5rem !important}.pt-full-19,.py-full-19{padding-top:9.5rem !important}.pr-full-19,.px-full-19{padding-right:9.5rem !important}.pb-full-19,.py-full-19{padding-bottom:9.5rem !important}.pl-full-19,.px-full-19{padding-left:9.5rem !important}.p-full-20{padding:10rem !important}.pt-full-20,.py-full-20{padding-top:10rem !important}.pr-full-20,.px-full-20{padding-right:10rem !important}.pb-full-20,.py-full-20{padding-bottom:10rem !important}.pl-full-20,.px-full-20{padding-left:10rem !important}.m-full-n1{margin:-0.5rem !important}.mt-full-n1,.my-full-n1{margin-top:-0.5rem !important}.mr-full-n1,.mx-full-n1{margin-right:-0.5rem !important}.mb-full-n1,.my-full-n1{margin-bottom:-0.5rem !important}.ml-full-n1,.mx-full-n1{margin-left:-0.5rem !important}.m-full-n2{margin:-1rem !important}.mt-full-n2,.my-full-n2{margin-top:-1rem !important}.mr-full-n2,.mx-full-n2{margin-right:-1rem !important}.mb-full-n2,.my-full-n2{margin-bottom:-1rem !important}.ml-full-n2,.mx-full-n2{margin-left:-1rem !important}.m-full-n3{margin:-1.5rem !important}.mt-full-n3,.my-full-n3{margin-top:-1.5rem !important}.mr-full-n3,.mx-full-n3{margin-right:-1.5rem !important}.mb-full-n3,.my-full-n3{margin-bottom:-1.5rem !important}.ml-full-n3,.mx-full-n3{margin-left:-1.5rem !important}.m-full-n4{margin:-2rem !important}.mt-full-n4,.my-full-n4{margin-top:-2rem !important}.mr-full-n4,.mx-full-n4{margin-right:-2rem !important}.mb-full-n4,.my-full-n4{margin-bottom:-2rem !important}.ml-full-n4,.mx-full-n4{margin-left:-2rem !important}.m-full-n5{margin:-2.5rem !important}.mt-full-n5,.my-full-n5{margin-top:-2.5rem !important}.mr-full-n5,.mx-full-n5{margin-right:-2.5rem !important}.mb-full-n5,.my-full-n5{margin-bottom:-2.5rem !important}.ml-full-n5,.mx-full-n5{margin-left:-2.5rem !important}.m-full-n6{margin:-3rem !important}.mt-full-n6,.my-full-n6{margin-top:-3rem !important}.mr-full-n6,.mx-full-n6{margin-right:-3rem !important}.mb-full-n6,.my-full-n6{margin-bottom:-3rem !important}.ml-full-n6,.mx-full-n6{margin-left:-3rem !important}.m-full-n7{margin:-3.5rem !important}.mt-full-n7,.my-full-n7{margin-top:-3.5rem !important}.mr-full-n7,.mx-full-n7{margin-right:-3.5rem !important}.mb-full-n7,.my-full-n7{margin-bottom:-3.5rem !important}.ml-full-n7,.mx-full-n7{margin-left:-3.5rem !important}.m-full-n8{margin:-4rem !important}.mt-full-n8,.my-full-n8{margin-top:-4rem !important}.mr-full-n8,.mx-full-n8{margin-right:-4rem !important}.mb-full-n8,.my-full-n8{margin-bottom:-4rem !important}.ml-full-n8,.mx-full-n8{margin-left:-4rem !important}.m-full-n9{margin:-4.5rem !important}.mt-full-n9,.my-full-n9{margin-top:-4.5rem !important}.mr-full-n9,.mx-full-n9{margin-right:-4.5rem !important}.mb-full-n9,.my-full-n9{margin-bottom:-4.5rem !important}.ml-full-n9,.mx-full-n9{margin-left:-4.5rem !important}.m-full-n10{margin:-5rem !important}.mt-full-n10,.my-full-n10{margin-top:-5rem !important}.mr-full-n10,.mx-full-n10{margin-right:-5rem !important}.mb-full-n10,.my-full-n10{margin-bottom:-5rem !important}.ml-full-n10,.mx-full-n10{margin-left:-5rem !important}.m-full-n11{margin:-5.5rem !important}.mt-full-n11,.my-full-n11{margin-top:-5.5rem !important}.mr-full-n11,.mx-full-n11{margin-right:-5.5rem !important}.mb-full-n11,.my-full-n11{margin-bottom:-5.5rem !important}.ml-full-n11,.mx-full-n11{margin-left:-5.5rem !important}.m-full-n12{margin:-6rem !important}.mt-full-n12,.my-full-n12{margin-top:-6rem !important}.mr-full-n12,.mx-full-n12{margin-right:-6rem !important}.mb-full-n12,.my-full-n12{margin-bottom:-6rem !important}.ml-full-n12,.mx-full-n12{margin-left:-6rem !important}.m-full-n13{margin:-6.5rem !important}.mt-full-n13,.my-full-n13{margin-top:-6.5rem !important}.mr-full-n13,.mx-full-n13{margin-right:-6.5rem !important}.mb-full-n13,.my-full-n13{margin-bottom:-6.5rem !important}.ml-full-n13,.mx-full-n13{margin-left:-6.5rem !important}.m-full-n14{margin:-7rem !important}.mt-full-n14,.my-full-n14{margin-top:-7rem !important}.mr-full-n14,.mx-full-n14{margin-right:-7rem !important}.mb-full-n14,.my-full-n14{margin-bottom:-7rem !important}.ml-full-n14,.mx-full-n14{margin-left:-7rem !important}.m-full-n15{margin:-7.5rem !important}.mt-full-n15,.my-full-n15{margin-top:-7.5rem !important}.mr-full-n15,.mx-full-n15{margin-right:-7.5rem !important}.mb-full-n15,.my-full-n15{margin-bottom:-7.5rem !important}.ml-full-n15,.mx-full-n15{margin-left:-7.5rem !important}.m-full-n16{margin:-8rem !important}.mt-full-n16,.my-full-n16{margin-top:-8rem !important}.mr-full-n16,.mx-full-n16{margin-right:-8rem !important}.mb-full-n16,.my-full-n16{margin-bottom:-8rem !important}.ml-full-n16,.mx-full-n16{margin-left:-8rem !important}.m-full-n17{margin:-8.5rem !important}.mt-full-n17,.my-full-n17{margin-top:-8.5rem !important}.mr-full-n17,.mx-full-n17{margin-right:-8.5rem !important}.mb-full-n17,.my-full-n17{margin-bottom:-8.5rem !important}.ml-full-n17,.mx-full-n17{margin-left:-8.5rem !important}.m-full-n18{margin:-9rem !important}.mt-full-n18,.my-full-n18{margin-top:-9rem !important}.mr-full-n18,.mx-full-n18{margin-right:-9rem !important}.mb-full-n18,.my-full-n18{margin-bottom:-9rem !important}.ml-full-n18,.mx-full-n18{margin-left:-9rem !important}.m-full-n19{margin:-9.5rem !important}.mt-full-n19,.my-full-n19{margin-top:-9.5rem !important}.mr-full-n19,.mx-full-n19{margin-right:-9.5rem !important}.mb-full-n19,.my-full-n19{margin-bottom:-9.5rem !important}.ml-full-n19,.mx-full-n19{margin-left:-9.5rem !important}.m-full-n20{margin:-10rem !important}.mt-full-n20,.my-full-n20{margin-top:-10rem !important}.mr-full-n20,.mx-full-n20{margin-right:-10rem !important}.mb-full-n20,.my-full-n20{margin-bottom:-10rem !important}.ml-full-n20,.mx-full-n20{margin-left:-10rem !important}.m-full-auto{margin:auto !important}.mt-full-auto,.my-full-auto{margin-top:auto !important}.mr-full-auto,.mx-full-auto{margin-right:auto !important}.mb-full-auto,.my-full-auto{margin-bottom:auto !important}.ml-full-auto,.mx-full-auto{margin-left:auto !important}}.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)}.text-monospace{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace !important}.text-justify{text-align:justify !important}.text-wrap{white-space:normal !important}.text-nowrap{white-space:nowrap !important}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}@media(min-width: 576px){.text-sm-left{text-align:left !important}.text-sm-right{text-align:right !important}.text-sm-center{text-align:center !important}}@media(min-width: 768px){.text-md-left{text-align:left !important}.text-md-right{text-align:right !important}.text-md-center{text-align:center !important}}@media(min-width: 992px){.text-lg-left{text-align:left !important}.text-lg-right{text-align:right !important}.text-lg-center{text-align:center !important}}@media(min-width: 1200px){.text-xl-left{text-align:left !important}.text-xl-right{text-align:right !important}.text-xl-center{text-align:center !important}}@media(min-width: 1360px){.text-xxl-left{text-align:left !important}.text-xxl-right{text-align:right !important}.text-xxl-center{text-align:center !important}}@media(min-width: 1920px){.text-full-left{text-align:left !important}.text-full-right{text-align:right !important}.text-full-center{text-align:center !important}}.text-lowercase{text-transform:lowercase !important}.text-uppercase{text-transform:uppercase !important}.text-capitalize{text-transform:capitalize !important}.font-weight-light{font-weight:300 !important}.font-weight-lighter{font-weight:lighter !important}.font-weight-normal{font-weight:400 !important}.font-weight-bold{font-weight:700 !important}.font-weight-bolder{font-weight:bolder !important}.font-italic{font-style:italic !important}.text-white{color:#fff !important}.text-primary{color:#ff5a5f !important}a.text-primary:hover,a.text-primary:focus{color:#ff0e15 !important}.text-secondary{color:#5ce1e6 !important}a.text-secondary:hover,a.text-secondary:focus{color:#21ced5 !important}.text-success{color:#28a745 !important}a.text-success:hover,a.text-success:focus{color:#19692c !important}.text-info{color:#5363d9 !important}a.text-info:hover,a.text-info:focus{color:#2839b7 !important}.text-warning{color:#ffc107 !important}a.text-warning:hover,a.text-warning:focus{color:#ba8b00 !important}.text-danger{color:#dc3545 !important}a.text-danger:hover,a.text-danger:focus{color:#a71d2a !important}.text-light{color:#f8f9fa !important}a.text-light:hover,a.text-light:focus{color:#cbd3da !important}.text-dark{color:#15132d !important}a.text-dark:hover,a.text-dark:focus{color:#000 !important}.text-soft-4{color:#f9f7fc !important}a.text-soft-4:hover,a.text-soft-4:focus{color:#cfbfe7 !important}.text-body{color:#15132d !important}.text-muted{color:#6c757d !important}.text-black-50{color:rgba(0,0,0,.5) !important}.text-white-50{color:rgba(255,255,255,.5) !important}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.text-decoration-none{text-decoration:none !important}.text-break{word-break:break-word !important;word-wrap:break-word !important}.text-reset{color:inherit !important}.visible{visibility:visible !important}.invisible{visibility:hidden !important}@media print{*,*::before,*::after{text-shadow:none !important;box-shadow:none !important}a:not(.btn){text-decoration:underline}abbr[title]::after{content:" (" attr(title) ")"}pre{white-space:pre-wrap !important}pre,blockquote{border:1px solid #adb5bd;page-break-inside:avoid}tr,img{page-break-inside:avoid}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}@page{size:a3}body{min-width:992px !important}.container{min-width:992px !important}.navbar{display:none}.badge{border:1px solid #000}.table{border-collapse:collapse !important}.table td,.table th{background-color:#fff !important}.table-bordered th,.table-bordered td{border:1px solid #dee2e6 !important}.table-dark{color:inherit}.table-dark th,.table-dark td,.table-dark thead th,.table-dark tbody+tbody{border-color:#dee2e6}.table .thead-dark th{color:inherit;border-color:#dee2e6}}.bv-no-focus-ring:focus{outline:none}@media(max-width: 575.98px){.bv-d-xs-down-none{display:none !important}}@media(max-width: 767.98px){.bv-d-sm-down-none{display:none !important}}@media(max-width: 991.98px){.bv-d-md-down-none{display:none !important}}@media(max-width: 1199.98px){.bv-d-lg-down-none{display:none !important}}@media(max-width: 1359.98px){.bv-d-xl-down-none{display:none !important}}@media(max-width: 1919.98px){.bv-d-xxl-down-none{display:none !important}}.bv-d-full-down-none{display:none !important}.form-control.focus{color:#15132d;background-color:#fff;border-color:#ffdadb;outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.form-control.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.b-avatar{display:inline-flex;align-items:center;justify-content:center;vertical-align:middle;flex-shrink:0;width:2.5rem;height:2.5rem;font-size:inherit;font-weight:400;line-height:1;max-width:100%;max-height:auto;text-align:center;overflow:visible;position:relative;transition:color .15s ease-in-out,background-color .15s ease-in-out,box-shadow .15s ease-in-out}.b-avatar:focus{outline:0}.b-avatar.btn,.b-avatar[href]{padding:0;border:0}.b-avatar.btn .b-avatar-img img,.b-avatar[href] .b-avatar-img img{transition:transform .15s ease-in-out}.b-avatar.btn:not(:disabled):not(.disabled),.b-avatar[href]:not(:disabled):not(.disabled){cursor:pointer}.b-avatar.btn:not(:disabled):not(.disabled):hover .b-avatar-img img,.b-avatar[href]:not(:disabled):not(.disabled):hover .b-avatar-img img{transform:scale(1.15)}.b-avatar.disabled,.b-avatar:disabled,.b-avatar[disabled]{opacity:.65;pointer-events:none}.b-avatar .b-avatar-custom,.b-avatar .b-avatar-text,.b-avatar .b-avatar-img{border-radius:inherit;width:100%;height:100%;overflow:hidden;display:flex;justify-content:center;align-items:center;mask-image:radial-gradient(white, black)}.b-avatar .b-avatar-text{text-transform:uppercase;white-space:nowrap}.b-avatar[href]{text-decoration:none}.b-avatar>.b-icon{width:60%;height:auto;max-width:100%}.b-avatar .b-avatar-img img{width:100%;height:100%;max-height:auto;border-radius:inherit;object-fit:cover}.b-avatar .b-avatar-badge{position:absolute;min-height:1.5em;min-width:1.5em;padding:.25em;line-height:1;border-radius:10em;font-size:70%;font-weight:700;z-index:1}.b-avatar-sm{width:1.5rem;height:1.5rem}.b-avatar-sm .b-avatar-text{font-size:calc(0.6rem)}.b-avatar-sm .b-avatar-badge{font-size:calc(0.42rem)}.b-avatar-lg{width:3.5rem;height:3.5rem}.b-avatar-lg .b-avatar-text{font-size:calc(1.4rem)}.b-avatar-lg .b-avatar-badge{font-size:calc(0.98rem)}.b-avatar-group .b-avatar-group-inner{display:flex;flex-wrap:wrap}.b-avatar-group .b-avatar{border:1px solid #dee2e6}.b-avatar-group a.b-avatar:hover:not(.disabled):not(disabled),.b-avatar-group .btn.b-avatar:hover:not(.disabled):not(disabled){z-index:1}.b-calendar{display:inline-flex}.b-calendar .b-calendar-inner{min-width:250px}.b-calendar .b-calendar-header,.b-calendar .b-calendar-nav{margin-bottom:.25rem}.b-calendar .b-calendar-nav .btn{padding:.25rem}.b-calendar output{padding:.25rem;font-size:80%}.b-calendar output.readonly{background-color:#e9ecef;opacity:1}.b-calendar .b-calendar-footer{margin-top:.5rem}.b-calendar .b-calendar-grid{padding:0;margin:0;overflow:hidden}.b-calendar .b-calendar-grid .row{flex-wrap:nowrap}.b-calendar .b-calendar-grid-caption{padding:.25rem}.b-calendar .b-calendar-grid-body .col[data-date] .btn{width:32px;height:32px;font-size:14px;line-height:1;margin:3px auto;padding:9px 0}.b-calendar .btn:disabled,.b-calendar .btn.disabled,.b-calendar .btn[aria-disabled=true]{cursor:default;pointer-events:none}.card-img-left{border-top-left-radius:calc(0.25rem - 1px);border-bottom-left-radius:calc(0.25rem - 1px)}.card-img-right{border-top-right-radius:calc(0.25rem - 1px);border-bottom-right-radius:calc(0.25rem - 1px)}.dropdown:not(.dropleft) .dropdown-toggle.dropdown-toggle-no-caret::after{display:none !important}.dropdown.dropleft .dropdown-toggle.dropdown-toggle-no-caret::before{display:none !important}.dropdown .dropdown-menu:focus,.dropdown span.twitter-typeahead .tt-dropdown-menu:focus,span.twitter-typeahead .dropdown .tt-dropdown-menu:focus,.dropdown span.twitter-typeahead .tt-menu:focus,span.twitter-typeahead .dropdown .tt-menu:focus{outline:none}.b-dropdown-form{display:inline-block;padding:.25rem 1.5rem;width:100%;clear:both;font-weight:400}.b-dropdown-form:focus{outline:1px dotted !important;outline:5px auto -webkit-focus-ring-color !important}.b-dropdown-form.disabled,.b-dropdown-form:disabled{outline:0 !important;color:#adb5bd;pointer-events:none}.b-dropdown-text{display:inline-block;padding:.25rem 1.5rem;margin-bottom:0;width:100%;clear:both;font-weight:lighter}.custom-checkbox.b-custom-control-lg,.input-group-lg .custom-checkbox{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-checkbox.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-checkbox .custom-control-label::before{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:.75rem}.custom-checkbox.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-checkbox .custom-control-label::after{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background-size:50% 50%}.custom-checkbox.b-custom-control-sm,.input-group-sm .custom-checkbox{font-size:.875rem;line-height:1.5;padding-left:1.3125rem}.custom-checkbox.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-checkbox .custom-control-label::before{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;border-radius:.2rem}.custom-checkbox.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-checkbox .custom-control-label::after{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;background-size:50% 50%}.custom-switch.b-custom-control-lg,.input-group-lg .custom-switch{padding-left:2.8125rem}.custom-switch.b-custom-control-lg .custom-control-label,.input-group-lg .custom-switch .custom-control-label{font-size:1.25rem;line-height:1.5}.custom-switch.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-switch .custom-control-label::before{top:.3125rem;height:1.25rem;left:-2.8125rem;width:2.1875rem;border-radius:.625rem}.custom-switch.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-switch .custom-control-label::after{top:calc( 0.3125rem + 2px );left:calc( -2.8125rem + 2px );width:calc( 1.25rem - 4px );height:calc( 1.25rem - 4px );border-radius:.625rem;background-size:50% 50%}.custom-switch.b-custom-control-lg .custom-control-input:checked~.custom-control-label::after,.input-group-lg .custom-switch .custom-control-input:checked~.custom-control-label::after{transform:translateX(0.9375rem)}.custom-switch.b-custom-control-sm,.input-group-sm .custom-switch{padding-left:1.96875rem}.custom-switch.b-custom-control-sm .custom-control-label,.input-group-sm .custom-switch .custom-control-label{font-size:.875rem;line-height:1.5}.custom-switch.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-switch .custom-control-label::before{top:.21875rem;left:-1.96875rem;width:1.53125rem;height:.875rem;border-radius:.4375rem}.custom-switch.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-switch .custom-control-label::after{top:calc( 0.21875rem + 2px );left:calc( -1.96875rem + 2px );width:calc( 0.875rem - 4px );height:calc( 0.875rem - 4px );border-radius:.4375rem;background-size:50% 50%}.custom-switch.b-custom-control-sm .custom-control-input:checked~.custom-control-label::after,.input-group-sm .custom-switch .custom-control-input:checked~.custom-control-label::after{transform:translateX(0.65625rem)}.input-group>.input-group-prepend>.btn-group>.btn,.input-group>.input-group-append:not(:last-child)>.btn-group>.btn,.input-group>.input-group-append:last-child>.btn-group:not(:last-child):not(.dropdown-toggle)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.input-group-append>.btn-group>.btn,.input-group>.input-group-prepend:not(:first-child)>.btn-group>.btn,.input-group>.input-group-prepend:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.b-form-btn-label-control.form-control{display:flex;align-items:stretch;height:auto;padding:0;background-image:none}.input-group .b-form-btn-label-control.form-control{padding:0}[dir=rtl] .b-form-btn-label-control.form-control,.b-form-btn-label-control.form-control[dir=rtl]{flex-direction:row-reverse}[dir=rtl] .b-form-btn-label-control.form-control>label,.b-form-btn-label-control.form-control[dir=rtl]>label{text-align:right}.b-form-btn-label-control.form-control>.btn{line-height:1;font-size:inherit;box-shadow:none !important;border:0}.b-form-btn-label-control.form-control>.btn:disabled{pointer-events:none}.b-form-btn-label-control.form-control.is-valid>.btn{color:#28a745}.b-form-btn-label-control.form-control.is-invalid>.btn{color:#dc3545}.b-form-btn-label-control.form-control>.dropdown-menu,span.twitter-typeahead .b-form-btn-label-control.form-control>.tt-dropdown-menu,span.twitter-typeahead .b-form-btn-label-control.form-control>.tt-menu{padding:.5rem}.b-form-btn-label-control.form-control>.form-control{height:auto;min-height:calc(calc(1.184015786em + 1.25rem + 2px) - 2px);padding-left:.25rem;margin:0;border:0;outline:0;background:transparent;word-break:break-word;font-size:inherit;white-space:normal;cursor:pointer}.b-form-btn-label-control.form-control>.form-control.form-control-sm{min-height:calc(calc(1.222222em + 1rem + 2px) - 2px)}.b-form-btn-label-control.form-control>.form-control.form-control-lg{min-height:calc(calc(1.184015786em + 1.625rem + 2px) - 2px)}.input-group.input-group-sm .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.222222em + 1rem + 2px) - 2px);padding-top:.5rem;padding-bottom:.5rem}.input-group.input-group-lg .b-form-btn-label-control.form-control>.form-control{min-height:calc(calc(1.184015786em + 1.625rem + 2px) - 2px);padding-top:.8125rem;padding-bottom:.8125rem}.b-form-btn-label-control.form-control[aria-disabled=true],.b-form-btn-label-control.form-control[aria-readonly=true]{background-color:#e9ecef;opacity:1}.b-form-btn-label-control.form-control[aria-disabled=true]{pointer-events:none}.b-form-btn-label-control.form-control[aria-disabled=true]>label{cursor:default}.b-form-btn-label-control.btn-group>.dropdown-menu,span.twitter-typeahead .b-form-btn-label-control.btn-group>.tt-dropdown-menu,span.twitter-typeahead .b-form-btn-label-control.btn-group>.tt-menu{padding:.5rem}.custom-file-label{white-space:nowrap;overflow-x:hidden}.b-custom-control-lg.custom-file,.b-custom-control-lg .custom-file-input,.b-custom-control-lg .custom-file-label,.input-group-lg.custom-file,.input-group-lg .custom-file-input,.input-group-lg .custom-file-label{font-size:1.125rem;height:calc(1.184015786em + 1.625rem + 2px)}.b-custom-control-lg .custom-file-label,.b-custom-control-lg .custom-file-label:after,.input-group-lg .custom-file-label,.input-group-lg .custom-file-label:after{padding:.8125rem 1rem;line-height:1.184015786}.b-custom-control-lg .custom-file-label,.input-group-lg .custom-file-label{border-radius:1.4785088796rem}.b-custom-control-lg .custom-file-label::after,.input-group-lg .custom-file-label::after{font-size:inherit;height:calc( 1.184015786em + 1.625rem );border-radius:0 1.4785088796rem 1.4785088796rem 0}.b-custom-control-sm.custom-file,.b-custom-control-sm .custom-file-input,.b-custom-control-sm .custom-file-label,.input-group-sm.custom-file,.input-group-sm .custom-file-input,.input-group-sm .custom-file-label{font-size:1rem;height:calc(1.222222em + 1rem + 2px)}.b-custom-control-sm .custom-file-label,.b-custom-control-sm .custom-file-label:after,.input-group-sm .custom-file-label,.input-group-sm .custom-file-label:after{padding:.5rem .75rem;line-height:1.222222}.b-custom-control-sm .custom-file-label,.input-group-sm .custom-file-label{border-radius:1.111111rem}.b-custom-control-sm .custom-file-label::after,.input-group-sm .custom-file-label::after{font-size:inherit;height:calc( 1.222222em + 1rem );border-radius:0 1.111111rem 1.111111rem 0}.was-validated .form-control:invalid,.was-validated .form-control:valid,.form-control.is-invalid,.form-control.is-valid{background-position:right calc(0.2960039465em + 0.3125rem) center}input[type=color].form-control{height:calc(1.184015786em + 1.25rem + 2px);padding:.25rem .375rem}input[type=color].form-control.form-control-sm,.input-group-sm input[type=color].form-control{height:calc(1.222222em + 1rem + 2px);padding:.25rem .375rem}input[type=color].form-control.form-control-lg,.input-group-lg input[type=color].form-control{height:calc(1.184015786em + 1.625rem + 2px);padding:.25rem .375rem}input[type=color].form-control:disabled{background-color:#adb5bd;opacity:.65}.input-group>.custom-range{position:relative;flex:1 1 auto;width:1%;margin-bottom:0}.input-group>.custom-range+.form-control,.input-group>.custom-range+.form-control-plaintext,.input-group>.custom-range+.custom-select,.input-group>.custom-range+.custom-range,.input-group>.custom-range+.custom-file{margin-left:-1px}.input-group>.form-control+.custom-range,.input-group>.form-control-plaintext+.custom-range,.input-group>.custom-select+.custom-range,.input-group>.custom-range+.custom-range,.input-group>.custom-file+.custom-range{margin-left:-1px}.input-group>.custom-range:focus{z-index:3}.input-group>.custom-range:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.custom-range:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.custom-range{height:calc(1.184015786em + 1.25rem + 2px);padding:0 .875rem;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;height:calc(1.184015786em + 1.25rem + 2px);border-radius:1.2910088796rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.input-group>.custom-range{transition:none}}.input-group>.custom-range:focus{color:#15132d;background-color:#fff;border-color:#ffdadb;outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.input-group>.custom-range:disabled,.input-group>.custom-range[readonly]{background-color:#e9ecef}.input-group-lg>.custom-range{height:calc(1.184015786em + 1.625rem + 2px);padding:0 1rem;border-radius:1.4785088796rem}.input-group-sm>.custom-range{height:calc(1.222222em + 1rem + 2px);padding:0 .75rem;border-radius:1.111111rem}.was-validated .input-group .custom-range:valid,.input-group .custom-range.is-valid{border-color:#28a745}.was-validated .input-group .custom-range:valid:focus,.input-group .custom-range.is-valid:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.was-validated .custom-range:valid:focus::-webkit-slider-thumb,.custom-range.is-valid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #9be7ac}.was-validated .custom-range:valid:focus::-moz-range-thumb,.custom-range.is-valid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #9be7ac}.was-validated .custom-range:valid:focus::-ms-thumb,.custom-range.is-valid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #9be7ac}.was-validated .custom-range:valid::-webkit-slider-thumb,.custom-range.is-valid::-webkit-slider-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-webkit-slider-thumb:active,.custom-range.is-valid::-webkit-slider-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-webkit-slider-runnable-track,.custom-range.is-valid::-webkit-slider-runnable-track{background-color:rgba(40,167,69,.35)}.was-validated .custom-range:valid::-moz-range-thumb,.custom-range.is-valid::-moz-range-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-moz-range-thumb:active,.custom-range.is-valid::-moz-range-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-moz-range-track,.custom-range.is-valid::-moz-range-track{background:rgba(40,167,69,.35)}.was-validated .custom-range:valid~.valid-feedback,.was-validated .custom-range:valid~.valid-tooltip,.custom-range.is-valid~.valid-feedback,.custom-range.is-valid~.valid-tooltip{display:block}.was-validated .custom-range:valid::-ms-thumb,.custom-range.is-valid::-ms-thumb{background-color:#28a745;background-image:none}.was-validated .custom-range:valid::-ms-thumb:active,.custom-range.is-valid::-ms-thumb:active{background-color:#9be7ac;background-image:none}.was-validated .custom-range:valid::-ms-track-lower,.custom-range.is-valid::-ms-track-lower{background:rgba(40,167,69,.35)}.was-validated .custom-range:valid::-ms-track-upper,.custom-range.is-valid::-ms-track-upper{background:rgba(40,167,69,.35)}.was-validated .input-group .custom-range:invalid,.input-group .custom-range.is-invalid{border-color:#dc3545}.was-validated .input-group .custom-range:invalid:focus,.input-group .custom-range.is-invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.was-validated .custom-range:invalid:focus::-webkit-slider-thumb,.custom-range.is-invalid:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-moz-range-thumb,.custom-range.is-invalid:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #f6cdd1}.was-validated .custom-range:invalid:focus::-ms-thumb,.custom-range.is-invalid:focus::-ms-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .2rem #f6cdd1}.was-validated .custom-range:invalid::-webkit-slider-thumb,.custom-range.is-invalid::-webkit-slider-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-thumb:active,.custom-range.is-invalid::-webkit-slider-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-webkit-slider-runnable-track,.custom-range.is-invalid::-webkit-slider-runnable-track{background-color:rgba(220,53,69,.35)}.was-validated .custom-range:invalid::-moz-range-thumb,.custom-range.is-invalid::-moz-range-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-moz-range-thumb:active,.custom-range.is-invalid::-moz-range-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-moz-range-track,.custom-range.is-invalid::-moz-range-track{background:rgba(220,53,69,.35)}.was-validated .custom-range:invalid~.invalid-feedback,.was-validated .custom-range:invalid~.invalid-tooltip,.custom-range.is-invalid~.invalid-feedback,.custom-range.is-invalid~.invalid-tooltip{display:block}.was-validated .custom-range:invalid::-ms-thumb,.custom-range.is-invalid::-ms-thumb{background-color:#dc3545;background-image:none}.was-validated .custom-range:invalid::-ms-thumb:active,.custom-range.is-invalid::-ms-thumb:active{background-color:#f6cdd1;background-image:none}.was-validated .custom-range:invalid::-ms-track-lower,.custom-range.is-invalid::-ms-track-lower{background:rgba(220,53,69,.35)}.was-validated .custom-range:invalid::-ms-track-upper,.custom-range.is-invalid::-ms-track-upper{background:rgba(220,53,69,.35)}.custom-radio.b-custom-control-lg,.input-group-lg .custom-radio{font-size:1.25rem;line-height:1.5;padding-left:1.875rem}.custom-radio.b-custom-control-lg .custom-control-label::before,.input-group-lg .custom-radio .custom-control-label::before{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;border-radius:50%}.custom-radio.b-custom-control-lg .custom-control-label::after,.input-group-lg .custom-radio .custom-control-label::after{top:.3125rem;left:-1.875rem;width:1.25rem;height:1.25rem;background:no-repeat 50%/50% 50%}.custom-radio.b-custom-control-sm,.input-group-sm .custom-radio{font-size:.875rem;line-height:1.5;padding-left:1.3125rem}.custom-radio.b-custom-control-sm .custom-control-label::before,.input-group-sm .custom-radio .custom-control-label::before{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;border-radius:50%}.custom-radio.b-custom-control-sm .custom-control-label::after,.input-group-sm .custom-radio .custom-control-label::after{top:.21875rem;left:-1.3125rem;width:.875rem;height:.875rem;background:no-repeat 50%/50% 50%}.b-rating{text-align:center}.b-rating.d-inline-flex{width:auto}.b-rating .b-rating-star,.b-rating .b-rating-value{padding:0 .25em}.b-rating .b-rating-value{min-width:2.5em}.b-rating .b-rating-star{display:inline-flex;justify-content:center;outline:0}.b-rating .b-rating-star .b-rating-icon{display:inline-flex;transition:all .15s ease-in-out}.b-rating.disabled,.b-rating:disabled{background-color:#e9ecef;color:#6c757d}.b-rating:not(.disabled):not(.readonly) .b-rating-star{cursor:pointer}.b-rating:not(.disabled):not(.readonly):focus:not(:hover) .b-rating-star.focused .b-rating-icon,.b-rating:not(.disabled):not(.readonly) .b-rating-star:hover .b-rating-icon{transform:scale(1.5)}.b-rating[dir=rtl] .b-rating-star-half{transform:scale(-1, 1)}.b-form-spinbutton{text-align:center;overflow:hidden;background-image:none;padding:0}[dir=rtl] .b-form-spinbutton:not(.flex-column),.b-form-spinbutton[dir=rtl]:not(.flex-column){flex-direction:row-reverse}.b-form-spinbutton output{font-size:inherit;outline:0;border:0;background-color:transparent;width:auto;margin:0;padding:0 .25rem}.b-form-spinbutton output>div,.b-form-spinbutton output>bdi{display:block;min-width:2.25em;height:1.184015786em}.b-form-spinbutton.flex-column{height:auto;width:auto}.b-form-spinbutton.flex-column output{margin:0 .25rem;padding:.25rem 0}.b-form-spinbutton:not(.d-inline-flex):not(.flex-column){output-width:100%}.b-form-spinbutton.d-inline-flex:not(.flex-column){width:auto}.b-form-spinbutton .btn{line-height:1;box-shadow:none !important}.b-form-spinbutton .btn:disabled{pointer-events:none}.b-form-spinbutton .btn:hover:not(:disabled)>div>.b-icon{transform:scale(1.25)}.b-form-spinbutton.disabled,.b-form-spinbutton.readonly{background-color:#e9ecef}.b-form-spinbutton.disabled{pointer-events:none}.b-form-tags.focus{color:#15132d;background-color:#fff;border-color:#ffdadb;outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.b-form-tags.focus.is-valid{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.b-form-tags.focus.is-invalid{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.b-form-tags.disabled{background-color:#e9ecef}.b-form-tags-list{margin-top:-0.25rem}.b-form-tags-list .b-form-tags-field,.b-form-tags-list .b-form-tag{margin-top:.25rem}.b-form-tags-input{color:#15132d}.b-form-tag{font-size:75%;font-weight:normal;line-height:1.184015786;margin-right:.25rem}.b-form-tag.disabled{opacity:.75}.b-form-tag>button.b-form-tag-remove{color:inherit;font-size:125%;line-height:1;float:none;margin-left:.25rem}.form-control-sm .b-form-tag{line-height:1.222222}.form-control-lg .b-form-tag{line-height:1.184015786}.media-aside{display:flex;margin-right:1rem}.media-aside-right{margin-right:0;margin-left:1rem}.modal-backdrop{opacity:.5}.b-pagination-pills .page-item .page-link{border-radius:50rem !important;margin-left:.25rem;line-height:1}.b-pagination-pills .page-item:first-child .page-link{margin-left:0}.popover.b-popover{display:block;opacity:1;outline:0}.popover.b-popover.fade:not(.show){opacity:0}.popover.b-popover.show{opacity:1}.b-popover-primary.popover{background-color:#ffdedf;border-color:#ffd1d2}.b-popover-primary.bs-popover-top>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#ffd1d2}.b-popover-primary.bs-popover-top>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#ffdedf}.b-popover-primary.bs-popover-right>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#ffd1d2}.b-popover-primary.bs-popover-right>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#ffdedf}.b-popover-primary.bs-popover-bottom>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#ffd1d2}.b-popover-primary.bs-popover-bottom>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ffcfd0}.b-popover-primary.bs-popover-bottom .popover-header::before,.b-popover-primary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ffcfd0}.b-popover-primary.bs-popover-left>.arrow::before,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#ffd1d2}.b-popover-primary.bs-popover-left>.arrow::after,.b-popover-primary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#ffdedf}.b-popover-primary .popover-header{color:#212529;background-color:#ffcfd0;border-bottom-color:#ffb5b7}.b-popover-primary .popover-body{color:#852f31}.b-popover-secondary.popover{background-color:#def9fa;border-color:#d1f7f8}.b-popover-secondary.bs-popover-top>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#d1f7f8}.b-popover-secondary.bs-popover-top>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#def9fa}.b-popover-secondary.bs-popover-right>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#d1f7f8}.b-popover-secondary.bs-popover-right>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#def9fa}.b-popover-secondary.bs-popover-bottom>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#d1f7f8}.b-popover-secondary.bs-popover-bottom>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#d1f7f8}.b-popover-secondary.bs-popover-bottom .popover-header::before,.b-popover-secondary.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#d1f7f8}.b-popover-secondary.bs-popover-left>.arrow::before,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#d1f7f8}.b-popover-secondary.bs-popover-left>.arrow::after,.b-popover-secondary.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#def9fa}.b-popover-secondary .popover-header{color:#212529;background-color:#d1f7f8;border-bottom-color:#bbf3f5}.b-popover-secondary .popover-body{color:#307578}.b-popover-success.popover{background-color:#d4edda;border-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#c3e6cb}.b-popover-success.bs-popover-top>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d4edda}.b-popover-success.bs-popover-right>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#c3e6cb}.b-popover-success.bs-popover-right>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d4edda}.b-popover-success.bs-popover-bottom>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#c3e6cb}.b-popover-success.bs-popover-bottom>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-bottom .popover-header::before,.b-popover-success.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c9e8d1}.b-popover-success.bs-popover-left>.arrow::before,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#c3e6cb}.b-popover-success.bs-popover-left>.arrow::after,.b-popover-success.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d4edda}.b-popover-success .popover-header{color:#212529;background-color:#c9e8d1;border-bottom-color:#b7e1c1}.b-popover-success .popover-body{color:#155724}.b-popover-info.popover{background-color:#dde0f7;border-color:#cfd3f4}.b-popover-info.bs-popover-top>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#cfd3f4}.b-popover-info.bs-popover-top>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#dde0f7}.b-popover-info.bs-popover-right>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#cfd3f4}.b-popover-info.bs-popover-right>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#dde0f7}.b-popover-info.bs-popover-bottom>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#cfd3f4}.b-popover-info.bs-popover-bottom>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#d1d5f4}.b-popover-info.bs-popover-bottom .popover-header::before,.b-popover-info.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#d1d5f4}.b-popover-info.bs-popover-left>.arrow::before,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#cfd3f4}.b-popover-info.bs-popover-left>.arrow::after,.b-popover-info.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#dde0f7}.b-popover-info .popover-header{color:#212529;background-color:#d1d5f4;border-bottom-color:#bcc2ef}.b-popover-info .popover-body{color:#2b3371}.b-popover-warning.popover{background-color:#fff3cd;border-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#ffeeba}.b-popover-warning.bs-popover-top>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fff3cd}.b-popover-warning.bs-popover-right>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#ffeeba}.b-popover-warning.bs-popover-right>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fff3cd}.b-popover-warning.bs-popover-bottom>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#ffeeba}.b-popover-warning.bs-popover-bottom>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-bottom .popover-header::before,.b-popover-warning.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#ffefbe}.b-popover-warning.bs-popover-left>.arrow::before,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#ffeeba}.b-popover-warning.bs-popover-left>.arrow::after,.b-popover-warning.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fff3cd}.b-popover-warning .popover-header{color:#212529;background-color:#ffefbe;border-bottom-color:#ffe9a4}.b-popover-warning .popover-body{color:#856404}.b-popover-danger.popover{background-color:#f8d7da;border-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#f5c6cb}.b-popover-danger.bs-popover-top>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#f8d7da}.b-popover-danger.bs-popover-right>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#f5c6cb}.b-popover-danger.bs-popover-right>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#f8d7da}.b-popover-danger.bs-popover-bottom>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#f5c6cb}.b-popover-danger.bs-popover-bottom>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-bottom .popover-header::before,.b-popover-danger.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6cace}.b-popover-danger.bs-popover-left>.arrow::before,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#f5c6cb}.b-popover-danger.bs-popover-left>.arrow::after,.b-popover-danger.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#f8d7da}.b-popover-danger .popover-header{color:#212529;background-color:#f6cace;border-bottom-color:#f2b4ba}.b-popover-danger .popover-body{color:#721c24}.b-popover-light.popover{background-color:#fefefe;border-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#fdfdfe}.b-popover-light.bs-popover-top>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fefefe}.b-popover-light.bs-popover-right>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#fdfdfe}.b-popover-light.bs-popover-right>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fefefe}.b-popover-light.bs-popover-bottom>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#fdfdfe}.b-popover-light.bs-popover-bottom>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-bottom .popover-header::before,.b-popover-light.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f6f6f6}.b-popover-light.bs-popover-left>.arrow::before,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#fdfdfe}.b-popover-light.bs-popover-left>.arrow::after,.b-popover-light.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fefefe}.b-popover-light .popover-header{color:#212529;background-color:#f6f6f6;border-bottom-color:#eaeaea}.b-popover-light .popover-body{color:#818182}.b-popover-dark.popover{background-color:#d0d0d5;border-color:#bdbdc4}.b-popover-dark.bs-popover-top>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#bdbdc4}.b-popover-dark.bs-popover-top>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#d0d0d5}.b-popover-dark.bs-popover-right>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#bdbdc4}.b-popover-dark.bs-popover-right>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#d0d0d5}.b-popover-dark.bs-popover-bottom>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#bdbdc4}.b-popover-dark.bs-popover-bottom>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#c8c8ce}.b-popover-dark.bs-popover-bottom .popover-header::before,.b-popover-dark.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#c8c8ce}.b-popover-dark.bs-popover-left>.arrow::before,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#bdbdc4}.b-popover-dark.bs-popover-left>.arrow::after,.b-popover-dark.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#d0d0d5}.b-popover-dark .popover-header{color:#212529;background-color:#c8c8ce;border-bottom-color:#babac2}.b-popover-dark .popover-body{color:#0b0a17}.b-popover-soft-4.popover{background-color:#fefdfe;border-color:#fdfdfe}.b-popover-soft-4.bs-popover-top>.arrow::before,.b-popover-soft-4.bs-popover-auto[x-placement^=top]>.arrow::before{border-top-color:#fdfdfe}.b-popover-soft-4.bs-popover-top>.arrow::after,.b-popover-soft-4.bs-popover-auto[x-placement^=top]>.arrow::after{border-top-color:#fefdfe}.b-popover-soft-4.bs-popover-right>.arrow::before,.b-popover-soft-4.bs-popover-auto[x-placement^=right]>.arrow::before{border-right-color:#fdfdfe}.b-popover-soft-4.bs-popover-right>.arrow::after,.b-popover-soft-4.bs-popover-auto[x-placement^=right]>.arrow::after{border-right-color:#fefdfe}.b-popover-soft-4.bs-popover-bottom>.arrow::before,.b-popover-soft-4.bs-popover-auto[x-placement^=bottom]>.arrow::before{border-bottom-color:#fdfdfe}.b-popover-soft-4.bs-popover-bottom>.arrow::after,.b-popover-soft-4.bs-popover-auto[x-placement^=bottom]>.arrow::after{border-bottom-color:#f9f3f9}.b-popover-soft-4.bs-popover-bottom .popover-header::before,.b-popover-soft-4.bs-popover-auto[x-placement^=bottom] .popover-header::before{border-bottom-color:#f9f3f9}.b-popover-soft-4.bs-popover-left>.arrow::before,.b-popover-soft-4.bs-popover-auto[x-placement^=left]>.arrow::before{border-left-color:#fdfdfe}.b-popover-soft-4.bs-popover-left>.arrow::after,.b-popover-soft-4.bs-popover-auto[x-placement^=left]>.arrow::after{border-left-color:#fefdfe}.b-popover-soft-4 .popover-header{color:#212529;background-color:#f9f3f9;border-bottom-color:#f0e2f0}.b-popover-soft-4 .popover-body{color:#818083}.b-sidebar-outer{position:fixed;top:0;left:0;right:0;height:0;overflow:visible;z-index:calc(1030 + 5)}.b-sidebar-backdrop{position:fixed;top:0;left:0;z-index:-1;width:100vw;height:100vh;opacity:.6}.b-sidebar{display:flex;flex-direction:column;position:fixed;top:0;width:320px;max-width:100%;height:100vh;max-height:100%;margin:0;outline:0;transform:translateX(0)}.b-sidebar.slide{transition:transform .3s ease-in-out}@media(prefers-reduced-motion: reduce){.b-sidebar.slide{transition:none}}.b-sidebar:not(.b-sidebar-right){left:0;right:auto}.b-sidebar:not(.b-sidebar-right).slide:not(.show){transform:translateX(-100%)}.b-sidebar:not(.b-sidebar-right)>.b-sidebar-header .close{margin-left:auto}.b-sidebar.b-sidebar-right{left:auto;right:0}.b-sidebar.b-sidebar-right.slide:not(.show){transform:translateX(100%)}.b-sidebar.b-sidebar-right>.b-sidebar-header .close{margin-right:auto}.b-sidebar>.b-sidebar-header{font-size:1.5rem;padding:.5rem 1rem;display:flex;flex-direction:row;flex-grow:0;align-items:center}[dir=rtl] .b-sidebar>.b-sidebar-header{flex-direction:row-reverse}.b-sidebar>.b-sidebar-header .close{float:none;font-size:1.5rem}.b-sidebar>.b-sidebar-body{flex-grow:1;height:100%;overflow-y:auto}.b-sidebar>.b-sidebar-footer{flex-grow:0}.b-skeleton-wrapper{cursor:wait}.b-skeleton{position:relative;overflow:hidden;background-color:rgba(0,0,0,.12);cursor:wait;mask-image:radial-gradient(white, black)}.b-skeleton::before{content:" "}.b-skeleton-text{height:1rem;margin-bottom:.5rem;border-radius:.25rem}.b-skeleton-button{width:75px;padding:.625rem .875rem;font-size:1.125rem;line-height:1.184015786;border-radius:1.2910088796rem}.b-skeleton-avatar{width:2.5em;height:2.5em;border-radius:50%}.b-skeleton-input{height:calc(1.184015786em + 1.25rem + 2px);padding:.625rem .875rem;line-height:1.184015786;border:#ced4da solid 1px;border-radius:1.2910088796rem}.b-skeleton-icon-wrapper svg{color:rgba(0,0,0,.12)}.b-skeleton-img{height:100%;width:100%}.b-skeleton-animate-wave::after{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:0;background:linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);animation:b-skeleton-animate-wave 1.75s linear infinite}@media(prefers-reduced-motion: reduce){.b-skeleton-animate-wave::after{background:none;animation:none}}@keyframes b-skeleton-animate-wave{from{transform:translateX(-100%)}to{transform:translateX(100%)}}.b-skeleton-animate-fade{animation:b-skeleton-animate-fade .875s ease-in-out alternate infinite}@media(prefers-reduced-motion: reduce){.b-skeleton-animate-fade{animation:none}}@keyframes b-skeleton-animate-fade{0%{opacity:1}100%{opacity:.4}}.b-skeleton-animate-throb{animation:b-skeleton-animate-throb .875s ease-in alternate infinite}@media(prefers-reduced-motion: reduce){.b-skeleton-animate-throb{animation:none}}@keyframes b-skeleton-animate-throb{0%{transform:scale(1)}100%{transform:scale(0.975)}}.table.b-table.b-table-fixed{table-layout:fixed}.table.b-table.b-table-no-border-collapse{border-collapse:separate;border-spacing:0}.table.b-table[aria-busy=true]{opacity:.55}.table.b-table>tbody>tr.b-table-details>td{border-top:none !important}.table.b-table>caption{caption-side:bottom}.table.b-table.b-table-caption-top>caption{caption-side:top !important}.table.b-table>tbody>.table-active,.table.b-table>tbody>.table-active>th,.table.b-table>tbody>.table-active>td{background-color:rgba(0,0,0,.075)}.table.b-table.table-hover>tbody>tr.table-active:hover td,.table.b-table.table-hover>tbody>tr.table-active:hover th{color:#15132d;background-image:linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));background-repeat:no-repeat}.table.b-table>tbody>.bg-active,.table.b-table>tbody>.bg-active>th,.table.b-table>tbody>.bg-active>td{background-color:rgba(255,255,255,.075) !important}.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover td,.table.b-table.table-hover.table-dark>tbody>tr.bg-active:hover th{color:#fff;background-image:linear-gradient(rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075));background-repeat:no-repeat}.b-table-sticky-header,.table-responsive,[class*=table-responsive-]{margin-bottom:1rem}.b-table-sticky-header>.table,.table-responsive>.table,[class*=table-responsive-]>.table{margin-bottom:0}.b-table-sticky-header{overflow-y:auto;max-height:300px}@media print{.b-table-sticky-header{overflow-y:visible !important;max-height:none !important}}@supports(position: sticky){.b-table-sticky-header>.table.b-table>thead>tr>th{position:sticky;top:0;z-index:2}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{position:sticky;left:0}.b-table-sticky-header>.table.b-table>thead>tr>.b-table-sticky-column,.table-responsive>.table.b-table>thead>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>thead>tr>.b-table-sticky-column{z-index:5}.b-table-sticky-header>.table.b-table>tbody>tr>.b-table-sticky-column,.b-table-sticky-header>.table.b-table>tfoot>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tbody>tr>.b-table-sticky-column,.table-responsive>.table.b-table>tfoot>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tbody>tr>.b-table-sticky-column,[class*=table-responsive-]>.table.b-table>tfoot>tr>.b-table-sticky-column{z-index:2}.table.b-table>thead>tr>.table-b-table-default,.table.b-table>tbody>tr>.table-b-table-default,.table.b-table>tfoot>tr>.table-b-table-default{color:#15132d;background-color:#fff}.table.b-table.table-dark>thead>tr>.bg-b-table-default,.table.b-table.table-dark>tbody>tr>.bg-b-table-default,.table.b-table.table-dark>tfoot>tr>.bg-b-table-default{color:#fff;background-color:#343a40}.table.b-table.table-striped>tbody>tr:nth-of-type(odd)>.table-b-table-default{background-image:linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));background-repeat:no-repeat}.table.b-table.table-striped.table-dark>tbody>tr:nth-of-type(odd)>.bg-b-table-default{background-image:linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));background-repeat:no-repeat}.table.b-table.table-hover>tbody>tr:hover>.table-b-table-default{color:#15132d;background-image:linear-gradient(rgba(0, 0, 0, 0.075), rgba(0, 0, 0, 0.075));background-repeat:no-repeat}.table.b-table.table-hover.table-dark>tbody>tr:hover>.bg-b-table-default{color:#fff;background-image:linear-gradient(rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.075));background-repeat:no-repeat}}.table.b-table>thead>tr>[aria-sort],.table.b-table>tfoot>tr>[aria-sort]{cursor:pointer;background-image:none;background-repeat:no-repeat;background-size:.65em 1em}.table.b-table>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.75rem / 2) center;padding-right:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.75rem / 2) center;padding-left:calc(0.75rem + 0.65em)}.table.b-table>thead>tr>[aria-sort=none],.table.b-table>tfoot>tr>[aria-sort=none]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table>thead>tr>[aria-sort=ascending],.table.b-table>tfoot>tr>[aria-sort=ascending]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table>thead>tr>[aria-sort=descending],.table.b-table>tfoot>tr>[aria-sort=descending]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27black%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27black%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table.table-dark>thead>tr>[aria-sort=none],.table.b-table.table-dark>tfoot>tr>[aria-sort=none],.table.b-table>.thead-dark>tr>[aria-sort=none]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table.table-dark>thead>tr>[aria-sort=ascending],.table.b-table.table-dark>tfoot>tr>[aria-sort=ascending],.table.b-table>.thead-dark>tr>[aria-sort=ascending]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table.table-dark>thead>tr>[aria-sort=descending],.table.b-table.table-dark>tfoot>tr>[aria-sort=descending],.table.b-table>.thead-dark>tr>[aria-sort=descending]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table>thead>tr>.table-dark[aria-sort=none],.table.b-table>tfoot>tr>.table-dark[aria-sort=none]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22zM51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table>thead>tr>.table-dark[aria-sort=ascending],.table.b-table>tfoot>tr>.table-dark[aria-sort=ascending]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table>thead>tr>.table-dark[aria-sort=descending],.table.b-table>tfoot>tr>.table-dark[aria-sort=descending]{background-image:url("data:image/svg+xml,%3csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27101%27 height=%27101%27 view-box=%270 0 101 101%27 preserveAspectRatio=%27none%27%3e%3cpath fill=%27white%27 opacity=%27.3%27 d=%27M51 1l25 23 24 22H1l25-22z%27/%3e%3cpath fill=%27white%27 d=%27M51 101l25-23 24-22H1l25 22z%27/%3e%3c/svg%3e")}.table.b-table.table-sm>thead>tr>[aria-sort]:not(.b-table-sort-icon-left),.table.b-table.table-sm>tfoot>tr>[aria-sort]:not(.b-table-sort-icon-left){background-position:right calc(0.3rem / 2) center;padding-right:calc(0.3rem + 0.65em)}.table.b-table.table-sm>thead>tr>[aria-sort].b-table-sort-icon-left,.table.b-table.table-sm>tfoot>tr>[aria-sort].b-table-sort-icon-left{background-position:left calc(0.3rem / 2) center;padding-left:calc(0.3rem + 0.65em)}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click)>tbody>tr{cursor:pointer}.table.b-table.b-table-selectable:not(.b-table-selectable-no-click).b-table-selecting.b-table-select-range>tbody>tr{user-select:none}@media(max-width: 575.98px){.table.b-table.b-table-stacked-sm{display:block;width:100%}.table.b-table.b-table-stacked-sm>caption,.table.b-table.b-table-stacked-sm>tbody,.table.b-table.b-table-stacked-sm>tbody>tr,.table.b-table.b-table-stacked-sm>tbody>tr>td,.table.b-table.b-table-stacked-sm>tbody>tr>th{display:block}.table.b-table.b-table-stacked-sm>thead,.table.b-table.b-table-stacked-sm>tfoot{display:none}.table.b-table.b-table-stacked-sm>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-sm>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-sm>caption{caption-side:top !important}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-sm>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-sm>tbody>tr.top-row,.table.b-table.b-table-stacked-sm>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-sm>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-sm>tbody>tr>[rowspan]+th{border-top-width:3px}}@media(max-width: 767.98px){.table.b-table.b-table-stacked-md{display:block;width:100%}.table.b-table.b-table-stacked-md>caption,.table.b-table.b-table-stacked-md>tbody,.table.b-table.b-table-stacked-md>tbody>tr,.table.b-table.b-table-stacked-md>tbody>tr>td,.table.b-table.b-table-stacked-md>tbody>tr>th{display:block}.table.b-table.b-table-stacked-md>thead,.table.b-table.b-table-stacked-md>tfoot{display:none}.table.b-table.b-table-stacked-md>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-md>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-md>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-md>caption{caption-side:top !important}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-md>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-md>tbody>tr.top-row,.table.b-table.b-table-stacked-md>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-md>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-md>tbody>tr>[rowspan]+th{border-top-width:3px}}@media(max-width: 991.98px){.table.b-table.b-table-stacked-lg{display:block;width:100%}.table.b-table.b-table-stacked-lg>caption,.table.b-table.b-table-stacked-lg>tbody,.table.b-table.b-table-stacked-lg>tbody>tr,.table.b-table.b-table-stacked-lg>tbody>tr>td,.table.b-table.b-table-stacked-lg>tbody>tr>th{display:block}.table.b-table.b-table-stacked-lg>thead,.table.b-table.b-table-stacked-lg>tfoot{display:none}.table.b-table.b-table-stacked-lg>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-lg>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-lg>caption{caption-side:top !important}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-lg>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-lg>tbody>tr.top-row,.table.b-table.b-table-stacked-lg>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-lg>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-lg>tbody>tr>[rowspan]+th{border-top-width:3px}}@media(max-width: 1199.98px){.table.b-table.b-table-stacked-xl{display:block;width:100%}.table.b-table.b-table-stacked-xl>caption,.table.b-table.b-table-stacked-xl>tbody,.table.b-table.b-table-stacked-xl>tbody>tr,.table.b-table.b-table-stacked-xl>tbody>tr>td,.table.b-table.b-table-stacked-xl>tbody>tr>th{display:block}.table.b-table.b-table-stacked-xl>thead,.table.b-table.b-table-stacked-xl>tfoot{display:none}.table.b-table.b-table-stacked-xl>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-xl>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-xl>caption{caption-side:top !important}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-xl>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-xl>tbody>tr.top-row,.table.b-table.b-table-stacked-xl>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-xl>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-xl>tbody>tr>[rowspan]+th{border-top-width:3px}}@media(max-width: 1359.98px){.table.b-table.b-table-stacked-xxl{display:block;width:100%}.table.b-table.b-table-stacked-xxl>caption,.table.b-table.b-table-stacked-xxl>tbody,.table.b-table.b-table-stacked-xxl>tbody>tr,.table.b-table.b-table-stacked-xxl>tbody>tr>td,.table.b-table.b-table-stacked-xxl>tbody>tr>th{display:block}.table.b-table.b-table-stacked-xxl>thead,.table.b-table.b-table-stacked-xxl>tfoot{display:none}.table.b-table.b-table-stacked-xxl>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-xxl>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-xxl>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-xxl>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-xxl>caption{caption-side:top !important}.table.b-table.b-table-stacked-xxl>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-xxl>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-xxl>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-xxl>tbody>tr.top-row,.table.b-table.b-table-stacked-xxl>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-xxl>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-xxl>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-xxl>tbody>tr>[rowspan]+th{border-top-width:3px}}@media(max-width: 1919.98px){.table.b-table.b-table-stacked-full{display:block;width:100%}.table.b-table.b-table-stacked-full>caption,.table.b-table.b-table-stacked-full>tbody,.table.b-table.b-table-stacked-full>tbody>tr,.table.b-table.b-table-stacked-full>tbody>tr>td,.table.b-table.b-table-stacked-full>tbody>tr>th{display:block}.table.b-table.b-table-stacked-full>thead,.table.b-table.b-table-stacked-full>tfoot{display:none}.table.b-table.b-table-stacked-full>thead>tr.b-table-top-row,.table.b-table.b-table-stacked-full>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked-full>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked-full>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked-full>caption{caption-side:top !important}.table.b-table.b-table-stacked-full>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked-full>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked-full>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked-full>tbody>tr.top-row,.table.b-table.b-table-stacked-full>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked-full>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked-full>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked-full>tbody>tr>[rowspan]+th{border-top-width:3px}}.table.b-table.b-table-stacked{display:block;width:100%}.table.b-table.b-table-stacked>caption,.table.b-table.b-table-stacked>tbody,.table.b-table.b-table-stacked>tbody>tr,.table.b-table.b-table-stacked>tbody>tr>td,.table.b-table.b-table-stacked>tbody>tr>th{display:block}.table.b-table.b-table-stacked>thead,.table.b-table.b-table-stacked>tfoot{display:none}.table.b-table.b-table-stacked>thead>tr.b-table-top-row,.table.b-table.b-table-stacked>thead>tr.b-table-bottom-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-top-row,.table.b-table.b-table-stacked>tfoot>tr.b-table-bottom-row{display:none}.table.b-table.b-table-stacked>caption{caption-side:top !important}.table.b-table.b-table-stacked>tbody>tr>[data-label]::before{content:attr(data-label);width:40%;float:left;text-align:right;overflow-wrap:break-word;font-weight:bold;font-style:normal;padding:0 calc(1rem / 2) 0 0;margin:0}.table.b-table.b-table-stacked>tbody>tr>[data-label]::after{display:block;clear:both;content:""}.table.b-table.b-table-stacked>tbody>tr>[data-label]>div{display:inline-block;width:calc(100% - 40%);padding:0 0 0 calc(1rem / 2);margin:0}.table.b-table.b-table-stacked>tbody>tr.top-row,.table.b-table.b-table-stacked>tbody>tr.bottom-row{display:none}.table.b-table.b-table-stacked>tbody>tr>:first-child{border-top-width:3px}.table.b-table.b-table-stacked>tbody>tr>[rowspan]+td,.table.b-table.b-table-stacked>tbody>tr>[rowspan]+th{border-top-width:3px}.b-time{min-width:150px}.b-time[aria-disabled=true] output,.b-time[aria-readonly=true] output,.b-time output.disabled{background-color:#e9ecef;opacity:1}.b-time[aria-disabled=true] output{pointer-events:none}[dir=rtl] .b-time>.d-flex:not(.flex-column){flex-direction:row-reverse}.b-time .b-time-header{margin-bottom:.5rem}.b-time .b-time-header output{padding:.25rem;font-size:80%}.b-time .b-time-footer{margin-top:.5rem}.b-time .b-time-ampm{margin-left:.5rem}.b-toast{display:block;position:relative;max-width:350px;backface-visibility:hidden;background-clip:padding-box;z-index:1;border-radius:.25rem}.b-toast .toast{background-color:rgba(255,255,255,.85)}.b-toast:not(:last-child){margin-bottom:.75rem}.b-toast.b-toast-solid .toast{background-color:#fff}.b-toast .toast{opacity:1}.b-toast .toast.fade:not(.show){opacity:0}.b-toast .toast .toast-body{display:block}.b-toast-primary .toast{background-color:rgba(255,248,248,.85);border-color:rgba(255,209,210,.85);color:#852f31}.b-toast-primary .toast .toast-header{color:#852f31;background-color:rgba(255,222,223,.85);border-bottom-color:rgba(255,209,210,.85)}.b-toast-primary.b-toast-solid .toast{background-color:#fff8f8}.b-toast-secondary .toast{background-color:rgba(244,253,253,.85);border-color:rgba(209,247,248,.85);color:#307578}.b-toast-secondary .toast .toast-header{color:#307578;background-color:rgba(222,249,250,.85);border-bottom-color:rgba(209,247,248,.85)}.b-toast-secondary.b-toast-solid .toast{background-color:#f4fdfd}.b-toast-success .toast{background-color:rgba(230,245,233,.85);border-color:rgba(195,230,203,.85);color:#155724}.b-toast-success .toast .toast-header{color:#155724;background-color:rgba(212,237,218,.85);border-bottom-color:rgba(195,230,203,.85)}.b-toast-success.b-toast-solid .toast{background-color:#e6f5e9}.b-toast-info .toast{background-color:rgba(242,243,252,.85);border-color:rgba(207,211,244,.85);color:#2b3371}.b-toast-info .toast .toast-header{color:#2b3371;background-color:rgba(221,224,247,.85);border-bottom-color:rgba(207,211,244,.85)}.b-toast-info.b-toast-solid .toast{background-color:#f2f3fc}.b-toast-warning .toast{background-color:rgba(255,249,231,.85);border-color:rgba(255,238,186,.85);color:#856404}.b-toast-warning .toast .toast-header{color:#856404;background-color:rgba(255,243,205,.85);border-bottom-color:rgba(255,238,186,.85)}.b-toast-warning.b-toast-solid .toast{background-color:#fff9e7}.b-toast-danger .toast{background-color:rgba(252,237,238,.85);border-color:rgba(245,198,203,.85);color:#721c24}.b-toast-danger .toast .toast-header{color:#721c24;background-color:rgba(248,215,218,.85);border-bottom-color:rgba(245,198,203,.85)}.b-toast-danger.b-toast-solid .toast{background-color:#fcedee}.b-toast-light .toast{background-color:rgba(255,255,255,.85);border-color:rgba(253,253,254,.85);color:#818182}.b-toast-light .toast .toast-header{color:#818182;background-color:rgba(254,254,254,.85);border-bottom-color:rgba(253,253,254,.85)}.b-toast-light.b-toast-solid .toast{background-color:#fff}.b-toast-dark .toast{background-color:rgba(221,221,225,.85);border-color:rgba(189,189,196,.85);color:#0b0a17}.b-toast-dark .toast .toast-header{color:#0b0a17;background-color:rgba(208,208,213,.85);border-bottom-color:rgba(189,189,196,.85)}.b-toast-dark.b-toast-solid .toast{background-color:#dddde1}.b-toast-soft-4 .toast{background-color:rgba(255,255,255,.85);border-color:rgba(253,253,254,.85);color:#818083}.b-toast-soft-4 .toast .toast-header{color:#818083;background-color:rgba(254,253,254,.85);border-bottom-color:rgba(253,253,254,.85)}.b-toast-soft-4.b-toast-solid .toast{background-color:#fff}.b-toaster{z-index:1100}.b-toaster .b-toaster-slot{position:relative;display:block}.b-toaster .b-toaster-slot:empty{display:none !important}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full,.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{position:fixed;left:.5rem;right:.5rem;margin:0;padding:0;height:0;overflow:visible}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{position:absolute;max-width:350px;width:100%;left:0;right:0;padding:0;margin:0}.b-toaster.b-toaster-top-full .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{width:100%;max-width:100%}.b-toaster.b-toaster-top-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-top-full .b-toaster-slot .toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .b-toast,.b-toaster.b-toaster-bottom-full .b-toaster-slot .toast{width:100%;max-width:100%}.b-toaster.b-toaster-top-right,.b-toaster.b-toaster-top-left,.b-toaster.b-toaster-top-center,.b-toaster.b-toaster-top-full{top:0}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-top-full .b-toaster-slot{top:.5rem}.b-toaster.b-toaster-bottom-right,.b-toaster.b-toaster-bottom-left,.b-toaster.b-toaster-bottom-center,.b-toaster.b-toaster-bottom-full{bottom:0}.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot,.b-toaster.b-toaster-bottom-full .b-toaster-slot{bottom:.5rem}.b-toaster.b-toaster-top-right .b-toaster-slot,.b-toaster.b-toaster-bottom-right .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-left:auto}.b-toaster.b-toaster-top-left .b-toaster-slot,.b-toaster.b-toaster-bottom-left .b-toaster-slot,.b-toaster.b-toaster-top-center .b-toaster-slot,.b-toaster.b-toaster-bottom-center .b-toaster-slot{margin-right:auto}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-right .b-toast.b-toaster-move,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-move,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-move{transition:transform .175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-enter-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-to .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-enter-active .toast.fade{transition-delay:.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active{position:absolute;transition-delay:.175s}.b-toaster.b-toaster-top-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-top-left .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-right .b-toast.b-toaster-leave-active .toast.fade,.b-toaster.b-toaster-bottom-left .b-toast.b-toaster-leave-active .toast.fade{transition-delay:0s}.tooltip.b-tooltip{display:block;opacity:.9;outline:0}.tooltip.b-tooltip.fade:not(.show){opacity:0}.tooltip.b-tooltip.show{opacity:.9}.tooltip.b-tooltip.noninteractive{pointer-events:none}.tooltip.b-tooltip .arrow{margin:0 .25rem}.tooltip.b-tooltip.bs-tooltip-right .arrow,.tooltip.b-tooltip.bs-tooltip-auto[x-placement^=right] .arrow,.tooltip.b-tooltip.bs-tooltip-left .arrow,.tooltip.b-tooltip.bs-tooltip-auto[x-placement^=left] .arrow{margin:.25rem 0}.tooltip.b-tooltip-primary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#ff5a5f}.tooltip.b-tooltip-primary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#ff5a5f}.tooltip.b-tooltip-primary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#ff5a5f}.tooltip.b-tooltip-primary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-primary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#ff5a5f}.tooltip.b-tooltip-primary .tooltip-inner{color:#fff;background-color:#ff5a5f}.tooltip.b-tooltip-secondary.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#5ce1e6}.tooltip.b-tooltip-secondary.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#5ce1e6}.tooltip.b-tooltip-secondary.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#5ce1e6}.tooltip.b-tooltip-secondary.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-secondary.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#5ce1e6}.tooltip.b-tooltip-secondary .tooltip-inner{color:#212529;background-color:#5ce1e6}.tooltip.b-tooltip-success.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#28a745}.tooltip.b-tooltip-success.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-success.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#28a745}.tooltip.b-tooltip-success .tooltip-inner{color:#fff;background-color:#28a745}.tooltip.b-tooltip-info.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#5363d9}.tooltip.b-tooltip-info.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#5363d9}.tooltip.b-tooltip-info.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#5363d9}.tooltip.b-tooltip-info.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-info.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#5363d9}.tooltip.b-tooltip-info .tooltip-inner{color:#fff;background-color:#5363d9}.tooltip.b-tooltip-warning.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#ffc107}.tooltip.b-tooltip-warning.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-warning.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#ffc107}.tooltip.b-tooltip-warning .tooltip-inner{color:#212529;background-color:#ffc107}.tooltip.b-tooltip-danger.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#dc3545}.tooltip.b-tooltip-danger.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-danger.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#dc3545}.tooltip.b-tooltip-danger .tooltip-inner{color:#fff;background-color:#dc3545}.tooltip.b-tooltip-light.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#f8f9fa}.tooltip.b-tooltip-light.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-light.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#f8f9fa}.tooltip.b-tooltip-light .tooltip-inner{color:#212529;background-color:#f8f9fa}.tooltip.b-tooltip-dark.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#15132d}.tooltip.b-tooltip-dark.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#15132d}.tooltip.b-tooltip-dark.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#15132d}.tooltip.b-tooltip-dark.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-dark.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#15132d}.tooltip.b-tooltip-dark .tooltip-inner{color:#fff;background-color:#15132d}.tooltip.b-tooltip-soft-4.bs-tooltip-top .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=top] .arrow::before{border-top-color:#f9f7fc}.tooltip.b-tooltip-soft-4.bs-tooltip-right .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=right] .arrow::before{border-right-color:#f9f7fc}.tooltip.b-tooltip-soft-4.bs-tooltip-bottom .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=bottom] .arrow::before{border-bottom-color:#f9f7fc}.tooltip.b-tooltip-soft-4.bs-tooltip-left .arrow::before,.tooltip.b-tooltip-soft-4.bs-tooltip-auto[x-placement^=left] .arrow::before{border-left-color:#f9f7fc}.tooltip.b-tooltip-soft-4 .tooltip-inner{color:#212529;background-color:#f9f7fc}.b-icon.bi{display:inline-block;overflow:visible;vertical-align:-0.15em}.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{transform-origin:center;animation:.75s infinite ease-in-out alternate b-icon-animation-cylon}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon,.b-icon.b-iconstack .b-icon-animation-cylon>g{animation:none}}.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{transform-origin:center;animation:.75s infinite ease-in-out alternate b-icon-animation-cylon-vertical}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-cylon-vertical,.b-icon.b-iconstack .b-icon-animation-cylon-vertical>g{animation:none}}.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{transform-origin:center;animation:.75s infinite ease-in-out alternate b-icon-animation-fade}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-fade,.b-icon.b-iconstack .b-icon-animation-fade>g{animation:none}}.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{transform-origin:center;animation:2s infinite linear normal b-icon-animation-spin}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin,.b-icon.b-iconstack .b-icon-animation-spin>g{animation:none}}.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{transform-origin:center;animation:2s infinite linear reverse b-icon-animation-spin}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse,.b-icon.b-iconstack .b-icon-animation-spin-reverse>g{animation:none}}.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{transform-origin:center;animation:1s infinite steps(8) normal b-icon-animation-spin}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-pulse,.b-icon.b-iconstack .b-icon-animation-spin-pulse>g{animation:none}}.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{transform-origin:center;animation:1s infinite steps(8) reverse b-icon-animation-spin}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-spin-reverse-pulse,.b-icon.b-iconstack .b-icon-animation-spin-reverse-pulse>g{animation:none}}.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{transform-origin:center;animation:.75s infinite ease-in-out alternate b-icon-animation-throb}@media(prefers-reduced-motion: reduce){.b-icon.b-icon-animation-throb,.b-icon.b-iconstack .b-icon-animation-throb>g{animation:none}}@keyframes b-icon-animation-cylon{0%{transform:translateX(-25%)}100%{transform:translateX(25%)}}@keyframes b-icon-animation-cylon-vertical{0%{transform:translateY(25%)}100%{transform:translateY(-25%)}}@keyframes b-icon-animation-fade{0%{opacity:.1}100%{opacity:1}}@keyframes b-icon-animation-spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@keyframes b-icon-animation-throb{0%{opacity:.5;transform:scale(0.5)}100%{opacity:1;transform:scale(1)}}.btn .b-icon.bi,.nav-link .b-icon.bi,.dropdown-toggle .b-icon.bi,.dropdown-item .b-icon.bi,span.twitter-typeahead .tt-suggestion .b-icon.bi,.input-group-text .b-icon.bi{font-size:125%;vertical-align:text-bottom}@font-face{font-family:"osicons";src:url(./osicons-378c2816.eot);src:url(./osicons-378c2816.eot#iefix) format("embedded-opentype"),url(./osicons-c50a0e60.woff2) format("woff2"),url(./osicons-648be5d3.woff) format("woff"),url(./osicons-49e8785e.ttf) format("truetype"),url(./osicons-4510316c.svg#osicons) format("svg");font-weight:normal;font-style:normal}[class^=icon-]:before,[class*=" icon-"]:before{font-family:"osicons";font-style:normal;font-weight:normal;speak:never;display:inline-block;text-decoration:inherit;width:1em;margin-right:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;margin-left:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-search:before{content:""}.icon-inspiration:before{content:""}.icon-location:before{content:""}.icon-calendar:before{content:""}.icon-service:before{content:""}.icon-left-open:before{content:""}.icon-right-open:before{content:""}.icon-plus:before{content:""}.icon-ve-hluk:before{content:""}.icon-wifi:before{content:""}.icon-ve-bezbarierove:before{content:""}.icon-trash-empty:before{content:""}.icon-ok:before{content:""}.icon-phone:before{content:""}.icon-mail:before{content:""}.icon-filter:before{content:""}.icon-inquiry:before{content:""}.icon-instagram:before{content:""}.icon-sf-deti:before{content:""}.icon-sf-ples:before{content:""}.icon-sf-sport:before{content:""}.icon-sf-team:before{content:""}.icon-sf-meeting:before{content:""}.icon-sf-party:before{content:""}.icon-tag-historical:before{content:""}.icon-sf-dospeli:before{content:""}.icon-sf-konference:before{content:""}.icon-sf-seniori:before{content:""}.icon-sf-workshop:before{content:""}.icon-sf-narozeniny:before{content:""}.icon-sf-firemni-vecirek:before{content:""}.icon-sf-rozlucka:before{content:""}.icon-sf-obed-vecere:before{content:""}.icon-sf-art:before{content:""}.icon-sf-teenageri:before{content:""}.icon-right-open-big:before{content:""}.icon-left-open-big:before{content:""}.icon-location-outline:before{content:""}.icon-map:before{content:""}.icon-sf-vystava:before{content:""}.icon-sf-koncert:before{content:""}.icon-sf-obed:before{content:""}.icon-sf-foto:before{content:""}.icon-sf-tiskovka:before{content:""}.icon-sf-svatba:before{content:""}.icon-st-catering:before{content:""}.icon-st-eventove-vybaveni:before{content:""}.icon-st-zabava:before{content:""}.icon-st-foto-a-video:before{content:""}.icon-st-hudba:before{content:""}.icon-st-dekorace-a-kvetiny:before{content:""}.icon-st-doprava:before{content:""}.icon-st-agentury:before{content:""}.icon-st-technologie:before{content:""}.icon-st-ostatni-sluzby:before{content:""}.icon-st-technicke-vybaveni:before{content:""}.icon-ve-bazen:before{content:""}.icon-ve-catering:before{content:""}.icon-ve-kuchyne:before{content:""}.icon-ve-klima:before{content:""}.icon-ve-zvuk:before{content:""}.icon-ve-podium:before{content:""}.icon-ve-projekce:before{content:""}.icon-ve-sport:before{content:""}.icon-ve-balkon:before{content:""}.icon-ve-out:before{content:""}.icon-ve-vicesalu:before{content:""}.icon-ve-parking:before{content:""}.icon-ve-wifi:before{content:""}.icon-ve-zasedacka:before{content:""}.icon-vd-banket:before{content:""}.icon-down-micro:before{content:""}.icon-vd-kstul:before{content:""}.icon-vd-skola:before{content:""}.icon-vd-moda:before{content:""}.icon-vd-stasez:before{content:""}.icon-tip:before{content:""}.icon-vd-u:before{content:""}.icon-new:before{content:""}.icon-fav:before{content:""}.icon-vd-divadlo:before{content:""}.icon-vd-stani:before{content:""}.icon-plus-circled:before{content:""}.icon-minus-circled:before{content:""}.icon-check:before{content:""}.icon-ve-deserty:before{content:""}.icon-catalog:before{content:""}.icon-ve-dekorace:before{content:""}.icon-ve-kvetiny:before{content:""}.icon-ve-doprovodny-program:before{content:""}.icon-ve-bowling:before{content:""}.icon-ve-wellness:before{content:""}.icon-ve-ozvuceni:before{content:""}.icon-ve-deti:before{content:""}.icon-ve-zvirata:before{content:""}.icon-sf-vanoce:before{content:""}.icon-family:before{content:""}.icon-parents:before{content:""}.icon-vd-plocha:before{content:""}.icon-vd-vplocha:before{content:""}.icon-tags:before{content:""}.icon-tag:before{content:""}.icon-vd-raut:before{content:""}.icon-send:before{content:""}.icon-zoom:before{content:""}.icon-send-1:before{content:""}.icon-selection:before{content:""}.icon-sending-letter:before{content:""}.icon-pencil:before{content:""}.icon-flying-letter:before{content:""}.icon-letters:before{content:""}.icon-public-radio:before{content:""}.icon-search-up:before{content:""}.icon-return:before{content:""}.icon-service-1:before{content:""}.icon-eye:before{content:""}.icon-letter-with-pencil:before{content:""}.icon-mind:before{content:""}.icon-flying-letter-2:before{content:""}.icon-newsletter:before{content:""}.icon-banner:before{content:""}.icon-filter-h:before{content:""}.icon-socials:before{content:""}.icon-sum:before{content:""}.icon-attention:before{content:""}.icon-opportunity:before{content:""}.icon-microsoft-excel:before{content:""}.icon-search-2:before{content:""}.icon-placeholder:before{content:""}.icon-profile:before{content:""}.icon-geo-address:before{content:""}.icon-datetime:before{content:""}.icon-cart-love:before{content:""}.icon-right-arrow:before{content:""}.icon-inspiration-2:before{content:""}.icon-location-2:before{content:""}.icon-services-2:before{content:""}.icon-hellip:before{content:""}.icon-custom-shape:before{content:""}.icon-double-bed:before{content:""}.icon-single-bed:before{content:""}.icon-open-door:before{content:""}.icon-cancel:before{content:""}.icon-whistle:before{content:""}.icon-up-big:before{content:""}.icon-cancel-circled:before{content:""}.icon-broom:before{content:""}.icon-gift:before{content:""}.icon-discount:before{content:""}.icon-link-ext:before{content:""}.icon-check-empty:before{content:""}.icon-twitter:before{content:""}.icon-facebook:before{content:""}.icon-sort:before{content:""}.icon-sort-down:before{content:""}.icon-sort-up:before{content:""}.icon-angle-double-right:before{content:""}.icon-ve-ubytovani:before{content:""}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#ccc}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width: 800px)and (orientation: landscape),screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}/*!
 * Selectize Theme for Bootstrap 4 v2.0.2
 *
 * Copyright 2018 Constantine Seleznyoff <const.seoff@gmail.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */.form-control.selectize-control{background-color:transparent;border:none;border-radius:0;box-shadow:none;height:calc(1.184015786em + 1.25rem + 2px);padding:0;position:relative;transition:none}.form-control.selectize-control .selectize-input{background-clip:padding-box;background-color:#fff;border:1px solid #ced4da;color:#15132d;cursor:text;display:inline-block;font-size:1rem;height:100%;overflow:hidden;padding:.625rem .875rem;position:relative;width:100%;border-radius:1.2910088796rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media(prefers-reduced-motion: reduce){.form-control.selectize-control .selectize-input{transition:none}}.form-control.selectize-control .selectize-input *{display:-moz-inline-stack;display:inline-block;*display:inline;zoom:1;vertical-align:baseline}.form-control.selectize-control .selectize-input input{background:none !important;border:none !important;box-shadow:none !important;color:inherit;display:inline-block !important;font-size:inherit;line-height:inherit !important;margin:0 2px 0 0 !important;max-height:none !important;max-width:100% !important;min-height:0 !important;padding:0 !important;text-indent:0 !important;-webkit-user-select:auto !important}.form-control.selectize-control .selectize-input input:hover,.form-control.selectize-control .selectize-input input:focus{outline:none !important}.form-control.selectize-control .selectize-input input::-ms-clear{display:none}.form-control.selectize-control .selectize-input input::placeholder{color:#6c757d;opacity:1}.form-control.selectize-control .selectize-input.focus{color:#15132d;background-color:#fff;border-color:#ffdadb;outline:0;box-shadow:0 0 0 .2rem rgba(255,90,95,.25)}.form-control.selectize-control .selectize-input.disabled{background-color:#e9ecef;color:#15132d;opacity:1}.form-control.selectize-control .selectize-input.dropdown-active{border-bottom-right-radius:0;border-bottom-left-radius:0}.form-control.selectize-control .selectize-dropdown{background-color:transparent;border:none;border-radius:0;box-shadow:none;display:none;height:auto;left:0;margin:0 !important;padding:0;position:absolute;top:100%;transition:none;width:100% !important;z-index:1000}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content{background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0 0 .25rem .25rem;border-top-width:0;color:#15132d;font-size:1rem;max-height:14.5rem;overflow-x:hidden;overflow-y:auto;padding:.5rem 0;position:relative;text-align:left;-webkit-overflow-scrolling:touch}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option,.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .create{background-color:transparent;color:#212529;font-weight:400;padding:.25rem 1.5rem;text-align:inherit;white-space:nowrap}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .create{cursor:pointer}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option:hover,.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option:focus{color:#fff;text-decoration:none;background-color:#ff5a5f}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option.active,.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content span.twitter-typeahead .option.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option.tt-suggestion.tt-selectable:hover,.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option:active{color:#fff;text-decoration:none;background-color:#ff5a5f}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option.disabled,.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option:disabled,.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option[data-disabled]{background-color:transparent;color:#adb5bd}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .option[data-selectable]{cursor:pointer;overflow:hidden}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .optgroup{border-bottom:1px solid #e9ecef;margin-bottom:.5rem;padding-bottom:.5rem}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .optgroup:last-child{border-bottom-width:0;margin-bottom:0;padding-bottom:0}.form-control.selectize-control .selectize-dropdown .selectize-dropdown-content .optgroup .optgroup-header{color:#6c757d;display:block;font-size:.875rem;margin-bottom:0;padding:.25rem 1.5rem;white-space:nowrap}.form-control.selectize-control.single:after{border-color:#15132d transparent transparent transparent;border-style:solid;border-width:.5412658775rem .3125rem 0 .3125rem;content:"";display:block;height:0;margin-top:-0.2706329388rem;position:absolute;top:50%;right:.875rem;width:0}.form-control.selectize-control.single .selectize-input{padding-right:calc(0.875rem + 0.625rem + 0.625rem)}.form-control.selectize-control.multi{height:auto;min-height:calc(1.184015786em + 1.25rem + 2px)}.form-control.selectize-control.multi .selectize-input{height:auto;min-height:100%;overflow:auto}.form-control.selectize-control.multi .selectize-input .item{margin:0 3px 0 0}.form-control.selectize-control .selectize-dropdown-content .create strong,.form-control.selectize-control.multi .selectize-input .item{background-color:#ff5a5f;color:#fff;display:inline-block;font-size:75%;font-weight:400;line-height:1;padding:.25em .4em;text-align:center;vertical-align:middle;white-space:nowrap;border-radius:.25rem}.form-control.selectize-control.rtl{direction:rtl}.form-control.selectize-control.rtl .selectize-input{text-align:right}.form-control.selectize-control.rtl .selectize-input input{margin:0 0 0 2px !important}.form-control.selectize-control.rtl .selectize-dropdown .selectize-dropdown-content{text-align:right !important}.form-control.selectize-control.rtl.single:after{left:.875rem;right:auto}.form-control.selectize-control.rtl.single .selectize-input{padding-left:calc(0.875rem + 0.625rem + 0.625rem);padding-right:.875rem}.form-control.selectize-control.rtl.multi .selectize-input .item{margin:0 0 0 3px}.form-control.selectize-control.is-valid .selectize-input{border-color:#28a745}.form-control.selectize-control.is-valid .selectize-input:focus{border-color:#28a745;box-shadow:0 0 0 .2rem rgba(40,167,69,.25)}.form-control.selectize-control.is-invalid .selectize-input{border-color:#dc3545}.form-control.selectize-control.is-invalid .selectize-input:focus{border-color:#dc3545;box-shadow:0 0 0 .2rem rgba(220,53,69,.25)}.form-control-lg.selectize-control{height:calc(1.184015786em + 1.625rem + 2px);padding:0}.form-control-lg.selectize-control .selectize-input{font-size:1.25rem;padding:.8125rem 1rem;border-radius:1.4785088796rem}.form-control-lg.selectize-control.single .selectize-input{padding-right:calc(1rem + 0.625rem + 0.8125rem)}.form-control-lg.selectize-control.single.rtl .selectize-input{padding-left:calc(1rem + 0.625rem + 0.8125rem);padding-right:1rem}.form-control-lg.selectize-control.multi{min-height:calc(1.184015786em + 1.625rem + 2px)}.form-control-sm.selectize-control{height:calc(1.222222em + 1rem + 2px);padding:0}.form-control-sm.selectize-control .selectize-input{font-size:.875rem;padding:.5rem .75rem;border-radius:1.111111rem}.form-control-sm.selectize-control.single .selectize-input{padding-right:calc(0.75rem + 0.625rem + 0.5rem)}.form-control-sm.selectize-control.single.rtl .selectize-input{padding-left:calc(0.75rem + 0.625rem + 0.5rem);padding-right:.75rem}.form-control-sm.selectize-control.multi{min-height:calc(1.222222em + 1rem + 2px)}.input-group>.form-control.selectize-control.multi{height:calc(1.184015786em + 1.25rem + 2px)}.input-group>.form-control:not(:first-child).selectize-control .selectize-input{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.form-control:not(:last-child).selectize-control .selectize-input{border-top-right-radius:0;border-bottom-right-radius:0}span.twitter-typeahead .tt-menu{margin-top:0}span.twitter-typeahead .tt-suggestion{white-space:wrap}span.twitter-typeahead .tt-suggestion .primary{color:#ff5a5f}span.twitter-typeahead .tt-suggestion.tt-selectable:hover{cursor:pointer}span.twitter-typeahead .tt-suggestion.tt-selectable:hover .primary{color:#fff}.input-group span.twitter-typeahead{display:block !important;flex:1 1 auto;min-width:0}.input-group:not(.has-validation)>span.twitter-typeahead:not(:last-child) .form-control{border-top-right-radius:0;border-bottom-right-radius:0}.max-box{margin-left:auto;margin-right:auto}.max-box-left{margin-left:0;margin-right:0}.max-box-right{margin-right:0}@media(min-width: 768px){.max-box-left-md-min{margin-left:0;margin-right:0}}.max-box-160{max-width:8.75rem}.max-box-200{max-width:12.5rem}.max-box-300{max-width:16.5rem}.max-box-330{max-width:18.125rem}.max-box-354{max-width:19.5rem}.max-box-400{max-width:22rem}.max-box-406{max-width:22.25rem}.max-box-416{max-width:22.875rem}.max-box-498{max-width:27.375rem}.max-box-540{max-width:29.75rem}.max-box-550{max-width:30.25rem}.max-box-650{max-width:35.75rem}.max-box-912{max-width:50.25rem}.max-box-960{max-width:52.75rem}.max-box-1040{max-width:57.25rem}.max-box-1544{max-width:85rem}.max-box-xs-160{max-width:8.75rem}@media(min-width: 576px){.max-box-sm-160{max-width:8.75rem}}@media(min-width: 768px){.max-box-md-160{max-width:8.75rem}}@media(min-width: 992px){.max-box-lg-160{max-width:8.75rem}}@media(min-width: 1200px){.max-box-xl-160{max-width:8.75rem}}@media(min-width: 1360px){.max-box-xxl-160{max-width:8.75rem}}@media(min-width: 1920px){.max-box-full-160{max-width:8.75rem}}.max-box-xs-200{max-width:12.5rem}@media(min-width: 576px){.max-box-sm-200{max-width:12.5rem}}@media(min-width: 768px){.max-box-md-200{max-width:12.5rem}}@media(min-width: 992px){.max-box-lg-200{max-width:12.5rem}}@media(min-width: 1200px){.max-box-xl-200{max-width:12.5rem}}@media(min-width: 1360px){.max-box-xxl-200{max-width:12.5rem}}@media(min-width: 1920px){.max-box-full-200{max-width:12.5rem}}.max-box-xs-300{max-width:16.5rem}@media(min-width: 576px){.max-box-sm-300{max-width:16.5rem}}@media(min-width: 768px){.max-box-md-300{max-width:16.5rem}}@media(min-width: 992px){.max-box-lg-300{max-width:16.5rem}}@media(min-width: 1200px){.max-box-xl-300{max-width:16.5rem}}@media(min-width: 1360px){.max-box-xxl-300{max-width:16.5rem}}@media(min-width: 1920px){.max-box-full-300{max-width:16.5rem}}.max-box-xs-330{max-width:18.125rem}@media(min-width: 576px){.max-box-sm-330{max-width:18.125rem}}@media(min-width: 768px){.max-box-md-330{max-width:18.125rem}}@media(min-width: 992px){.max-box-lg-330{max-width:18.125rem}}@media(min-width: 1200px){.max-box-xl-330{max-width:18.125rem}}@media(min-width: 1360px){.max-box-xxl-330{max-width:18.125rem}}@media(min-width: 1920px){.max-box-full-330{max-width:18.125rem}}.max-box-xs-354{max-width:19.5rem}@media(min-width: 576px){.max-box-sm-354{max-width:19.5rem}}@media(min-width: 768px){.max-box-md-354{max-width:19.5rem}}@media(min-width: 992px){.max-box-lg-354{max-width:19.5rem}}@media(min-width: 1200px){.max-box-xl-354{max-width:19.5rem}}@media(min-width: 1360px){.max-box-xxl-354{max-width:19.5rem}}@media(min-width: 1920px){.max-box-full-354{max-width:19.5rem}}.max-box-xs-400{max-width:22rem}@media(min-width: 576px){.max-box-sm-400{max-width:22rem}}@media(min-width: 768px){.max-box-md-400{max-width:22rem}}@media(min-width: 992px){.max-box-lg-400{max-width:22rem}}@media(min-width: 1200px){.max-box-xl-400{max-width:22rem}}@media(min-width: 1360px){.max-box-xxl-400{max-width:22rem}}@media(min-width: 1920px){.max-box-full-400{max-width:22rem}}.max-box-xs-406{max-width:22.25rem}@media(min-width: 576px){.max-box-sm-406{max-width:22.25rem}}@media(min-width: 768px){.max-box-md-406{max-width:22.25rem}}@media(min-width: 992px){.max-box-lg-406{max-width:22.25rem}}@media(min-width: 1200px){.max-box-xl-406{max-width:22.25rem}}@media(min-width: 1360px){.max-box-xxl-406{max-width:22.25rem}}@media(min-width: 1920px){.max-box-full-406{max-width:22.25rem}}.max-box-xs-416{max-width:22.875rem}@media(min-width: 576px){.max-box-sm-416{max-width:22.875rem}}@media(min-width: 768px){.max-box-md-416{max-width:22.875rem}}@media(min-width: 992px){.max-box-lg-416{max-width:22.875rem}}@media(min-width: 1200px){.max-box-xl-416{max-width:22.875rem}}@media(min-width: 1360px){.max-box-xxl-416{max-width:22.875rem}}@media(min-width: 1920px){.max-box-full-416{max-width:22.875rem}}.max-box-xs-498{max-width:27.375rem}@media(min-width: 576px){.max-box-sm-498{max-width:27.375rem}}@media(min-width: 768px){.max-box-md-498{max-width:27.375rem}}@media(min-width: 992px){.max-box-lg-498{max-width:27.375rem}}@media(min-width: 1200px){.max-box-xl-498{max-width:27.375rem}}@media(min-width: 1360px){.max-box-xxl-498{max-width:27.375rem}}@media(min-width: 1920px){.max-box-full-498{max-width:27.375rem}}.max-box-xs-540{max-width:29.75rem}@media(min-width: 576px){.max-box-sm-540{max-width:29.75rem}}@media(min-width: 768px){.max-box-md-540{max-width:29.75rem}}@media(min-width: 992px){.max-box-lg-540{max-width:29.75rem}}@media(min-width: 1200px){.max-box-xl-540{max-width:29.75rem}}@media(min-width: 1360px){.max-box-xxl-540{max-width:29.75rem}}@media(min-width: 1920px){.max-box-full-540{max-width:29.75rem}}.max-box-xs-550{max-width:30.25rem}@media(min-width: 576px){.max-box-sm-550{max-width:30.25rem}}@media(min-width: 768px){.max-box-md-550{max-width:30.25rem}}@media(min-width: 992px){.max-box-lg-550{max-width:30.25rem}}@media(min-width: 1200px){.max-box-xl-550{max-width:30.25rem}}@media(min-width: 1360px){.max-box-xxl-550{max-width:30.25rem}}@media(min-width: 1920px){.max-box-full-550{max-width:30.25rem}}.max-box-xs-650{max-width:35.75rem}@media(min-width: 576px){.max-box-sm-650{max-width:35.75rem}}@media(min-width: 768px){.max-box-md-650{max-width:35.75rem}}@media(min-width: 992px){.max-box-lg-650{max-width:35.75rem}}@media(min-width: 1200px){.max-box-xl-650{max-width:35.75rem}}@media(min-width: 1360px){.max-box-xxl-650{max-width:35.75rem}}@media(min-width: 1920px){.max-box-full-650{max-width:35.75rem}}.max-box-xs-912{max-width:50.25rem}@media(min-width: 576px){.max-box-sm-912{max-width:50.25rem}}@media(min-width: 768px){.max-box-md-912{max-width:50.25rem}}@media(min-width: 992px){.max-box-lg-912{max-width:50.25rem}}@media(min-width: 1200px){.max-box-xl-912{max-width:50.25rem}}@media(min-width: 1360px){.max-box-xxl-912{max-width:50.25rem}}@media(min-width: 1920px){.max-box-full-912{max-width:50.25rem}}.max-box-xs-960{max-width:52.75rem}@media(min-width: 576px){.max-box-sm-960{max-width:52.75rem}}@media(min-width: 768px){.max-box-md-960{max-width:52.75rem}}@media(min-width: 992px){.max-box-lg-960{max-width:52.75rem}}@media(min-width: 1200px){.max-box-xl-960{max-width:52.75rem}}@media(min-width: 1360px){.max-box-xxl-960{max-width:52.75rem}}@media(min-width: 1920px){.max-box-full-960{max-width:52.75rem}}.max-box-xs-1040{max-width:57.25rem}@media(min-width: 576px){.max-box-sm-1040{max-width:57.25rem}}@media(min-width: 768px){.max-box-md-1040{max-width:57.25rem}}@media(min-width: 992px){.max-box-lg-1040{max-width:57.25rem}}@media(min-width: 1200px){.max-box-xl-1040{max-width:57.25rem}}@media(min-width: 1360px){.max-box-xxl-1040{max-width:57.25rem}}@media(min-width: 1920px){.max-box-full-1040{max-width:57.25rem}}.max-box-xs-1544{max-width:85rem}@media(min-width: 576px){.max-box-sm-1544{max-width:85rem}}@media(min-width: 768px){.max-box-md-1544{max-width:85rem}}@media(min-width: 992px){.max-box-lg-1544{max-width:85rem}}@media(min-width: 1200px){.max-box-xl-1544{max-width:85rem}}@media(min-width: 1360px){.max-box-xxl-1544{max-width:85rem}}@media(min-width: 1920px){.max-box-full-1544{max-width:85rem}}.row-gutter-8-0{margin-left:-0.4rem;margin-right:-0.4rem;margin-top:0;margin-bottom:0}.row-gutter-8-0>[class*=col]{padding-left:.4rem;padding-right:.4rem;padding-top:0;padding-bottom:0}.row-gutter-8-8,.search-form .row-sf-outer{margin:-0.4rem}.row-gutter-8-8>[class*=col],.search-form .row-sf-outer>[class*=col]{padding:.4rem}.row-gutter-19-0{margin-left:-0.95rem;margin-right:-0.95rem;margin-top:0;margin-bottom:0}.row-gutter-19-0>[class*=col]{padding-left:.95rem;padding-right:.95rem;padding-top:0;padding-bottom:0}.row-gutter-14-14{margin:-0.7rem}.row-gutter-14-14>[class*=col]{padding:.7rem}.row-gutter-15-15{margin:-0.75rem}.row-gutter-15-15>[class*=col]{padding:.75rem}.row-gutter-17-17{margin:-0.85rem}.row-gutter-17-17>[class*=col]{padding:.85rem}.row-gutter-26-26{margin:-1.3rem}.row-gutter-26-26>[class*=col]{padding:1.3rem}.row-gutter-20-20{margin:-1rem}.row-gutter-20-20>[class*=col]{padding:1rem}.col-inline-200{max-width:12.5rem;flex-basis:12.5rem}.col-inline--200{max-width:12.5rem;flex-basis:12.5rem}@media(min-width: 1920px){.col-inline-full-200{max-width:12.5rem;flex-basis:12.5rem}}@media(min-width: 1360px){.col-inline-xxl-200{max-width:12.5rem;flex-basis:12.5rem}}@media(min-width: 1200px){.col-inline-xl-200{max-width:12.5rem;flex-basis:12.5rem}}@media(min-width: 992px){.col-inline-lg-200{max-width:12.5rem;flex-basis:12.5rem}}@media(min-width: 768px){.col-inline-md-200{max-width:12.5rem;flex-basis:12.5rem}}@media(min-width: 576px){.col-inline-sm-200{max-width:12.5rem;flex-basis:12.5rem}}.col-inline-618{max-width:38.625rem;flex-basis:38.625rem}.col-inline--618{max-width:38.625rem;flex-basis:38.625rem}@media(min-width: 1920px){.col-inline-full-618{max-width:38.625rem;flex-basis:38.625rem}}@media(min-width: 1360px){.col-inline-xxl-618{max-width:38.625rem;flex-basis:38.625rem}}@media(min-width: 1200px){.col-inline-xl-618{max-width:38.625rem;flex-basis:38.625rem}}@media(min-width: 992px){.col-inline-lg-618{max-width:38.625rem;flex-basis:38.625rem}}@media(min-width: 768px){.col-inline-md-618{max-width:38.625rem;flex-basis:38.625rem}}@media(min-width: 576px){.col-inline-sm-618{max-width:38.625rem;flex-basis:38.625rem}}.col-inline-738{max-width:46.125rem;flex-basis:46.125rem}.col-inline--738{max-width:46.125rem;flex-basis:46.125rem}@media(min-width: 1920px){.col-inline-full-738{max-width:46.125rem;flex-basis:46.125rem}}@media(min-width: 1360px){.col-inline-xxl-738{max-width:46.125rem;flex-basis:46.125rem}}@media(min-width: 1200px){.col-inline-xl-738{max-width:46.125rem;flex-basis:46.125rem}}@media(min-width: 992px){.col-inline-lg-738{max-width:46.125rem;flex-basis:46.125rem}}@media(min-width: 768px){.col-inline-md-738{max-width:46.125rem;flex-basis:46.125rem}}@media(min-width: 576px){.col-inline-sm-738{max-width:46.125rem;flex-basis:46.125rem}}.col-inline-928{max-width:58rem;flex-basis:58rem}.col-inline--928{max-width:58rem;flex-basis:58rem}@media(min-width: 1920px){.col-inline-full-928{max-width:58rem;flex-basis:58rem}}@media(min-width: 1360px){.col-inline-xxl-928{max-width:58rem;flex-basis:58rem}}@media(min-width: 1200px){.col-inline-xl-928{max-width:58rem;flex-basis:58rem}}@media(min-width: 992px){.col-inline-lg-928{max-width:58rem;flex-basis:58rem}}@media(min-width: 768px){.col-inline-md-928{max-width:58rem;flex-basis:58rem}}@media(min-width: 576px){.col-inline-sm-928{max-width:58rem;flex-basis:58rem}}.col-inline-1108{max-width:69.25rem;flex-basis:69.25rem}.col-inline--1108{max-width:69.25rem;flex-basis:69.25rem}@media(min-width: 1920px){.col-inline-full-1108{max-width:69.25rem;flex-basis:69.25rem}}@media(min-width: 1360px){.col-inline-xxl-1108{max-width:69.25rem;flex-basis:69.25rem}}@media(min-width: 1200px){.col-inline-xl-1108{max-width:69.25rem;flex-basis:69.25rem}}@media(min-width: 992px){.col-inline-lg-1108{max-width:69.25rem;flex-basis:69.25rem}}@media(min-width: 768px){.col-inline-md-1108{max-width:69.25rem;flex-basis:69.25rem}}@media(min-width: 576px){.col-inline-sm-1108{max-width:69.25rem;flex-basis:69.25rem}}.navbar-special.collapse:not(.show){display:block}@media(max-width: 1359.98px){.navbar-special{transition:height 350ms,right 350ms;position:absolute;right:0;width:18.125rem;top:100%;background:#fff;z-index:10;margin:0;border-radius:2.25rem;box-shadow:0 .25rem 1rem 0 rgba(21,19,45,.2)}.navbar-special.collapse:not(.show){display:none}}.navbar-fixed.page-not-homepage .navbar-special,.page-search .navbar-special{transition:height 350ms,right 350ms;position:absolute;right:0;width:18.125rem;top:100%;background:#fff;z-index:10;margin:0;border-radius:2.25rem;box-shadow:0 .25rem 1rem 0 rgba(21,19,45,.2)}.navbar-fixed.page-not-homepage .navbar-special.collapse:not(.show),.page-search .navbar-special.collapse:not(.show){display:none}@media(max-width: 767.98px){.navbar-special{width:100%}}.navbar-special-close{display:none;color:#15132d}@media(max-width: 1359.98px){.navbar-special-close{position:absolute;top:6px;right:6px;cursor:pointer;display:block}}.navbar-fixed.page-not-homepage .navbar-special-close,.page-search .navbar-special-close{position:absolute;top:6px;right:6px;cursor:pointer;display:block}.navbar-special-close:hover{opacity:.85}@media(min-width: 1360px){.navbar-special-inner{display:flex;margin-right:-0.5rem;align-items:center;flex-wrap:wrap;justify-content:flex-end}}@media(max-width: 1359.98px){.navbar-special-inner{padding:2.125rem 1.25rem 1.75rem;text-align:center;display:block;margin-right:0;position:relative}}.navbar-fixed.page-not-homepage .navbar-special-inner,.page-search .navbar-special-inner{padding:2.125rem 1.25rem 1.75rem;text-align:center;display:block;margin-right:0;position:relative}.navbar-sign-out-form{display:block;width:100%;text-align:right;order:100}@media(max-width: 1359.98px){.navbar-sign-out-form{border-top:1px solid #15132d;text-align:center;margin-top:.75rem;padding-top:.75rem}}.navbar-special-logo{display:none}@media(max-width: 1359.98px){.navbar-special-logo{display:block;text-align:center;padding:15px;max-width:55%;margin:0 auto}}.navbar-fixed.page-not-homepage .navbar-special-logo,.page-search .navbar-special-logo{display:block;text-align:center;padding:15px;max-width:55%;margin:0 auto}.navbar-special-logo img{display:block;width:100%;margin:0 auto}.navbar-search-form{position:relative;display:flex;z-index:2}.navbar-search-form .input-group{flex-wrap:nowrap;position:relative;flex-grow:1}.navbar-search-form .search-control-outer{flex-grow:1}.navbar-search-form .search-control-outer .form-control{border-top-right-radius:0;border-bottom-right-radius:0}.navbar-search-form .input-group-append .btn{background:#fff}.navbar-search-form .input-group-append .btn:focus,.navbar-search-form .input-group-append .btn:active,.navbar-search-form .input-group-append .btn:focus:active{background:#fff}.navbar-search-form .input-group-append .btn:hover{background:#15132d}.navbar-search-form .form-control{border-color:#15132d}.navbar-fixed.page-not-homepage .navbar-search-form,.page-search .navbar-search-form{margin-bottom:1.25rem}@media(max-width: 1359.98px){.navbar-search-form{margin-bottom:1.25rem}}@media(min-width: 1360px){body:not(.navbar-fixed.page-not-homepage):not(.page-search) .navbar-search-form{width:auto;order:2}body:not(.navbar-fixed.page-not-homepage):not(.page-search) .navbar-search-form .input-group-append .btn{border:0 none;border-radius:50%;width:calc(1.222222em + 1rem + 2px);height:calc(1.222222em + 1rem + 2px);padding:0}body:not(.navbar-fixed.page-not-homepage):not(.page-search) .navbar-search-form .search-control-outer{position:absolute !important;right:calc(1.222222em + 1rem + 2px);width:0;transition:300ms;overflow:hidden}body:not(.navbar-fixed.page-not-homepage):not(.page-search) .navbar-search-form .search-control-outer .form-control{box-shadow:none;border-top-right-radius:1.111111rem;border-bottom-right-radius:1.111111rem}body:not(.navbar-fixed.page-not-homepage):not(.page-search) .navbar-search-form.active .search-control-outer,body:not(.navbar-fixed.page-not-homepage):not(.page-search) span.twitter-typeahead .navbar-search-form.tt-suggestion.tt-selectable:hover .search-control-outer,span.twitter-typeahead body:not(.navbar-fixed.page-not-homepage):not(.page-search) .navbar-search-form.tt-suggestion.tt-selectable:hover .search-control-outer{overflow:visible;width:32.5rem}}@media(min-width: 1360px){.navbar-special-items{display:flex;order:1}}@media(max-width: 1359.98px){.navbar-special-items{display:block}}.navbar-fixed.page-not-homepage .navbar-special-items,.page-search .navbar-special-items{display:block}@media(max-width: 1359.98px){.navbar-special-items+.navbar-special-items{margin-top:.5rem;padding-top:.5rem}}.navbar-fixed.page-not-homepage .navbar-special-items+.navbar-special-items,.page-search .navbar-special-items+.navbar-special-items{margin-top:.5rem;padding-top:.5rem}@media(min-width: 1360px){.navbar-special-items.navbar-special-buttons{margin:0 -8px;display:none}}.navbar-special-items.navbar-special-buttons li{padding:0 8px}.navbar-special-items.navbar-special-buttons li+li{margin-top:.5rem}.navbar-special-link{padding:.4375rem .5rem;color:#15132d;font-weight:bold;text-decoration:none;text-align:center;line-height:1.25;font-weight:500;position:relative;transition:300ms;font-size:1rem;white-space:nowrap}@media(min-width: 1360px){.navbar-special-link{display:flex;align-items:center;justify-content:center}}@media(max-width: 1359.98px){.navbar-special-link{padding-top:6px;padding-bottom:6px;display:inline-block}}.navbar-fixed.page-not-homepage .navbar-special-link,.page-search .navbar-special-link{padding-top:6px;padding-bottom:6px;display:inline-block}.navbar-special-link:before{content:"";display:block;position:absolute;height:1px;width:0;transition:250ms;background:#ff5a5f;bottom:.1875rem;left:50%;transform:translateX(-50%)}.navbar-special-link:hover{text-decoration:none;color:#ff5a5f}.navbar-special-link:hover::before{width:calc(100% - 1rem)}.page-not-homepage .navbar-special-link:hover::before{width:calc(100% - 0.9rem)}.page-not-homepage .navbar-special-link{font-size:.9rem;padding:0.39375rem 0.45rem}.menu-toggler{display:none}@media(max-width: 1359.98px){.menu-toggler{display:inline-block;text-align:center;background:transparent;border:0 none;z-index:2;margin:0;padding:.4375rem;border:1px solid #ff5a5f;border-radius:.5rem}}.navbar-fixed.page-not-homepage .menu-toggler,.page-search .menu-toggler{display:inline-block;text-align:center;background:transparent;border:0 none;z-index:2;margin:0;padding:.4375rem;border:1px solid #ff5a5f;border-radius:.5rem}.menu-toggler .navbar-toggler-inner{width:1.3rem;height:.9rem;display:block;position:relative}.menu-toggler .navbar-toggler-inner>span{height:2px;position:absolute;left:0;background:#ff5a5f;width:100%;display:block;transition:400ms linear}.menu-toggler .navbar-toggler-inner>span:nth-child(1){top:0}.menu-toggler .navbar-toggler-inner>span:nth-child(2){top:50%;transform:translateY(-50%)}.menu-toggler .navbar-toggler-inner>span:nth-child(3){bottom:0}.menu-toggler:hover{outline:none}.menu-toggler:hover .navbar-toggler-inner>span{background:#ffc0c2}.menu-toggler.active .navbar-toggler-inner span:nth-child(1),span.twitter-typeahead .menu-toggler.tt-suggestion.tt-selectable:hover .navbar-toggler-inner span:nth-child(1){top:50%;transform:translateY(-50%) rotate(45deg)}.menu-toggler.active .navbar-toggler-inner span:nth-child(2),span.twitter-typeahead .menu-toggler.tt-suggestion.tt-selectable:hover .navbar-toggler-inner span:nth-child(2){opacity:0}.menu-toggler.active .navbar-toggler-inner span:nth-child(3),span.twitter-typeahead .menu-toggler.tt-suggestion.tt-selectable:hover .navbar-toggler-inner span:nth-child(3){top:50%;bottom:auto;transform:translateY(-50%) rotate(-45deg)}.custom-dropdown{line-height:1.2;position:relative;width:100%}.custom-dropdown .cd-header{display:block;padding:.4375rem 2rem .4375rem .875rem;cursor:pointer;position:relative}.custom-dropdown .cd-header-inner{height:2.1em;position:relative}.custom-dropdown .cd-header-reset{position:absolute;top:50%;transform:translateY(-50%);right:.125rem;font-size:1.125em;color:#15132d;padding:.25rem;cursor:pointer}.custom-dropdown .cd-header-reset:hover{color:#6c757d}.custom-dropdown .cd-header-label,.custom-dropdown .cd-header-text{display:-webkit-box;box-orient:vertical;-webkit-box-orient:vertical;text-overflow:ellipsis;overflow:hidden;height:1.2em;line-clamp:1;-webkit-line-clamp:1;position:absolute;left:0;transition:all 150ms linear}.custom-dropdown .cd-header-label{font-size:.75em;font-weight:bold;top:0}.custom-dropdown .cd-header-text{color:#939598;font-weight:normal;bottom:0}.custom-dropdown .cd-header-text.active,.custom-dropdown span.twitter-typeahead .cd-header-text.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .custom-dropdown .cd-header-text.tt-suggestion.tt-selectable:hover{color:#15132d}.custom-dropdown .cd-header-floating .cd-header-label{font-size:1em;top:50%;transform:translateY(-50%)}.custom-dropdown .cd-body{box-shadow:0 .25rem 1rem 0 rgba(21,19,45,.2);position:absolute;z-index:9999;background:#fff;top:calc(100% + 0.9375rem);border-radius:2.25rem;padding-top:1.75rem;padding-bottom:1.75rem;--animate-duration: 150ms}.custom-dropdown .cd-body .cd-content{position:relative;overflow-y:auto;max-height:25rem;padding-left:1.25rem;padding-right:1.25rem}body:not(.is-ios) .custom-dropdown .cd-body .cd-content::-webkit-scrollbar{width:.75rem;background:transparent}body:not(.is-ios) .custom-dropdown .cd-body .cd-content::-webkit-scrollbar-thumb{border:.1875rem solid transparent;border-radius:.375rem;background-color:#6c757d;background-clip:padding-box}.custom-dropdown .cd-body .cd-option{padding:.4375rem .875rem;min-height:calc(1.2em + 0.875rem);cursor:pointer;position:relative}.custom-dropdown .cd-body .cd-option:before{content:"";display:none;position:absolute;top:0;bottom:0;left:0;right:0;background-color:rgba(255,90,95,.35)}.custom-dropdown .cd-body .cd-option:hover:before{display:block}.custom-dropdown .cd-body .cd-option.selected:before{display:block;background-color:rgba(255,90,95,.55)}.custom-dropdown .cd-body .cd-tags-container{overflow:hidden}.custom-dropdown .cd-body .cd-tags{margin:-0.125rem;display:flex;flex-wrap:wrap}.custom-dropdown .cd-body .cd-tags .cd-tag{padding:.125rem;flex:0 0 auto}.custom-dropdown .cd-body .cd-tags .btn.btn-tag{margin:0 !important}.custom-dropdown .cd-body.cd-body-test{visibility:hidden;position:absolute;top:0;left:0;height:auto;max-height:none;overflow:visible;box-shadow:none;padding:0;border-radius:0}.custom-dropdown.custom-dropdown-100 .cd-body{width:100%}.custom-dropdown.custom-dropdown-150 .cd-body{width:150%}.custom-dropdown.custom-dropdown-200 .cd-body{width:200%}.custom-dropdown[disabled=disabled]{pointer-events:none;opacity:.6}.custom-dropdown[disabled=disabled] .cd-header-text{color:#939598}.custom-dropdown.custom-dropdown-align-right .cd-body{right:0;left:auto}@keyframes sk-rotateplane{0%{transform:perspective(120px) rotateX(0deg) rotateY(0deg)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0deg)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}@keyframes plane{0%{transform:rotateX(0deg) rotateY(0deg) translate(0)}33%{transform:rotateX(-5deg) rotateY(7deg) translate(0.5%, 1%) scale(0.95)}66%{transform:rotateX(7deg) rotateY(-7deg) translate(-0.5%, -1%)}}@keyframes showHideDot{0%{opacity:0}50%{opacity:1}60%{opacity:1}100%{opacity:0}}.loading-dots{text-align:center;z-index:5;vertical-align:middle;display:inline-flex}.loading-dots>*{display:inline-block;margin-left:.2em;margin-right:.2em;position:relative;width:.5em;height:.5em;border-radius:50%;background:#15132d;line-height:1;opacity:0;animation:showHideDot 2.5s ease-in-out infinite}.loading-dots>*:before{content:"";display:block;position:absolute;left:50%;top:50%;transform:translate(-50%, -50%);width:.25em;height:.25em;border-radius:50%;background:#ff5a5f}.loading-dots>*:nth-child(1){animation-delay:.2s}.loading-dots>*:nth-child(2){animation-delay:.4s}.loading-dots>*:nth-child(3){animation-delay:.6s}@media(max-width: 1199.98px){.visible-xl-min{display:none !important}}@media(max-width: 991.98px){.visible-lg-min{display:none !important}}@media(max-width: 767.98px){.visible-md-min{display:none !important}}@media(max-width: 575.98px){.visible-sm-min{display:none !important}}@media(min-width: 992px){.visible-md-max{display:none !important}}@media(min-width: 768px){.visible-sm-max{display:none !important}}@media(min-width: 576px){.visible-xs-max{display:none !important}}.field-validation-error,.error{color:#fff;display:block;background:#dc3545;font-size:.85em;padding:.1rem .875rem;border-radius:.65em;margin-top:6px}.btn .move-icon-right{right:-0.25rem;position:relative}.btn:focus,.btn:active{box-shadow:none !important}.btn.btn-icon-left{padding-left:2.7rem;padding-right:1rem;position:relative}.btn.btn-icon-left i{font-size:1.6em;left:.05rem;position:absolute;top:50%;transform:translateY(-50%)}.btn.btn-icon-left.btn-icon-left-normal{padding-left:1.8rem}.btn.btn-icon-left.btn-icon-left-normal i{font-size:inherit}@media(max-width: 575.98px){.btn.btn-icon-mobile{padding-left:.625rem;padding-right:.625rem}.btn.btn-icon-mobile i{position:relative;top:auto;left:auto;transform:none}.btn.btn-icon-mobile span{display:none}}.btn.btn-lg.btn-icon-right,.btn-group-lg>.btn.btn-icon-right{padding-left:1.8rem;padding-right:3.1rem;position:relative}.btn.btn-lg.btn-icon-right i,.btn-group-lg>.btn.btn-icon-right i{font-size:1.2em;right:1rem;position:absolute;top:50%;transform:translateY(-50%)}.btn.btn-xs{padding:.1rem .35rem;font-size:.875rem}.btn.btn-tag.btn-xs{margin-right:5px}.btn.btn-tag.btn-xs.btn-primary{color:#15132d;background-color:#f8f9fa;border:.5px solid #c6c7c8}.btn.btn-tag.btn-xs.btn-primary:hover,.btn.btn-tag.btn-xs.btn-primary:focus{background-color:rgba(255,90,95,.35)}.btn.btn-tag.btn-xs.btn-primary.active,span.twitter-typeahead .btn.btn-tag.btn-xs.btn-primary.tt-suggestion.tt-selectable:hover{background-color:rgba(255,90,95,.55) !important}.btn.btn-tag.btn-xs.btn-secondary{color:#15132d;background-color:#f8f9fa;border:.5px solid #c6c7c8}.btn.btn-tag.btn-xs.btn-secondary:hover,.btn.btn-tag.btn-xs.btn-secondary:focus{background-color:rgba(92,225,230,.35)}.btn.btn-tag.btn-xs.btn-secondary.active,span.twitter-typeahead .btn.btn-tag.btn-xs.btn-secondary.tt-suggestion.tt-selectable:hover{background-color:#5ce1e6 !important}.btn.btn-wide{min-width:13.5rem}.btn.btn-sm.btn-wide,.btn-group-sm>.btn.btn-wide{min-width:8.75rem;max-width:100%}.btn.btn-icon-circle{line-height:1;border-radius:50%;aspect-ratio:1;padding:0;display:inline-flex;align-items:center;justify-content:center;width:2.70625rem;font-size:1.6875rem}.btn.btn-icon-circle.btn-sm,.btn-group-sm>.btn.btn-icon-circle{width:2.346875rem;font-size:1.5rem}.btn.btn-dark:hover{background-color:#2e2a63}[data-toggle=collapse][aria-expanded=false] .text-state-expanded{display:none}[data-toggle=collapse][aria-expanded=true] .text-state-collapse{display:none}.form-control:focus{box-shadow:none !important}.form-group{position:relative}.form-control:focus~.floating-label,.form-control[readonly]~.floating-label,.form-control:not(:focus):valid~.floating-label,.form-control[placeholder]:not(:placeholder-shown)~.floating-label,.custom-select:focus~.floating-label,.custom-select:not(:focus):valid~.floating-label,.custom-select:disabled~.floating-label,.custom-select:not(:valid)~.floating-label{top:0;font-size:.625rem;line-height:1.1;opacity:1;font-weight:normal}.form-control:focus~.floating-label .error,.form-control[readonly]~.floating-label .error,.form-control:not(:focus):valid~.floating-label .error,.form-control[placeholder]:not(:placeholder-shown)~.floating-label .error,.custom-select:focus~.floating-label .error,.custom-select:not(:focus):valid~.floating-label .error,.custom-select:disabled~.floating-label .error,.custom-select:not(:valid)~.floating-label .error{color:#dc3545}.floating-label{position:absolute;pointer-events:none;left:.875rem;top:calc(0.625rem + 1px);transition:.2s ease all;color:#363175;font-size:1.125rem;line-height:1.184015786;pointer-events:none;user-select:none}.floating-label .error{color:#dc3545;background:transparent;padding:0;margin:0;transition:.2s ease all;font-size:inherit}.floating-label .placeholder{display:block;transition:.2s ease all}.floating-label-lg{left:1rem;top:calc(0.8125rem + 1px);font-size:1.125rem;line-height:1.184015786}.floating-label-lg-borderless{top:.8125rem}.hiddener{position:absolute !important;width:0 !important;height:0 !important;overflow:hidden !important;font-size:0 !important;line-height:0 !important}.white-popup{max-width:900px;padding:15px;background:#fff;margin:0 auto;position:relative}.white-popup .container{width:100%;max-width:none}.white-popup .h1{margin-bottom:25px}.video-frame{position:relative}.video-frame:before{content:"";display:block;position:static;padding-top:56.25%}.video-frame>video,.video-frame>iframe{width:100%;height:100%;top:0;left:0;position:absolute}.video-frame+.video-frame{margin-top:1rem}.img-full{width:100%;display:block}.em,em{color:#ff5a5f;font-weight:500;font-style:normal}strong{font-weight:bold}.hx{font-size:1.3125rem;font-weight:500;margin-bottom:1rem;text-transform:uppercase}.hx span{display:inline-block;position:relative;padding-bottom:.5rem}.hx span::after{content:"";display:block;position:absolute;width:1.85rem;height:.1rem;background-color:#ff5a5f;bottom:0;left:50%;transform:translateX(-50%)}.hx.hx-white::after{background-color:#fff}.jumbotron{padding:1rem;border-radius:.75rem}.jumbotron.jumbotron-secondary{background:#5ce1e6}.jumbotron.jumbotron-dark{background:#15132d;color:#fff}.jumbotron p:last-child{margin-bottom:0}.embla-carousel{position:relative}.embla-viewport{overflow:hidden}.embla-container{display:flex}.embla-slide{flex:0 0 100%;min-width:0;max-width:none}.embla-arrow{position:absolute;width:2.1rem;height:2.1rem;overflow:hidden;top:50%;transform:translateY(-50%);cursor:pointer;display:flex;align-items:center;justify-content:center;background:transparent;border:0 none;padding:0;margin:0}.embla-arrow:before{content:"";display:block;position:absolute;font-family:"osicons";font-style:normal;font-weight:normal;speak:none;text-decoration:inherit;width:1em;margin-right:.2em;margin-left:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;margin:0;color:#afafb2;font-size:2.1rem;line-height:1}.embla-arrow.embla-prev{left:-2.35rem}.embla-arrow.embla-prev::before{content:""}.embla-arrow.embla-next{right:-2.35rem}.embla-arrow.embla-next::before{content:""}.embla-dots{display:flex;justify-content:center;flex-wrap:wrap;margin-top:.375rem}.embla-dots button{background:transparent;margin:0;padding:.5rem;border:0 none}.embla-dots button:before{content:"";display:block;position:static;font-size:.875rem;background:#afafb2;width:.75rem;height:.75rem;border-radius:50%;transition:150ms}.embla-dots button.active:before,.embla-dots span.twitter-typeahead button.tt-suggestion.tt-selectable:hover:before,span.twitter-typeahead .embla-dots button.tt-suggestion.tt-selectable:hover:before{background:#ff5a5f}.reason-info{border-radius:1.5rem;background:#fff;text-align:center;padding:2.8rem 1.5rem 2.1rem;box-shadow:0 .25rem 1rem 0 rgba(21,19,45,.2);margin:0 auto;width:100%}.reason-info .bubble{font-size:3.5625rem;height:5.7rem;width:5.7rem;line-height:5.7rem;text-align:center;margin:0 auto 1.5rem;background:#ff5a5f;border-radius:50%;color:#fff;max-width:13.5rem}.reason-info .bubble.bubble-top-left{border-top-left-radius:0}.reason-info .bubble.bubble-bottom-left{border-bottom-left-radius:0}.reason-info .bubble.bubble-bottom-right{border-bottom-right-radius:0}.reason-info .bubble.bubble-top-right{border-top-right-radius:0}.reason-info p:last-child{margin-bottom:0}.reason-info.reason-info-xl{padding:3.6rem 2.1rem;max-width:24rem}.reason-info.reason-info-xl .bubble{font-size:6.5625rem;height:10.6rem;width:10.6rem;line-height:10.6rem;margin-bottom:2.7rem}.nobr{white-space:nowrap}hr{margin-left:-1.75rem;margin-right:-1.75rem}.pin{text-align:center;font-weight:600;font-size:12px;letter-spacing:-1px;color:#ff5a5f;width:48px;height:59px;position:relative}.pin #oval{fill:#fff}.pin .number{position:absolute;top:12px;left:-1px;width:100%}.pin.selected #selected,.pin:hover #selected{fill:#ff5a5f}.leaflet-control-container a:hover{text-decoration:none}.input-group-prepend .btn,.input-group-append .btn{display:inline-flex;align-items:center;justify-content:center}.input-group-prepend .btn .b-icon.bi,.input-group-append .btn .b-icon.bi{font-size:115%}.search-form{padding:.5rem;min-height:3.8rem;text-align:left;border:1px solid #15132d;display:inline-flex;border-radius:1.9rem;margin-top:1.4rem;margin-bottom:1.2rem;box-shadow:0 .55rem .85rem 0 rgba(21,19,45,.2)}.search-form .delimiter{position:relative}.search-form .delimiter::before{content:"";display:none;position:absolute;width:.046875rem;background:#15132d;top:.25rem;bottom:.25rem;right:0;z-index:2}@media(max-width: 767.98px){.search-form .delimiter.delimiter-sm-max::before{display:block}}@media(max-width: 991.98px){.search-form .delimiter.delimiter-md-max::before{display:block}}@media(min-width: 576px){.search-form .delimiter.delimiter-sm::before{display:block}}@media(min-width: 768px){.search-form .delimiter.delimiter-md::before{display:block}}@media(min-width: 992px){.search-form .delimiter.delimiter-lg::before{display:block}}@media(min-width: 1200px){.search-form .delimiter.delimiter-xl::before{display:block}}@media(min-width: 1360px){.search-form .delimiter.delimiter-xxl::before{display:block}}@media(min-width: 576px)and (max-width: 767.98px){.search-form .delimiter.delimiter-sm-sm::before{display:block}}@media(min-width: 576px)and (max-width: 991.98px){.search-form .delimiter.delimiter-sm-md::before{display:block}}.search-form .delimiter.delimiter-visible::before{display:block}.search-form .horizontal{position:relative}.search-form .horizontal::after{content:"";display:none;position:absolute;height:.046875rem;background:#c6c7c8;left:.25rem;right:.25rem;bottom:0}@media(max-width: 575.98px){.search-form .horizontal.horizontal-xs-max:after{display:block}}@media(max-width: 767.98px){.search-form .horizontal.horizontal-sm-max:after{display:block}}@media(max-width: 991.98px){.search-form .horizontal.horizontal-md-max:after{display:block}}@media(max-width: 1359.98px){.search-form .horizontal.horizontal-xl-max:after{display:block}}@media(max-width: 1199.98px){.search-form .horizontal.horizontal-lg-max:after{display:block}}@media(min-width: 576px)and (max-width: 767.98px){.search-form .horizontal.horizontal-sm-sm:after{display:block}}.search-form .horizontal.horizontal-visible:after{display:block}.search-form .btn-search{padding:0;border-radius:1.4785088796rem;border-bottom-left-radius:0;font-size:1.8125rem;min-width:2.9570177593rem;display:flex;align-items:center;justify-content:center;min-height:2.9570177593rem;height:100%}.search-form .btn-search i{margin-left:-0.3125rem}.search-form.search-form-mobile{min-height:3.25rem;display:none;margin:0}.search-form.search-form-mobile.opened{display:block}@media(min-width: 992px){.search-form.search-form-mobile{display:block}}.search-form.disabled{pointer-events:none;opacity:.4;filter:grayscale(1)}.leaflet-popup-content-wrapper{width:10rem;border:0 none;padding:0}.leaflet-popup-content{margin:0}.leaflet-popup-content .popup{display:block}.leaflet-popup-content .popup:hover,.leaflet-popup-content .popup:focus{text-decoration:none}.leaflet-popup-content .popup:hover .popup__content h3,.leaflet-popup-content .popup:focus .popup__content h3{color:#000}.leaflet-popup-content .popup .img-fluid{border-top-left-radius:.6rem;border-top-right-radius:.6rem}.leaflet-popup-content .popup .popup__content{padding:.75rem}.leaflet-popup-content .popup .popup__content h3{margin:.2rem 0;font-size:1rem;line-height:1.15rem;color:#ff5a5f}.leaflet-popup-content .popup .popup__footer{font-size:.6875rem;color:#ababab}.icon-list{margin:0 0 2rem;padding:0}.icon-list li{position:relative;padding:.15rem 0 0 2rem;margin:0;list-style:none;min-height:2.5rem}@media(min-width: 768px){.icon-list li{padding-left:3.75rem}}.icon-list li h3{display:inline-block;font-size:1.125rem;margin:0 0 1rem}.icon-list li i{position:absolute;left:0;font-size:1.375rem;color:#ff5a5f;top:-0.1875rem}@media(min-width: 768px){.icon-list li i{font-size:1.9375rem;top:-0.5625rem}}.icon-list li p{margin:0 0 25px}.icon-list.icon-list-double{display:flex;flex-wrap:wrap}.icon-list.icon-list-double li{width:100%}@media(min-width: 768px){.icon-list.icon-list-double li{max-width:50%;flex-basis:50%}}.icon-list.icon-list-double{color:#ff5a5f}ol.icon-list{counter-reset:my-awesome-counter}ol.icon-list li{counter-increment:my-awesome-counter;padding-top:0}ol.icon-list li h3:before{content:counter(my-awesome-counter) ". "}.ellipsis{display:-webkit-box;box-orient:vertical;-webkit-box-orient:vertical;text-overflow:ellipsis;overflow:hidden}.ellipsis.ellipsis-1x14-25xbase{font-size:1rem;line-height:1.473684;height:1.473684rem;line-clamp:1;-webkit-line-clamp:1}.ellipsis.ellipsis-2x14-25xbase{font-size:1rem;line-height:1.473684;height:2.947368rem;line-clamp:2;-webkit-line-clamp:2}.ellipsis.ellipsis-3x14-25xbase{font-size:1rem;line-height:1.473684;height:4.421052rem;line-clamp:3;-webkit-line-clamp:3}.ellipsis.ellipsis-1x14-25xheadings{font-size:1rem !important;line-height:1.2;height:1.2rem;line-clamp:1;-webkit-line-clamp:1}.ellipsis.ellipsis-2x25-5xheadings{font-size:1.75rem;line-height:1.2;height:4.2rem;line-clamp:2;-webkit-line-clamp:2}.ellipsis.ellipsis-2x17xheadings{font-size:1.1875rem;line-height:1.2;max-height:2.85rem;line-clamp:2;-webkit-line-clamp:2}.bull-list li{display:inline}.bull-list li:not(:last-child)::after{content:" •";display:inline;position:static}.anchor{position:absolute;margin-top:-6.375rem}.anchor.anchor-sm{margin-top:-0.625rem !important}.navbar-static .anchor{margin-top:-5.1875rem}.textarea-outer{border:1px solid #ced4da;border-radius:1.2910088796rem;padding:.625rem .875rem;padding-right:.4375rem}.textarea-outer .form-control{padding:0 0.4375rem 0 0;border:0;border-radius:0}.actions{text-align:center}@media(min-width: 576px){.actions{margin-top:.75rem}}.xbtn{line-height:1.184015786;font-size:1.125rem;padding:.625rem .875rem;border-radius:1.2910088796rem;display:inline-block;border:1px solid;text-align:center;min-height:2.5820177593rem;font-weight:600}.xbtn.xbtn-primary{color:#fff;background-color:#ff5a5f;border-color:#ff5a5f}.xbtn.xbtn-secondary{color:#212529;background-color:#5ce1e6;border-color:#5ce1e6}.xbtn.xbtn-success{color:#fff;background-color:#28a745;border-color:#28a745}.xbtn.xbtn-info{color:#fff;background-color:#5363d9;border-color:#5363d9}.xbtn.xbtn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107}.xbtn.xbtn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.xbtn.xbtn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa}.xbtn.xbtn-dark{color:#fff;background-color:#15132d;border-color:#15132d}.xbtn.xbtn-soft-4{color:#212529;background-color:#f9f7fc;border-color:#f9f7fc}.xbtn.xbtn-sm{line-height:1.222222;font-size:1rem;padding:.5rem .75rem;border-radius:1.111111rem;min-height:2.222222rem}.xbtn.xbtn-icon-circle{line-height:1;border-radius:50%;aspect-ratio:1;padding:0;display:inline-flex;align-items:center;justify-content:center;width:2.70625rem;font-size:1.6875rem}.xbtn.xbtn-icon-circle.btn-sm,.btn-group-sm>.xbtn.xbtn-icon-circle.btn{width:2.346875rem;font-size:1.5rem}@media(min-width: 1360px){.modal-xxl{max-width:1330px}}.form-control-placeholder{color:#6c757d !important}.small-2{font-size:.9375em}.line-height-1-2{line-height:1.2}.modal-mass-inquiry .objects-outer{min-height:25rem;margin-top:2rem}.modal-mass-inquiry .mass-inquiry-venues-filter{position:sticky;top:3.5625rem;z-index:1020;background:#fff}.modal-mass-inquiry .tabs-types>div:first-child{padding-top:.5rem;padding-bottom:.5rem;position:sticky;top:0;z-index:1020;background:#fff;margin-bottom:0}.modal-mass-inquiry .modal-footer{position:sticky;bottom:0;z-index:1020;background:#fff;justify-content:flex-start}.transform-origin-top-left{transform-origin:top left}.transform-origin-top-right{transform-origin:top right}@media(max-width: 767.98px){.table-responsive-labels{display:block}.table-responsive-labels thead{display:none}.table-responsive-labels tbody,.table-responsive-labels tr,.table-responsive-labels td,.table-responsive-labels th{display:block;width:100%}.table-responsive-labels tr{margin-bottom:1rem;border-bottom:1px solid #c6c7c8;padding-bottom:1rem}.table-responsive-labels tr:last-child{margin-bottom:0;border-bottom:0;padding-bottom:0}.table-responsive-labels td,.table-responsive-labels th{position:relative;border-top:0;display:flex;flex-wrap:nowrap}.table-responsive-labels td::before,.table-responsive-labels th::before{content:"";display:block;position:static;content:attr(data-label);display:block;font-weight:bold;text-align:left}.table-responsive-labels td>span,.table-responsive-labels th>span{flex-grow:1;text-align:right}}html,body{height:100%;font-size:14px}@media(min-width: 768px){html,body{font-size:15px}}@media(min-width: 992px){html,body{font-size:16px}}.wrapper{font-size:1rem;min-height:100%;display:flex;width:100%;flex-direction:column;overflow:hidden;max-width:2560px;margin:0 auto;position:relative;padding-top:6.375rem;transition:padding .4s}.page-not-homepage .wrapper{padding-top:4.375rem}@media(min-width: 768px){.page-not-homepage .wrapper{padding-top:4.375rem}}.container-fluid,.container-sm,.container-md,.container-lg,.container-xl,.container-xxl{max-width:1500px}.page-nav{position:fixed;z-index:1020;left:0;right:0;top:0;background:#fff}.navbar-static .page-nav{position:absolute}.page-nav .page-nav-inner{position:relative;padding-top:1.25rem;padding-bottom:1.25rem;transition:padding .4s}.navbar-fixed .page-nav .page-nav-inner{padding-top:.75rem;padding-bottom:.75rem}.page-not-homepage .page-nav .page-nav-inner{padding-top:.75rem;padding-bottom:.75rem}.page-nav .page-nav-logos{display:flex;align-items:center;margin-top:-0.625rem;margin-bottom:-0.625rem}.page-nav .page-nav-links{display:none}.page-nav .page-nav-links ul{display:flex}@media(min-width: 1360px){.navbar-fixed.page-not-homepage .page-nav .page-nav-links,.page-search .page-nav .page-nav-links{display:block}}@media(min-width: 1360px){.navbar-fixed.page-not-homepage .page-nav .page-nav-link-duplicated,.page-search .page-nav .page-nav-link-duplicated{display:none}}.page-nav .navbar-special-buttons-duplicated{display:flex}@media(min-width: 1360px){.page-nav .navbar-special-buttons-duplicated{margin-left:.3125rem}}.page-nav .navbar-special-buttons-duplicated li+li{margin-top:0}@media(max-width: 1359.98px){.page-nav .navbar-special-buttons-duplicated li:not(.navbar-special-item-visible){display:none}}.navbar-fixed.page-not-homepage .page-nav .navbar-special-buttons-duplicated li:not(.navbar-special-item-visible){display:none !important}.page-nav .logo{display:flex;align-items:center;flex-wrap:wrap;padding-top:.5rem;padding-bottom:.5rem;position:relative;text-decoration:none}.page-nav .logo:hover{text-decoration:none}.page-nav .logo .picture{position:relative;height:2.5rem;transition:height .4s}@media(min-width: 768px){.page-nav .logo .picture{height:4.1rem}}.page-nav .logo .picture img,.page-nav .logo .picture svg{height:100%}@media(min-width: 768px){.navbar-fixed .page-nav .logo .picture{height:2.5rem}}.page-not-homepage .page-nav .logo .picture{height:2.25rem}@media(min-width: 768px){.page-not-homepage .page-nav .logo .picture{height:3.69rem}}@media(min-width: 768px){.navbar-fixed.page-not-homepage .page-nav .logo .picture,.page-search .page-nav .logo .picture{height:2.5rem}}.page-nav .logo .slogan{padding:0;color:#ff5a5f;font-weight:bold;font-size:.6rem;opacity:1;transition:all .4s;overflow:hidden;text-transform:uppercase}@media(min-width: 768px){.page-nav .logo .slogan{opacity:0;max-width:0}}@media(max-width: 767.98px){.page-nav .logo .slogan{opacity:0 !important;max-width:0 !important}}.page-nav .logo .slogan>span{display:block;width:7rem}.page-not-homepage .page-nav .logo .slogan>span{width:6.3rem}@media(min-width: 768px){.navbar-fixed .page-nav .logo .slogan{padding:0 .5rem;opacity:1;max-width:7rem}}@media(min-width: 768px){.navbar-fixed.page-not-homepage .page-nav .logo .slogan,.page-search .page-nav .logo .slogan{padding:0 .45rem}}.page-not-homepage .page-nav .logo .slogan{font-size:.54rem}@media(max-width: 767.98px){.page-not-homepage .page-nav .logo .slogan{max-width:6.3rem}}.page-footer{font-size:1.125rem;line-height:1.555556;padding-top:1.5rem;margin-top:auto}.page-footer .h2{font-size:2.125rem;font-weight:650;padding-top:1.7rem;position:relative;margin-bottom:2rem}@media(min-width: 1200px){.page-footer .h2{padding-top:0;padding-bottom:1.7rem}}.page-footer .h2::before{content:"";display:block;position:absolute;height:1px;background:#464459;width:200vw;top:0;left:50%;transform:translateX(-50%)}@media(min-width: 1200px){.page-footer .h2::before{top:auto;bottom:0}}.page-footer a{text-decoration:none;color:#fff}.page-footer a:hover{color:#ccc}.page-footer .footer-column{max-width:15rem;margin:0 auto;text-align:center}@media(min-width: 768px){.page-footer .footer-column{text-align:left}}.page-footer .footer-column.footer-column-partners{text-align:center}.page-footer .footer-column.footer-column-partners>div{display:block;max-width:9rem;margin:0 auto}.page-footer .footer-column.footer-column-partners>div+div{margin-top:.9375rem}@media(min-width: 576px){.page-footer .footer-column.footer-column-partners>div+div{margin-top:2.4rem}}.page-footer .footer-column.footer-column-partners>div img{width:100%;display:block}.page-footer .socials{display:flex;position:relative;justify-content:center;margin-top:1.5rem}.page-footer .socials li{width:2.1rem;height:2.1rem;display:block;margin:0 .425rem}.page-footer .socials li a{display:block;width:2.1rem;height:2.1rem;border-radius:50%;border:2px solid #fff;position:relative;font-size:1.125rem}.page-footer .socials li a i{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.page-footer .page-footer-nav{padding-top:3rem;padding-bottom:3rem;background:#15132d;color:#fff}.page-footer .page-footer-copy{border-top:1px solid #464459;padding-top:1.5rem;padding-bottom:1.5rem;background:#15132d;color:#fff}.page-footer .page-footer-copy .logo{max-width:8.5rem;margin:0 auto;display:block}.page-footer .page-footer-copy .logo img{display:block;width:100%}.page-body>.section:first-child,.page-body>article>.section:first-child{padding-top:0}.section{padding-top:1.5rem;padding-bottom:1.5rem}.box{padding:1rem 15px;border-radius:1.8375rem}@media(min-width: 576px){.box{padding:2.1rem}}@media(max-width: 767.98px){.box:not([class*=" bg-"]){padding-left:0;padding-right:0}}.box.bg-primary{color:#fff}.box.bg-primary a{color:#fff}.box.bg-primary a:hover{color:#e6e6e6;text-decoration:none}.box.box-geo-point{position:relative;overflow:hidden;z-index:2}.box.box-geo-point::before{content:url(./geo-point-green-d09b5db8.svg);display:block;position:absolute;mix-blend-mode:multiply;opacity:.2;width:55.880759%;top:45%;right:-10%;transform:translateY(-50%) rotate(-45deg);z-index:-1}.section-banner{padding-top:1rem;padding-bottom:.75rem;text-align:center}@media(min-width: 768px){.section-banner{padding-top:3.8rem !important}}.section-banner .box{padding-top:4.8rem}.section-banner h1{margin-bottom:.8rem}@media(max-width: 767.98px){.section-banner h1{font-size:2.625rem}}.section-banner h2{font-size:1.375rem;color:#ff5a5f;font-weight:650;line-height:1.2}@media(min-width: 768px){.section-banner h2{font-size:1.75rem}}.section-banner .search-form .form-control,.section-banner .search-form .custom-dropdown{min-width:15.75rem}@media(min-width: 576px){.section-banner .search-form .form-control,.section-banner .search-form .custom-dropdown{min-width:16.125rem}}.object-types{display:flex;margin-top:3rem;margin-left:-0.95rem;margin-right:-0.95rem;justify-content:center}.object-types li{padding-left:.95rem;padding-right:.95rem;font-size:1.4375rem}.object-types li a{color:#15132d;text-decoration:none}.object-types li a:hover{color:#ff5a5f}.object-types li.active,.object-types span.twitter-typeahead li.tt-suggestion.tt-selectable:hover,span.twitter-typeahead .object-types li.tt-suggestion.tt-selectable:hover{font-weight:bold}.objects{margin-left:-0.75rem;margin-right:-0.75rem;display:flex;flex-wrap:wrap}.objects>[class*=col]{padding-left:.75rem;padding-right:.75rem}.objects>.col{flex:0 0 auto;width:100%}@media(min-width: 768px){.objects-carousel>.col,.objects-list-big>.col{max-width:50%;flex-basis:50%}}@media(min-width: 1200px){.objects-carousel>.col,.objects-list-big>.col{max-width:33.3333333333%;flex-basis:33.3333333333%}}.objects-list-big>.col{margin-bottom:1.5rem}.objects-carousel{display:block}@media(min-width: 768px){.objects-carousel .embla-dots{display:none}}@media(max-width: 767.98px){.objects-carousel .embla-arrow{display:none}}@media(min-width: 576px){.objects-carousel .embla-slide{flex:0 0 calc(100% / 2)}}@media(min-width: 992px){.objects-carousel .embla-slide{flex:0 0 calc(100% / 3)}}.objects-list{margin-bottom:-1.875rem}.objects-list>.col{margin-bottom:1.5rem}@media(min-width: 576px){.objects-list>.col{max-width:50%;flex-basis:50%}}@media(min-width: 768px){.objects-list>.col{max-width:33.3333333333%;flex-basis:33.3333333333%}}@media(min-width: 1200px){.objects-list>.col{max-width:25%;flex-basis:25%}}.objects-search-results>.col{margin-bottom:1.3125rem}@media(min-width: 768px){.objects-search-results>.col{max-width:50%;flex-basis:50%}}@media(min-width: 1360px){.objects-search-results>.col{max-width:33.333333%;flex-basis:33.333333%}}.card-object{border:0 none;text-decoration:none;color:#000;display:flex;flex-direction:column;width:100%;background:transparent;text-align:left;height:100%}.card-object a{text-decoration:none}.card-object .card-header{position:relative;padding:0;background:transparent;border-radius:.75rem;border:0 none;overflow:hidden;flex-shrink:0;display:block;color:inherit}.card-object .card-header>img{width:100%;display:block;border-radius:.75rem;transition:250ms}.card-object .card-header .object-tags{position:absolute;top:1.4rem;z-index:2}.card-object .card-header .object-tags .object-tag-favourite,.card-object .card-header .object-tags .object-inspiration,.card-object .card-header .object-tags .object-tag-new,.card-object .card-header .object-tags .object-tag-tip,.card-object .card-header .object-tags .object-tag-favorite,.card-object .card-header .object-tags .object-tag-action{display:block;border-top-right-radius:.75rem;border-bottom-right-radius:.75rem;font-size:.8125rem;line-height:1.2;padding:.25rem 1.1rem .25rem .7rem;text-transform:uppercase}@media(min-width: 992px){.card-object .card-header .object-tags .object-tag-favourite,.card-object .card-header .object-tags .object-inspiration,.card-object .card-header .object-tags .object-tag-new,.card-object .card-header .object-tags .object-tag-tip,.card-object .card-header .object-tags .object-tag-favorite,.card-object .card-header .object-tags .object-tag-action{font-size:1rem;padding:.31rem 1.1rem .31rem .7rem}}.card-object .card-header .object-tags .object-tag-action{background:#5ce1e6}.card-object .card-header .object-tags .object-tag-favorite{background:#ff5a5f}.card-object .card-header .object-tags .object-tag-tip{background:#5363d9;color:#fff}.card-object .card-header .object-tags .object-tag-new{background:#e73c27;color:#fff}.card-object .card-header .object-tags .object-inspiration{background:#5ce1e6}.card-object .card-header .object-tags .object-tag-favourite{background:#ff5a5f;color:#fff}.card-object .card-header .object-bonus{position:absolute;z-index:2;top:.625rem;right:.625rem;width:2.25rem;height:2.25rem;background:#15132d;color:#fff;border-radius:50%;font-size:1.4375rem;line-height:1;display:flex;justify-content:center;align-items:center}.card-object .card-header .object-bonus [class^=icon-]{margin:-0.0625rem 0 0 0}.card-object .card-header .object-bonus [class^=icon-]:before{margin:0}.card-object .card-body{padding:.625rem .9375rem 0;font-size:1rem;flex-grow:1;display:flex;flex-direction:column;color:inherit}.card-object .card-body h3{margin-bottom:.5rem;font-size:1.1875rem}.card-object .card-body h3.big{font-size:1.375rem}.card-object .card-footer{background:transparent;padding:0;border:0 none}.card-object .jumbotron{padding:.375rem .9375rem;margin-left:-0.9375rem;margin-right:-0.9375rem;margin-bottom:1rem;flex-grow:1;display:flex;align-items:center;font-size:.8em}.card-object .jumbotron h6{font-size:inherit;margin-bottom:0}.card-object .jumbotron:last-child{margin-bottom:0}.card-object .address{display:flex;justify-content:space-between;align-items:center;margin-bottom:.4rem;color:#ff5a5f}.card-object .address [class^=icon-]{font-size:1.125rem}.card-object .address [class^=icon-]:before{margin-left:0}.card-object .address .max-capacity,.card-object .address .district{display:flex;align-items:center}.card-object .address .max-capacity strong{font-size:1rem;font-weight:650}.card-object:hover{text-decoration:none}.card-object:hover .card-header img{scale:1.025}.newsletter .small{font-size:.6875rem}.newsletter .form-group{margin:0;background:#5ce1e6;padding:.3rem;border-radius:1.375rem}.newsletter .btn{font-size:1.875rem;line-height:1;padding:.225rem .25rem;color:#fff}.list-how-it-works{counter-reset:my-awesome-counter}.list-how-it-works li{counter-increment:my-awesome-counter}.list-how-it-works li::before{content:counter(my-awesome-counter) ".";display:block;position:static;font-size:5.1875rem;line-height:1.2;color:#ff5a5f;display:block}.text-quote{background:#ff5a5f;border-radius:2.3rem;border-bottom-left-radius:0;color:#fff;box-shadow:0 .55rem .85rem 0 rgba(21,19,45,.2);min-height:4.6rem;padding:1rem 2.3rem;font-size:1.4375rem;font-weight:bold}.text-quote p:last-child{margin-bottom:0}.gallery-container{position:relative}.gallery-container .gallery-actions{position:absolute;bottom:.5rem;left:.5rem}@media(min-width: 576px){.gallery-container .gallery-actions{bottom:1.5rem;left:1.2rem}}@media(max-width: 575.98px){.gallery-container .gallery-actions .btn{font-size:1rem;padding:.5rem .75rem}.gallery-container .gallery-actions .btn.btn-icon-mobile{padding:.5rem .5rem}}.gallery{margin-bottom:.5rem;grid-gap:.5rem;display:grid;grid-template-columns:auto auto auto}.gallery .grid-box{position:relative;display:block;border-radius:.75rem;overflow:hidden}.gallery .grid-box::before{content:"";display:block;position:static;padding-top:50%}@media(min-width: 768px){.gallery .grid-box::before{padding-top:51.631478%}}.gallery .grid-box img{display:block;width:100%;height:100%;object-fit:cover;object-position:center;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%)}.gallery .grid-box.grid-box-2x2{grid-row:span 2;grid-column:span 2}.section-detail-title{padding-top:.5rem}.section-detail-title h1{font-size:2.6875rem}.section-detail-title .row-address-info{font-size:1.4375rem;color:#ff5a5f}.section-detail-title .row-address-info [class^=icon-]{font-size:1.3em}.section-detail-title .row-address-info .address-info{padding-left:2em;text-decoration:none;position:relative;display:block}.section-detail-title .row-address-info .address-info i{position:absolute;left:0;top:-0.25em}.section-detail-title .perex{font-size:1.1875rem}.detail-nav{overflow:hidden;position:fixed;left:0;top:0;width:100%;z-index:1010;background:#fff;border-bottom:1px solid #c6c7c8;transform:translateY(-100%);transition:200ms}.show-detail-nav .detail-nav{transform:translateY(0)}@media(max-width: 991.98px){.show-detail-nav.page-not-homepage .navbar-special{position:fixed;left:50%;margin-left:-314px;top:4.625rem}}@media(max-width: 767.98px){.show-detail-nav.page-not-homepage .navbar-special{margin-left:-255px}}@media(max-width: 575.98px){.show-detail-nav.page-not-homepage .navbar-special{left:15px;margin-left:0}}.detail-nav-inner{display:flex;justify-content:space-between;align-items:center;padding-top:.6rem;padding-bottom:.6rem}.detail-nav-inner ul{display:none}@media(min-width: 992px){.detail-nav-inner ul{display:flex;margin-left:-0.45rem}}.detail-nav-inner .navbar-special-link{font-size:1rem;font-weight:bold}@media(max-width: 991.98px){.detail-nav-inner .menu-toggler{display:block !important}}@media(min-width: 992px){.detail-nav-inner .menu-toggler{display:none !important}}.detail-info:after{content:"";display:block;position:static;margin:1.5rem 0;height:1px;background:#939598}@media(min-width: 1200px){.detail-info:after{margin-left:-1.75rem;margin-right:-1.75rem}}.detail-info h4{font-size:1.375rem;margin-bottom:1rem}.detail-info:last-child::after{display:none}.icon-info{position:relative;padding-left:3.5rem;min-height:2.3rem;display:flex;align-items:center;color:#000}.icon-info .info{font-size:.8125rem;color:#4cb3b9;display:block;line-height:1.2}.icon-info>.icon{font-style:normal;font-size:1.6875rem;width:2.3rem;height:2.3rem;line-height:1;display:flex;justify-content:center;align-items:center;border-radius:50%;color:#ff5a5f;border:2px solid #ff5a5f;position:absolute;left:0;top:50%;transform:translateY(-50%)}.icon-info>.icon::before{margin:0}.other-venues{margin:0 -0.4rem;display:flex;flex-wrap:wrap}.other-venues a{text-decoration:none;padding-left:.4rem;padding-right:.4rem}.other-venues a span{text-decoration:underline}.section-detail-location{position:relative}.section-detail-location #map{height:21.5rem;border-radius:1.5rem}.search-results-wrapper{display:none}.search-results-wrapper.opened{display:block}@media(min-width: 992px){.search-results-wrapper{display:block}}.buttons-mobile{padding:.5rem 0;display:flex;justify-content:space-between}@media(min-width: 992px){.buttons-mobile{display:none}}.buttons-mobile a.btn{padding-left:.5rem;padding-right:.5rem}.section-search-bar{background:rgba(255,255,255,.99);padding-top:.125rem;padding-bottom:1rem;transition:top .4s;z-index:1000;position:fixed;top:calc(4.375rem - 1px);left:0;right:0}@media(min-width: 768px){.section-search-bar{top:calc(4.375rem - 1px)}}.navbar-fixed .section-search-bar{top:calc(3.5625rem - 1px)}@media(min-width: 768px){.navbar-fixed .section-search-bar{top:calc(3.8125rem - 1px)}}.section-search-body{padding-top:0;padding-bottom:0;position:relative;z-index:10;display:flex}.section-search-body .box{display:flex;flex-direction:column;height:100%}.section-search-body .box .row{height:100%}.section-search-body .col-map{position:relative}.section-search-body .col-map .search-map{top:6.375rem;width:320px;height:calc(100vh - 6.375rem);opacity:0;padding-bottom:2rem;position:absolute;transition:.4s}@media(max-width: 991.98px){.section-search-body .col-map .search-map{top:0 !important;min-height:400px}}@media(min-width: 992px){.section-search-body .col-map .search-map{position:fixed;opacity:1}}@media(max-width: 991.98px){.section-search-body .col-map .search-map.opened{opacity:1;position:relative}}.section-search-body .col-map .search-map.pull-bottom{position:absolute !important;top:auto !important;bottom:0 !important}.section-search-body .col-map .search-map #map{border-radius:.75rem;height:100%}.price-list-item{width:100%;text-align:center;padding:3.125rem;border-radius:1.5rem;background-color:#fff;box-shadow:0 .25rem 1rem 0 rgba(21,19,45,.2);max-width:28.75rem;margin:0 auto}.price-list-item h3{font-size:2.8125rem;margin:0 0 .875rem}.price-list-item .price{display:block;color:#ff5a5f;font-size:1.625rem;font-weight:bold;margin-bottom:2.625rem}.price-list-item .description{font-size:1.1875rem}.price-list-item .description ul{margin:0;padding:0;margin-bottom:1.5rem;text-align:left}.price-list-item .description ul li{list-style:none;background:transparent;margin:0;padding:0}.price-list-item .description ul li{position:relative;padding-left:1.625rem}.price-list-item .description ul li::before{font-family:"osicons";font-style:normal;font-weight:normal;speak:none;text-decoration:inherit;width:1em;margin-right:.2em;margin-left:.2em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;content:"";display:block;position:absolute;top:.3em;left:0;color:#ff5a5f}.price-list-item .description ul li+li{margin-top:.5rem}.price-list-item .description ul:last-child{margin-bottom:0}.price-list-item .description p:last-child{margin-bottom:0}.price-list-item.active,span.twitter-typeahead .price-list-item.tt-suggestion.tt-selectable:hover{background-color:#ff5a5f;color:#fff}@media(min-width: 1200px){.price-list-item.active,span.twitter-typeahead .price-list-item.tt-suggestion.tt-selectable:hover{margin-top:-1.875rem;margin-bottom:-1.875rem}}.price-list-item.active .price,span.twitter-typeahead .price-list-item.tt-suggestion.tt-selectable:hover .price{color:#5ce1e6}.price-list-item.active .description ul li::before,span.twitter-typeahead .price-list-item.tt-suggestion.tt-selectable:hover .description ul li::before{color:#5ce1e6}.pl-benefit{border-radius:1.5rem;background:#fff;text-align:center;padding:2.8rem 1.5rem 2.1rem;box-shadow:0 .25rem 1rem 0 rgba(21,19,45,.2);margin:0 auto;width:100%;max-width:28.75rem}.pl-benefit figure{font-size:3.5625rem;height:9.8rem;width:9.8rem;text-align:center;margin:0 auto 1.5rem;background:#ff5a5f;border-radius:50%;color:#fff;max-width:13.5rem;display:flex;align-items:center;justify-content:center}.pl-benefit figure img{width:45.419847%;display:block}.pl-benefit p:last-child{margin-bottom:0}.pl-addition{border-radius:1.5rem;background:#fff;text-align:center;padding:1.25rem 1.5rem 1.5rem;box-shadow:0 .25rem 1rem 0 rgba(21,19,45,.2);margin:0 auto;width:100%;max-width:21.25rem;font-size:1.1875rem}.pl-addition figure{text-align:center;margin:0 auto 1.125rem;width:100%;max-width:4.375rem;display:flex;align-items:center;justify-content:center}.pl-addition figure img{width:100%;display:block}.pl-addition p:last-child{margin-bottom:0}.logo-ea{max-width:10.9375rem}@media(min-width: 768px){.logo-ea{max-width:15rem}}.logo-ea img{display:block;width:100%}.reference-carousel{margin-left:-15px;margin-right:-15px}
